How to pass data from mainwindow to themewidget?
-
@SGaist hi yes the tcp client sends the data set over to the TCP server and receives it successfully as it is displayed on the TCP console but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
@DemonLord said in How to pass data from mainwindow to themewidget?:
but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
I already suggested why.
Did you do anything to verify what is happening?
Did you check what is inside data before you try to parse it?
Did you add any error handling code to your parsing code?
Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)? -
@DemonLord said in How to pass data from mainwindow to themewidget?:
but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
I already suggested why.
Did you do anything to verify what is happening?
Did you check what is inside data before you try to parse it?
Did you add any error handling code to your parsing code?
Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)? -
@jsulm the problem is i dont understand the codes on parsing data to do any checking.....i only checked the connect function if is implemented correctly or not
@DemonLord It is really not that hard to check what parseError contains.
It is also not hard to print out data to console to see what is inside.
How else should anybody know why it does not work if you do not even try to do simple debugging? -
@DemonLord It is really not that hard to check what parseError contains.
It is also not hard to print out data to console to see what is inside.
How else should anybody know why it does not work if you do not even try to do simple debugging?@jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error
{
qDebug()<< "Parse Error" <<parseError.errorString();// message
return; // then stop the process
}
QJsonArray jsonArray =jsonResponse.array();if(!jsonArray.isEmpty())
{
QJsonObject jsonObject = jsonArray.first().toObject();QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble());}
-
@jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error
{
qDebug()<< "Parse Error" <<parseError.errorString();// message
return; // then stop the process
}
QJsonArray jsonArray =jsonResponse.array();if(!jsonArray.isEmpty())
{
QJsonObject jsonObject = jsonArray.first().toObject();QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble());}
@DemonLord said in How to pass data from mainwindow to themewidget?:
i cant find anything online and I don't understand it as well never seen anything like this before
Does it work for you? What exactly you dont understand? The code is not that complicated.
How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like? -
@DemonLord said in How to pass data from mainwindow to themewidget?:
i cant find anything online and I don't understand it as well never seen anything like this before
Does it work for you? What exactly you dont understand? The code is not that complicated.
How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like?@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right? -
@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?@DemonLord said in How to pass data from mainwindow to themewidget?:
What does this mean? Does it mean that the data is already in QJsonDocument?
At least it tries to create a
QJsonDocumentfromdatawhileparseErroris used for any potential error.
If you got no error it was most likely successful. If you got the code from a YT tutorial, make sure that your data has the same JSON structure, otherwise it cant work. -
@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?@DemonLord said in How to pass data from mainwindow to themewidget?:
What does this mean?
Please read documentation and learn C++.
https://doc.qt.io/qt-5/qjsondocument.html#fromJson
QJsonDocument::fromJson is a static method which converts its input to QJsonDocument.And you still refuse to tell us what is inside data - is it so hard to provide such simple information?
-
The data contains decimal numbers. Im not sure if this is what your asking
This is the data:
"Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n"); -
The data contains decimal numbers. Im not sure if this is what your asking
This is the data:
"Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n");@DemonLord This is not JSON, no wonder parsing fails...
-
@DemonLord This is not JSON, no wonder parsing fails...
-
@jsulm Is there another method you could recommend me for parsing this kind of data? Im not sure if it needs parsing because i tried without parsig as well and no numbers were displaying
@DemonLord Of course you have to parse it!
Use https://doc.qt.io/qt-5/qstring.html#split-5 to split (sep parameter would be '|' in your case). -
@DemonLord Of course you have to parse it!
Use https://doc.qt.io/qt-5/qstring.html#split-5 to split (sep parameter would be '|' in your case).@jsulm following the example
void ThemeWidget::putData(const QByteArray &data)
{qDebug()<< "Got Data:" << data; QString str; QStringList list; str=data; list =str.split(QRegularExpression("|")); m_ui->plainTextEdit->insertPlainText(str);// QString str;
// QStringList list;// str = "Some text\n\twith strange whitespace.";
// list = str.split(QRegExp("\s+"));}
It still doesnt show up im not sure if i wrote it correctly
-
@jsulm following the example
void ThemeWidget::putData(const QByteArray &data)
{qDebug()<< "Got Data:" << data; QString str; QStringList list; str=data; list =str.split(QRegularExpression("|")); m_ui->plainTextEdit->insertPlainText(str);// QString str;
// QStringList list;// str = "Some text\n\twith strange whitespace.";
// list = str.split(QRegExp("\s+"));}
It still doesnt show up im not sure if i wrote it correctly
@DemonLord Please at least try to do some debugging by yourself.
What does str contains after you assign data to it?str=data; qDebug() << str; -
@DemonLord Please at least try to do some debugging by yourself.
What does str contains after you assign data to it?str=data; qDebug() << str; -
@jsulm sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message
@DemonLord said in How to pass data from mainwindow to themewidget?:
sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message
Don't know what this means.
You can also use std::cout, you can use debugger, you can write into a file... -
@DemonLord said in How to pass data from mainwindow to themewidget?:
sorry i cant use qdebug cause the data is displaying at the application output which prevents me for being able to see the qdebug message
Don't know what this means.
You can also use std::cout, you can use debugger, you can write into a file...