jmartinezot commited on
Commit
fd843fb
·
1 Parent(s): cc5e8a4

Showing goal and tentative hand

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ __pycache__
aaaaa.py ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import csv
2
+ import numpy as np
3
+ import plotly.graph_objects as go
4
+
5
+ def get_datXYZ(gesto, data_path):
6
+ file_path = data_path + f"config{gesto}.csv"
7
+ with open(file_path, 'r') as file:
8
+ csv_reader = csv.reader(file)
9
+ data = list(csv_reader)
10
+ n = len(data)
11
+ coordinates = np.zeros((n, 21, 3))
12
+ for i, row in enumerate(data):
13
+ for j in range(21):
14
+ x, y, z = map(float, row[j*3 : (j+1)*3])
15
+ coordinates[i, j] = [x, y, z]
16
+ return coordinates
17
+
18
+ def plot_3d_points(points_21_3d):
19
+ # Create a scatter plot
20
+ colors = ['red', 'green', 'yellow', 'orange', 'blue']
21
+ colors = ["purple"]
22
+ colors += ["red"] * 4
23
+ colors += ["green"] * 4
24
+ colors += ["yellow"] * 4
25
+ colors += ["orange"] * 4
26
+ colors += ["blue"] * 4
27
+ fig = go.Figure(data=go.Scatter3d(
28
+ x=points_21_3d[:, 0],
29
+ y=points_21_3d[:, 1],
30
+ z=points_21_3d[:, 2],
31
+ mode='markers',
32
+ marker=dict(
33
+ size=5,
34
+ color=colors,
35
+ opacity=0.8
36
+ )
37
+ ))
38
+
39
+ # Define the line segments
40
+ segments = [(0, 1), (1, 2), (2, 3), (3, 4), # Thumb, 4 segments
41
+ (0, 5), (5, 6), (6, 7), (7, 8), # Index, 4 segments
42
+ (0, 9), (9, 10), (10, 11), (11, 12), # Middle, 4 segments
43
+ (0, 13), (13, 14), (14, 15), (15, 16), # Ring, 4 segments
44
+ (0, 17), (17, 18), (18, 19), (19, 20)] # Little, 4 segments
45
+
46
+ # Create a Scatter3d trace for each segment and add to the figure
47
+ for segment in segments:
48
+ start_index, end_index = segment
49
+ start_point = points_21_3d[start_index]
50
+ end_point = points_21_3d[end_index]
51
+
52
+ line = go.Scatter3d(
53
+ x=[start_point[0], end_point[0]],
54
+ y=[start_point[1], end_point[1]],
55
+ z=[start_point[2], end_point[2]],
56
+ mode='lines',
57
+ line=dict(color='black', width=2),
58
+ showlegend=False
59
+ )
60
+
61
+ fig.add_trace(line)
62
+
63
+ # Set axes labels and title
64
+ fig.update_layout(
65
+ scene=dict(
66
+ xaxis=dict(title='X'),
67
+ yaxis=dict(title='Y'),
68
+ zaxis=dict(title='Z')
69
+ ),
70
+ dragmode = 'orbit',
71
+ title='3D Random Points'
72
+ )
73
+
74
+ # Return the figure
75
+ return fig
app.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import pandas as pd
3
+ import numpy as np
4
+ import matplotlib.pyplot as plt
5
+ from mpl_toolkits.mplot3d import Axes3D
6
+ from gradio.components import Slider, Number, Image, Dataframe, Textbox, Checkbox, Radio, Label, Plot
7
+ import plotly.graph_objects as go
8
+ import csv
9
+ from aaaaa import get_datXYZ, plot_3d_points
10
+ import PIL.Image
11
+
12
+ data_path = "reference_data/"
13
+ image_path = "images_configs/"
14
+
15
+ def show_hand_3d(gesto, data_path, image_path):
16
+ datXYZ = get_datXYZ(gesto, data_path)
17
+ print(datXYZ.shape)
18
+ print(datXYZ)
19
+ first_row = datXYZ[0] # Extract the first row of the array
20
+ reshaped_array = first_row[:63].reshape(21, 3) # Reshape the first row to (21, 3)
21
+ hand_plot = plot_3d_points(reshaped_array)
22
+ image_filename = image_path + str(int(gesto)) + ".png"
23
+ print(image_filename)
24
+ image = PIL.Image.open(image_filename)
25
+ width, height = image.size
26
+ newsize = (width // 2, height // 2)
27
+ image = image.resize(newsize)
28
+ # image = Image(image_filename) # Load the corresponding image
29
+ return image, hand_plot
30
+
31
+ inputs = [
32
+ Number(value=42, precision=0, label="Number of Hand Configuration"),
33
+ Textbox(label="Data Path", value="reference_data/"),
34
+ Textbox(label="Image Path", value="images_configs/")
35
+ ]
36
+
37
+ outputs = [Image(type="pil", shape=(50,50)), Plot()]
38
+
39
+ title = "Hand 3D Visualization"
40
+ description = "Enter the gesture number (gesto) and the data path (data_path) to visualize the hand in 3D."
41
+
42
+ iface = gr.Interface(fn=show_hand_3d,
43
+ inputs=inputs,
44
+ outputs=outputs,
45
+ title=title,
46
+ description=description,
47
+ allow_flagging="never")
48
+ iface.launch()
example_gradio_app_doc.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import altair as alt
2
+ import gradio as gr
3
+ import numpy as np
4
+ import pandas as pd
5
+ from vega_datasets import data
6
+
7
+
8
+ def make_plot(plot_type):
9
+ if plot_type == "interactive_barplot":
10
+ source = data.movies.url
11
+
12
+ pts = alt.selection(type="single", encodings=['x'])
13
+
14
+ rect = alt.Chart(data.movies.url).mark_rect().encode(
15
+ alt.X('IMDB_Rating:Q', bin=True),
16
+ alt.Y('Rotten_Tomatoes_Rating:Q', bin=True),
17
+ alt.Color('count()',
18
+ scale=alt.Scale(scheme='greenblue'),
19
+ legend=alt.Legend(title='Total Records')
20
+ )
21
+ )
22
+
23
+ circ = rect.mark_point().encode(
24
+ alt.ColorValue('grey'),
25
+ alt.Size('count()',
26
+ legend=alt.Legend(title='Records in Selection')
27
+ )
28
+ ).transform_filter(
29
+ pts
30
+ )
31
+
32
+ bar = alt.Chart(source).mark_bar().encode(
33
+ x='Major_Genre:N',
34
+ y='count()',
35
+ color=alt.condition(pts, alt.ColorValue("steelblue"), alt.ColorValue("grey"))
36
+ ).properties(
37
+ width=550,
38
+ height=200
39
+ ).add_selection(pts)
40
+
41
+ plot = alt.vconcat(
42
+ rect + circ,
43
+ bar
44
+ ).resolve_legend(
45
+ color="independent",
46
+ size="independent"
47
+ )
48
+ return plot
49
+ elif plot_type == "multiline":
50
+ source = data.stocks()
51
+
52
+ highlight = alt.selection(type='single', on='mouseover',
53
+ fields=['symbol'], nearest=True)
54
+
55
+ base = alt.Chart(source).encode(
56
+ x='date:T',
57
+ y='price:Q',
58
+ color='symbol:N'
59
+ )
60
+
61
+ points = base.mark_circle().encode(
62
+ opacity=alt.value(0)
63
+ ).add_selection(
64
+ highlight
65
+ ).properties(
66
+ width=600
67
+ )
68
+
69
+ lines = base.mark_line().encode(
70
+ size=alt.condition(~highlight, alt.value(1), alt.value(3))
71
+ )
72
+
73
+ return points + lines
74
+
75
+
76
+ with gr.Blocks() as demo:
77
+ button = gr.Radio(label="Plot type",
78
+ choices=['interactive_barplot', "multiline"], value='interactive_barplot')
79
+ plot = gr.Plot(label="Plot")
80
+ button.change(make_plot, inputs=button, outputs=[plot])
81
+ demo.load(make_plot, inputs=[button], outputs=[plot])
82
+
83
+
84
+ if __name__ == "__main__":
85
+ demo.launch()
example_gradio_app_doc_copy.py ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import altair as alt
2
+ import gradio as gr
3
+ import numpy as np
4
+ import pandas as pd
5
+ from vega_datasets import data
6
+ import plotly.graph_objects as go
7
+
8
+ def plot_random_points_3d(num_points):
9
+ # Generate random points in 3D space
10
+ np.random.seed(42) # Setting a seed for reproducibility
11
+ x = np.random.randn(num_points)
12
+ y = np.random.randn(num_points)
13
+ z = np.random.randn(num_points)
14
+
15
+ # Create a scatter plot
16
+ fig = go.Figure(data=go.Scatter3d(
17
+ x=x,
18
+ y=y,
19
+ z=z,
20
+ mode='markers',
21
+ marker=dict(
22
+ size=5,
23
+ color='blue',
24
+ opacity=0.8
25
+ )
26
+ ))
27
+
28
+ # Set axes labels and title
29
+ fig.update_layout(
30
+ scene=dict(
31
+ xaxis=dict(title='X'),
32
+ yaxis=dict(title='Y'),
33
+ zaxis=dict(title='Z')
34
+ ),
35
+ title='3D Random Points'
36
+ )
37
+
38
+ # Return the figure
39
+ return fig
40
+
41
+ def make_plot(plot_type):
42
+ if plot_type == "multiline":
43
+ source = data.stocks()
44
+
45
+ highlight = alt.selection(type='single', on='mouseover',
46
+ fields=['symbol'], nearest=True)
47
+
48
+ base = alt.Chart(source).encode(
49
+ x='date:T',
50
+ y='price:Q',
51
+ color='symbol:N'
52
+ )
53
+
54
+ points = base.mark_circle().encode(
55
+ opacity=alt.value(0)
56
+ ).add_selection(
57
+ highlight
58
+ ).properties(
59
+ width=600
60
+ )
61
+
62
+ lines = base.mark_line().encode(
63
+ size=alt.condition(~highlight, alt.value(1), alt.value(3))
64
+ )
65
+
66
+ return points + lines
67
+ elif plot_type == "3Dplot":
68
+ return plot_random_points_3d(100)
69
+
70
+
71
+ with gr.Blocks() as demo:
72
+ button = gr.Radio(label="Plot type",
73
+ choices=["multiline", "3Dplot"], value='3Dplot')
74
+ plot = gr.Plot(label="Plot")
75
+ button.change(make_plot, inputs=button, outputs=[plot])
76
+ demo.load(make_plot, inputs=[button], outputs=[plot])
77
+
78
+
79
+ if __name__ == "__main__":
80
+ demo.launch()
images_configs/1.png ADDED
images_configs/10.png ADDED
images_configs/11.png ADDED
images_configs/12.png ADDED
images_configs/13.png ADDED
images_configs/14.png ADDED
images_configs/15.png ADDED
images_configs/16.png ADDED
images_configs/17.png ADDED
images_configs/18.png ADDED
images_configs/19.png ADDED
images_configs/2.png ADDED
images_configs/20.png ADDED
images_configs/21.png ADDED
images_configs/22.png ADDED
images_configs/23.png ADDED
images_configs/24.png ADDED
images_configs/25.png ADDED
images_configs/26.png ADDED
images_configs/27.png ADDED
images_configs/28.png ADDED
images_configs/29.png ADDED
images_configs/3.png ADDED
images_configs/30.png ADDED
images_configs/31.png ADDED
images_configs/32.png ADDED
images_configs/33.png ADDED
images_configs/34.png ADDED
images_configs/35.png ADDED
images_configs/36.png ADDED
images_configs/37.png ADDED
images_configs/38.png ADDED
images_configs/39.png ADDED
images_configs/4.png ADDED
images_configs/40.png ADDED
images_configs/41.png ADDED
images_configs/42.png ADDED
images_configs/5.png ADDED
images_configs/6.png ADDED
images_configs/7.png ADDED
images_configs/8.png ADDED
images_configs/9.png ADDED
reference_data/config1.csv ADDED
The diff for this file is too large to render. See raw diff
 
reference_data/config10.csv ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0.2622242569923401,0.4781320095062256,4.7546603809678345e-07,0.2727733254432678,0.42056596279144287,-0.02275649644434452,0.2723066508769989,0.33169975876808167,-0.04440726712346077,0.26533418893814087,0.25928065180778503,-0.05902274325489998,0.2545456886291504,0.20833063125610352,-0.07383046299219131,0.22945141792297363,0.39456334710121155,-0.0927276462316513,0.23001982271671295,0.2657708525657654,-0.11908937990665436,0.23815703392028809,0.19865205883979797,-0.12460072338581085,0.24698349833488464,0.14900222420692444,-0.1242661252617836,0.2251025140285492,0.415946364402771,-0.08955418318510056,0.23169320821762085,0.2776351571083069,-0.1155705526471138,0.24731716513633728,0.19901461899280548,-0.11796028912067413,0.2614196538925171,0.14735457301139832,-0.11807247251272202,0.23012256622314453,0.42149198055267334,-0.08316926658153534,0.2367275059223175,0.2889562249183655,-0.1018683984875679,0.24733966588974,0.20820753276348114,-0.10228809714317322,0.2559663951396942,0.15442144870758057,-0.10108881443738937,0.23890510201454163,0.4143858551979065,-0.07661084085702896,0.233516126871109,0.3096202313899994,-0.08762866258621216,0.23704616725444794,0.2400503158569336,-0.08803264051675797,0.24029658734798431,0.19005000591278076,-0.08769886195659637
2
+ 0.28170812129974365,0.4959811866283417,4.851949597650673e-07,0.32516947388648987,0.4442448318004608,-0.01636728271842003,0.3366214334964752,0.365090012550354,-0.025801358744502068,0.32100769877433777,0.3001967668533325,-0.030803872272372246,0.2970264256000519,0.25965946912765503,-0.03446929529309273,0.2829885482788086,0.3588424026966095,-0.04221003130078316,0.2731991410255432,0.2506229281425476,-0.055010080337524414,0.27097299695014954,0.19088639318943024,-0.05751705542206764,0.2695882320404053,0.14533738791942596,-0.05749250948429108,0.24306954443454742,0.36248907446861267,-0.03874582424759865,0.24456360936164856,0.25093793869018555,-0.05135195329785347,0.2572178840637207,0.18905344605445862,-0.05316024646162987,0.27061665058135986,0.14517222344875336,-0.0535123348236084,0.2135109305381775,0.364864706993103,-0.03459867089986801,0.22003737092018127,0.25663521885871887,-0.04467243701219559,0.23783209919929504,0.19389137625694275,-0.04595933482050896,0.2529429495334625,0.15127064287662506,-0.04608536511659622,0.19293737411499023,0.3611656427383423,-0.03079983964562416,0.19973912835121155,0.2700619399547577,-0.03770141303539276,0.21342775225639343,0.21544989943504333,-0.038219138979911804,0.22723427414894104,0.17424458265304565,-0.03767964243888855
3
+ 0.36524203419685364,0.46807384490966797,8.225652550208906e-07,0.31358596682548523,0.40862467885017395,-0.019740113988518715,0.2992556393146515,0.31784552335739136,-0.048498958349227905,0.31886783242225647,0.24518010020256042,-0.07016389816999435,0.33846235275268555,0.19754675030708313,-0.09286660701036453,0.28638842701911926,0.3549748361110687,-0.1093745082616806,0.30543071031570435,0.21568965911865234,-0.14317446947097778,0.3236768841743469,0.1360035091638565,-0.1550312489271164,0.33778223395347595,0.07877129316329956,-0.1587759554386139,0.3412584662437439,0.38223570585250854,-0.11261811852455139,0.3544405996799469,0.23228421807289124,-0.14748676121234894,0.36242780089378357,0.14427250623703003,-0.15262599289417267,0.36705929040908813,0.08849047124385834,-0.15420955419540405,0.3921167850494385,0.3934258818626404,-0.11102259904146194,0.40620073676109314,0.2510990798473358,-0.1340489387512207,0.4003753662109375,0.15863268077373505,-0.13295462727546692,0.3927757441997528,0.0997057855129242,-0.1303093135356903,0.43291446566581726,0.3890814781188965,-0.10904759168624878,0.42686891555786133,0.2734062671661377,-0.11798987537622452,0.41176289319992065,0.21161797642707825,-0.1110537126660347,0.40131956338882446,0.1742517203092575,-0.10554075241088867
4
+ 0.43669024109840393,0.46869826316833496,4.13666469967211e-07,0.3910738229751587,0.410626620054245,-0.026913192123174667,0.3933590054512024,0.33022990822792053,-0.04861688241362572,0.42195963859558105,0.2617891728878021,-0.060570940375328064,0.44915294647216797,0.21698720753192902,-0.07277955114841461,0.4058923125267029,0.3640002906322479,-0.10138526558876038,0.42032837867736816,0.23080915212631226,-0.13128164410591125,0.4321589767932892,0.14895501732826233,-0.13980087637901306,0.4410223066806793,0.08864137530326843,-0.14191710948944092,0.4593774378299713,0.37926042079925537,-0.0974322184920311,0.474430650472641,0.2324153333902359,-0.13006888329982758,0.479324072599411,0.14313636720180511,-0.1368679255247116,0.477486252784729,0.07849818468093872,-0.13821987807750702,0.5028762817382812,0.3862482011318207,-0.08942896127700806,0.5138343572616577,0.2534131705760956,-0.11587259918451309,0.5109893679618835,0.16654306650161743,-0.11934658885002136,0.5021542310714722,0.10351090133190155,-0.11793297529220581,0.5307464003562927,0.38459232449531555,-0.08072198182344437,0.5255613923072815,0.2806268334388733,-0.098514124751091,0.5065403580665588,0.22487294673919678,-0.09584290534257889,0.48706236481666565,0.1900409609079361,-0.09068922698497772
5
+ 0.35606884956359863,0.5151946544647217,8.032305913729942e-07,0.3022247552871704,0.4550541043281555,-0.015589509159326553,0.29009437561035156,0.36835426092147827,-0.03879338875412941,0.31148943305015564,0.29928654432296753,-0.05371714010834694,0.3329477608203888,0.26070404052734375,-0.06915432214736938,0.2720430791378021,0.39291274547576904,-0.09795836359262466,0.30068856477737427,0.2529888153076172,-0.12266669422388077,0.319962739944458,0.17721517384052277,-0.12772423028945923,0.3342685103416443,0.12568391859531403,-0.12740056216716766,0.3271530568599701,0.422813355922699,-0.0990915298461914,0.34679797291755676,0.26624181866645813,-0.1299702525138855,0.355508416891098,0.18247802555561066,-0.13383601605892181,0.35784611105918884,0.131613090634346,-0.13349561393260956,0.38033485412597656,0.4351795017719269,-0.09440381824970245,0.39380592107772827,0.2912384867668152,-0.11546258628368378,0.3905927240848541,0.20369897782802582,-0.116456039249897,0.3854857385158539,0.14588426053524017,-0.11531322449445724,0.42480820417404175,0.4313378632068634,-0.08794309198856354,0.4151081442832947,0.3278331756591797,-0.09330371022224426,0.3918876349925995,0.30091583728790283,-0.08288976550102234,0.37483274936676025,0.2911125719547272,-0.0753718838095665
6
+ 0.34131625294685364,0.5845977067947388,3.859218224988581e-07,0.2959299087524414,0.5247072577476501,-0.01948515512049198,0.2779991328716278,0.4544353783130646,-0.04547606781125069,0.28878718614578247,0.39696359634399414,-0.06469979882240295,0.31120195984840393,0.35445159673690796,-0.08355758339166641,0.2683887481689453,0.5245484113693237,-0.10381925851106644,0.29945388436317444,0.38967764377593994,-0.13442498445510864,0.31886181235313416,0.32498931884765625,-0.13995741307735443,0.3364794850349426,0.28222668170928955,-0.13974794745445251,0.319113165140152,0.5572507381439209,-0.10702754557132721,0.34058302640914917,0.40256890654563904,-0.1430128961801529,0.353909432888031,0.3221243917942047,-0.14702624082565308,0.36212143301963806,0.2733748257160187,-0.14696919918060303,0.369314581155777,0.5683969259262085,-0.10585878044366837,0.38352614641189575,0.419752836227417,-0.13548634946346283,0.3871108293533325,0.335141658782959,-0.13771888613700867,0.3835049569606781,0.27871960401535034,-0.13597732782363892,0.4138968884944916,0.561027467250824,-0.10341737419366837,0.41138726472854614,0.45132097601890564,-0.12174590677022934,0.40037885308265686,0.39832767844200134,-0.11920294910669327,0.38624632358551025,0.3632452189922333,-0.11552669107913971
7
+ 0.3308090567588806,0.6413034796714783,4.991611604054924e-07,0.28806522488594055,0.5818085670471191,-0.02271786704659462,0.27175360918045044,0.5071014165878296,-0.051565833389759064,0.2839294373989105,0.4500161111354828,-0.0721905380487442,0.3073553442955017,0.4088115394115448,-0.09274528175592422,0.2571899890899658,0.5786433219909668,-0.11622586846351624,0.2854306995868683,0.4533732533454895,-0.15256324410438538,0.3076121211051941,0.384053111076355,-0.16321352124214172,0.3290794789791107,0.33876103162765503,-0.1659717857837677,0.3063119649887085,0.6135308742523193,-0.11847522854804993,0.3259596824645996,0.4673616588115692,-0.16096535325050354,0.3425074517726898,0.38424187898635864,-0.1683179885149002,0.35414665937423706,0.3337783217430115,-0.16981513798236847,0.3562868535518646,0.6249855160713196,-0.11574505269527435,0.37238046526908875,0.4846273958683014,-0.14834484457969666,0.37612658739089966,0.4012815058231354,-0.15016889572143555,0.3725147843360901,0.3463122248649597,-0.14739608764648438,0.39960312843322754,0.6186745762825012,-0.11200059950351715,0.4003191292285919,0.5120854377746582,-0.1295650601387024,0.3875095546245575,0.4598325192928314,-0.12488602101802826,0.3720405101776123,0.42782461643218994,-0.11951837688684464
8
+ 0.2479204684495926,0.5779002904891968,6.060922146389203e-07,0.19646891951560974,0.505084753036499,-0.019659291952848434,0.17826896905899048,0.41698798537254333,-0.04730098694562912,0.19643732905387878,0.34503304958343506,-0.06910159438848495,0.22700288891792297,0.2958848476409912,-0.089748315513134,0.1563117802143097,0.48920169472694397,-0.10514985024929047,0.19202719628810883,0.3428969979286194,-0.14063560962677002,0.22405335307121277,0.27163219451904297,-0.14906156063079834,0.2520603835582733,0.23106814920902252,-0.14921875298023224,0.20419509708881378,0.5300269722938538,-0.10973640531301498,0.22543831169605255,0.3676952123641968,-0.15073636174201965,0.2509268522262573,0.2781994342803955,-0.15535679459571838,0.26720887422561646,0.2305430918931961,-0.15439540147781372,0.2585050165653229,0.5473453998565674,-0.11028574407100677,0.27580463886260986,0.3939918279647827,-0.14092671871185303,0.2879473865032196,0.302653044462204,-0.13966433703899384,0.2885296940803528,0.24672189354896545,-0.13420560956001282,0.3110373914241791,0.5421878695487976,-0.11018756031990051,0.3123477101325989,0.42098912596702576,-0.12564204633235931,0.30449238419532776,0.3550412356853485,-0.11981504410505295,0.2911752164363861,0.31478849053382874,-0.112983837723732
9
+ 0.2719613313674927,0.5449864268302917,1.0320791261619888e-06,0.20510730147361755,0.47895318269729614,-0.014565398916602135,0.16370351612567902,0.3828638195991516,-0.049060337245464325,0.170951247215271,0.2861054539680481,-0.08051036298274994,0.19645099341869354,0.21560503542423248,-0.1113269105553627,0.10511079430580139,0.4140465259552002,-0.10663998872041702,0.1330457180738449,0.2595846354961395,-0.15616106986999512,0.17600025236606598,0.1821480542421341,-0.18002577126026154,0.2147281914949417,0.1370793581008911,-0.19175928831100464,0.14571885764598846,0.451023131608963,-0.12156738340854645,0.16308103501796722,0.2739681601524353,-0.17208139598369598,0.20504766702651978,0.18365325033664703,-0.18395480513572693,0.24448901414871216,0.13407962024211884,-0.18829327821731567,0.20164600014686584,0.46629807353019714,-0.13320772349834442,0.22138860821723938,0.3035660684108734,-0.16711640357971191,0.24744567275047302,0.21242256462574005,-0.16647732257843018,0.2672947943210602,0.15911303460597992,-0.16341838240623474,0.2590816915035248,0.4642375707626343,-0.14521324634552002,0.2697659134864807,0.3377923369407654,-0.16010983288288116,0.27395811676979065,0.27590441703796387,-0.1547613888978958,0.2777364253997803,0.23498812317848206,-0.150132954120636
10
+ 0.23647063970565796,0.5854257941246033,8.213899036491057e-07,0.19708949327468872,0.5317047834396362,-0.0043144216760993,0.16260375082492828,0.4578756093978882,-0.02602940984070301,0.15986454486846924,0.3918968737125397,-0.04858993738889694,0.16566267609596252,0.34480196237564087,-0.07038021087646484,0.1025795191526413,0.489318311214447,-0.06056906282901764,0.11977533996105194,0.3761155307292938,-0.09827399253845215,0.15290716290473938,0.31069907546043396,-0.11729026585817337,0.1873200237751007,0.27216851711273193,-0.126017764210701,0.11912544071674347,0.5129194855690002,-0.07594359666109085,0.1255389302968979,0.3826035261154175,-0.11417604982852936,0.16306822001934052,0.30869409441947937,-0.12305326759815216,0.19920724630355835,0.2680168151855469,-0.12515927851200104,0.15417376160621643,0.5225149393081665,-0.08995293080806732,0.16278038918972015,0.387492299079895,-0.11870904266834259,0.19395968317985535,0.31662866473197937,-0.11631931364536285,0.21844203770160675,0.27456027269363403,-0.11075911670923233,0.19679830968379974,0.518951416015625,-0.10395434498786926,0.20679739117622375,0.4083635210990906,-0.11913388222455978,0.22122043371200562,0.3496900498867035,-0.11469341814517975,0.23207435011863708,0.30967363715171814,-0.1092923954129219
11
+ 0.27265870571136475,0.5724822282791138,7.069602361298166e-07,0.2606492042541504,0.4943240284919739,-0.01753753237426281,0.23158788681030273,0.4460485875606537,-0.03981379047036171,0.2129240781068802,0.41121387481689453,-0.0607275515794754,0.20048320293426514,0.3808620572090149,-0.08029323816299438,0.1319359838962555,0.5285413861274719,-0.05234264209866524,0.14161258935928345,0.43128901720046997,-0.09076666086912155,0.1686239391565323,0.37033963203430176,-0.11545035243034363,0.19577699899673462,0.3338608741760254,-0.1298545002937317,0.139913871884346,0.5559059977531433,-0.06102367490530014,0.1423787772655487,0.42968320846557617,-0.10169395059347153,0.17838247120380402,0.36183038353919983,-0.11737198382616043,0.21015439927577972,0.32219648361206055,-0.12333634495735168,0.16604170203208923,0.5626499056816101,-0.07059049606323242,0.17254601418972015,0.4413813352584839,-0.10653664171695709,0.20105423033237457,0.37297114729881287,-0.11132130026817322,0.2239096760749817,0.3337838649749756,-0.1091490164399147,0.2026042342185974,0.5563556551933289,-0.08097381889820099,0.21421022713184357,0.45297035574913025,-0.10710013657808304,0.22967028617858887,0.3953394889831543,-0.10962487012147903,0.24182575941085815,0.35756799578666687,-0.10731903463602066
12
+ 0.27561721205711365,0.5371548533439636,4.076370032635168e-07,0.2676331400871277,0.4237339198589325,-0.0007011487032286823,0.23805640637874603,0.3585141599178314,-0.01207246445119381,0.21741920709609985,0.30696338415145874,-0.025882909074425697,0.20494475960731506,0.26473143696784973,-0.03737907484173775,0.11710299551486969,0.4343114495277405,-0.01785942167043686,0.13151976466178894,0.31414249539375305,-0.04042317718267441,0.1650945097208023,0.2515597939491272,-0.055203791707754135,0.19444072246551514,0.21548447012901306,-0.06445562839508057,0.12400362640619278,0.450007826089859,-0.03263834863901138,0.1303471475839615,0.312475323677063,-0.05720914527773857,0.1682111918926239,0.2492898851633072,-0.06773237138986588,0.20011237263679504,0.21087658405303955,-0.07133413106203079,0.15239936113357544,0.45107346773147583,-0.047461576759815216,0.1582299917936325,0.32201457023620605,-0.07246450334787369,0.18988431990146637,0.25367313623428345,-0.07762797921895981,0.21451041102409363,0.21207685768604279,-0.07672826945781708,0.1934584528207779,0.4403698146343231,-0.06198246404528618,0.2081076204776764,0.333730548620224,-0.08139057457447052,0.22636161744594574,0.2763342559337616,-0.08373615890741348,0.24021059274673462,0.23695024847984314,-0.08164091408252716
13
+ 0.2873472571372986,0.49147161841392517,4.1223839275517093e-07,0.27544522285461426,0.36140936613082886,0.010578148066997528,0.23912082612514496,0.2892896831035614,0.003417080966755748,0.22039908170700073,0.22734758257865906,-0.008972196839749813,0.21266372501850128,0.17313222587108612,-0.01985088735818863,0.11138534545898438,0.3587687611579895,-0.01011868566274643,0.12978598475456238,0.22562021017074585,-0.03691736236214638,0.1661449372768402,0.15913866460323334,-0.05755374953150749,0.19894640147686005,0.1159229427576065,-0.07158225029706955,0.11996990442276001,0.3731931447982788,-0.03122440166771412,0.12980905175209045,0.21662119030952454,-0.06122717261314392,0.172538623213768,0.1512761116027832,-0.0769985020160675,0.2094641774892807,0.11268456280231476,-0.08506211638450623,0.15033429861068726,0.37571981549263,-0.05161762610077858,0.16072997450828552,0.23539569973945618,-0.07834859937429428,0.19644789397716522,0.16537004709243774,-0.08565472066402435,0.22467932105064392,0.12588796019554138,-0.08705608546733856,0.19270743429660797,0.36765024065971375,-0.07100433111190796,0.20511576533317566,0.2546396851539612,-0.08762404322624207,0.22425106167793274,0.20030826330184937,-0.0888362005352974,0.23945632576942444,0.16380901634693146,-0.08752373605966568
14
+ 0.2949225902557373,0.5076673030853271,4.2636912667148863e-07,0.2839985489845276,0.3814692795276642,0.010965008288621902,0.24955269694328308,0.3085644245147705,0.004268690012395382,0.23193281888961792,0.24817146360874176,-0.0073246886022388935,0.22476936876773834,0.1961967498064041,-0.01748610846698284,0.12092054635286331,0.3795071244239807,-0.012738333083689213,0.13726171851158142,0.24822132289409637,-0.03657440096139908,0.1718999296426773,0.18081597983837128,-0.05399591475725174,0.20206934213638306,0.13820965588092804,-0.06619934737682343,0.12931832671165466,0.3940871059894562,-0.03377072140574455,0.13782989978790283,0.2403174340724945,-0.060460165143013,0.1787339299917221,0.17226330935955048,-0.07383866608142853,0.21335835754871368,0.13230876624584198,-0.08110901713371277,0.16071383655071259,0.3961999714374542,-0.05356661230325699,0.16864264011383057,0.25518763065338135,-0.07939586043357849,0.20458261668682098,0.18325814604759216,-0.08518705517053604,0.23168765008449554,0.14250914752483368,-0.08578325062990189,0.2043202817440033,0.38767850399017334,-0.07204293459653854,0.2132505178451538,0.272672176361084,-0.08891937136650085,0.23150378465652466,0.21438345313072205,-0.08897165954113007,0.2457851767539978,0.1751992255449295,-0.08673220872879028
15
+ 0.33424144983291626,0.48663586378097534,6.129242251518008e-07,0.28199100494384766,0.4302746653556824,-0.006748354993760586,0.2513086497783661,0.33114659786224365,-0.028753094375133514,0.26770302653312683,0.23641225695610046,-0.049004122614860535,0.2951614558696747,0.16371983289718628,-0.0675649344921112,0.1950526237487793,0.3683931231498718,-0.08237597346305847,0.20614250004291534,0.2228448987007141,-0.11844466626644135,0.23982079327106476,0.1536373496055603,-0.13024653494358063,0.2727976143360138,0.11182859539985657,-0.1338196098804474,0.2280392348766327,0.39223626255989075,-0.09491878002882004,0.2205452024936676,0.2368616759777069,-0.13402219116687775,0.25106513500213623,0.15130048990249634,-0.14055673778057098,0.2806401550769806,0.10272690653800964,-0.14157280325889587,0.27589622139930725,0.3963363766670227,-0.10448027402162552,0.26702257990837097,0.2518968880176544,-0.13397130370140076,0.2864842116832733,0.16689349710941315,-0.13406342267990112,0.302072137594223,0.11530092358589172,-0.13017652928829193,0.3296445906162262,0.38205593824386597,-0.113388292491436,0.31690430641174316,0.2605513036251068,-0.1279567927122116,0.31471794843673706,0.19722512364387512,-0.12558475136756897,0.3142707645893097,0.15287597477436066,-0.12234871089458466
16
+ 0.3968626856803894,0.46874719858169556,9.324271559307817e-07,0.334846556186676,0.4134240746498108,-0.015413269400596619,0.30779194831848145,0.3241026997566223,-0.04474976286292076,0.322234570980072,0.2478933185338974,-0.06742024421691895,0.3421728312969208,0.19335123896598816,-0.09041831642389297,0.28513428568840027,0.3515530526638031,-0.11331623047590256,0.30261313915252686,0.2056894302368164,-0.1519235074520111,0.32388007640838623,0.12228822708129883,-0.16514281928539276,0.3433937728404999,0.06553754210472107,-0.16962985694408417,0.33830946683883667,0.3790937662124634,-0.12117138504981995,0.3451193571090698,0.21729737520217896,-0.16752639412879944,0.36140188574790955,0.1204090416431427,-0.1779453456401825,0.3723765015602112,0.062499746680259705,-0.18093889951705933,0.3941955864429474,0.3898143172264099,-0.12326093763113022,0.400864839553833,0.23790743947029114,-0.15660259127616882,0.4049603044986725,0.1405559480190277,-0.15899355709552765,0.40254929661750793,0.07745406031608582,-0.15681473910808563,0.44300493597984314,0.3833655118942261,-0.12368617951869965,0.43207037448883057,0.26450157165527344,-0.13819433748722076,0.41616350412368774,0.2138393521308899,-0.13120700418949127,0.4030364453792572,0.18707886338233948,-0.12485957890748978
17
+ 0.42397382855415344,0.4644262492656708,8.563326900912216e-07,0.3655504882335663,0.40364912152290344,-0.01660952717065811,0.3405551314353943,0.3011000454425812,-0.042519256472587585,0.34882351756095886,0.21020734310150146,-0.06239490583539009,0.3639995753765106,0.15596827864646912,-0.08279043436050415,0.3448030948638916,0.339049369096756,-0.10351302474737167,0.35551559925079346,0.18056604266166687,-0.13548721373081207,0.3726450502872467,0.0911334753036499,-0.1443798542022705,0.38689085841178894,0.028133004903793335,-0.14652828872203827,0.3987685739994049,0.35889026522636414,-0.10855360329151154,0.40421226620674133,0.19077378511428833,-0.13646455109119415,0.4133290648460388,0.09257183969020844,-0.13663311302661896,0.42286786437034607,0.02927333116531372,-0.13638463616371155,0.45197415351867676,0.3662586808204651,-0.10941743105649948,0.4582040011882782,0.2122359573841095,-0.12663017213344574,0.45587414503097534,0.11762431263923645,-0.12344885617494583,0.4541621804237366,0.05505728721618652,-0.12156333774328232,0.5003146529197693,0.3602865934371948,-0.11019312590360641,0.49605828523635864,0.2386058270931244,-0.11902021616697311,0.4831302762031555,0.17179414629936218,-0.1150699332356453,0.4726085364818573,0.12418195605278015,-0.11260318756103516
18
+ 0.5068683624267578,0.5709768533706665,-6.004970742878868e-08,0.47420835494995117,0.48170316219329834,-0.048381246626377106,0.5065837502479553,0.3863089978694916,-0.06953291594982147,0.557967483997345,0.3168761432170868,-0.07496346533298492,0.590639591217041,0.2734984755516052,-0.07768559455871582,0.5701987743377686,0.48312699794769287,-0.11552807688713074,0.6003240942955017,0.3456152677536011,-0.13755358755588531,0.5982455015182495,0.2654919922351837,-0.1390562802553177,0.5902906060218811,0.2044500857591629,-0.13750435411930084,0.6101018190383911,0.5039777755737305,-0.09496225416660309,0.6486680507659912,0.3595193028450012,-0.11844997853040695,0.6353833079338074,0.2696452736854553,-0.11643815040588379,0.6124522686004639,0.20812134444713593,-0.1131693571805954,0.6303763389587402,0.508652925491333,-0.07152201980352402,0.6586644649505615,0.3796561658382416,-0.09003965556621552,0.637892484664917,0.3134748041629791,-0.08579841256141663,0.6122167706489563,0.27779507637023926,-0.08027031272649765,0.6351221799850464,0.49940741062164307,-0.05004054307937622,0.651199996471405,0.39700987935066223,-0.06502950191497803,0.631595253944397,0.3455404043197632,-0.06406157463788986,0.6096097826957703,0.32090336084365845,-0.06090677157044411
19
+ 0.5767977237701416,0.649777352809906,-2.883555794142012e-07,0.5539013147354126,0.5687926411628723,-0.04516927897930145,0.5856912136077881,0.48216712474823,-0.07044592499732971,0.628617525100708,0.414289653301239,-0.08150508999824524,0.6579925417900085,0.37056881189346313,-0.09051188826560974,0.6407084465026855,0.5992292761802673,-0.12162675708532333,0.6731846928596497,0.479197233915329,-0.1526603400707245,0.6734686493873596,0.4091394245624542,-0.161701038479805,0.662934422492981,0.35045257210731506,-0.1652640849351883,0.6795936822891235,0.6095730066299438,-0.10568750649690628,0.7227005958557129,0.4686736464500427,-0.1398390531539917,0.7065765857696533,0.3901825249195099,-0.14405947923660278,0.678297758102417,0.3376324772834778,-0.1442793756723404,0.7049290537834167,0.6020029783248901,-0.08653374761343002,0.7333202362060547,0.4689580798149109,-0.11297524720430374,0.7121351361274719,0.39770030975341797,-0.113211989402771,0.6866752505302429,0.3513168394565582,-0.10987198352813721,0.7154754400253296,0.578449547290802,-0.06863382458686829,0.7281584143638611,0.4751708507537842,-0.08557690680027008,0.7085829377174377,0.4153703451156616,-0.08579346537590027,0.6865391135215759,0.3798317611217499,-0.08425703644752502
20
+ 0.5828705430030823,0.7156499028205872,-1.7727450085658347e-07,0.5507862567901611,0.6565507650375366,-0.058092668652534485,0.5771996974945068,0.5749286413192749,-0.08844321966171265,0.62198406457901,0.5051500201225281,-0.10126518458127975,0.6521580815315247,0.45178285241127014,-0.11097492277622223,0.6353381276130676,0.6818386316299438,-0.13698403537273407,0.6718742251396179,0.5630963444709778,-0.1713019758462906,0.6708869338035583,0.4882965385913849,-0.17981085181236267,0.6620142459869385,0.4280804395675659,-0.1828988939523697,0.6724593043327332,0.6895265579223633,-0.11554713547229767,0.7156866192817688,0.5546024441719055,-0.14937724173069,0.700568437576294,0.4758530259132385,-0.14905333518981934,0.6790661811828613,0.42426490783691406,-0.14663814008235931,0.6954092979431152,0.6795896887779236,-0.09260933846235275,0.7270439267158508,0.5518278479576111,-0.12122982740402222,0.707763671875,0.4835944175720215,-0.11825161427259445,0.6881471276283264,0.43944430351257324,-0.11249349266290665,0.7071447372436523,0.656492292881012,-0.07206642627716064,0.7260047793388367,0.5570877194404602,-0.09444160014390945,0.7104814052581787,0.49681076407432556,-0.09607036411762238,0.6940818428993225,0.46076640486717224,-0.09450098872184753
21
+ 0.5574567914009094,0.671585738658905,-4.836654170503607e-07,0.5680676698684692,0.6136930584907532,-0.05768966302275658,0.609154999256134,0.5635666251182556,-0.0847632884979248,0.6563680768013,0.5113511085510254,-0.0975029245018959,0.6855010390281677,0.4602400064468384,-0.10724750906229019,0.681938648223877,0.6654013991355896,-0.08179432898759842,0.7174549698829651,0.560019850730896,-0.10376409441232681,0.7129672765731812,0.49344101548194885,-0.11412600427865982,0.7049439549446106,0.443250834941864,-0.11881360411643982,0.7056292295455933,0.6784937381744385,-0.054001353681087494,0.741140604019165,0.5655992031097412,-0.07676585018634796,0.7270601391792297,0.496612012386322,-0.08455205708742142,0.7095864415168762,0.44838231801986694,-0.08868233859539032,0.7145882844924927,0.6738651990890503,-0.027102205902338028,0.7399608492851257,0.5718796253204346,-0.047047726809978485,0.7256494164466858,0.5140011310577393,-0.05484727770090103,0.7091236114501953,0.4734691381454468,-0.05848835036158562,0.7122160196304321,0.6592172384262085,-0.0033377811778336763,0.7262998223304749,0.5855246186256409,-0.02311985194683075,0.7151010632514954,0.5402733683586121,-0.03236442804336548,0.7037466764450073,0.5067522525787354,-0.035809531807899475
22
+ 0.5551547408103943,0.6526385545730591,-5.415551527221396e-07,0.5706349015235901,0.5856581330299377,-0.04425536096096039,0.6149824857711792,0.5294676423072815,-0.06331295520067215,0.6579466462135315,0.47461649775505066,-0.06999549269676208,0.681649923324585,0.4258567690849304,-0.07377031445503235,0.6781057715415955,0.6275002956390381,-0.07229428738355637,0.7152793407440186,0.5246686339378357,-0.08537774533033371,0.7115007638931274,0.4631963074207306,-0.08709577471017838,0.7027216553688049,0.41506868600845337,-0.08640703558921814,0.7000890374183655,0.6491617560386658,-0.04858548939228058,0.7362552881240845,0.5310470461845398,-0.06404528021812439,0.7198846340179443,0.4663274884223938,-0.06654784083366394,0.6994050741195679,0.4213407635688782,-0.06772907078266144,0.7079415321350098,0.6545839905738831,-0.023975489661097527,0.7305957078933716,0.549835741519928,-0.034781139343976974,0.7129403352737427,0.4998510479927063,-0.03681886941194534,0.6946889162063599,0.4662231206893921,-0.03832564502954483,0.7047785520553589,0.6471765041351318,-0.0017479897942394018,0.7167310118675232,0.5728099942207336,-0.014403198845684528,0.7034174799919128,0.5316596627235413,-0.020004617050290108,0.691093921661377,0.5020896792411804,-0.022151801735162735
23
+ 0.5609243512153625,0.5857018232345581,-4.1893326852004975e-07,0.5612284541130066,0.49697959423065186,-0.025226250290870667,0.6009610295295715,0.4248424470424652,-0.03861071541905403,0.6368207335472107,0.36607083678245544,-0.04442715272307396,0.6596929430961609,0.32795047760009766,-0.04857614263892174,0.6752243041992188,0.5138420462608337,-0.062193192541599274,0.6947490572929382,0.40174734592437744,-0.07892720401287079,0.6820873618125916,0.34508490562438965,-0.0843842402100563,0.6673616170883179,0.3015443980693817,-0.0861956998705864,0.6957584023475647,0.5257138013839722,-0.051875337958335876,0.7194241285324097,0.3975277245044708,-0.072867751121521,0.6986498832702637,0.3360923230648041,-0.07793878018856049,0.6720408201217651,0.29883894324302673,-0.07982867956161499,0.7021268010139465,0.5247920751571655,-0.03957003727555275,0.7232670783996582,0.4088831841945648,-0.054266154766082764,0.7027096748352051,0.3471353054046631,-0.055269502103328705,0.6771639585494995,0.31004759669303894,-0.05364753678441048,0.6952088475227356,0.5102041959762573,-0.02816799283027649,0.7083088755607605,0.42401474714279175,-0.0358688086271286,0.6960829496383667,0.3677214980125427,-0.036525826901197433,0.6780508160591125,0.33149534463882446,-0.035910286009311676
24
+ 0.5229718089103699,0.5625940561294556,-4.191055893443263e-07,0.5127767324447632,0.4870692193508148,-0.03189514949917793,0.5298056602478027,0.40996402502059937,-0.05038972944021225,0.5567691326141357,0.34216800332069397,-0.058538541197776794,0.5707060098648071,0.29008960723876953,-0.06423130631446838,0.5931185483932495,0.4714244604110718,-0.07969929277896881,0.60915207862854,0.3502376675605774,-0.09819995611906052,0.596102774143219,0.2911185920238495,-0.10032514482736588,0.5779855251312256,0.2512403726577759,-0.09852705895900726,0.6266023516654968,0.48767226934432983,-0.06518864631652832,0.646297812461853,0.3530646562576294,-0.08508715778589249,0.6284633874893188,0.291002094745636,-0.08415615558624268,0.6055670976638794,0.25180330872535706,-0.08197367936372757,0.6424787044525146,0.49419471621513367,-0.04811656475067139,0.6492807865142822,0.3774028420448303,-0.06296279281377792,0.6284615993499756,0.3293619751930237,-0.05823163315653801,0.606091320514679,0.3020499646663666,-0.053478896617889404,0.6444789171218872,0.4926890730857849,-0.032083116471767426,0.6433764696121216,0.4070086181163788,-0.04281698912382126,0.6250684857368469,0.36993104219436646,-0.04050924628973007,0.6072368621826172,0.3488433063030243,-0.037168554961681366
25
+ 0.4372405409812927,0.5869702100753784,-2.970431580706645e-07,0.43418383598327637,0.5018911361694336,-0.029882533475756645,0.4689334034919739,0.42770248651504517,-0.04502498731017113,0.5112695097923279,0.3775445818901062,-0.04990183934569359,0.5397324562072754,0.34460365772247314,-0.05272433161735535,0.507599413394928,0.5119627118110657,-0.08399706333875656,0.5493560433387756,0.3898758292198181,-0.10216895490884781,0.5591245889663696,0.32506275177001953,-0.10359807312488556,0.5628108382225037,0.27870771288871765,-0.10179883241653442,0.5406407713890076,0.5434029698371887,-0.07107233256101608,0.5892826318740845,0.4122646749019623,-0.09295058995485306,0.5917357206344604,0.33958327770233154,-0.09023936837911606,0.5833126306533813,0.2910130023956299,-0.08536724746227264,0.5593810677528381,0.5590817332267761,-0.05516621470451355,0.5941835045814514,0.4429776966571808,-0.07108265161514282,0.5878686904907227,0.3855031728744507,-0.06412694603204727,0.5756394863128662,0.3535025417804718,-0.055851373821496964,0.5657241940498352,0.5594332814216614,-0.040190570056438446,0.5887977480888367,0.4722574055194855,-0.049799367785453796,0.5822937488555908,0.4244323968887329,-0.04535451903939247,0.5702891945838928,0.3994635045528412,-0.03957552835345268
26
+ 0.30916106700897217,0.5298857092857361,8.89309319518361e-07,0.30478644371032715,0.4369340240955353,-0.011933890171349049,0.34155794978141785,0.3623047173023224,-0.03546843305230141,0.4024169147014618,0.3300207555294037,-0.05399755388498306,0.4477388262748718,0.3188118040561676,-0.07259330153465271,0.31135445833206177,0.34196382761001587,-0.08803442120552063,0.41091012954711914,0.28499066829681396,-0.11985527724027634,0.47234493494033813,0.2686402201652527,-0.13427257537841797,0.5155591368675232,0.26170241832733154,-0.1400371789932251,0.3296162784099579,0.4092155992984772,-0.09358382225036621,0.4330509603023529,0.34102264046669006,-0.1236274316906929,0.4955693185329437,0.308724045753479,-0.12913905084133148,0.5351383090019226,0.2934112548828125,-0.13211916387081146,0.35889631509780884,0.46697670221328735,-0.09526830166578293,0.4551253020763397,0.3937895894050598,-0.11335074156522751,0.5058688521385193,0.3483295142650604,-0.1116531565785408,0.5338674783706665,0.32210952043533325,-0.10948173701763153,0.3921101987361908,0.5048229098320007,-0.09670132398605347,0.459429532289505,0.4315899610519409,-0.10192190110683441,0.4860386550426483,0.38886356353759766,-0.09509757161140442,0.5017914772033691,0.36240482330322266,-0.08983288705348969
27
+ 0.28582310676574707,0.44358766078948975,6.981828164498438e-07,0.3147532343864441,0.3617432117462158,-0.007582020480185747,0.3644056022167206,0.30061689019203186,-0.02957291528582573,0.4233108460903168,0.28637614846229553,-0.05114394426345825,0.4702886939048767,0.303708553314209,-0.07328864187002182,0.3484029173851013,0.22694310545921326,-0.06540497392416,0.4493081271648407,0.24194124341011047,-0.10503251105546951,0.5034286975860596,0.27805525064468384,-0.1286683827638626,0.5380755662918091,0.30751675367355347,-0.14178097248077393,0.33752650022506714,0.27453872561454773,-0.0788634717464447,0.44907376170158386,0.28549182415008545,-0.11528827250003815,0.5093284845352173,0.3144916296005249,-0.12702496349811554,0.5495261549949646,0.34168002009391785,-0.133795365691185,0.3384156823158264,0.33588528633117676,-0.09112358838319778,0.44849061965942383,0.3479841947555542,-0.11944940686225891,0.5053187012672424,0.3643512427806854,-0.12261238694190979,0.5423660278320312,0.379740446805954,-0.12174158543348312,0.35029491782188416,0.3985775411128998,-0.10360492020845413,0.438983678817749,0.3960455656051636,-0.11636517196893692,0.48115938901901245,0.3973236382007599,-0.11331793665885925,0.5123332738876343,0.39840221405029297,-0.10992295295000076
28
+ 0.30929964780807495,0.4007888734340668,8.37801792386017e-07,0.38514482975006104,0.38179099559783936,-0.024348502978682518,0.4367832839488983,0.3436296880245209,-0.04896308854222298,0.47551429271698,0.32200881838798523,-0.07201921194791794,0.5007015466690063,0.311893105506897,-0.0923367440700531,0.393338143825531,0.18796992301940918,-0.053321655839681625,0.46793580055236816,0.23521369695663452,-0.09637533873319626,0.5053738951683044,0.2921014726161957,-0.1257500946521759,0.5280449390411377,0.34095731377601624,-0.14319215714931488,0.3663642406463623,0.20258304476737976,-0.05972837656736374,0.46019282937049866,0.2514210641384125,-0.10423224419355392,0.5045502185821533,0.3111613988876343,-0.12218844145536423,0.5331324338912964,0.360990971326828,-0.13054610788822174,0.3497452139854431,0.24507108330726624,-0.06864733248949051,0.44192954897880554,0.3053135275840759,-0.1074070855975151,0.4887293875217438,0.35621392726898193,-0.11304255574941635,0.5196093320846558,0.3931652009487152,-0.11111830919981003,0.34268537163734436,0.30270832777023315,-0.07968609780073166,0.42054957151412964,0.3540917634963989,-0.10264067351818085,0.46162474155426025,0.38215798139572144,-0.10446420311927795,0.4918811023235321,0.40055960416793823,-0.10262798517942429
29
+ 0.27245765924453735,0.3175360858440399,3.428574189001665e-07,0.3483425974845886,0.3555122911930084,-0.007127085700631142,0.4067767858505249,0.36662155389785767,-0.02421780675649643,0.4459652900695801,0.38356292247772217,-0.04288608580827713,0.4787585437297821,0.4038279056549072,-0.06047486886382103,0.43147027492523193,0.20760053396224976,-0.0284886471927166,0.48141101002693176,0.3117638826370239,-0.06247352808713913,0.4954170882701874,0.3901689648628235,-0.0847831666469574,0.49816420674324036,0.4498695731163025,-0.09734395891427994,0.406991183757782,0.20143690705299377,-0.04195702448487282,0.4722886085510254,0.31142982840538025,-0.07665571570396423,0.4848109781742096,0.39454376697540283,-0.09216849505901337,0.48718470335006714,0.4555366039276123,-0.09889928996562958,0.3764308989048004,0.22345992922782898,-0.05639307200908661,0.4368652403354645,0.33180755376815796,-0.09129710495471954,0.4546582102775574,0.4097074270248413,-0.09972324222326279,0.4632132649421692,0.4637487530708313,-0.09902322292327881,0.34666329622268677,0.26552292704582214,-0.07063159346580505,0.3994975984096527,0.35107895731925964,-0.09445610642433167,0.4230749309062958,0.40857431292533875,-0.09741439670324326,0.43901526927948,0.4510909914970398,-0.0949440449476242
30
+ 0.28508085012435913,0.32690295577049255,5.130155500410183e-07,0.3538060188293457,0.37327641248703003,-0.008235585875809193,0.40843668580055237,0.39339637756347656,-0.025692464783787727,0.44651585817337036,0.4180854260921478,-0.04397386312484741,0.47714394330978394,0.4429766833782196,-0.061749424785375595,0.44875648617744446,0.25477874279022217,-0.038614436984062195,0.48559829592704773,0.35957688093185425,-0.06908918917179108,0.4957529604434967,0.43336573243141174,-0.08795364946126938,0.4976404309272766,0.48752686381340027,-0.09956246614456177,0.4226507842540741,0.25229358673095703,-0.05139731243252754,0.475389301776886,0.3683880865573883,-0.08396165817975998,0.4851533770561218,0.4454652965068817,-0.09780354052782059,0.48638787865638733,0.5029860734939575,-0.10519618541002274,0.39016208052635193,0.27192601561546326,-0.06428499519824982,0.43970787525177,0.3857881426811218,-0.09581942111253738,0.4525327980518341,0.45893195271492004,-0.10300528258085251,0.4571605920791626,0.5109919309616089,-0.10350802540779114,0.3575478792190552,0.30817627906799316,-0.07724229246377945,0.40131476521492004,0.39817172288894653,-0.09981272369623184,0.4196874499320984,0.45472416281700134,-0.10359552502632141,0.431643009185791,0.49850863218307495,-0.10288364440202713
31
+ 0.28879204392433167,0.34375038743019104,5.821949002893234e-07,0.34798580408096313,0.370760977268219,-0.010049224831163883,0.4072781801223755,0.39529457688331604,-0.029074527323246002,0.4457455575466156,0.43053457140922546,-0.0469970740377903,0.468478798866272,0.4711903929710388,-0.0644528865814209,0.4573821723461151,0.311958372592926,-0.05150493606925011,0.48228949308395386,0.4217381775379181,-0.08327501267194748,0.4828546643257141,0.496328204870224,-0.1005251333117485,0.4766028821468353,0.5467449426651001,-0.11058133095502853,0.42839664220809937,0.31369590759277344,-0.06300899386405945,0.46857205033302307,0.4351640045642853,-0.09672007709741592,0.47073495388031006,0.516024649143219,-0.10881505161523819,0.46654650568962097,0.5752652287483215,-0.11502645164728165,0.39208725094795227,0.33249789476394653,-0.07391458004713058,0.4267529845237732,0.45366936922073364,-0.10333151370286942,0.4348981976509094,0.5288609266281128,-0.10823725163936615,0.4363749325275421,0.5800411701202393,-0.10783121734857559,0.3547472655773163,0.36399412155151367,-0.0850525051355362,0.38997364044189453,0.45724400877952576,-0.10368447005748749,0.4037986099720001,0.5122153759002686,-0.10542850941419601,0.41256052255630493,0.5529991388320923,-0.10432541370391846
32
+ 0.28964918851852417,0.4232558012008667,5.257694510873989e-07,0.37482038140296936,0.42700520157814026,-0.003265677485615015,0.4304225444793701,0.404951274394989,-0.016534479334950447,0.4713926911354065,0.3964889645576477,-0.032214801758527756,0.5058605074882507,0.39345794916152954,-0.04683821648359299,0.4092697501182556,0.2419511079788208,-0.0198990348726511,0.4782792329788208,0.30129197239875793,-0.050499167293310165,0.5150481462478638,0.35762351751327515,-0.07330352067947388,0.5377551317214966,0.40755218267440796,-0.08807802200317383,0.3879300057888031,0.24235054850578308,-0.03564978763461113,0.47775113582611084,0.3028486967086792,-0.07049273699522018,0.5156980156898499,0.36838197708129883,-0.09004583209753036,0.5382814407348633,0.422579824924469,-0.09960335493087769,0.36922603845596313,0.2720908522605896,-0.05195944756269455,0.4538319408893585,0.3319401741027832,-0.08590639382600784,0.4934867322444916,0.3943256735801697,-0.09624381363391876,0.5195583701133728,0.4388529062271118,-0.09773848205804825,0.35502082109451294,0.3228287100791931,-0.06807413697242737,0.425473690032959,0.3775474727153778,-0.09289796650409698,0.462245911359787,0.41963666677474976,-0.09735871106386185,0.4903169572353363,0.4501621425151825,-0.0962059423327446
33
+ 0.3083784580230713,0.5094566345214844,4.3393794157964294e-07,0.3820447325706482,0.4554223120212555,0.0007414945284835994,0.424321711063385,0.39608392119407654,-0.01033690758049488,0.4625355005264282,0.3602616488933563,-0.02583741769194603,0.4965949058532715,0.3375072777271271,-0.03969307616353035,0.3413829207420349,0.2723754048347473,-0.003379233879968524,0.4237081706523895,0.2609569728374481,-0.03287259116768837,0.47267746925354004,0.28682243824005127,-0.05750362202525139,0.5092747211456299,0.31619617342948914,-0.07339773327112198,0.3239658772945404,0.27895641326904297,-0.02097449265420437,0.42113423347473145,0.2518102526664734,-0.053791724145412445,0.47437506914138794,0.28229308128356934,-0.07326459884643555,0.5127458572387695,0.3161551058292389,-0.08180435746908188,0.32020384073257446,0.3076116442680359,-0.040145229548215866,0.4113641381263733,0.2880982756614685,-0.07118884474039078,0.46713972091674805,0.3118003010749817,-0.08156892657279968,0.5063453316688538,0.33206379413604736,-0.08288335055112839,0.3283681869506836,0.35082700848579407,-0.059385016560554504,0.40620526671409607,0.34344393014907837,-0.08082789927721024,0.44953030347824097,0.35802575945854187,-0.08401685953140259,0.4819723963737488,0.37003573775291443,-0.08211379498243332
34
+ 0.3127431869506836,0.49428385496139526,3.114417950200732e-07,0.3490222096443176,0.41691920161247253,0.0036560536827892065,0.3613739609718323,0.33482426404953003,-0.0028063487261533737,0.38126495480537415,0.27841916680336,-0.015596888959407806,0.4060048758983612,0.2332984060049057,-0.02714509144425392,0.2778557538986206,0.26891452074050903,0.013530857861042023,0.32064637541770935,0.20812804996967316,-0.012481652200222015,0.3675326108932495,0.19746455550193787,-0.036017581820487976,0.4075990915298462,0.19935496151447296,-0.05077197030186653,0.25893571972846985,0.27678370475769043,-0.003633995307609439,0.3113870322704315,0.19581307470798492,-0.032626502215862274,0.36553242802619934,0.19025564193725586,-0.05281544476747513,0.4092026650905609,0.1996278464794159,-0.062172047793865204,0.2514130175113678,0.2943000793457031,-0.02339056506752968,0.3062998056411743,0.22184258699417114,-0.05020923912525177,0.36068445444107056,0.21340888738632202,-0.06081707775592804,0.40274766087532043,0.2180212438106537,-0.06284035742282867,0.25571346282958984,0.31955432891845703,-0.04373784363269806,0.3080180883407593,0.2690858244895935,-0.06320027261972427,0.34937548637390137,0.2542259991168976,-0.06867075711488724,0.38358569145202637,0.24605900049209595,-0.06880541145801544
35
+ 0.2675536870956421,0.5177403688430786,4.753800908474659e-07,0.2832978665828705,0.4228874146938324,0.00824370514601469,0.2618749141693115,0.3417752981185913,0.009840886108577251,0.2554255723953247,0.2804079055786133,0.004169848747551441,0.2532118558883667,0.22493378818035126,-0.00040200885268859565,0.16228674352169037,0.3512791693210602,0.033065423369407654,0.180048406124115,0.2726058065891266,0.017055537551641464,0.21074064075946808,0.22220489382743835,-0.0023053314071148634,0.24369236826896667,0.18838968873023987,-0.015519958920776844,0.1474420577287674,0.3619804382324219,0.016625458374619484,0.17099931836128235,0.2598132789134979,-0.002149636158719659,0.20861704647541046,0.20879340171813965,-0.021490929648280144,0.24679723381996155,0.17734241485595703,-0.03213223069906235,0.14627337455749512,0.37313953042030334,-0.002690063789486885,0.1722535789012909,0.2709096074104309,-0.021749399602413177,0.2127961814403534,0.22347703576087952,-0.033110931515693665,0.24962647259235382,0.1953115463256836,-0.03747783973813057,0.15728086233139038,0.3808096945285797,-0.022519340738654137,0.19014562666416168,0.30023735761642456,-0.037087373435497284,0.22197382152080536,0.2645077705383301,-0.0411708690226078,0.2497405856847763,0.24026979506015778,-0.04118386283516884
36
+ 0.23781557381153107,0.5628103017807007,3.8504211374856823e-07,0.22844558954238892,0.44900915026664734,0.017634809017181396,0.19216451048851013,0.3750379979610443,0.021135637536644936,0.17704854905605316,0.3148042559623718,0.015665944665670395,0.166910320520401,0.2655618190765381,0.010824685916304588,0.08376352488994598,0.4317927658557892,0.03543464094400406,0.09111909568309784,0.33579128980636597,0.017820244655013084,0.11810261011123657,0.27746912837028503,-0.0038979733362793922,0.1465955376625061,0.23387488722801208,-0.019548600539565086,0.07547561079263687,0.4481182098388672,0.012168695218861103,0.08297345042228699,0.32614827156066895,-0.011335241608321667,0.11838150024414062,0.2649141252040863,-0.03455912694334984,0.15443353354930878,0.22547650337219238,-0.04699287191033363,0.08349797129631042,0.4583623707294464,-0.012428638525307178,0.09167442470788956,0.3406559228897095,-0.034203384071588516,0.12895482778549194,0.28059497475624084,-0.046805042773485184,0.16146321594715118,0.24393795430660248,-0.051273033022880554,0.1047578677535057,0.4596271216869354,-0.03656981140375137,0.11894133687019348,0.36387917399406433,-0.05297763645648956,0.1446557492017746,0.3166922628879547,-0.05705948919057846,0.16707199811935425,0.28361231088638306,-0.05669022351503372
37
+ 0.24116620421409607,0.5250730514526367,3.0179489840520546e-07,0.22153401374816895,0.40177351236343384,0.022428514435887337,0.18317604064941406,0.3331967294216156,0.024506881833076477,0.1652819812297821,0.2712622284889221,0.015015075914561749,0.15161851048469543,0.21252375841140747,0.0062764366157352924,0.0770869255065918,0.3940020799636841,0.04431827738881111,0.07500909268856049,0.2950668931007385,0.025825196877121925,0.09982150048017502,0.23310770094394684,0.0031669149175286293,0.12616968154907227,0.18882641196250916,-0.012558619491755962,0.06964561343193054,0.4105015695095062,0.017152514308691025,0.0644870474934578,0.28622397780418396,-0.007228577043861151,0.09775614738464355,0.22133253514766693,-0.030631523579359055,0.1353083997964859,0.18020668625831604,-0.04238394275307655,0.0774240791797638,0.41872498393058777,-0.011773604899644852,0.07507585734128952,0.29818594455718994,-0.03374548256397247,0.10954307019710541,0.231370210647583,-0.04535065218806267,0.14243772625923157,0.19013556838035583,-0.04861591383814812,0.09889543056488037,0.41558945178985596,-0.040135812014341354,0.10678604990243912,0.3147349953651428,-0.0552801713347435,0.13139653205871582,0.2621568739414215,-0.05769278481602669,0.1545039713382721,0.22616049647331238,-0.05589088425040245
38
+ 0.22508254647254944,0.4477333426475525,2.736209410159063e-07,0.24420982599258423,0.3377496004104614,0.01200844720005989,0.22984477877616882,0.2499624490737915,0.010038943961262703,0.23390315473079681,0.18084114789962769,-0.0011077063390985131,0.2411864697933197,0.12366290390491486,-0.010779710486531258,0.11195390671491623,0.24484889209270477,0.028802132233977318,0.13567358255386353,0.15312203764915466,0.0036276206374168396,0.17825698852539062,0.11107581853866577,-0.022163277491927147,0.2195647954940796,0.08854131400585175,-0.038147490471601486,0.10124752670526505,0.25580963492393494,0.00708997156471014,0.13103854656219482,0.137420654296875,-0.02297494374215603,0.18279646337032318,0.10036683082580566,-0.04803653433918953,0.23193809390068054,0.08798399567604065,-0.05908213183283806,0.10653043538331985,0.26705288887023926,-0.01667347177863121,0.1408376842737198,0.16131150722503662,-0.04242917522788048,0.19173943996429443,0.12146472930908203,-0.056872133165597916,0.23528248071670532,0.1043236255645752,-0.060400545597076416,0.12638816237449646,0.27565908432006836,-0.04061087965965271,0.16622129082679749,0.19334062933921814,-0.05625368654727936,0.2044539898633957,0.16007255017757416,-0.060468416661024094,0.23814372718334198,0.14005637168884277,-0.059308819472789764
39
+ 0.2578508257865906,0.506514310836792,3.644053379048273e-07,0.24239325523376465,0.4465932250022888,-0.02135968953371048,0.23269447684288025,0.33724284172058105,-0.041563913226127625,0.2353217899799347,0.24534624814987183,-0.0544765330851078,0.23180019855499268,0.1815367341041565,-0.06599359959363937,0.18899349868297577,0.39149269461631775,-0.089863620698452,0.2035539299249649,0.26306042075157166,-0.11181018501520157,0.22133663296699524,0.2031765580177307,-0.1136796772480011,0.2385682314634323,0.161896213889122,-0.11133099347352982,0.20771346986293793,0.4151991009712219,-0.08687812089920044,0.2172534018754959,0.2783713638782501,-0.10715145617723465,0.23839135468006134,0.20567068457603455,-0.10521676391363144,0.2571081221103668,0.16235500574111938,-0.10317344218492508,0.23968057334423065,0.42479440569877625,-0.08028991520404816,0.24851764738559723,0.2842681109905243,-0.09393008053302765,0.2558344602584839,0.21619364619255066,-0.08718330413103104,0.26182031631469727,0.17465829849243164,-0.08214690536260605,0.2758978605270386,0.4231182634830475,-0.07384016364812851,0.2692702114582062,0.31169506907463074,-0.07967498898506165,0.26395002007484436,0.25384649634361267,-0.07354655861854553,0.2621149718761444,0.21559514105319977,-0.06888168305158615
40
+ 0.3216898739337921,0.527411937713623,8.412411602876091e-07,0.26742756366729736,0.4738912284374237,-0.01898394711315632,0.2534811198711395,0.388098806142807,-0.04614782705903053,0.2797793745994568,0.31129342317581177,-0.06663219630718231,0.3054838478565216,0.2704924941062927,-0.08787963539361954,0.23410731554031372,0.4119623899459839,-0.098831407725811,0.2688881456851959,0.27512386441230774,-0.1280904859304428,0.29171061515808105,0.2090468555688858,-0.1384315937757492,0.30829867720603943,0.16225335001945496,-0.14222511649131775,0.2854064404964447,0.44234615564346313,-0.10101761668920517,0.3124758303165436,0.29945671558380127,-0.13113495707511902,0.3249419629573822,0.2219596654176712,-0.13460391759872437,0.334824800491333,0.17468085885047913,-0.1363595426082611,0.334495484828949,0.45403021574020386,-0.09951426088809967,0.3565983176231384,0.31324639916419983,-0.1178097128868103,0.35708555579185486,0.2263192981481552,-0.11704595386981964,0.35665053129196167,0.17251500487327576,-0.115821972489357,0.37397971749305725,0.44695401191711426,-0.09813341498374939,0.37447649240493774,0.33334416151046753,-0.10345207899808884,0.362787663936615,0.27466291189193726,-0.09846071153879166,0.35460031032562256,0.237274631857872,-0.09561367332935333
41
+ 0.3372335731983185,0.5460510849952698,4.042497323553107e-07,0.30212703347206116,0.4666813015937805,-0.014642479829490185,0.31844261288642883,0.3824595510959625,-0.03015344776213169,0.3579511046409607,0.32890504598617554,-0.03953073173761368,0.3866240382194519,0.2984815835952759,-0.048696424812078476,0.3335301876068115,0.4083253741264343,-0.07529964298009872,0.3643854260444641,0.2942941188812256,-0.09572211652994156,0.3775409460067749,0.2278793901205063,-0.099276602268219,0.3832035958766937,0.17929427325725555,-0.09834044426679611,0.38012930750846863,0.4398297965526581,-0.07575816661119461,0.4112779498100281,0.31030571460723877,-0.10016941279172897,0.41262200474739075,0.23907729983329773,-0.10103336721658707,0.4056859016418457,0.1898478865623474,-0.09802740812301636,0.4158342182636261,0.4597691297531128,-0.07221058011054993,0.43972182273864746,0.3356974720954895,-0.08876136690378189,0.4333938658237457,0.26439356803894043,-0.08415475487709045,0.42113232612609863,0.21638643741607666,-0.07720893621444702,0.4375874996185303,0.46763506531715393,-0.0682097002863884,0.4484158158302307,0.3665659725666046,-0.07361865043640137,0.4360882639884949,0.3118024468421936,-0.0643170103430748,0.42263704538345337,0.2782345414161682,-0.05539870634675026
42
+ 0.4217491149902344,0.5947868824005127,-2.6505102823648485e-07,0.40414419770240784,0.512811005115509,-0.02062133513391018,0.4236926734447479,0.4257124066352844,-0.03047177568078041,0.45432400703430176,0.3619822859764099,-0.03328393027186394,0.47397667169570923,0.31333088874816895,-0.03379141911864281,0.4772453010082245,0.4724160432815552,-0.05442878231406212,0.5026676654815674,0.3587305545806885,-0.06772293895483017,0.49601706862449646,0.30399444699287415,-0.06894891709089279,0.48375532031059265,0.2705274224281311,-0.06643649190664291,0.5099024176597595,0.4963730275630951,-0.04494008794426918,0.5377181768417358,0.37634676694869995,-0.05786091834306717,0.5254822373390198,0.3155485987663269,-0.05576150864362717,0.5055001378059387,0.2803175151348114,-0.052440058439970016,0.5266534090042114,0.510352611541748,-0.03383094072341919,0.5491907596588135,0.40483060479164124,-0.042929958552122116,0.5350577235221863,0.3498506546020508,-0.03920641914010048,0.5160008668899536,0.31785497069358826,-0.03521362692117691,0.5310378670692444,0.5152841806411743,-0.023129642009735107,0.5436035394668579,0.43271228671073914,-0.029053620994091034,0.5317200422286987,0.3889492452144623,-0.026215676218271255,0.5178486108779907,0.3641175925731659,-0.022688541561365128
43
+ 0.48368704319000244,0.6580032706260681,-4.5349716515374894e-07,0.48925113677978516,0.588537871837616,-0.044480737298727036,0.5180707573890686,0.5193277597427368,-0.06691211462020874,0.5526567101478577,0.4535488486289978,-0.07775842398405075,0.5737912058830261,0.402715265750885,-0.08416459709405899,0.5969424843788147,0.6006143093109131,-0.07573022693395615,0.62248295545578,0.4839756488800049,-0.09468840062618256,0.6084248423576355,0.42232072353363037,-0.09912356734275818,0.5897654891014099,0.37993648648262024,-0.09859561175107956,0.6188700199127197,0.6193241477012634,-0.053848996758461,0.6427892446517944,0.4921375811100006,-0.07256559282541275,0.6238172054290771,0.4273054003715515,-0.07399027794599533,0.5978882908821106,0.3858187198638916,-0.0736955851316452,0.624496579170227,0.6222368478775024,-0.03184005245566368,0.642536461353302,0.5114725828170776,-0.04779157415032387,0.6269553899765015,0.452229768037796,-0.04943905025720596,0.6044317483901978,0.41237345337867737,-0.04883963242173195,0.6188939809799194,0.615349531173706,-0.011886528693139553,0.6327576041221619,0.5341871380805969,-0.02711135521531105,0.62247633934021,0.4851767420768738,-0.031855594366788864,0.6078593730926514,0.4491646885871887,-0.03255264461040497
44
+ 0.6001323461532593,0.7057353258132935,-3.1204817219077086e-07,0.622887372970581,0.6450121998786926,-0.060737546533346176,0.6655228137969971,0.5766873955726624,-0.07836354523897171,0.6986903548240662,0.5068497657775879,-0.08127821236848831,0.7235044836997986,0.45736271142959595,-0.07980401068925858,0.7587836980819702,0.6635646820068359,-0.04518518224358559,0.7810678482055664,0.5556582808494568,-0.05240044742822647,0.7677152752876282,0.497516930103302,-0.06327022612094879,0.7499982118606567,0.4609478712081909,-0.070493683218956,0.7572541832923889,0.6523246765136719,-0.010131237097084522,0.7787724733352661,0.5462585091590881,-0.020718276500701904,0.7625657320022583,0.4925083816051483,-0.039734311401844025,0.7335709929466248,0.45519107580184937,-0.053044553846120834,0.74674391746521,0.6372374892234802,0.02204236574470997,0.762818455696106,0.5466033816337585,0.012727626599371433,0.7490478754043579,0.4997936189174652,-0.009034852497279644,0.7255893349647522,0.468255877494812,-0.02381119504570961,0.7345611453056335,0.6261367201805115,0.05068793147802353,0.7422963380813599,0.5561650395393372,0.03742465749382973,0.7296402454376221,0.5190126299858093,0.02000388316810131,0.7135229110717773,0.4934869408607483,0.009170095436275005
45
+ 0.5914543271064758,0.7244672179222107,-3.091176097314019e-07,0.6164118051528931,0.6783443689346313,-0.06035003811120987,0.6589676737785339,0.6172552108764648,-0.08164764940738678,0.6921439170837402,0.5499576330184937,-0.09028244763612747,0.7169986963272095,0.5013396739959717,-0.09465117007493973,0.7482247948646545,0.6977778077125549,-0.04447643458843231,0.7763820290565491,0.5946597456932068,-0.06350693106651306,0.7624069452285767,0.5324033498764038,-0.08392013609409332,0.7441808581352234,0.4894532561302185,-0.09577193111181259,0.7485323548316956,0.6801443696022034,-0.013975703157484531,0.7767019271850586,0.5870844125747681,-0.03381894528865814,0.7604678869247437,0.5327816605567932,-0.055240605026483536,0.7353530526161194,0.49542665481567383,-0.06792230159044266,0.7402259707450867,0.6602351069450378,0.012469001114368439,0.7649410367012024,0.5840034484863281,-0.002535895211622119,0.7521721124649048,0.5413119196891785,-0.019547712057828903,0.7308766841888428,0.5133098363876343,-0.02862752228975296,0.7280494570732117,0.6437565088272095,0.03455277159810066,0.7431781888008118,0.5875832438468933,0.021158337593078613,0.7354229688644409,0.5511329174041748,0.008848940022289753,0.7216902375221252,0.5254724025726318,0.0029366728849709034
46
+ 0.4779123067855835,0.6103600263595581,1.8401925672151265e-07,0.4291597008705139,0.5485866665840149,-0.030440643429756165,0.43264099955558777,0.4538542926311493,-0.050744932144880295,0.4678178131580353,0.38663455843925476,-0.05998453497886658,0.49624109268188477,0.3502258360385895,-0.06770391762256622,0.46891769766807556,0.5149387121200562,-0.09894236922264099,0.48979827761650085,0.3910074830055237,-0.1183515414595604,0.4909648597240448,0.3237377405166626,-0.11827629804611206,0.48787766695022583,0.27666205167770386,-0.11516163498163223,0.5169509053230286,0.5354860424995422,-0.08949168771505356,0.5391280651092529,0.39013195037841797,-0.11083141714334488,0.5274162292480469,0.31895267963409424,-0.10744921863079071,0.5113754272460938,0.27836763858795166,-0.10291153937578201,0.5512994527816772,0.5399408340454102,-0.0760672464966774,0.5656620860099792,0.40404564142227173,-0.09123747050762177,0.5451351404190063,0.33683767914772034,-0.08538340032100677,0.5231606364250183,0.3019733726978302,-0.07879665493965149,0.5696291327476501,0.5317439436912537,-0.06318007409572601,0.5721668004989624,0.4277350604534149,-0.07092856615781784,0.5509359240531921,0.3776758909225464,-0.06416255980730057,0.5310458540916443,0.3556135594844818,-0.057790372520685196
47
+ 0.4006163775920868,0.5571673512458801,1.2452126441075961e-07,0.44656968116760254,0.5022343397140503,-0.013905346393585205,0.46023720502853394,0.4060133695602417,-0.027364222332835197,0.43866002559661865,0.32688456773757935,-0.036502256989479065,0.4057125449180603,0.28073397278785706,-0.04692589119076729,0.46445441246032715,0.3977522850036621,-0.05904310196638107,0.43655362725257874,0.2882522940635681,-0.07992461323738098,0.4126213490962982,0.23361246287822723,-0.08795037120580673,0.39254164695739746,0.1945715844631195,-0.09193994849920273,0.43094706535339355,0.4096347689628601,-0.06166791543364525,0.4038776755332947,0.2936110496520996,-0.07862590253353119,0.3879515528678894,0.23706302046775818,-0.08093526214361191,0.3766906261444092,0.20120972394943237,-0.08294371515512466,0.39443695545196533,0.4260096251964569,-0.06240111589431763,0.3668757975101471,0.3277597427368164,-0.07589191198348999,0.3692864179611206,0.3068436086177826,-0.07058913260698318,0.37643858790397644,0.30080923438072205,-0.06658820062875748,0.35616105794906616,0.4462297558784485,-0.06353814899921417,0.34499025344848633,0.3912113308906555,-0.07397384941577911,0.35423994064331055,0.37893807888031006,-0.06977903842926025,0.3656553626060486,0.3756465017795563,-0.0656515583395958
48
+ 0.33292147517204285,0.6363669037818909,4.747997479626065e-07,0.2988834083080292,0.5712234377861023,-0.006146060768514872,0.2787177562713623,0.49221071600914,-0.02707316353917122,0.2933233380317688,0.42789366841316223,-0.047746989876031876,0.31932714581489563,0.3842008411884308,-0.06642798334360123,0.2327336221933365,0.49703583121299744,-0.0649920180439949,0.2638562321662903,0.3805883824825287,-0.0969606414437294,0.30712419748306274,0.34509605169296265,-0.10737519711256027,0.3403370678424835,0.33489903807640076,-0.10962104052305222,0.2538372874259949,0.5222146511077881,-0.07697998732328415,0.2760079801082611,0.3910512924194336,-0.11236068606376648,0.3214597702026367,0.33929216861724854,-0.11886624246835709,0.3550151288509369,0.32047945261001587,-0.1189214363694191,0.2916414141654968,0.5383055806159973,-0.08705806732177734,0.3135932683944702,0.41643062233924866,-0.11201269179582596,0.3483640253543854,0.35841602087020874,-0.11194993555545807,0.3704971373081207,0.32599276304244995,-0.10828457027673721,0.336858332157135,0.5427093505859375,-0.09680315107107162,0.3566684126853943,0.44061917066574097,-0.10832953453063965,0.37086623907089233,0.38887280225753784,-0.10478302091360092,0.3795340955257416,0.3551994860172272,-0.10029049962759018
49
+ 0.32949650287628174,0.6479324102401733,7.795180749781139e-07,0.34080109000205994,0.5644506812095642,-0.00998965185135603,0.3195406198501587,0.49270135164260864,-0.02280283533036709,0.31095778942108154,0.440745085477829,-0.037135329097509384,0.3106873035430908,0.39850670099258423,-0.049346666783094406,0.21376939117908478,0.5155765414237976,-0.02600509114563465,0.2329457402229309,0.43167442083358765,-0.05797383934259415,0.26828545331954956,0.3822263479232788,-0.07992328703403473,0.3031581938266754,0.3532336950302124,-0.09246515482664108,0.21453550457954407,0.5353966951370239,-0.03606053814291954,0.2350737303495407,0.43251582980155945,-0.06985880434513092,0.27916136384010315,0.37976086139678955,-0.08487620204687119,0.31850025057792664,0.3479192852973938,-0.09129679948091507,0.23655252158641815,0.5501675009727478,-0.04803907871246338,0.25768429040908813,0.4445880949497223,-0.07937450706958771,0.2960342466831207,0.393185019493103,-0.08474504202604294,0.3255797028541565,0.36113983392715454,-0.08292979747056961,0.27180105447769165,0.559513509273529,-0.06085740774869919,0.2993085980415344,0.4743589460849762,-0.07966838032007217,0.3216158449649811,0.4352034032344818,-0.0794796422123909,0.3368872404098511,0.408821165561676,-0.0761776715517044
50
+ 0.28233540058135986,0.5623341202735901,3.294244095286558e-07,0.2947440445423126,0.46839338541030884,0.012700636871159077,0.2764778137207031,0.39580994844436646,0.012076521292328835,0.27226027846336365,0.3394637107849121,0.003967310767620802,0.2719269394874573,0.29081299901008606,-0.003429197007790208,0.16643944382667542,0.40618249773979187,0.02699792943894863,0.19276279211044312,0.32299017906188965,0.008751610293984413,0.22606240212917328,0.2765812873840332,-0.01232596579939127,0.25970038771629333,0.24453610181808472,-0.02683425135910511,0.155933678150177,0.41795939207077026,0.007154674269258976,0.18555763363838196,0.3086822032928467,-0.015356461517512798,0.22625648975372314,0.26461976766586304,-0.036556046456098557,0.2662578523159027,0.23972824215888977,-0.04744534194469452,0.1608656644821167,0.42813241481781006,-0.01395241916179657,0.18968020379543304,0.32583457231521606,-0.03495689481496811,0.2304253876209259,0.27937257289886475,-0.04712213948369026,0.2650188207626343,0.25262221693992615,-0.05105793476104736,0.17940901219844818,0.43354347348213196,-0.03474503010511398,0.2110464721918106,0.3495040833950043,-0.049066923558712006,0.24076086282730103,0.3104417324066162,-0.0524204857647419,0.26603907346725464,0.28386157751083374,-0.05160875245928764
51
+ 0.2381119579076767,0.49687904119491577,4.315783712627308e-07,0.26395732164382935,0.4125475287437439,0.0011432423489168286,0.24618053436279297,0.32532328367233276,0.005511871539056301,0.23794025182724,0.2593972384929657,0.004540169611573219,0.23706428706645966,0.20164212584495544,0.004907279275357723,0.1988184005022049,0.31341466307640076,0.036365095525979996,0.2018423080444336,0.2593144178390503,0.023409191519021988,0.2210455983877182,0.21868140995502472,0.006334932986646891,0.24123790860176086,0.1858101189136505,-0.005462671164423227,0.17615900933742523,0.31600314378738403,0.02669522538781166,0.17864881455898285,0.24730369448661804,0.012936923652887344,0.20240284502506256,0.20183967053890228,-0.003164650173857808,0.23125584423542023,0.16299647092819214,-0.013002213090658188,0.15684153139591217,0.3290127217769623,0.01211436279118061,0.16193833947181702,0.2502971291542053,-0.0075446851551532745,0.19262059032917023,0.2040756195783615,-0.0212398748844862,0.22634252905845642,0.1686370074748993,-0.027614813297986984,0.14310255646705627,0.3460332453250885,-0.0031356127001345158,0.17099297046661377,0.276103675365448,-0.021801955997943878,0.20144212245941162,0.23696750402450562,-0.031464263796806335,0.23040379583835602,0.20163944363594055,-0.03604437783360481
52
+ 0.22919847071170807,0.4865249991416931,4.916960278933402e-07,0.2640124559402466,0.4283159375190735,-0.012624849565327168,0.2678280770778656,0.3414047360420227,-0.011688771657645702,0.2703513205051422,0.2715674042701721,-0.013301471248269081,0.28173521161079407,0.21279259026050568,-0.013532971031963825,0.24265147745609283,0.3242771029472351,0.03208717703819275,0.25289615988731384,0.2710806131362915,0.023739241063594818,0.26779940724372864,0.23659472167491913,0.010961312800645828,0.2818528413772583,0.20649407804012299,0.0017237778520211577,0.2215246707201004,0.3217436671257019,0.030689343810081482,0.2338511347770691,0.2603970468044281,0.02343558892607689,0.24994000792503357,0.22164598107337952,0.010609853081405163,0.2713567614555359,0.18714119493961334,0.001592458807863295,0.1996036022901535,0.32685497403144836,0.022933077067136765,0.21282725036144257,0.2602428197860718,0.009523157961666584,0.23467381298542023,0.22044065594673157,-0.0018959016306325793,0.26040253043174744,0.188083216547966,-0.00792425312101841,0.17815686762332916,0.33471646904945374,0.013203484937548637,0.20338718593120575,0.2795417904853821,0.0010097152553498745,0.22605851292610168,0.24896129965782166,-0.006064920220524073,0.2498958259820938,0.22200831770896912,-0.010080823674798012
53
+ 0.17684975266456604,0.45798802375793457,2.6178332745985244e-07,0.19049857556819916,0.43288809061050415,-0.05810706317424774,0.2128562033176422,0.36004912853240967,-0.07781011611223221,0.23086489737033844,0.2797648310661316,-0.08249853551387787,0.24744735658168793,0.21249105036258698,-0.08548523485660553,0.23665490746498108,0.39645153284072876,-0.08212307840585709,0.25802701711654663,0.30719512701034546,-0.10214721411466599,0.2633811831474304,0.2366276979446411,-0.11120579391717911,0.2613591253757477,0.18008063733577728,-0.1173991784453392,0.22273123264312744,0.3769568204879761,-0.05666305497288704,0.24190150201320648,0.2858544588088989,-0.07496140897274017,0.2428802251815796,0.21461963653564453,-0.08437314629554749,0.24025213718414307,0.16342446208000183,-0.09247132390737534,0.2060561329126358,0.35554447770118713,-0.033223386853933334,0.22345438599586487,0.2734954357147217,-0.05088275671005249,0.22727517783641815,0.2140984833240509,-0.06245041266083717,0.23089061677455902,0.16786974668502808,-0.07040898501873016,0.19008460640907288,0.33220481872558594,-0.012979432009160519,0.20511434972286224,0.2668307423591614,-0.03039010614156723,0.21231210231781006,0.22348420321941376,-0.04184588044881821,0.22013549506664276,0.18694917857646942,-0.05007034167647362
54
+ 0.19301265478134155,0.47869986295700073,3.6529107205751643e-07,0.24479036033153534,0.42480963468551636,-0.02115768752992153,0.26380109786987305,0.3475213646888733,-0.015888318419456482,0.266582727432251,0.27453306317329407,-0.009968043304979801,0.27488964796066284,0.21442872285842896,-0.002075240248814225,0.26683861017227173,0.34001046419143677,0.03817911073565483,0.28066956996917725,0.2860548496246338,0.04345978796482086,0.286798357963562,0.2440054714679718,0.04052392765879631,0.289156436920166,0.2097814530134201,0.03686688467860222,0.23996351659297943,0.32841435074806213,0.04505569487810135,0.2561761438846588,0.2709747552871704,0.05302374064922333,0.2654213309288025,0.230726957321167,0.048409875482320786,0.2772819995880127,0.19493931531906128,0.04408326745033264,0.2119518369436264,0.32554173469543457,0.044690124690532684,0.2287350445985794,0.2667926251888275,0.044079896062612534,0.24442090094089508,0.2297748625278473,0.03704535961151123,0.25977104902267456,0.19501158595085144,0.03239002823829651,0.18474780023097992,0.3263063132762909,0.04127306118607521,0.2057344913482666,0.27978840470314026,0.03820863366127014,0.22034083306789398,0.2504842281341553,0.034813277423381805,0.23647721111774445,0.22072137892246246,0.032284874469041824
55
+ 0.2520783841609955,0.5357081890106201,4.507867572556279e-07,0.2850246727466583,0.48299142718315125,-0.00893996749073267,0.2881993055343628,0.4083252251148224,-0.00910118781030178,0.28508877754211426,0.3505553603172302,-0.011960654519498348,0.2876392900943756,0.2993468642234802,-0.014038234017789364,0.25870612263679504,0.39142826199531555,0.02055422030389309,0.26694542169570923,0.34099265933036804,0.007422845810651779,0.28371137380599976,0.3065582513809204,-0.006629433482885361,0.30086034536361694,0.2789044976234436,-0.015917211771011353,0.23831333220005035,0.38622212409973145,0.01680351048707962,0.24712304770946503,0.325714647769928,0.005129056517034769,0.2682378590106964,0.28930360078811646,-0.00685702171176672,0.2939704954624176,0.26234889030456543,-0.014573431573808193,0.2176566869020462,0.3898718059062958,0.008159932680428028,0.2263839989900589,0.3213685154914856,-0.008672722615301609,0.2540438771247864,0.28856170177459717,-0.01888992451131344,0.28453928232192993,0.2669224739074707,-0.02345084771513939,0.19838866591453552,0.40042486786842346,-0.0017655063420534134,0.21977123618125916,0.3512372076511383,-0.01769091561436653,0.2466106414794922,0.32707569003105164,-0.025224877521395683,0.27334606647491455,0.31005948781967163,-0.02880847081542015
56
+ 0.3140891492366791,0.5271116495132446,2.631066138292226e-07,0.3131692707538605,0.4301183819770813,0.012068372219800949,0.28888291120529175,0.36908259987831116,0.010738594457507133,0.2791295051574707,0.3174501657485962,0.002112240996211767,0.27591365575790405,0.26839104294776917,-0.005382027942687273,0.18291810154914856,0.40109002590179443,0.022507894784212112,0.19839006662368774,0.3121141195297241,0.005753936246037483,0.22870853543281555,0.264173686504364,-0.01321625430136919,0.25873875617980957,0.23133109509944916,-0.026559635996818542,0.17536661028862,0.4108164310455322,0.0034113519359380007,0.19097952544689178,0.3018125295639038,-0.016002105548977852,0.22730548679828644,0.25302284955978394,-0.03307075798511505,0.2627537250518799,0.2239435464143753,-0.04203254356980324,0.18435493111610413,0.41470980644226074,-0.01688504032790661,0.20047709345817566,0.3097802996635437,-0.03530457243323326,0.2367023080587387,0.2588362991809845,-0.04454757273197174,0.26812076568603516,0.229689359664917,-0.047443557530641556,0.2063244730234146,0.4113660752773285,-0.036993905901908875,0.22965607047080994,0.3269084692001343,-0.04908977821469307,0.2554763853549957,0.2877829372882843,-0.050928473472595215,0.27815699577331543,0.2626841068267822,-0.049549032002687454
reference_data/config11.csv ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0.2140849232673645,0.4428519606590271,4.3702872432049844e-08,0.2632836699485779,0.4022587239742279,-0.005278990138322115,0.30153173208236694,0.3457045257091522,-0.01475607231259346,0.32709550857543945,0.29548725485801697,-0.029562046751379967,0.30901020765304565,0.2594405710697174,-0.04261652007699013,0.2573997378349304,0.24691767990589142,0.0016745179891586304,0.2728676497936249,0.1725749671459198,-0.025933396071195602,0.30053287744522095,0.19822871685028076,-0.046213872730731964,0.30955421924591064,0.24060605466365814,-0.05451570451259613,0.23111246526241302,0.24489031732082367,-0.00944647379219532,0.2392105758190155,0.15100890398025513,-0.036146387457847595,0.27735230326652527,0.18228399753570557,-0.05194650590419769,0.2924647033214569,0.2291342318058014,-0.05693590268492699,0.2057560384273529,0.25265225768089294,-0.023752473294734955,0.2087329626083374,0.16533175110816956,-0.050225723534822464,0.2507222294807434,0.19983220100402832,-0.057452429085969925,0.27000099420547485,0.2457672357559204,-0.055695608258247375,0.18272361159324646,0.27170827984809875,-0.038781825453042984,0.20457854866981506,0.21305544674396515,-0.060212016105651855,0.24334686994552612,0.23195217549800873,-0.0644991397857666,0.2660413980484009,0.26482003927230835,-0.06287143379449844
2
+ 0.21468260884284973,0.448831170797348,5.729478047555858e-08,0.2627566456794739,0.40777647495269775,-0.006571180187165737,0.30238646268844604,0.35145846009254456,-0.01683109812438488,0.3271842300891876,0.30392149090766907,-0.03210035711526871,0.3100270926952362,0.269304096698761,-0.045734234154224396,0.25377267599105835,0.25323057174682617,0.0001286196056753397,0.26974359154701233,0.1813584566116333,-0.028948241844773293,0.2986510992050171,0.20453748106956482,-0.05112188681960106,0.31076204776763916,0.24533729255199432,-0.06073594465851784,0.22749845683574677,0.25226250290870667,-0.010387837886810303,0.23591409623622894,0.1612248718738556,-0.038219548761844635,0.2747204303741455,0.18938249349594116,-0.05566549673676491,0.2924770712852478,0.2348661869764328,-0.06186668947339058,0.20206299424171448,0.2612854242324829,-0.02408914640545845,0.2066955417394638,0.17753158509731293,-0.05151503533124924,0.2494804859161377,0.2102423906326294,-0.05964484065771103,0.271066278219223,0.2542666494846344,-0.05843412131071091,0.17948311567306519,0.2824024260044098,-0.038572270423173904,0.2035333812236786,0.22757750749588013,-0.06042195484042168,0.2422705888748169,0.24504618346691132,-0.06505050510168076,0.26579275727272034,0.2749752104282379,-0.06360151618719101
3
+ 0.25981101393699646,0.43308988213539124,2.0271353662337788e-07,0.31180891394615173,0.37425708770751953,0.00029979750979691744,0.35197335481643677,0.3165232241153717,-0.011279323138296604,0.38138437271118164,0.2729056179523468,-0.030232219025492668,0.3707355558872223,0.2359013557434082,-0.0470111109316349,0.2699132561683655,0.2102285474538803,0.01005241647362709,0.29305967688560486,0.14234143495559692,-0.02053411491215229,0.3364650309085846,0.16545233130455017,-0.04498383775353432,0.3600001335144043,0.20489813387393951,-0.05647413432598114,0.24790307879447937,0.2138335406780243,-0.0066062952391803265,0.27706238627433777,0.13091249763965607,-0.03811386227607727,0.3285427689552307,0.16325843334197998,-0.0586053691804409,0.3519672751426697,0.21269491314888,-0.06606979668140411,0.23021183907985687,0.22630026936531067,-0.026410110294818878,0.25890102982521057,0.1474485993385315,-0.05509749427437782,0.3108994662761688,0.18212543427944183,-0.062085896730422974,0.3360178768634796,0.22904543578624725,-0.05933567136526108,0.21996891498565674,0.25207868218421936,-0.046849146485328674,0.26148223876953125,0.2004886269569397,-0.06814296543598175,0.3063371181488037,0.2132922261953354,-0.07098114490509033,0.3340199589729309,0.23836281895637512,-0.06754164397716522
4
+ 0.2728351354598999,0.45679742097854614,-4.7241218936733276e-08,0.3232061266899109,0.41539913415908813,-0.007510762196034193,0.362366259098053,0.3554874062538147,-0.016871530562639236,0.383619487285614,0.30016306042671204,-0.03092760033905506,0.3594464361667633,0.2643406391143799,-0.043511345982551575,0.32103607058525085,0.2592735290527344,0.00134341383818537,0.333292156457901,0.1796691119670868,-0.026285279542207718,0.3572150468826294,0.20638813078403473,-0.04901332035660744,0.36273065209388733,0.24834179878234863,-0.05949138477444649,0.2937127351760864,0.25815820693969727,-0.008054881356656551,0.296868234872818,0.1619265377521515,-0.03447038307785988,0.33159270882606506,0.19358092546463013,-0.05314632132649422,0.3446189761161804,0.2391468733549118,-0.06091778352856636,0.26575881242752075,0.2654520571231842,-0.020599694922566414,0.26526549458503723,0.1752834916114807,-0.04396054893732071,0.304365336894989,0.20677107572555542,-0.053455814719200134,0.3222213685512543,0.2516494393348694,-0.05460156127810478,0.23841121792793274,0.28238528966903687,-0.0342852808535099,0.255370557308197,0.22114616632461548,-0.052388545125722885,0.2896590530872345,0.23654185235500336,-0.05777781456708908,0.30980342626571655,0.26807838678359985,-0.058149199932813644
5
+ 0.2595832347869873,0.4973924160003662,-1.3097429985009512e-07,0.3103162944316864,0.456149697303772,-0.011185829527676105,0.34252098202705383,0.3912050724029541,-0.017913032323122025,0.3434259593486786,0.33113422989845276,-0.02758028358221054,0.31148457527160645,0.2975454032421112,-0.03546003997325897,0.3255782425403595,0.30148449540138245,0.00347652449272573,0.3378423750400543,0.22550663352012634,-0.016589654609560966,0.3452417552471161,0.2510325014591217,-0.0351230725646019,0.34030699729919434,0.29073619842529297,-0.04459644481539726,0.2943614423274994,0.2949092388153076,-0.0014725831570103765,0.2958129942417145,0.20844107866287231,-0.017665334045886993,0.3158539831638336,0.23382076621055603,-0.03372557833790779,0.3205740451812744,0.27363061904907227,-0.042934682220220566,0.26329904794692993,0.302389919757843,-0.009630375541746616,0.2591056823730469,0.21930301189422607,-0.025472968816757202,0.28499552607536316,0.24790647625923157,-0.03524098917841911,0.2935836613178253,0.2919808030128479,-0.03919791430234909,0.23253166675567627,0.3218095302581787,-0.019105421379208565,0.24130384624004364,0.2627550959587097,-0.03172457590699196,0.2650638818740845,0.2758633494377136,-0.03637281432747841,0.27691948413848877,0.3068298101425171,-0.038006462156772614
6
+ 0.24093742668628693,0.49841010570526123,-3.0946274875987e-08,0.2868673503398895,0.45499855279922485,-0.007919179275631905,0.3193745017051697,0.3960539698600769,-0.0170473363250494,0.3304844796657562,0.34181714057922363,-0.029820766299962997,0.3014940023422241,0.3115158975124359,-0.0415516272187233,0.28756803274154663,0.30437275767326355,0.00027961566229350865,0.29658934473991394,0.23635722696781158,-0.022376801818609238,0.3134903013706207,0.2620042562484741,-0.041996266692876816,0.3153455853462219,0.3005281686782837,-0.051637958735227585,0.25988298654556274,0.3026941120624542,-0.007839328609406948,0.26166343688964844,0.21541766822338104,-0.026470089331269264,0.28952962160110474,0.24397233128547668,-0.04144439473748207,0.2984040081501007,0.28519293665885925,-0.048854973167181015,0.23236161470413208,0.3129844665527344,-0.01860957033932209,0.22899869084358215,0.2344442456960678,-0.03608047217130661,0.26316145062446594,0.2645301818847656,-0.04321952909231186,0.27702027559280396,0.30550044775009155,-0.04493324086070061,0.2051275670528412,0.33545947074890137,-0.030505873262882233,0.21312060952186584,0.2770967483520508,-0.04494333267211914,0.24207541346549988,0.29217034578323364,-0.04779835417866707,0.2578555643558502,0.322468638420105,-0.047636616975069046
7
+ 0.25991377234458923,0.4796627461910248,3.372242574073425e-08,0.30198192596435547,0.4371492266654968,-0.005593258421868086,0.33613070845603943,0.37674617767333984,-0.014784255065023899,0.3605507016181946,0.3303550183773041,-0.028777705505490303,0.35041525959968567,0.3021262288093567,-0.041473038494586945,0.28647637367248535,0.28466105461120605,-5.584285827353597e-05,0.2972027659416199,0.21467633545398712,-0.026228876784443855,0.3266630172729492,0.2335938960313797,-0.04698529466986656,0.34051963686943054,0.27122554183006287,-0.056535203009843826,0.2614583671092987,0.2864566743373871,-0.010324242524802685,0.2641134560108185,0.1971532702445984,-0.035653624683618546,0.3038147985935211,0.21826288104057312,-0.052286937832832336,0.3237038254737854,0.25966396927833557,-0.05861726775765419,0.23768889904022217,0.29803571105003357,-0.023286961019039154,0.23772314190864563,0.2166871428489685,-0.04801902547478676,0.28139251470565796,0.2413477748632431,-0.05595913901925087,0.3048653304576874,0.28029853105545044,-0.0554354153573513,0.2172548770904541,0.3211894631385803,-0.03696642816066742,0.23520785570144653,0.2661738395690918,-0.05725402384996414,0.2727695405483246,0.27678215503692627,-0.06194490194320679,0.2973182201385498,0.301481693983078,-0.0609542615711689
8
+ 0.2255699336528778,0.5107200741767883,-3.927482694621176e-08,0.2713456153869629,0.46673721075057983,-0.01051926426589489,0.30375489592552185,0.411702036857605,-0.020990828052163124,0.31545546650886536,0.3577931523323059,-0.0350038968026638,0.2868477404117584,0.3235761821269989,-0.048121269792318344,0.27387648820877075,0.32239291071891785,-0.002090773545205593,0.2837080657482147,0.24810485541820526,-0.023620540276169777,0.29909151792526245,0.27141717076301575,-0.042120300233364105,0.3017822504043579,0.3070097863674164,-0.05171598121523857,0.24559976160526276,0.31927889585494995,-0.00898924469947815,0.25070151686668396,0.23087440431118011,-0.02805289998650551,0.2754620909690857,0.25958460569381714,-0.04451226070523262,0.2831941545009613,0.29974353313446045,-0.053280167281627655,0.21659711003303528,0.32750967144966125,-0.018524719402194023,0.21411211788654327,0.24343913793563843,-0.03562098369002342,0.24529562890529633,0.27254554629325867,-0.04405636340379715,0.2587105631828308,0.3141529858112335,-0.04713781177997589,0.1868305206298828,0.34838104248046875,-0.029322708025574684,0.1960175484418869,0.2891274094581604,-0.04309546574950218,0.22239920496940613,0.3027421534061432,-0.04683627933263779,0.23689867556095123,0.3326979875564575,-0.04770166426897049
9
+ 0.27232229709625244,0.47754913568496704,8.617615065986683e-08,0.3137507140636444,0.4241504669189453,-0.007225681096315384,0.3498454689979553,0.3605996370315552,-0.019739165902137756,0.37498903274536133,0.3163124620914459,-0.03733261302113533,0.3594568073749542,0.2841923236846924,-0.052643027156591415,0.2784554958343506,0.2705729603767395,-0.0004402844642754644,0.2943253219127655,0.20357578992843628,-0.03241502121090889,0.33044978976249695,0.22365298867225647,-0.05705265700817108,0.3500458002090454,0.26240643858909607,-0.06809452921152115,0.25432416796684265,0.27659204602241516,-0.01183237787336111,0.26558998227119446,0.19286374747753143,-0.04384825378656387,0.3120798170566559,0.21714100241661072,-0.06422396749258041,0.3371894061565399,0.2617117166519165,-0.07131539285182953,0.23330557346343994,0.2922426164150238,-0.026516443118453026,0.24195797741413116,0.21360953152179718,-0.056988392025232315,0.29177653789520264,0.24042148888111115,-0.06578685343265533,0.31967073678970337,0.2810015380382538,-0.06383495777845383,0.21919742226600647,0.321066677570343,-0.04201475530862808,0.24860578775405884,0.2684815526008606,-0.06524364650249481,0.2910620868206024,0.27834242582321167,-0.07017480581998825,0.3184940218925476,0.3006761074066162,-0.06808691471815109
10
+ 0.3080969452857971,0.5854467153549194,5.787234869103486e-08,0.34399011731147766,0.5288839340209961,-0.005333881359547377,0.37453317642211914,0.46428370475769043,-0.015987245365977287,0.39574310183525085,0.4190163314342499,-0.031485509127378464,0.381510466337204,0.40549710392951965,-0.045404888689517975,0.29931241273880005,0.38251858949661255,0.0025109995622187853,0.3215266168117523,0.3283858597278595,-0.025522302836179733,0.3577289581298828,0.3483485281467438,-0.04878586158156395,0.37655022740364075,0.3816467225551605,-0.06037874147295952,0.27368420362472534,0.3910548985004425,-0.009041584096848965,0.2933448255062103,0.31936922669410706,-0.03648429736495018,0.3376612663269043,0.3421338200569153,-0.053933270275592804,0.36145341396331787,0.381570965051651,-0.0604926273226738,0.2523764669895172,0.41008973121643066,-0.023581938818097115,0.27121007442474365,0.34449678659439087,-0.050270259380340576,0.3186863660812378,0.3700675070285797,-0.0571894533932209,0.34524106979370117,0.40727218985557556,-0.05510183796286583,0.2387363165616989,0.441096693277359,-0.03898881748318672,0.2687693238258362,0.395182728767395,-0.05946577712893486,0.3085041344165802,0.4053395986557007,-0.062419530004262924,0.3353816270828247,0.4269998073577881,-0.05958572402596474
11
+ 0.3017597794532776,0.6194851994514465,2.843464663726536e-08,0.33929193019866943,0.5646861791610718,-0.008722156286239624,0.3687167763710022,0.5032901763916016,-0.02120836079120636,0.384113073348999,0.45659518241882324,-0.037606872618198395,0.36339300870895386,0.4338066279888153,-0.0526084266602993,0.30812522768974304,0.4232924282550812,-0.0054032569751143456,0.32449427247047424,0.3604624271392822,-0.03292924910783768,0.3519384264945984,0.3817473351955414,-0.05432577431201935,0.3635379672050476,0.41701793670654297,-0.0644703283905983,0.2813417911529541,0.4329913556575775,-0.014790221117436886,0.2874313294887543,0.3546164631843567,-0.04237291216850281,0.3255903720855713,0.383279412984848,-0.05944254249334335,0.3455086648464203,0.4256380796432495,-0.06551120430231094,0.2566520869731903,0.4517131447792053,-0.026695365086197853,0.2574159502983093,0.3778076767921448,-0.05279650539159775,0.3016119599342346,0.4069044291973114,-0.058807484805583954,0.32616323232650757,0.446024626493454,-0.056606896221637726,0.23652878403663635,0.4819292724132538,-0.03935263305902481,0.25505566596984863,0.4301512539386749,-0.06012348458170891,0.2924681603908539,0.4432390630245209,-0.06256097555160522,0.31627708673477173,0.46754592657089233,-0.059563301503658295
12
+ 0.27523165941238403,0.4757482707500458,-4.8789196682719194e-08,0.3236484229564667,0.4410659968852997,-0.013354935683310032,0.3613150715827942,0.3793994188308716,-0.026471596211194992,0.38057810068130493,0.3181096911430359,-0.04307883605360985,0.34812331199645996,0.2779538929462433,-0.058351781219244,0.33582884073257446,0.2821851670742035,-0.006028554867953062,0.35209375619888306,0.19992657005786896,-0.03347913548350334,0.3652610182762146,0.22329838573932648,-0.054654255509376526,0.363162636756897,0.26790958642959595,-0.06384015828371048,0.30493560433387756,0.27791813015937805,-0.012414169497787952,0.3117898404598236,0.17737022042274475,-0.03555268794298172,0.3366298973560333,0.21316158771514893,-0.05152742564678192,0.3432057201862335,0.25892889499664307,-0.058374084532260895,0.27501964569091797,0.2843579053878784,-0.022050946950912476,0.27522116899490356,0.18982559442520142,-0.04195869714021683,0.30660733580589294,0.2228657305240631,-0.04986787587404251,0.3172093331813812,0.26954731345176697,-0.05164565145969391,0.24489346146583557,0.30156210064888,-0.033341675996780396,0.258728563785553,0.23884674906730652,-0.04849850758910179,0.28642696142196655,0.25373873114585876,-0.05260805785655975,0.29895853996276855,0.2860645651817322,-0.053364258259534836
13
+ 0.4055177569389343,0.40989428758621216,1.4497057065909758e-07,0.45952609181404114,0.36292195320129395,-0.00294519797898829,0.4974468946456909,0.2962051331996918,-0.009805511683225632,0.526975154876709,0.23863102495670319,-0.022931860759854317,0.5133652687072754,0.19632887840270996,-0.03392966836690903,0.4392194449901581,0.20549950003623962,0.013201858848333359,0.4531020522117615,0.11328567564487457,-0.013119565322995186,0.49094825983047485,0.12861952185630798,-0.03557206317782402,0.5069757103919983,0.16579049825668335,-0.045938894152641296,0.4190026819705963,0.2045530378818512,0.001112747355364263,0.43477752804756165,0.10139968991279602,-0.02602453902363777,0.48187056183815,0.12701983749866486,-0.04624937102198601,0.499413400888443,0.172020822763443,-0.05498858913779259,0.39663782715797424,0.2087632566690445,-0.014819957315921783,0.4105222821235657,0.10813167691230774,-0.040392592549324036,0.4598865807056427,0.13447818160057068,-0.05113854631781578,0.4807146489620209,0.18098612129688263,-0.052279483526945114,0.37474918365478516,0.22005321085453033,-0.031705860048532486,0.40382257103919983,0.14897370338439941,-0.05213046446442604,0.4457935392856598,0.16080498695373535,-0.05845578759908676,0.4685545563697815,0.1938483864068985,-0.05906583368778229
14
+ 0.46287277340888977,0.4321414828300476,6.08613675012748e-08,0.5160196423530579,0.38038599491119385,0.005322296638041735,0.5544561743736267,0.3253106474876404,-0.002195632318034768,0.5861267447471619,0.2813698947429657,-0.01799589954316616,0.5822240114212036,0.23621320724487305,-0.0314670167863369,0.4934626519680023,0.2169332653284073,0.014825871214270592,0.5143993496894836,0.1367175281047821,-0.012464632280170918,0.5558443665504456,0.1593383550643921,-0.03497149795293808,0.575797975063324,0.20011252164840698,-0.04554445669054985,0.4725576639175415,0.2175562083721161,-0.0032975480426102877,0.5005423426628113,0.1293765902519226,-0.030342431738972664,0.5514761805534363,0.16235916316509247,-0.04824930056929588,0.5703083276748657,0.2097044587135315,-0.055607568472623825,0.45264944434165955,0.22515234351158142,-0.02445758320391178,0.484482079744339,0.1407729536294937,-0.04930475354194641,0.536384642124176,0.17725959420204163,-0.05487019568681717,0.5561370849609375,0.22507344186306,-0.052722979336977005,0.4375835657119751,0.24330942332744598,-0.04606034979224205,0.4805597960948944,0.18466804921627045,-0.06478330492973328,0.5222912430763245,0.20566514134407043,-0.06600569933652878,0.5417719483375549,0.24137648940086365,-0.06244366243481636
15
+ 0.5299273729324341,0.5007404088973999,1.8980557570102974e-07,0.5886836051940918,0.44329604506492615,0.01121287140995264,0.631253182888031,0.3949628472328186,0.0029851789586246014,0.669142484664917,0.3641219139099121,-0.014982159249484539,0.6762422323226929,0.32614368200302124,-0.03129753842949867,0.5522750020027161,0.2814605236053467,0.021088773384690285,0.5964938998222351,0.22282105684280396,-0.004631385672837496,0.6413707137107849,0.24014019966125488,-0.0277227982878685,0.6664121747016907,0.2724110186100006,-0.03943467512726784,0.5357826948165894,0.28338491916656494,9.414566011400893e-05,0.5937070250511169,0.22132641077041626,-0.02185630239546299,0.6436377167701721,0.2490783929824829,-0.03817233443260193,0.6656898260116577,0.2899112403392792,-0.045053631067276,0.5269922018051147,0.2964312732219696,-0.023121915757656097,0.5874592661857605,0.23596441745758057,-0.04322417825460434,0.6356306672096252,0.26903706789016724,-0.046126026660203934,0.655795693397522,0.31253090500831604,-0.04230460524559021,0.5286909341812134,0.32169899344444275,-0.04662065953016281,0.5879757404327393,0.2818581759929657,-0.059346068650484085,0.6256481409072876,0.30514150857925415,-0.05589397996664047,0.6435379385948181,0.341213583946228,-0.04867391660809517
16
+ 0.6485912203788757,0.45461171865463257,2.2458424098203977e-07,0.7265634536743164,0.40809255838394165,0.01163324061781168,0.7806493639945984,0.3665972650051117,-0.0027272284496575594,0.8283156752586365,0.34146952629089355,-0.027470899745821953,0.8502359986305237,0.2901434898376465,-0.049929507076740265,0.6906031370162964,0.22190728783607483,0.013092603534460068,0.7643051147460938,0.15966854989528656,-0.020757479593157768,0.814754068851471,0.19980481266975403,-0.049909546971321106,0.8340288400650024,0.2524746060371399,-0.06427770853042603,0.673482358455658,0.2195512056350708,-0.01231461577117443,0.7720029950141907,0.15991906821727753,-0.041540421545505524,0.8204694986343384,0.21539801359176636,-0.06148942932486534,0.8290090560913086,0.27167820930480957,-0.07046274095773697,0.668226957321167,0.23346157371997833,-0.03964514285326004,0.7637467384338379,0.17224057018756866,-0.06363823264837265,0.8109382390975952,0.22857186198234558,-0.06398601830005646,0.8212656378746033,0.28286013007164,-0.05853145569562912,0.6754261255264282,0.2645795941352844,-0.06707797199487686,0.754900336265564,0.22390347719192505,-0.08115945756435394,0.7951843738555908,0.2583945095539093,-0.07355464994907379,0.8084670305252075,0.30005839467048645,-0.06345746666193008
17
+ 0.6193362474441528,0.5009745359420776,1.3727051850764838e-07,0.6890423893928528,0.4415213167667389,0.015645716339349747,0.7353450655937195,0.40271124243736267,0.006754837930202484,0.779958963394165,0.37439703941345215,-0.012898396700620651,0.7976990342140198,0.3292003571987152,-0.03025810793042183,0.6537635326385498,0.28274187445640564,0.021993843838572502,0.7221388220787048,0.2283230423927307,-0.005654001142829657,0.7663189172744751,0.26131415367126465,-0.029923414811491966,0.7840793132781982,0.30559781193733215,-0.04167323559522629,0.6398501992225647,0.2783144414424896,-0.002125623170286417,0.7251958250999451,0.21846173703670502,-0.024677230045199394,0.7694855332374573,0.26317286491394043,-0.038528282195329666,0.7800447344779968,0.31357231736183167,-0.04363083094358444,0.6371252536773682,0.28866127133369446,-0.02825186960399151,0.7205641865730286,0.23285141587257385,-0.04646889120340347,0.7625669836997986,0.2792743444442749,-0.04424220323562622,0.7726628184318542,0.3276596963405609,-0.03751116618514061,0.6463956236839294,0.31326937675476074,-0.054538898169994354,0.7189733982086182,0.2765315771102905,-0.06312817335128784,0.753087043762207,0.30546727776527405,-0.054659608751535416,0.7651078104972839,0.34213095903396606,-0.04467468708753586
18
+ 0.6015965342521667,0.5224817991256714,1.9240454207647417e-07,0.6634415984153748,0.47041913866996765,0.010809280909597874,0.7071203589439392,0.431289404630661,0.0017014698823913932,0.7464748620986938,0.4032667279243469,-0.01700761541724205,0.7565772533416748,0.3561881184577942,-0.033739324659109116,0.6312795281410217,0.3218718469142914,0.022084081545472145,0.6851885318756104,0.2598590552806854,-0.004752428270876408,0.7283562421798706,0.2895488142967224,-0.029675686731934547,0.7435635328292847,0.3300623297691345,-0.04218824580311775,0.6151505708694458,0.3197079002857208,0.0005722724017687142,0.683608889579773,0.2546505928039551,-0.023351579904556274,0.7303702235221863,0.29614317417144775,-0.042910367250442505,0.7423810362815857,0.3429979383945465,-0.0521046407520771,0.6067914366722107,0.32835060358047485,-0.023187391459941864,0.6733031272888184,0.26570555567741394,-0.04319384694099426,0.7193347811698914,0.30680039525032043,-0.04704173654317856,0.7323817014694214,0.3520508110523224,-0.04459704831242561,0.6083498597145081,0.3496008515357971,-0.04712275043129921,0.669135332107544,0.30705931782722473,-0.05949292704463005,0.7063673734664917,0.33126509189605713,-0.05573999136686325,0.7206605076789856,0.365435391664505,-0.04900602623820305
19
+ 0.5435379147529602,0.47345125675201416,7.14592616191112e-08,0.6024448275566101,0.443655401468277,-0.003518483368679881,0.6532358527183533,0.4081032872200012,-0.01388196274638176,0.6942762136459351,0.3711731433868408,-0.03027915209531784,0.6897369027137756,0.3251389265060425,-0.04482370242476463,0.6239206790924072,0.3035820424556732,0.007028542924672365,0.6599969267845154,0.23358571529388428,-0.019686101004481316,0.6836856603622437,0.2697543501853943,-0.04062739014625549,0.6822795867919922,0.30968666076660156,-0.049709927290678024,0.6031705737113953,0.29509639739990234,-0.005356530658900738,0.6392250657081604,0.21102678775787354,-0.03240884840488434,0.6719536185264587,0.25820621848106384,-0.05038619041442871,0.675394594669342,0.30418387055397034,-0.057195622473955154,0.5812758207321167,0.29244139790534973,-0.021114934235811234,0.6165415048599243,0.21373459696769714,-0.04613932967185974,0.6543508172035217,0.26220428943634033,-0.054927241057157516,0.6641121506690979,0.3102315366268158,-0.05484212189912796,0.5597132444381714,0.3007029592990875,-0.03761700913310051,0.6012499332427979,0.25311756134033203,-0.05647904798388481,0.6376596689224243,0.2832145392894745,-0.061350658535957336,0.6537109017372131,0.3190331757068634,-0.06097047030925751
20
+ 0.47723981738090515,0.6413145661354065,-2.6967878596906303e-08,0.5314368605613708,0.6037419438362122,-5.338786286301911e-05,0.5764614939689636,0.561773955821991,-0.010056709870696068,0.605851948261261,0.5276044607162476,-0.02571684867143631,0.593799889087677,0.49500027298927307,-0.039620574563741684,0.5396875739097595,0.45430243015289307,-0.0007748775533400476,0.5656721591949463,0.3907374143600464,-0.029001086950302124,0.5927345752716064,0.4255053400993347,-0.04913762956857681,0.5979087352752686,0.4684521555900574,-0.05742904543876648,0.5147219896316528,0.45349395275115967,-0.01525599230080843,0.5381162166595459,0.37523049116134644,-0.041713375598192215,0.5727862119674683,0.4221837818622589,-0.05604180693626404,0.5797572135925293,0.47144603729248047,-0.06030141934752464,0.48962539434432983,0.4634109139442444,-0.0319710299372673,0.511879026889801,0.3945268988609314,-0.05674665421247482,0.5518845319747925,0.44188809394836426,-0.06026347354054451,0.5646158456802368,0.488312304019928,-0.056357353925704956,0.4659934341907501,0.4867590665817261,-0.04893900826573372,0.49736538529396057,0.4429662525653839,-0.06781138479709625,0.5326232314109802,0.4720346927642822,-0.06822709739208221,0.5487570762634277,0.5067710876464844,-0.06381171196699142
21
+ 0.5027308464050293,0.7971548438072205,5.252727675042479e-08,0.558978259563446,0.7629877328872681,-0.0037393278907984495,0.609152615070343,0.7223252654075623,-0.018124887719750404,0.643281877040863,0.7009097337722778,-0.03735112398862839,0.6390089392662048,0.6775954961776733,-0.054019778966903687,0.5554975867271423,0.5912848711013794,-0.010344455949962139,0.6052066087722778,0.552070140838623,-0.044310472905635834,0.6335222125053406,0.6011303067207336,-0.06715286523103714,0.6369876265525818,0.6496720910072327,-0.07683338224887848,0.5257739424705505,0.5899624824523926,-0.025337304919958115,0.5750023722648621,0.5404348969459534,-0.057347919791936874,0.612310528755188,0.5951171517372131,-0.07365578413009644,0.6215092539787292,0.6453195214271545,-0.07851871848106384,0.5017452239990234,0.6074185967445374,-0.042482104152441025,0.5492976903915405,0.5654233694076538,-0.0727752223610878,0.5912007093429565,0.6209633946418762,-0.07753339409828186,0.6055659651756287,0.6665464639663696,-0.07322956621646881,0.48662424087524414,0.6427241563796997,-0.059927843511104584,0.5389148592948914,0.6264077425003052,-0.08213838934898376,0.5776071548461914,0.6610342860221863,-0.0836426243185997,0.5960947275161743,0.6926636099815369,-0.07893019914627075
22
+ 0.5989920496940613,0.7627307772636414,1.936323457130129e-07,0.6673763990402222,0.7257778644561768,0.008432946167886257,0.7188672423362732,0.6814401149749756,-0.0020947011653333902,0.7615587711334229,0.6578958630561829,-0.020435329526662827,0.772493839263916,0.6350714564323425,-0.036922991275787354,0.6480960249900818,0.5435559153556824,0.004523363895714283,0.7039929628372192,0.49954846501350403,-0.023279596120119095,0.7467490434646606,0.5333715677261353,-0.044233545660972595,0.7634972929954529,0.5772103071212769,-0.05364031344652176,0.6277766823768616,0.5449380874633789,-0.015292232856154442,0.6988933682441711,0.4976896047592163,-0.037907328456640244,0.7455888986587524,0.5407351851463318,-0.05028605833649635,0.7587662935256958,0.5868278741836548,-0.05454174429178238,0.6158837676048279,0.5637209415435791,-0.03649761527776718,0.6833017468452454,0.5181512236595154,-0.058102693408727646,0.7271510362625122,0.565742552280426,-0.058069150894880295,0.73915034532547,0.6115900874137878,-0.052312228828668594,0.6139798164367676,0.599194347858429,-0.057673510164022446,0.6767938137054443,0.5688449144363403,-0.07181873172521591,0.714464008808136,0.5992816090583801,-0.06660953909158707,0.729392409324646,0.6359422206878662,-0.05812280252575874
23
+ 0.735944926738739,0.7131941318511963,2.8728118195431307e-07,0.8174748420715332,0.6834874749183655,0.012804991565644741,0.8721663355827332,0.6461764574050903,0.00216742604970932,0.9216928482055664,0.6285369396209717,-0.018894700333476067,0.9427062273025513,0.5981284976005554,-0.03799987956881523,0.7912731766700745,0.4896313548088074,0.01246766559779644,0.8628972172737122,0.43540650606155396,-0.024935433641076088,0.9119928479194641,0.4787980020046234,-0.05669685825705528,0.9332019090652466,0.5361787676811218,-0.07211032509803772,0.7769603729248047,0.48920100927352905,-0.013031144626438618,0.8748534321784973,0.43535247445106506,-0.04789683222770691,0.9246629476547241,0.4956730008125305,-0.07080844789743423,0.9369826912879944,0.5569219589233398,-0.07949325442314148,0.7748854160308838,0.5068943500518799,-0.04030730202794075,0.869010865688324,0.4637356996536255,-0.06915759295225143,0.9159688353538513,0.5231515169143677,-0.07395808398723602,0.927193820476532,0.5787180066108704,-0.0691310241818428,0.7826789617538452,0.5410417914390564,-0.06747966259717941,0.8619512319564819,0.5144996643066406,-0.08347484469413757,0.9017763733863831,0.548351526260376,-0.07924594730138779,0.9179811477661133,0.5870064496994019,-0.07068286836147308
24
+ 0.7379200458526611,0.7187888026237488,2.0469742878503894e-07,0.8306856155395508,0.6857033967971802,0.022332215681672096,0.8878202438354492,0.6572136878967285,0.013641244731843472,0.9392523169517517,0.64569491147995,-0.008960926905274391,0.9707329273223877,0.613206148147583,-0.03015327639877796,0.8160991072654724,0.4975585341453552,0.03055148757994175,0.8906427025794983,0.46006450057029724,-0.0006499873707070947,0.9365174174308777,0.5053303241729736,-0.029898112639784813,0.9533485174179077,0.5611053109169006,-0.045509107410907745,0.8029428124427795,0.49244749546051025,-0.0013793937396258116,0.9037636518478394,0.45461729168891907,-0.030364595353603363,0.9474636316299438,0.5193918943405151,-0.051512591540813446,0.9535699486732483,0.5797826647758484,-0.060782451182603836,0.8010225296020508,0.5066415667533875,-0.03512103483080864,0.8992719650268555,0.472493052482605,-0.05760662257671356,0.9418346881866455,0.5382465124130249,-0.05878882482647896,0.9476027488708496,0.5954347848892212,-0.05403583124279976,0.8083517551422119,0.5413338541984558,-0.06876973062753677,0.8919950127601624,0.5261471271514893,-0.08038292825222015,0.9281342029571533,0.5676154494285583,-0.07344548404216766,0.9386997222900391,0.6107871532440186,-0.06453513354063034
25
+ 0.6099045276641846,0.4437180757522583,2.8225055626052153e-09,0.673272430896759,0.389080673456192,0.0006909419898875058,0.7179585099220276,0.3388236463069916,-0.006818755064159632,0.7489317059516907,0.29557788372039795,-0.022583428770303726,0.740845263004303,0.2520475387573242,-0.03690733015537262,0.6636781692504883,0.2445044219493866,0.01810084469616413,0.682064950466156,0.16967564821243286,-0.007904564961791039,0.7192003726959229,0.19204530119895935,-0.0322079099714756,0.7392109036445618,0.22508125007152557,-0.045388348400592804,0.6425225138664246,0.2409454882144928,0.0025549326092004776,0.663014829158783,0.1550237238407135,-0.024786731228232384,0.7110716700553894,0.18455320596694946,-0.04658741503953934,0.7334402799606323,0.22799555957317352,-0.057263169437646866,0.6194281578063965,0.2448192834854126,-0.016706855967640877,0.6431366801261902,0.1585315614938736,-0.042742229998111725,0.6947267055511475,0.18903908133506775,-0.05415012314915657,0.7194196581840515,0.234624445438385,-0.05589961260557175,0.5991872549057007,0.25964295864105225,-0.03669285029172897,0.638357400894165,0.1956145465373993,-0.05594374239444733,0.6824309825897217,0.2107992023229599,-0.061143483966588974,0.7076475620269775,0.24332445859909058,-0.061059944331645966
26
+ 0.5089482665061951,0.36521583795547485,1.4299129702521896e-07,0.55654376745224,0.32407426834106445,-0.0059755765832960606,0.5867434144020081,0.2565092444419861,-0.011080828495323658,0.6085286140441895,0.19453129172325134,-0.02123619243502617,0.5907765626907349,0.14960193634033203,-0.029637569561600685,0.5358445644378662,0.19115960597991943,0.014938202686607838,0.5465391278266907,0.11394902318716049,-0.0024521579034626484,0.5773853659629822,0.12355998158454895,-0.0178997740149498,0.5891693830490112,0.15232962369918823,-0.025224044919013977,0.5168567299842834,0.18642571568489075,0.005714113358408213,0.5214464068412781,0.0931132435798645,-0.014033330604434013,0.5630878210067749,0.10464540123939514,-0.030982941389083862,0.5806285738945007,0.13985759019851685,-0.03901493921875954,0.49424824118614197,0.1876096874475479,-0.007347092963755131,0.4994105100631714,0.09091298282146454,-0.02967931143939495,0.5446661710739136,0.10953658819198608,-0.04098912701010704,0.5629020929336548,0.15073612332344055,-0.04362206161022186,0.4718608558177948,0.1953364759683609,-0.021176118403673172,0.4954190254211426,0.12072973698377609,-0.04052770137786865,0.5335603952407837,0.1329585611820221,-0.04704257845878601,0.5518954396247864,0.16935864090919495,-0.04858849197626114
27
+ 0.49645674228668213,0.4254457950592041,3.637592982386195e-08,0.5468214154243469,0.3815803527832031,-0.0042716762982308865,0.5813412666320801,0.3152305781841278,-0.010307610034942627,0.6076245903968811,0.2523518204689026,-0.021895939484238625,0.5836684703826904,0.21817345917224884,-0.03221457451581955,0.5306925177574158,0.23957931995391846,0.011297456920146942,0.5423319339752197,0.15653610229492188,-0.011373231187462807,0.5733798742294312,0.1734851449728012,-0.03128640353679657,0.5851761698722839,0.20824196934700012,-0.041089918464422226,0.5101467370986938,0.23820960521697998,0.0005808946443721652,0.5158752799034119,0.14011797308921814,-0.022081168368458748,0.5551882386207581,0.16044722497463226,-0.04049568995833397,0.5710673928260803,0.19836805760860443,-0.04945005476474762,0.48717981576919556,0.24310202896595,-0.013749809004366398,0.49081850051879883,0.1485656201839447,-0.0370318628847599,0.5331457853317261,0.17051994800567627,-0.0488639660179615,0.5516068339347839,0.2109721601009369,-0.05209847912192345,0.46442344784736633,0.2547132074832916,-0.028840528801083565,0.48816555738449097,0.18355979025363922,-0.047490786761045456,0.5257295966148376,0.1931290328502655,-0.054530367255210876,0.5463733673095703,0.2228490561246872,-0.05712422728538513
28
+ 0.37738439440727234,0.4378995895385742,4.4289755862791935e-08,0.4207492172718048,0.3998126685619354,-0.010619435459375381,0.4495666027069092,0.3246642053127289,-0.01780325546860695,0.46815162897109985,0.2593994438648224,-0.02815588004887104,0.4426248073577881,0.22659212350845337,-0.0374712236225605,0.4101068079471588,0.24204733967781067,-0.0004057231417391449,0.41274726390838623,0.16068068146705627,-0.0227492768317461,0.4377557337284088,0.1719115525484085,-0.04247995465993881,0.44878286123275757,0.20774739980697632,-0.052181243896484375,0.3868459165096283,0.24115560948848724,-0.006376461125910282,0.38564440608024597,0.14597390592098236,-0.025331370532512665,0.41785210371017456,0.16561190783977509,-0.04103616252541542,0.4309113919734955,0.20537081360816956,-0.04925542697310448,0.36118414998054504,0.24967330694198608,-0.015557183884084225,0.3554178774356842,0.15783058106899261,-0.032654501497745514,0.39002472162246704,0.17649467289447784,-0.041515447199344635,0.4051920473575592,0.2180846631526947,-0.04497642442584038,0.3338937759399414,0.2664729952812195,-0.02632700465619564,0.34419628977775574,0.19949090480804443,-0.04170700162649155,0.3730299770832062,0.20429301261901855,-0.04769124463200569,0.3893502652645111,0.23198242485523224,-0.050343237817287445
29
+ 0.40931910276412964,0.6069763898849487,-1.0616852108569219e-07,0.45108452439308167,0.5609762668609619,-0.005499806255102158,0.48417627811431885,0.4981630742549896,-0.014757991768419743,0.5067611932754517,0.4462336301803589,-0.02881375513970852,0.4904025197029114,0.4177992641925812,-0.04111827164888382,0.44599172472953796,0.4083937704563141,0.0018168494571000338,0.4632534384727478,0.33369481563568115,-0.02376769855618477,0.48476454615592957,0.36262717843055725,-0.04375047981739044,0.4882691204547882,0.40423938632011414,-0.05246712267398834,0.4198613464832306,0.4099014401435852,-0.008166284300386906,0.43039920926094055,0.3229541778564453,-0.03160439059138298,0.46119797229766846,0.3614533841609955,-0.04561817646026611,0.47078755497932434,0.40603554248809814,-0.05054225027561188,0.39325737953186035,0.42023733258247375,-0.02113429270684719,0.3978354334831238,0.3361794650554657,-0.04248655214905739,0.434433251619339,0.3716506361961365,-0.04686758294701576,0.4492676854133606,0.4160410165786743,-0.044788945466279984,0.36756932735443115,0.4408397972583771,-0.03513298183679581,0.38501060009002686,0.3806245028972626,-0.0512411892414093,0.4177393913269043,0.39615267515182495,-0.05274561047554016,0.43531692028045654,0.425604909658432,-0.05048708990216255
30
+ 0.3432576656341553,0.5663613080978394,1.632199655432487e-07,0.3869408965110779,0.5130302309989929,-0.00708619924262166,0.41546234488487244,0.44843795895576477,-0.014845841564238071,0.42840152978897095,0.3894207775592804,-0.02675955928862095,0.4026299715042114,0.3672463893890381,-0.03734220191836357,0.3767099380493164,0.36906856298446655,0.008980623446404934,0.38174447417259216,0.29469388723373413,-0.01065120566636324,0.40282273292541504,0.30162766575813293,-0.02801014669239521,0.41396453976631165,0.32965609431266785,-0.036293160170316696,0.3512916564941406,0.3722646236419678,0.0014775958843529224,0.3533160090446472,0.28415146470069885,-0.01697607897222042,0.38440555334091187,0.30241233110427856,-0.029909005388617516,0.3993314504623413,0.3369970917701721,-0.034913916140794754,0.325688898563385,0.382841020822525,-0.009276624768972397,0.3243282735347748,0.2990790903568268,-0.028482675552368164,0.35825711488723755,0.32291296124458313,-0.032746367156505585,0.374035507440567,0.362669974565506,-0.030660472810268402,0.2996923327445984,0.402305006980896,-0.021298177540302277,0.31296753883361816,0.340706467628479,-0.03664998710155487,0.342242032289505,0.3525984287261963,-0.03777486830949783,0.35769641399383545,0.38210412859916687,-0.03506740182638168
31
+ 0.2688215970993042,0.44734692573547363,-2.2605009419862654e-08,0.3123456835746765,0.4035911560058594,-0.011683948338031769,0.34179872274398804,0.3296622633934021,-0.019169868901371956,0.35727888345718384,0.2600380778312683,-0.030016686767339706,0.32791367173194885,0.22032971680164337,-0.03939678147435188,0.3197626769542694,0.24667732417583466,0.007711602374911308,0.32997041940689087,0.17084813117980957,-0.015019495971500874,0.3417782187461853,0.17975953221321106,-0.03564751520752907,0.34475624561309814,0.21747779846191406,-0.04538040980696678,0.2899351418018341,0.24035412073135376,0.0027215266600251198,0.29105278849601746,0.14749251306056976,-0.01727486029267311,0.31330054998397827,0.1637958288192749,-0.03466976806521416,0.32263851165771484,0.20619581639766693,-0.04301963374018669,0.2595185339450836,0.2472730278968811,-0.006238788366317749,0.2540413737297058,0.15704096853733063,-0.024537157267332077,0.2821768522262573,0.1742948591709137,-0.03599652647972107,0.29590561985969543,0.21721723675727844,-0.04028237611055374,0.22991222143173218,0.264118492603302,-0.016746656969189644,0.2398066520690918,0.20142458379268646,-0.031028946861624718,0.26352810859680176,0.2062871903181076,-0.037204351276159286,0.2781626582145691,0.23470422625541687,-0.0395505391061306
32
+ 0.2946159243583679,0.6199501752853394,-1.219073624270095e-07,0.3349381983280182,0.5716484785079956,-0.008239559829235077,0.36363980174064636,0.5091825723648071,-0.01847562938928604,0.3734784722328186,0.4530952572822571,-0.03263487294316292,0.34468236565589905,0.423323392868042,-0.04521245136857033,0.33311253786087036,0.4238625764846802,-0.0004241969727445394,0.3439274728298187,0.347955584526062,-0.023607220500707626,0.35724371671676636,0.37481027841567993,-0.04254086688160896,0.35778239369392395,0.4135066270828247,-0.0513446182012558,0.30535903573036194,0.42381665110588074,-0.008177461102604866,0.31168612837791443,0.33588624000549316,-0.02815043181180954,0.33572015166282654,0.3696540594100952,-0.04185795783996582,0.342505544424057,0.4091581404209137,-0.04756295308470726,0.27700406312942505,0.43350452184677124,-0.01850557141005993,0.2741670608520508,0.34779033064842224,-0.03543069586157799,0.303962379693985,0.38343584537506104,-0.038555633276700974,0.31485989689826965,0.42790669202804565,-0.036942388862371445,0.24951167404651642,0.4540424048900604,-0.030166594311594963,0.25778332352638245,0.39146673679351807,-0.04224246367812157,0.28401121497154236,0.4089876413345337,-0.04099111258983612,0.29676780104637146,0.44193631410598755,-0.03749435767531395
33
+ 0.28256475925445557,0.6880480051040649,-1.705794829831575e-07,0.3210654854774475,0.6482466459274292,-0.010701831430196762,0.3482332229614258,0.5866854190826416,-0.020036250352859497,0.3537953495979309,0.5378508567810059,-0.03171846643090248,0.3226265609264374,0.519683837890625,-0.041482727974653244,0.3186057209968567,0.49616363644599915,-0.009226360358297825,0.32845360040664673,0.42180734872817993,-0.032811880111694336,0.3340643644332886,0.45904839038848877,-0.04916045442223549,0.33048713207244873,0.49952754378318787,-0.05626409873366356,0.2860202491283417,0.4997571110725403,-0.015968555584549904,0.2853644788265228,0.4127708375453949,-0.03737090900540352,0.30203062295913696,0.45692741870880127,-0.0478639081120491,0.3080485463142395,0.4999118745326996,-0.05062653869390488,0.25565415620803833,0.5160720348358154,-0.02509140782058239,0.2485865354537964,0.4354429543018341,-0.04443066567182541,0.27546074986457825,0.47685378789901733,-0.046337421983480453,0.2883910536766052,0.5192745327949524,-0.04321086406707764,0.22751405835151672,0.5440489053726196,-0.03525928407907486,0.23379674553871155,0.4899190664291382,-0.0496627502143383,0.2587803900241852,0.5122891664505005,-0.04857589676976204,0.2727084457874298,0.5431133508682251,-0.044631943106651306
34
+ 0.21884194016456604,0.5231022834777832,1.1972633728873916e-07,0.26396745443344116,0.47360795736312866,-0.006654949858784676,0.2878556251525879,0.41154009103775024,-0.008193086832761765,0.2887709438800812,0.3556525409221649,-0.01303070317953825,0.2591618001461029,0.3248908817768097,-0.01673494279384613,0.27672079205513,0.34764593839645386,0.02014959417283535,0.2852386236190796,0.28911861777305603,0.007587093394249678,0.2896057963371277,0.29195335507392883,-0.007397607434540987,0.28942766785621643,0.31390297412872314,-0.015454991720616817,0.24852457642555237,0.3391161561012268,0.01654157042503357,0.25159159302711487,0.2710339426994324,0.005265283863991499,0.2641006410121918,0.27440202236175537,-0.008837155997753143,0.2691366970539093,0.2995166778564453,-0.016700074076652527,0.21905672550201416,0.3445051610469818,0.009342759847640991,0.2152976542711258,0.27211153507232666,-0.0037775652017444372,0.23138074576854706,0.2892344892024994,-0.012723187915980816,0.2398712933063507,0.32849499583244324,-0.015605662949383259,0.188002347946167,0.3601718842983246,0.0011209696531295776,0.19348052144050598,0.30808645486831665,-0.010655364021658897,0.20990151166915894,0.31367599964141846,-0.015295489691197872,0.2213718444108963,0.33984774351119995,-0.01621960662305355
35
+ 0.1550557166337967,0.5164315700531006,-9.52760785821738e-08,0.19420668482780457,0.4685106575489044,-0.019120555371046066,0.21217162907123566,0.4000430405139923,-0.024806592613458633,0.19728517532348633,0.341421902179718,-0.0317489355802536,0.16457806527614594,0.30625587701797485,-0.03672682121396065,0.20935407280921936,0.3354376554489136,0.008933987468481064,0.21618695557117462,0.2633148431777954,-0.00952721294015646,0.20245152711868286,0.2673843204975128,-0.028119241818785667,0.19242776930332184,0.29490163922309875,-0.038222163915634155,0.17668412625789642,0.32929790019989014,0.009503751993179321,0.1796402633190155,0.24828432500362396,-0.009420639835298061,0.17028255760669708,0.26332181692123413,-0.029522554948925972,0.16820356249809265,0.2994445264339447,-0.039563752710819244,0.14526747167110443,0.3354251980781555,0.005823030602186918,0.13972900807857513,0.2571766674518585,-0.011942476965487003,0.139092355966568,0.274090975522995,-0.025710534304380417,0.14355547726154327,0.3162631690502167,-0.030811959877610207,0.11554962396621704,0.35228753089904785,0.00025145875406451523,0.11165282130241394,0.29784736037254333,-0.012834002263844013,0.11678334325551987,0.30344346165657043,-0.019013792276382446,0.12559425830841064,0.33379682898521423,-0.020779907703399658
36
+ 0.31473466753959656,0.47357141971588135,8.96716230158745e-08,0.36445868015289307,0.42259347438812256,0.0021545530762523413,0.3979068994522095,0.35712987184524536,-0.0056489380076527596,0.42510986328125,0.30198028683662415,-0.02109557017683983,0.4090105891227722,0.2678348422050476,-0.034903813153505325,0.3358066976070404,0.27005332708358765,0.01567908376455307,0.34119200706481934,0.18511953949928284,-0.006349199917167425,0.3788093626499176,0.2016761600971222,-0.024952435865998268,0.39544305205345154,0.24055783450603485,-0.03357306495308876,0.31696394085884094,0.27280211448669434,0.0001590830070199445,0.32446402311325073,0.17439019680023193,-0.02329380065202713,0.3715207576751709,0.2022136151790619,-0.04178790748119354,0.3893851041793823,0.24938726425170898,-0.04982559010386467,0.29666948318481445,0.280480295419693,-0.018042178824543953,0.30308905243873596,0.18772278726100922,-0.03889090567827225,0.3538964092731476,0.21657128632068634,-0.04660765826702118,0.3757694363594055,0.26200389862060547,-0.04701432213187218,0.27945831418037415,0.29864126443862915,-0.03679840639233589,0.30381137132644653,0.22880075871944427,-0.052690085023641586,0.345826119184494,0.24004186689853668,-0.05524866282939911,0.36798569560050964,0.27028536796569824,-0.05410592630505562
37
+ 0.3336431682109833,0.4541085362434387,1.6140643310791347e-07,0.37808066606521606,0.37016570568084717,0.017905600368976593,0.3987719416618347,0.30123060941696167,0.011209104210138321,0.4235524535179138,0.24964460730552673,-0.00633153086528182,0.4187537729740143,0.20499300956726074,-0.02157103456556797,0.28570520877838135,0.23849064111709595,0.021125080063939095,0.31523099541664124,0.14622141420841217,-0.003128473414108157,0.3679521083831787,0.15062472224235535,-0.022795850411057472,0.39664092659950256,0.18423408269882202,-0.03175836428999901,0.2714449465274811,0.2477668672800064,-0.004428297281265259,0.3136260509490967,0.140550434589386,-0.025866417214274406,0.37270990014076233,0.15628579258918762,-0.03869865462183952,0.39755523204803467,0.19710257649421692,-0.043386705219745636,0.27191391587257385,0.26071304082870483,-0.031463850289583206,0.3115795850753784,0.15541678667068481,-0.04915668070316315,0.3687422275543213,0.17361299693584442,-0.04616706073284149,0.3923950791358948,0.2130369246006012,-0.03996869921684265,0.28812190890312195,0.2789021134376526,-0.05828500911593437,0.33118361234664917,0.2004823386669159,-0.07008406519889832,0.3730478286743164,0.2053326666355133,-0.06329792737960815,0.3930168151855469,0.23178572952747345,-0.054822735488414764
38
+ 0.32228997349739075,0.4395565986633301,5.989964080299615e-08,0.3788258731365204,0.34733057022094727,0.011573189869523048,0.40117067098617554,0.2801910638809204,0.0005870573804713786,0.42233091592788696,0.2380758374929428,-0.018765795975923538,0.44109565019607544,0.2018558382987976,-0.035131361335515976,0.28118738532066345,0.20052234828472137,-0.0007536589400842786,0.33245229721069336,0.10906393826007843,-0.028146853670477867,0.3868551254272461,0.12488177418708801,-0.04757525771856308,0.4142054319381714,0.16215211153030396,-0.05654798075556755,0.2744109332561493,0.21591731905937195,-0.021807141602039337,0.34093841910362244,0.11098897457122803,-0.04306800290942192,0.39875495433807373,0.13256597518920898,-0.051514189690351486,0.421506404876709,0.1733858585357666,-0.05385199189186096,0.2882954180240631,0.23756900429725647,-0.04339802637696266,0.34844762086868286,0.13868358731269836,-0.06156802177429199,0.4041096270084381,0.1586856245994568,-0.056182149797677994,0.4253796935081482,0.1989848017692566,-0.04798388481140137,0.31537312269210815,0.26247039437294006,-0.06487838923931122,0.37254598736763,0.19440284371376038,-0.07474249601364136,0.4112341105937958,0.19867560267448425,-0.0673021748661995,0.42861083149909973,0.22097058594226837,-0.05839555710554123
39
+ 0.288444846868515,0.3254826068878174,-1.3361794515276415e-07,0.38255640864372253,0.2953784763813019,0.00816551223397255,0.43752989172935486,0.26938799023628235,-0.005519043188542128,0.4798486530780792,0.2569500207901001,-0.02694086916744709,0.5120106935501099,0.2463732659816742,-0.04597310721874237,0.39458346366882324,0.09183508157730103,-0.0029723800253123045,0.48877155780792236,0.09966875612735748,-0.035419490188360214,0.5158185958862305,0.17081205546855927,-0.05927826836705208,0.5153034925460815,0.22909444570541382,-0.07101745903491974,0.3795790672302246,0.09721922129392624,-0.02373540960252285,0.486838161945343,0.11130505800247192,-0.04999954625964165,0.5130892992019653,0.1892070174217224,-0.060833677649497986,0.5085943937301636,0.24807634949684143,-0.06413392722606659,0.371221125125885,0.13064813613891602,-0.04565424472093582,0.4702931046485901,0.13739319145679474,-0.07161176949739456,0.4945133924484253,0.21207934617996216,-0.07067664712667465,0.490132212638855,0.26815468072891235,-0.06352076679468155,0.36849385499954224,0.18249288201332092,-0.06713835150003433,0.44679105281829834,0.1957925707101822,-0.08402277529239655,0.47120901942253113,0.24422526359558105,-0.07951198518276215,0.4759327471256256,0.28610941767692566,-0.07091457396745682
40
+ 0.3541008532047272,0.28633731603622437,2.0163223268809816e-07,0.4073113203048706,0.35402801632881165,0.010019706562161446,0.45588916540145874,0.3855505585670471,-0.00034429680090397596,0.4878964424133301,0.4168933629989624,-0.017041970044374466,0.516665518283844,0.4378792941570282,-0.032385338097810745,0.5024957060813904,0.23387208580970764,-0.012434040196239948,0.5579599738121033,0.3189721405506134,-0.03949466720223427,0.5523492097854614,0.3916749358177185,-0.05618569999933243,0.5317713618278503,0.4277102053165436,-0.06362708657979965,0.48925817012786865,0.22442558407783508,-0.032807882875204086,0.5655563473701477,0.3261636793613434,-0.05686873570084572,0.5498692989349365,0.40227723121643066,-0.06432327628135681,0.523321807384491,0.4315599203109741,-0.0651574432849884,0.4696047008037567,0.24473503232002258,-0.05295279994606972,0.5433163046836853,0.3350676894187927,-0.07467542588710785,0.5318507552146912,0.4098030924797058,-0.07079659402370453,0.5075753927230835,0.4372090697288513,-0.06311943382024765,0.4461175799369812,0.284007728099823,-0.0721994936466217,0.5042201280593872,0.359078586101532,-0.08619837462902069,0.5036964416503906,0.4135899543762207,-0.07962336391210556,0.48858001828193665,0.4392009377479553,-0.07132311165332794
41
+ 0.37170344591140747,0.33290502429008484,1.4518585089717817e-07,0.42269590497016907,0.41967564821243286,0.009086807258427143,0.46865135431289673,0.4729127883911133,-0.002509017940610647,0.4919615685939789,0.5123692154884338,-0.019953934475779533,0.5121679902076721,0.54708331823349,-0.035964805632829666,0.5487622022628784,0.35730934143066406,-0.014905234798789024,0.5698578953742981,0.4675219655036926,-0.04173211753368378,0.5417294502258301,0.530293345451355,-0.059741612523794174,0.5125957727432251,0.556881308555603,-0.0692608654499054,0.5299823880195618,0.3442569673061371,-0.03532214090228081,0.5651869177818298,0.4727230668067932,-0.060648929327726364,0.5305300354957581,0.5379318594932556,-0.07155521959066391,0.4963078796863556,0.5594400763511658,-0.07597990334033966,0.4979822635650635,0.3500913381576538,-0.05502338707447052,0.5357851386070251,0.4619126617908478,-0.07777522504329681,0.506811261177063,0.5286716222763062,-0.07727248221635818,0.4753718674182892,0.5496129989624023,-0.07223286479711533,0.45978671312332153,0.36866918206214905,-0.07369807362556458,0.49307721853256226,0.45838436484336853,-0.08576466888189316,0.4813281297683716,0.5086784958839417,-0.07977654784917831,0.46190327405929565,0.5279828310012817,-0.07265498489141464
42
+ 0.37219157814979553,0.43578168749809265,3.299809918644314e-07,0.432054340839386,0.440588116645813,-0.0018368192249909043,0.48907363414764404,0.4361119270324707,-0.011092104017734528,0.5270029306411743,0.4292677640914917,-0.02403079904615879,0.524617075920105,0.39335522055625916,-0.03519925847649574,0.4941197335720062,0.2980475127696991,-0.004749330226331949,0.5333191156387329,0.2595500349998474,-0.02805936709046364,0.5515828728675842,0.3086254596710205,-0.043436601758003235,0.5482578873634338,0.3536897301673889,-0.04991117864847183,0.47381407022476196,0.28160542249679565,-0.017899293452501297,0.5212399363517761,0.2386530637741089,-0.039739757776260376,0.5434231162071228,0.301565945148468,-0.05110807344317436,0.5381752848625183,0.3497701585292816,-0.0553334504365921,0.44937947392463684,0.27930748462677,-0.032975465059280396,0.49556592106819153,0.2471694052219391,-0.05502018332481384,0.5183625221252441,0.31186026334762573,-0.05927719175815582,0.5161468386650085,0.3579680919647217,-0.057406991720199585,0.41947251558303833,0.2927985191345215,-0.04853373393416405,0.46585947275161743,0.2801813781261444,-0.06735119968652725,0.4886569082736969,0.3286535143852234,-0.06952124834060669,0.49160245060920715,0.3691193461418152,-0.0671679824590683
43
+ 0.3596675992012024,0.4678801894187927,4.925374597064547e-08,0.41396376490592957,0.4368191063404083,-0.0002834131009876728,0.45601457357406616,0.3868507742881775,-0.006772176828235388,0.4919056296348572,0.3424741327762604,-0.019639931619167328,0.4831421375274658,0.3051014542579651,-0.03137202933430672,0.4204033613204956,0.2934245467185974,0.011033661663532257,0.4459131956100464,0.21862289309501648,-0.012139362283051014,0.47632062435150146,0.2451615333557129,-0.031650543212890625,0.4833168089389801,0.2832324802875519,-0.04078567028045654,0.4012485146522522,0.28722041845321655,-0.0016954060411080718,0.4251334071159363,0.19505277276039124,-0.025088101625442505,0.4608646035194397,0.22988730669021606,-0.04249002784490585,0.46962523460388184,0.274338960647583,-0.05007591098546982,0.3787306249141693,0.28597620129585266,-0.017369652166962624,0.3987308740615845,0.20014742016792297,-0.039833877235651016,0.4374140501022339,0.23754215240478516,-0.04927229508757591,0.4499143958091736,0.28340908885002136,-0.050617676228284836,0.3559834361076355,0.2929895222187042,-0.03353886678814888,0.3865051865577698,0.2335699498653412,-0.051581528037786484,0.4232621490955353,0.2526659667491913,-0.057054728269577026,0.4420996606349945,0.2851599454879761,-0.05791521072387695
44
+ 0.33467310667037964,0.505235493183136,1.2869553245309362e-07,0.3789699375629425,0.451051265001297,-0.002071669092401862,0.40128567814826965,0.38228335976600647,-0.004385554697364569,0.41721582412719727,0.31550362706184387,-0.012588098645210266,0.3944023847579956,0.27638259530067444,-0.02031497098505497,0.35080936551094055,0.33377790451049805,0.02130764350295067,0.35202786326408386,0.2613666355609894,0.004714230075478554,0.3792870342731476,0.25889936089515686,-0.01215967908501625,0.3954406678676605,0.2803311347961426,-0.021287381649017334,0.3340149223804474,0.330078661441803,0.011474519036710262,0.3314688205718994,0.2403920292854309,-0.007496538106352091,0.3666914403438568,0.23968586325645447,-0.02553599514067173,0.3870794475078583,0.2705320715904236,-0.03487297520041466,0.3134904205799103,0.3326599895954132,-0.0021163669880479574,0.3125063478946686,0.24542120099067688,-0.021427541971206665,0.3514680564403534,0.2509034276008606,-0.03370780497789383,0.37343522906303406,0.28450819849967957,-0.03806570544838905,0.29137521982192993,0.3433395028114319,-0.016600115224719048,0.30548712611198425,0.2768550515174866,-0.031656865030527115,0.3376986086368561,0.2738489806652069,-0.039073772728443146,0.3601386845111847,0.29637542366981506,-0.04250936582684517
45
+ 0.2644287645816803,0.5240424871444702,1.2797990223134548e-07,0.30452364683151245,0.48028290271759033,-0.011313783004879951,0.3235863745212555,0.4060420095920563,-0.011749017983675003,0.32284054160118103,0.3398166596889496,-0.013586468063294888,0.2937638461589813,0.31634461879730225,-0.014569474384188652,0.2885560393333435,0.38041284680366516,0.013535174541175365,0.29575207829475403,0.33277660608291626,0.002578762825578451,0.30546408891677856,0.32959043979644775,-0.009404112584888935,0.3109096884727478,0.33995118737220764,-0.016214923933148384,0.2651670575141907,0.37600818276405334,0.013176490552723408,0.2684558033943176,0.3184877634048462,0.0019795172847807407,0.28160348534584045,0.314733624458313,-0.009374719113111496,0.2927932143211365,0.327205628156662,-0.015424544923007488,0.24108198285102844,0.3781691789627075,0.008965078741312027,0.2433026283979416,0.314990758895874,-0.004749186336994171,0.2616122364997864,0.3121892511844635,-0.012662834487855434,0.27669578790664673,0.3304729163646698,-0.015196303837001324,0.21537275612354279,0.38612622022628784,0.003359217196702957,0.2275710105895996,0.33088237047195435,-0.007809420581907034,0.2481023371219635,0.31521129608154297,-0.012775191105902195,0.26706060767173767,0.3196045756340027,-0.014920647256076336
46
+ 0.26850396394729614,0.6178191900253296,-9.58961408059622e-08,0.30582094192504883,0.5685683488845825,-0.00861672218888998,0.32605308294296265,0.49268457293510437,-0.01338912546634674,0.3289879858493805,0.4200918972492218,-0.02132360078394413,0.2950802147388458,0.39455342292785645,-0.027667606249451637,0.29241660237312317,0.4447075128555298,0.012434232048690319,0.2970390319824219,0.3903716802597046,-0.0051711853593587875,0.3072419762611389,0.4085695147514343,-0.021019337698817253,0.3079950511455536,0.4405936896800995,-0.028652284294366837,0.26740843057632446,0.44244369864463806,0.008484452962875366,0.2614966928958893,0.37531593441963196,-0.00642018299549818,0.2805071473121643,0.39305996894836426,-0.0175107941031456,0.2884449064731598,0.4243040084838867,-0.022028809413313866,0.2425209879875183,0.4489608108997345,0.0007197355735115707,0.23262232542037964,0.3790701627731323,-0.015900837257504463,0.2579015791416168,0.39775505661964417,-0.020212555304169655,0.27021005749702454,0.43426963686943054,-0.0190393328666687,0.21674469113349915,0.46425575017929077,-0.008308797143399715,0.2242201715707779,0.4023391008377075,-0.02147408202290535,0.248710036277771,0.40130409598350525,-0.023766441270709038,0.264716237783432,0.42043188214302063,-0.022911451756954193
47
+ 0.29405635595321655,0.7409332394599915,6.482203929181196e-08,0.33046361804008484,0.6900990605354309,-0.00625882763415575,0.3428412675857544,0.6053454279899597,-0.008209771476686,0.3430902361869812,0.5422956347465515,-0.01286494079977274,0.3151604235172272,0.5382450222969055,-0.016337446868419647,0.2975728213787079,0.54659503698349,0.003567776409909129,0.29169148206710815,0.4756776690483093,-0.015448762103915215,0.31497788429260254,0.48282602429389954,-0.03253530338406563,0.3276548981666565,0.5141217112541199,-0.04048377275466919,0.2724836468696594,0.5536718368530273,-0.0020421554800122976,0.2565724551677704,0.4716361165046692,-0.01848430745303631,0.2871728241443634,0.4782184362411499,-0.03073122166097164,0.30443480610847473,0.5115184783935547,-0.0358564555644989,0.24830500781536102,0.573319137096405,-0.010489626787602901,0.2268577516078949,0.4957970380783081,-0.02725984714925289,0.2604522705078125,0.5031223297119141,-0.03492086008191109,0.2810792922973633,0.5360337495803833,-0.036346983164548874,0.22532500326633453,0.6008524298667908,-0.01992989145219326,0.22502149641513824,0.53655606508255,-0.03490427881479263,0.25286829471588135,0.5320965647697449,-0.04006703943014145,0.2733408212661743,0.5511184334754944,-0.04143380746245384
48
+ 0.4006836414337158,0.6614962816238403,1.6469671493268834e-07,0.42803269624710083,0.5802469849586487,0.0010082561057060957,0.44263696670532227,0.5025273561477661,-0.010006614029407501,0.4544583857059479,0.442155122756958,-0.02813655138015747,0.4320491552352905,0.4110577404499054,-0.04447200894355774,0.3419855833053589,0.471687376499176,0.007892167195677757,0.3361968696117401,0.3936380445957184,-0.019371267408132553,0.3800240159034729,0.38011491298675537,-0.04160146042704582,0.4115873873233795,0.39529114961624146,-0.0527246855199337,0.32525330781936646,0.48612502217292786,-0.008744001388549805,0.32359474897384644,0.3868136405944824,-0.037166692316532135,0.37913429737091064,0.37894245982170105,-0.05794365704059601,0.4141809344291687,0.40511468052864075,-0.06703639775514603,0.31492525339126587,0.5044995546340942,-0.02779586799442768,0.3176603615283966,0.4106829762458801,-0.05213480070233345,0.37424612045288086,0.40378642082214355,-0.05965478718280792,0.4086683690547943,0.4264303743839264,-0.05922875925898552,0.3164327144622803,0.5296450853347778,-0.04744727537035942,0.33495086431503296,0.45116642117500305,-0.06437183916568756,0.376919150352478,0.43473368883132935,-0.06625738739967346,0.4061673581600189,0.44380876421928406,-0.06390350311994553
49
+ 0.41170191764831543,0.6122527122497559,1.6440283445717796e-07,0.446729838848114,0.5176045894622803,0.008487005718052387,0.4612889289855957,0.4475443959236145,-0.003106503514572978,0.4792657196521759,0.39950379729270935,-0.022233352065086365,0.47917693853378296,0.35871267318725586,-0.039031051099300385,0.33432450890541077,0.41622787714004517,0.0034001627936959267,0.3684573173522949,0.32613763213157654,-0.02515176124870777,0.4186415374279022,0.31606560945510864,-0.04782162234187126,0.4541320204734802,0.33426952362060547,-0.05902904272079468,0.3256688117980957,0.42989879846572876,-0.016486039385199547,0.3690080940723419,0.3212392330169678,-0.04011522978544235,0.42587265372276306,0.3163873553276062,-0.05435924977064133,0.45991581678390503,0.33922430872917175,-0.06017685681581497,0.3349839448928833,0.4453447163105011,-0.03740578517317772,0.37395501136779785,0.3407243490219116,-0.05804093927145004,0.4291969835758209,0.3395560085773468,-0.05698484927415848,0.4605657160282135,0.3633253872394562,-0.05099059268832207,0.36019575595855713,0.462473601102829,-0.05835988000035286,0.39916202425956726,0.3825082778930664,-0.07098837941884995,0.438006192445755,0.3740576207637787,-0.06538080424070358,0.4629528820514679,0.38645610213279724,-0.05695934593677521
50
+ 0.29658517241477966,0.6444462537765503,6.035416078020717e-08,0.3667035698890686,0.6085151433944702,-0.0017198612913489342,0.41538751125335693,0.5778787136077881,-0.021379906684160233,0.45184949040412903,0.573667585849762,-0.0463479608297348,0.4786234498023987,0.5779774785041809,-0.06909019500017166,0.3736472725868225,0.42612338066101074,-0.020656118169426918,0.4453513026237488,0.4192470908164978,-0.054236654192209244,0.47135815024375916,0.4822942018508911,-0.07512199878692627,0.47155362367630005,0.5299184918403625,-0.08550013601779938,0.34776943922042847,0.4303683638572693,-0.03897259384393692,0.428762823343277,0.4165083169937134,-0.06864029914140701,0.45983970165252686,0.4850243330001831,-0.07964249700307846,0.4610794484615326,0.533488929271698,-0.0833960473537445,0.32770150899887085,0.46003252267837524,-0.05832039192318916,0.40118375420570374,0.4484141170978546,-0.0877305269241333,0.4347234070301056,0.516770601272583,-0.08704201132059097,0.4396345913410187,0.5639510750770569,-0.08036227524280548,0.31459981203079224,0.5078664422035217,-0.07774153351783752,0.37939009070396423,0.5095298886299133,-0.09719126671552658,0.4155934453010559,0.5505189299583435,-0.0935489758849144,0.4307499825954437,0.5823172330856323,-0.08622260391712189
51
+ 0.30339768528938293,0.6337592601776123,2.696422427561629e-07,0.34628647565841675,0.5973283052444458,-0.010439019650220871,0.39030906558036804,0.5472729802131653,-0.023662475869059563,0.4191874563694,0.5118504166603088,-0.039924971759319305,0.403872549533844,0.48724812269210815,-0.05480065941810608,0.3360571265220642,0.4382784068584442,-0.009193390607833862,0.3701370358467102,0.39457967877388,-0.03953898698091507,0.3979383111000061,0.418648362159729,-0.06198911368846893,0.408646821975708,0.4532085657119751,-0.07275567948818207,0.30621060729026794,0.437381386756897,-0.019586781039834023,0.3413231372833252,0.37684935331344604,-0.05198021978139877,0.37836962938308716,0.4168109893798828,-0.07094214111566544,0.39258715510368347,0.4623796045780182,-0.07749025523662567,0.2802177369594574,0.4518984854221344,-0.032637570053339005,0.3139576315879822,0.39764460921287537,-0.06434120982885361,0.3543374836444855,0.4428672790527344,-0.0729251429438591,0.37152114510536194,0.48567986488342285,-0.07133301347494125,0.259583443403244,0.48325619101524353,-0.04637811332941055,0.3033863306045532,0.455445796251297,-0.07157229632139206,0.3419143259525299,0.4816115200519562,-0.0768442153930664,0.3634389340877533,0.5078704357147217,-0.07522498071193695
52
+ 0.28300562500953674,0.6188245415687561,6.312150446774467e-08,0.31912899017333984,0.5558112263679504,-0.0028586911503225565,0.34107711911201477,0.4874702990055084,-0.009959601797163486,0.35387447476387024,0.4326988160610199,-0.022890783846378326,0.33388832211494446,0.4034760594367981,-0.03448577970266342,0.2854671776294708,0.41937315464019775,0.012317745946347713,0.287641704082489,0.34744948148727417,-0.012432890012860298,0.31785374879837036,0.3639700710773468,-0.03389647975564003,0.33289363980293274,0.3984270691871643,-0.043765563517808914,0.2628193497657776,0.42512959241867065,0.0020361472852528095,0.2623894214630127,0.339779257774353,-0.020162586122751236,0.30132830142974854,0.3606354594230652,-0.03666675090789795,0.3205421566963196,0.3990384340286255,-0.04357011988759041,0.23917493224143982,0.4391250014305115,-0.011703156866133213,0.23394492268562317,0.3573133647441864,-0.03190470114350319,0.2743820548057556,0.3781086802482605,-0.03790992870926857,0.2968812584877014,0.41745713353157043,-0.03684164211153984,0.21675936877727509,0.46270906925201416,-0.02649618126451969,0.22530582547187805,0.39786314964294434,-0.04241260886192322,0.26059260964393616,0.40067267417907715,-0.04478371888399124,0.2846589684486389,0.4238751232624054,-0.042780082672834396
53
+ 0.31400200724601746,0.5222657918930054,4.746854997961236e-08,0.3700673282146454,0.4766823947429657,-0.0033174653071910143,0.4175257384777069,0.4254584312438965,-0.01719110831618309,0.4534657299518585,0.39553284645080566,-0.03673527017235756,0.44933611154556274,0.3647991120815277,-0.0534297339618206,0.35496431589126587,0.2989519238471985,-0.005194188095629215,0.3955770432949066,0.24356034398078918,-0.039299968630075455,0.43568894267082214,0.28293177485466003,-0.06323527544736862,0.44864749908447266,0.32934412360191345,-0.07361993938684464,0.3261997699737549,0.30138808488845825,-0.02034672722220421,0.37207546830177307,0.23707248270511627,-0.051216863095760345,0.4224136173725128,0.2818801999092102,-0.06660529226064682,0.4398239254951477,0.32991495728492737,-0.07082910090684891,0.3040212392807007,0.3199864625930786,-0.03829103335738182,0.3506762981414795,0.26488828659057617,-0.06758696585893631,0.401509553194046,0.31042540073394775,-0.07031334936618805,0.4208454489707947,0.35432863235473633,-0.06478609144687653,0.2927936315536499,0.3553345799446106,-0.0570281483232975,0.3488468527793884,0.32984891533851624,-0.07931860536336899,0.39195626974105835,0.3585428297519684,-0.07993543893098831,0.4126236140727997,0.3901877701282501,-0.07422608882188797
54
+ 0.3012407422065735,0.5113549828529358,2.5613778120714414e-07,0.3467591404914856,0.4547697603702545,-0.005580520257353783,0.38246992230415344,0.3961307108402252,-0.015846233814954758,0.4058331847190857,0.3483685553073883,-0.031070459634065628,0.3879498839378357,0.3135663568973541,-0.04433528333902359,0.3172715902328491,0.31030207872390747,0.00395774794742465,0.3239041864871979,0.23249472677707672,-0.024224739521741867,0.36179766058921814,0.24802592396736145,-0.046140994876623154,0.38471275568008423,0.2840713858604431,-0.05586462840437889,0.2975132465362549,0.3149641156196594,-0.006910068914294243,0.3090561032295227,0.2270003855228424,-0.03477426618337631,0.35526153445243835,0.24921634793281555,-0.053933482617139816,0.3783119022846222,0.2910629212856293,-0.06173919513821602,0.27693861722946167,0.3265647888183594,-0.02121877484023571,0.2917988896369934,0.24642808735370636,-0.04754829779267311,0.3394410312175751,0.2716969847679138,-0.05670864135026932,0.3639535903930664,0.3127205967903137,-0.05625251680612564,0.2577047348022461,0.349450021982193,-0.03639763221144676,0.2847829759120941,0.2913370132446289,-0.05572205036878586,0.3239021301269531,0.30071017146110535,-0.06008046865463257,0.3472898006439209,0.32618558406829834,-0.05870594456791878