Revision a7eba3f5
Added by Leszek Koltunski 9 months ago
src/main/java/org/distorted/objectlib/main/TwistyObject.java | ||
---|---|---|
741 | 741 |
if( len>mSize*dist3D[i] ) return i; |
742 | 742 |
} |
743 | 743 |
|
744 |
android.util.Log.e("D", "computeCurrentPuzzleFace: failure!" ); |
|
744 | 745 |
return -2; |
745 | 746 |
} |
746 | 747 |
|
src/main/java/org/distorted/objectlib/objects/TwistyCrazy3x3.java | ||
---|---|---|
44 | 44 |
public static final int NEPTUNE = 0x16; |
45 | 45 |
|
46 | 46 |
private static final float DIAMETER_RATIO = 0.75f; |
47 |
private static final float DIFF = 0.6f;
|
|
47 |
private static final float S = 0.6f;
|
|
48 | 48 |
private static final int NUMBER_CORNER_SEGMENTS = 4; |
49 | 49 |
private static final int NUMBER_EDGE_SEGMENTS = 4; |
50 | 50 |
|
... | ... | |
174 | 174 |
{ |
175 | 175 |
float[] pos = mPositions[i]; |
176 | 176 |
|
177 |
if( pos[0]== DIFF ) mOffsets[i] = new float[] {-DIFF,0,0};
|
|
178 |
else if( pos[0]==-DIFF ) mOffsets[i] = new float[] { DIFF,0,0};
|
|
179 |
else if( pos[1]== DIFF ) mOffsets[i] = new float[] {0,-DIFF,0};
|
|
180 |
else if( pos[1]==-DIFF ) mOffsets[i] = new float[] {0, DIFF,0};
|
|
181 |
else if( pos[2]== DIFF ) mOffsets[i] = new float[] {0,0,-DIFF};
|
|
182 |
else if( pos[2]==-DIFF ) mOffsets[i] = new float[] {0,0, DIFF};
|
|
177 |
if( pos[0]== S) mOffsets[i] = new float[] {-1,0,0};
|
|
178 |
else if( pos[0]==-S) mOffsets[i] = new float[] { 1,0,0};
|
|
179 |
else if( pos[1]== S) mOffsets[i] = new float[] {0,-1,0};
|
|
180 |
else if( pos[1]==-S) mOffsets[i] = new float[] {0, 1,0};
|
|
181 |
else if( pos[2]== S) mOffsets[i] = new float[] {0,0,-1};
|
|
182 |
else if( pos[2]==-S) mOffsets[i] = new float[] {0,0, 1};
|
|
183 | 183 |
else mOffsets[i] = tmp; |
184 | 184 |
} |
185 | 185 |
} |
... | ... | |
260 | 260 |
{ |
261 | 261 |
mPositions = new float[][] |
262 | 262 |
{ |
263 |
{ 1.0f, 1.0f, 1.0f},
|
|
264 |
{ 1.0f, 1.0f,-1.0f},
|
|
265 |
{ 1.0f,-1.0f, 1.0f},
|
|
266 |
{ 1.0f,-1.0f,-1.0f},
|
|
267 |
{-1.0f, 1.0f, 1.0f},
|
|
268 |
{-1.0f, 1.0f,-1.0f},
|
|
269 |
{-1.0f,-1.0f, 1.0f},
|
|
270 |
{-1.0f,-1.0f,-1.0f},
|
|
271 |
|
|
272 |
{ 1.0f, 1.0f, 0.0f},
|
|
273 |
{ 1.0f,-1.0f, 0.0f},
|
|
274 |
{ 1.0f, 0.0f, 1.0f},
|
|
275 |
{ 1.0f, 0.0f,-1.0f},
|
|
276 |
{-1.0f, 1.0f, 0.0f},
|
|
277 |
{-1.0f,-1.0f, 0.0f},
|
|
278 |
{-1.0f, 0.0f, 1.0f},
|
|
279 |
{-1.0f, 0.0f,-1.0f},
|
|
280 |
{ 0.0f, 1.0f, 1.0f},
|
|
281 |
{ 0.0f, 1.0f,-1.0f},
|
|
282 |
{ 0.0f,-1.0f, 1.0f},
|
|
283 |
{ 0.0f,-1.0f,-1.0f},
|
|
284 |
|
|
285 |
{ 0.0f, 0.0f, DIFF},
|
|
286 |
{ 0.0f, 0.0f,-DIFF},
|
|
287 |
{ 0.0f, DIFF, 0.0f},
|
|
288 |
{ 0.0f,-DIFF, 0.0f},
|
|
289 |
{ DIFF, 0.0f, 0.0f},
|
|
290 |
{-DIFF, 0.0f, 0.0f},
|
|
291 |
|
|
292 |
{ 0.0f, 1.0f, DIFF},
|
|
293 |
{-DIFF, 1.0f, 0.0f},
|
|
294 |
{ 0.0f, 1.0f,-DIFF},
|
|
295 |
{ DIFF, 1.0f, 0.0f},
|
|
296 |
{ 0.0f,-1.0f, DIFF},
|
|
297 |
{-DIFF,-1.0f, 0.0f},
|
|
298 |
{ 0.0f,-1.0f,-DIFF},
|
|
299 |
{ DIFF,-1.0f, 0.0f},
|
|
300 |
{ DIFF, 0.0f, 1.0f},
|
|
301 |
{ 0.0f,-DIFF, 1.0f},
|
|
302 |
{-DIFF, 0.0f, 1.0f},
|
|
303 |
{ 0.0f, DIFF, 1.0f},
|
|
304 |
{ DIFF, 0.0f,-1.0f},
|
|
305 |
{ 0.0f,-DIFF,-1.0f},
|
|
306 |
{-DIFF, 0.0f,-1.0f},
|
|
307 |
{ 0.0f, DIFF,-1.0f},
|
|
308 |
{ 1.0f, DIFF, 0.0f},
|
|
309 |
{ 1.0f, 0.0f,-DIFF},
|
|
310 |
{ 1.0f,-DIFF, 0.0f},
|
|
311 |
{ 1.0f, 0.0f, DIFF},
|
|
312 |
{-1.0f, DIFF, 0.0f},
|
|
313 |
{-1.0f, 0.0f,-DIFF},
|
|
314 |
{-1.0f,-DIFF, 0.0f},
|
|
315 |
{-1.0f, 0.0f, DIFF},
|
|
316 |
|
|
317 |
{ 1.0f, 1.0f, DIFF},
|
|
318 |
{ 1.0f, 1.0f,-DIFF},
|
|
319 |
{ 1.0f,-1.0f, DIFF},
|
|
320 |
{ 1.0f,-1.0f,-DIFF},
|
|
321 |
{-1.0f, 1.0f, DIFF},
|
|
322 |
{-1.0f, 1.0f,-DIFF},
|
|
323 |
{-1.0f,-1.0f, DIFF},
|
|
324 |
{-1.0f,-1.0f,-DIFF},
|
|
325 |
{ 1.0f, DIFF, 1.0f},
|
|
326 |
{ 1.0f,-DIFF, 1.0f},
|
|
327 |
{ 1.0f, DIFF,-1.0f},
|
|
328 |
{ 1.0f,-DIFF,-1.0f},
|
|
329 |
{-1.0f, DIFF, 1.0f},
|
|
330 |
{-1.0f,-DIFF, 1.0f},
|
|
331 |
{-1.0f, DIFF,-1.0f},
|
|
332 |
{-1.0f,-DIFF,-1.0f},
|
|
333 |
{ DIFF, 1.0f, 1.0f},
|
|
334 |
{-DIFF, 1.0f, 1.0f},
|
|
335 |
{ DIFF, 1.0f,-1.0f},
|
|
336 |
{-DIFF, 1.0f,-1.0f},
|
|
337 |
{ DIFF,-1.0f, 1.0f},
|
|
338 |
{-DIFF,-1.0f, 1.0f},
|
|
339 |
{ DIFF,-1.0f,-1.0f},
|
|
340 |
{-DIFF,-1.0f,-1.0f},
|
|
263 |
{ 1, 1, 1},
|
|
264 |
{ 1, 1,-1},
|
|
265 |
{ 1,-1, 1},
|
|
266 |
{ 1,-1,-1},
|
|
267 |
{-1, 1, 1},
|
|
268 |
{-1, 1,-1},
|
|
269 |
{-1,-1, 1},
|
|
270 |
{-1,-1,-1},
|
|
271 |
|
|
272 |
{ 1, 1, 0},
|
|
273 |
{ 1,-1, 0},
|
|
274 |
{ 1, 0, 1},
|
|
275 |
{ 1, 0,-1},
|
|
276 |
{-1, 1, 0},
|
|
277 |
{-1,-1, 0},
|
|
278 |
{-1, 0, 1},
|
|
279 |
{-1, 0,-1},
|
|
280 |
{ 0, 1, 1},
|
|
281 |
{ 0, 1,-1},
|
|
282 |
{ 0,-1, 1},
|
|
283 |
{ 0,-1,-1},
|
|
284 |
|
|
285 |
{ 0, 0, S},
|
|
286 |
{ 0, 0,-S},
|
|
287 |
{ 0, S, 0},
|
|
288 |
{ 0,-S, 0},
|
|
289 |
{ S, 0, 0},
|
|
290 |
{-S, 0, 0},
|
|
291 |
|
|
292 |
{ 0, 1, S},
|
|
293 |
{-S, 1, 0},
|
|
294 |
{ 0, 1,-S},
|
|
295 |
{ S, 1, 0},
|
|
296 |
{ 0,-1, S},
|
|
297 |
{-S,-1, 0},
|
|
298 |
{ 0,-1,-S},
|
|
299 |
{ S,-1, 0},
|
|
300 |
{ S, 0, 1},
|
|
301 |
{ 0,-S, 1},
|
|
302 |
{-S, 0, 1},
|
|
303 |
{ 0, S, 1},
|
|
304 |
{ S, 0,-1},
|
|
305 |
{ 0,-S,-1},
|
|
306 |
{-S, 0,-1},
|
|
307 |
{ 0, S,-1},
|
|
308 |
{ 1, S, 0},
|
|
309 |
{ 1, 0,-S},
|
|
310 |
{ 1,-S, 0},
|
|
311 |
{ 1, 0, S},
|
|
312 |
{-1, S, 0},
|
|
313 |
{-1, 0,-S},
|
|
314 |
{-1,-S, 0},
|
|
315 |
{-1, 0, S},
|
|
316 |
|
|
317 |
{ 1, 1, S},
|
|
318 |
{ 1, 1,-S},
|
|
319 |
{ 1,-1, S},
|
|
320 |
{ 1,-1,-S},
|
|
321 |
{-1, 1, S},
|
|
322 |
{-1, 1,-S},
|
|
323 |
{-1,-1, S},
|
|
324 |
{-1,-1,-S},
|
|
325 |
{ 1, S, 1},
|
|
326 |
{ 1,-S, 1},
|
|
327 |
{ 1, S,-1},
|
|
328 |
{ 1,-S,-1},
|
|
329 |
{-1, S, 1},
|
|
330 |
{-1,-S, 1},
|
|
331 |
{-1, S,-1},
|
|
332 |
{-1,-S,-1},
|
|
333 |
{ S, 1, 1},
|
|
334 |
{-S, 1, 1},
|
|
335 |
{ S, 1,-1},
|
|
336 |
{-S, 1,-1},
|
|
337 |
{ S,-1, 1},
|
|
338 |
{-S,-1, 1},
|
|
339 |
{ S,-1,-1},
|
|
340 |
{-S,-1,-1},
|
|
341 | 341 |
}; |
342 | 342 |
} |
343 | 343 |
|
... | ... | |
440 | 440 |
} |
441 | 441 |
else if( variant==2 ) |
442 | 442 |
{ |
443 |
final float D = 1.0f-DIFF;
|
|
443 |
final float D = 1.0f-S;
|
|
444 | 444 |
final float A = 0.1f; |
445 | 445 |
final float B = 0.2f; |
446 | 446 |
final float C = 0.55f+D; |
... | ... | |
472 | 472 |
} |
473 | 473 |
else if( variant==3 ) |
474 | 474 |
{ |
475 |
final float D = 1.0f-DIFF;
|
|
475 |
final float D = 1.0f-S;
|
|
476 | 476 |
final float INIT_ALPHA = (float)Math.asin(1/(3*DIAMETER_RATIO)); |
477 | 477 |
final float H = 0.5f*((float)Math.sqrt(9*DIAMETER_RATIO*DIAMETER_RATIO-1))-1.0f; |
478 | 478 |
final int NUM_VERTICES = 8 + 2*(NUMBER_EDGE_SEGMENTS-1); |
... | ... | |
500 | 500 |
} |
501 | 501 |
else |
502 | 502 |
{ |
503 |
final float D = 1.02f-DIFF;
|
|
503 |
final float D = 1.02f-S;
|
|
504 | 504 |
final float H = 0.5f*((float)Math.sqrt(9*DIAMETER_RATIO*DIAMETER_RATIO-1))-1.0f; |
505 | 505 |
final float INIT_ALPHA = (float)Math.asin(1/(3*DIAMETER_RATIO)); |
506 | 506 |
final float STEP_CORNER= (float)((Math.PI/2-2*INIT_ALPHA)/NUMBER_CORNER_SEGMENTS); |
src/main/res/raw/cra1_2_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Circle 2x2","inventor":"Aleh Hladzilin","year":2007,"complexity":2.0899999141693115,"size":2,"scrambles":16,"shortname":"CRA1_2","resetmaps":false,"num_faces":6,"price":50,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,55]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.10000002384185791},{"x":0.5,"y":-0.2703899145126343,"z":0.05432773754000664},{"x":0.5,"y":-0.075735904276371,"z":-0.07573592662811279},{"x":0.5,"y":0.054327741265296936,"z":-0.27038994431495667},{"x":0.5,"y":0.10000002384185791,"z":-0.5},{"x":0.10000002384185791,"y":0.5,"z":-0.5},{"x":0.05432773754000664,"y":0.5,"z":-0.2703899145126343},{"x":-0.07573592662811279,"y":0.5,"z":-0.075735904276371},{"x":-0.27038994431495667,"y":0.5,"z":0.054327741265296936},{"x":-0.5,"y":0.5,"z":0.10000002384185791},{"x":-0.5,"y":0.10000002384185791,"z":0.5},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.5},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":0.5},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":0.5},{"x":0.10000002384185791,"y":-0.5,"z":0.5},{"x":-0.0757359117269516,"y":-0.0757359117269516,"z":-0.0757359117269516},{"x":-0.5,"y":0.10000002384185791,"z":0.10000002384185791},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.05432773754000664},{"x":0.10000002384185791,"y":-0.5,"z":0.10000002384185791},{"x":0.05432773754000664,"y":-0.2703899145126343,"z":0.05432773754000664},{"x":0.10000002384185791,"y":0.10000002384185791,"z":-0.5},{"x":0.05432773754000664,"y":0.05432773754000664,"z":-0.2703899145126343}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.10000002384185791,"z":1.5199999809265137},{"x":0.10000002384185791,"y":-0.5,"z":1.5199999809265137},{"x":-0.5,"y":-0.5,"z":1.5199999809265137},{"x":-0.5,"y":0.10000002384185791,"z":0.5199999809265137},{"x":0.10000002384185791,"y":-0.5,"z":0.5199999809265137},{"x":-0.5,"y":-0.5,"z":0.5199999809265137},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":1.5199999809265137},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":1.5199999809265137},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":1.5199999809265137},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.5199999809265137},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":0.5199999809265137},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":0.5199999809265137}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":1,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.0020000003278255463,"var3":-0.010399999096989632,"var4":1,"center0":-0.5,"center1":0.10000002384185791,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.0020000003278255463,"var2":0.009999999776482582,"var3":-0.010399999096989632,"var4":1,"center0":0.10000002384185791,"center1":-0.5,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":-0.010399999096989632,"var4":1,"center0":-0.5,"center1":-0.5,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[0.5,0.5,0.5],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":1,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":1,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.45423999428749084,"y":0.5,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.5,"y":-0.45423999428749084,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.11829999834299088,"y":-0.45423999428749084,"angle":-1.5707963705062866,"radius":0.1045832708477974,"stroke":0.11450932919979095},{"x":0.45423999428749084,"y":0.11829999834299088,"angle":0,"radius":0.1045832708477974,"stroke":0.11450932919979095}]]},{"loops":[[{"x":-0.5,"y":0.5,"angle":0,"radius":0.050440192222595215,"stroke":0.1990928053855896},{"x":-0.5,"y":-0.5,"angle":0,"radius":0.11613747477531433,"stroke":0.1990928053855896},{"x":0.5,"y":-0.5,"angle":1.5707963705062866,"radius":0.050440192222595215,"stroke":0.1990928053855896}]]}],"pillow":1},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2]],"edges":[[0,0,1,0,2,0,3,0,4,0,5,0,6,0,7,0,8,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Circle 2x2","inventor":"Aleh Hladzilin","year":2007,"complexity":2.0899999141693115,"size":2,"scrambles":16,"shortname":"CRA1_2","resetmaps":false,"num_faces":6,"price":50,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,55]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.10000002384185791},{"x":0.5,"y":-0.2703899145126343,"z":0.05432773754000664},{"x":0.5,"y":-0.075735904276371,"z":-0.07573592662811279},{"x":0.5,"y":0.054327741265296936,"z":-0.27038994431495667},{"x":0.5,"y":0.10000002384185791,"z":-0.5},{"x":0.10000002384185791,"y":0.5,"z":-0.5},{"x":0.05432773754000664,"y":0.5,"z":-0.2703899145126343},{"x":-0.07573592662811279,"y":0.5,"z":-0.075735904276371},{"x":-0.27038994431495667,"y":0.5,"z":0.054327741265296936},{"x":-0.5,"y":0.5,"z":0.10000002384185791},{"x":-0.5,"y":0.10000002384185791,"z":0.5},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.5},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":0.5},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":0.5},{"x":0.10000002384185791,"y":-0.5,"z":0.5},{"x":-0.0757359117269516,"y":-0.0757359117269516,"z":-0.0757359117269516},{"x":-0.5,"y":0.10000002384185791,"z":0.10000002384185791},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.05432773754000664},{"x":0.10000002384185791,"y":-0.5,"z":0.10000002384185791},{"x":0.05432773754000664,"y":-0.2703899145126343,"z":0.05432773754000664},{"x":0.10000002384185791,"y":0.10000002384185791,"z":-0.5},{"x":0.05432773754000664,"y":0.05432773754000664,"z":-0.2703899145126343}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":0,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.10000002384185791,"z":1.5199999809265137},{"x":0.10000002384185791,"y":-0.5,"z":1.5199999809265137},{"x":-0.5,"y":-0.5,"z":1.5199999809265137},{"x":-0.5,"y":0.10000002384185791,"z":0.5199999809265137},{"x":0.10000002384185791,"y":-0.5,"z":0.5199999809265137},{"x":-0.5,"y":-0.5,"z":0.5199999809265137},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":1.5199999809265137},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":1.5199999809265137},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":1.5199999809265137},{"x":-0.2703899145126343,"y":0.05432773754000664,"z":0.5199999809265137},{"x":-0.075735904276371,"y":-0.07573592662811279,"z":0.5199999809265137},{"x":0.054327741265296936,"y":-0.27038994431495667,"z":0.5199999809265137}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":1,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.0020000003278255463,"var3":-0.010399999096989632,"var4":1,"center0":-0.5,"center1":0.10000002384185791,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.0020000003278255463,"var2":0.009999999776482582,"var3":-0.010399999096989632,"var4":1,"center0":0.10000002384185791,"center1":-0.5,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":-0.010399999096989632,"var4":1,"center0":-0.5,"center1":-0.5,"center2":1.5199999809265137,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[0.5,0.5,0.5],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":1,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":1,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,-0.5],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,0.5,0.5],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,0.5],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,0.5,-0.5],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,0.5],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,0.5],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.5,-0.5,-0.5],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.5,-0.5,-0.5],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.45423999428749084,"y":0.5,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.5,"y":-0.45423999428749084,"angle":0,"radius":0.06679710745811462,"stroke":0.11450932919979095},{"x":-0.11829999834299088,"y":-0.45423999428749084,"angle":-1.5707963705062866,"radius":0.1045832708477974,"stroke":0.11450932919979095},{"x":0.45423999428749084,"y":0.11829999834299088,"angle":0,"radius":0.1045832708477974,"stroke":0.11450932919979095}]]},{"loops":[[{"x":-0.5,"y":0.5,"angle":0,"radius":0.050440192222595215,"stroke":0.1990928053855896},{"x":-0.5,"y":-0.5,"angle":0,"radius":0.11613747477531433,"stroke":0.1990928053855896},{"x":0.5,"y":-0.5,"angle":1.5707963705062866,"radius":0.050440192222595215,"stroke":0.1990928053855896}]]}],"pillow":1},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4],"cuts":[0],"rotatable":[true,true],"factor":[1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2]],"edges":[[0,0,1,0,2,0,3,0,4,0,5,0,6,0,7,0,8,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra1_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Circle 3x3","inventor":"Aleh Hladzilin","year":2008,"complexity":2.880000114440918,"size":3,"scrambles":22,"shortname":"CRA1_3","resetmaps":false,"num_faces":6,"price":50,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,56]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0.6000000238418579,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0.6000000238418579,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0.6000000238418579,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Circle 3x3","inventor":"Aleh Hladzilin","year":2008,"complexity":2.880000114440918,"size":3,"scrambles":22,"shortname":"CRA1_3","resetmaps":false,"num_faces":6,"price":50,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,56]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra2_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Mercury","inventor":"Daqing Bao","year":2010,"complexity":4.610000133514404,"size":3,"scrambles":22,"shortname":"CRA2_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,57]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0.6000000238418579,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0.6000000238418579,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0.6000000238418579,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Mercury","inventor":"Daqing Bao","year":2010,"complexity":4.610000133514404,"size":3,"scrambles":22,"shortname":"CRA2_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,57]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra3_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Venus","inventor":"Daqing Bao","year":2010,"complexity":4.619999885559082,"size":3,"scrambles":22,"shortname":"CRA3_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,58]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0.6000000238418579,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0.6000000238418579,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0.6000000238418579,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[24,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Venus","inventor":"Daqing Bao","year":2010,"complexity":4.619999885559082,"size":3,"scrambles":22,"shortname":"CRA3_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,58]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[24,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra4_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Earth","inventor":"Daqing Bao","year":2010,"complexity":4.630000114440918,"size":3,"scrambles":22,"shortname":"CRA4_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,59]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0.6000000238418579,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0.6000000238418579,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[23,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Earth","inventor":"Daqing Bao","year":2010,"complexity":4.630000114440918,"size":3,"scrambles":22,"shortname":"CRA4_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,59]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[23,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra5_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Mars","inventor":"Daqing Bao","year":2010,"complexity":4.639999866485596,"size":3,"scrambles":22,"shortname":"CRA5_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,60]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0.6000000238418579,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0.6000000238418579,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[23,6,24,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Mars","inventor":"Daqing Bao","year":2010,"complexity":4.639999866485596,"size":3,"scrambles":22,"shortname":"CRA5_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,60]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[23,6,24,6,25,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra6_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Jupiter","inventor":"Daqing Bao","year":2010,"complexity":3.809999942779541,"size":3,"scrambles":22,"shortname":"CRA6_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,61]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,23,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Jupiter","inventor":"Daqing Bao","year":2010,"complexity":3.809999942779541,"size":3,"scrambles":22,"shortname":"CRA6_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,61]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,23,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra7_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Saturn","inventor":"Daqing Bao","year":2010,"complexity":4.650000095367432,"size":3,"scrambles":22,"shortname":"CRA7_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,62]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,23,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Saturn","inventor":"Daqing Bao","year":2010,"complexity":4.650000095367432,"size":3,"scrambles":22,"shortname":"CRA7_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,62]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,23,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra8_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Uranus","inventor":"Daqing Bao","year":2010,"complexity":3.819999933242798,"size":3,"scrambles":22,"shortname":"CRA8_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,63]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0.6000000238418579,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Uranus","inventor":"Daqing Bao","year":2010,"complexity":3.819999933242798,"size":3,"scrambles":22,"shortname":"CRA8_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,63]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[20,6,21,6,22,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
src/main/res/raw/cra9_3_object.json | ||
---|---|---|
1 |
{"major":15,"minor":1,"metadata":{"longname":"Crazy Plus Neptune","inventor":"Daqing Bao","year":2010,"complexity":4.659999847412109,"size":3,"scrambles":22,"shortname":"CRA9_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,64]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-0.6000000238418579,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":-0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":0.6000000238418579,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":-0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":0.6000000238418579,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[21,6,22,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
|
1 |
{"major":16,"minor":1,"metadata":{"longname":"Crazy Plus Neptune","inventor":"Daqing Bao","year":2010,"complexity":4.659999847412109,"size":3,"scrambles":22,"shortname":"CRA9_3","resetmaps":false,"num_faces":6,"price":80,"category":4097,"adj_colors":true,"signature":[0,0,0,0,0,0,0,0,64]},"mesh":{"shapes":[{"vertices":[{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":-0.5,"z":0.5},{"x":0.5,"y":0.5,"z":-0.5},{"x":0.5,"y":-0.5,"z":0.00778221245855093},{"x":0.5,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.5,"y":-0.20450490713119507,"z":-0.2045048475265503},{"x":0.5,"y":-0.08633614331483841,"z":-0.3436134159564972},{"x":0.5,"y":0.0077822343446314335,"z":-0.5000000596046448},{"x":0.00778221245855093,"y":0.5,"z":-0.5},{"x":-0.08633613586425781,"y":0.5,"z":-0.3436134159564972},{"x":-0.2045048475265503,"y":0.5,"z":-0.20450490713119507},{"x":-0.3436134159564972,"y":0.5,"z":-0.08633614331483841},{"x":-0.5000000596046448,"y":0.5,"z":0.0077822343446314335},{"x":-0.5,"y":0.00778221245855093,"z":0.5},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.5},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.5},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.5},{"x":0.0077822343446314335,"y":-0.5000000596046448,"z":0.5},{"x":-0.20450487732887268,"y":-0.20450487732887268,"z":-0.20450487732887268},{"x":-0.5,"y":0.00778221245855093,"z":0.00778221245855093},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":-0.5,"z":0.00778221245855093},{"x":-0.08633613586425781,"y":-0.3436134159564972,"z":-0.08633613586425781},{"x":0.00778221245855093,"y":0.00778221245855093,"z":-0.5},{"x":-0.08633613586425781,"y":-0.08633613586425781,"z":-0.3436134159564972}],"faces":[{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[3,0,2,4,5,6,7,8]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[1,0,3,9,10,11,12,13]},{"bandIndex":0,"sticker":0,"isOuter":1,"vertexIndices":[2,0,1,14,15,16,17,18]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,13,20,14]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[2,18,22,4]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[3,8,24,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,11,10,25]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,21,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,25,7,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,6,5,23]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,16,15,21]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[19,23,17,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[24,25,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[25,24,8,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[20,21,15,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[21,20,13,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[22,23,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[23,22,18,17]}],"bands":[{"height":0.03999999910593033,"angle":45,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.699999988079071,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":5,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.20000000298023224,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":-0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.5,"z":0.5},{"x":0.5,"y":0.5,"z":0.5},{"x":-0.5,"y":0.0077822208404541016,"z":0.5},{"x":0.5,"y":0.0077822208404541016,"z":0.5},{"x":-0.5,"y":0.5,"z":0.0077822208404541016},{"x":0.5,"y":0.5,"z":0.0077822208404541016},{"x":-0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":0.5,"y":0.0077822208404541016,"z":0.0077822208404541016},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":0,"y":0.125,"z":0.5},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.5},{"x":-0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":0,"y":0.5,"z":0.125},{"x":0.25677812099456787,"y":0.5,"z":0.09530360996723175},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175},{"x":0,"y":0.125,"z":0.125},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.09530360996723175}],"faces":[{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[3,1,0,2,8,9,10]},{"bandIndex":0,"sticker":1,"isOuter":1,"vertexIndices":[4,0,1,5,13,12,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[5,1,3,7]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,4,6,2]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,2,6,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[3,10,16,7]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,4,11,14]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,7,16,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,8,14,15]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,9,15,16]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[15,14,11,12]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[16,15,12,13]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.5,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":-0.009999999776482582,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.5,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-0.009999999776482582,"var3":-1.5564441855531186E-4,"var4":1,"center0":0.5,"center1":0.5,"center2":0.0077822208404541016,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":0.5,"z":-0.10000002384185791},{"x":0.5,"y":0.5,"z":0.8999999761581421},{"x":0,"y":-0.10000000149011612,"z":0.949999988079071},{"x":0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071},{"x":0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":0.10000000149011612,"y":0,"z":0.949999988079071},{"x":0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":0,"y":0.10000000149011612,"z":0.949999988079071},{"x":-0.20000000298023224,"y":0.30000001192092896,"z":0.949999988079071},{"x":-0.30000001192092896,"y":0.20000000298023224,"z":0.949999988079071},{"x":-0.10000000149011612,"y":0,"z":0.949999988079071},{"x":-0.30000001192092896,"y":-0.20000000298023224,"z":0.949999988079071},{"x":-0.20000000298023224,"y":-0.30000001192092896,"z":0.949999988079071}],"faces":[{"bandIndex":0,"sticker":2,"isOuter":1,"vertexIndices":[1,5,7,3]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[5,4,6,7]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,1,3,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[3,7,6,2]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[0,4,5,1]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[4,0,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,10,11,12,13,14,15,16,17,18,19]}],"bands":[{"height":0.05000000074505806,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":-0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.02199999988079071,"var4":1,"center0":-0.5,"center1":0.5,"center2":-0.10000002384185791,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":-0.5,"z":0.8999999761581421},{"x":-0.5,"y":-0.5,"z":-0.10000002384185791},{"x":0.5,"y":-0.5,"z":0.8999999761581421},{"x":0.5,"y":-0.5,"z":-0.10000002384185791},{"x":-0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":-0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":0.5,"y":0.0077822208404541016,"z":0.8999999761581421},{"x":0.5,"y":0.0077822208404541016,"z":-0.10000002384185791},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":0,"y":0.125,"z":0.8999999761581421},{"x":0.25677812099456787,"y":0.09530360996723175,"z":0.8999999761581421},{"x":-0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791},{"x":0,"y":0.125,"z":-0.10000002384185791},{"x":0.25677812099456787,"y":0.09530360996723175,"z":-0.10000002384185791}],"faces":[{"bandIndex":0,"sticker":3,"isOuter":1,"vertexIndices":[4,0,2,6,10,9,8]},{"bandIndex":2,"sticker":3,"isOuter":0,"vertexIndices":[7,3,1,5,11,12,13]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[7,3,2,6]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[4,0,1,5]},{"bandIndex":1,"sticker":2,"isOuter":0,"vertexIndices":[1,3,2,0]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[5,4,8,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[10,6,7,13]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[8,9,12,11]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,10,13,12]}],"bands":[{"height":0.029999999329447746,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":0.009999999776482582,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":-0.5,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.0020000003278255463,"var4":1,"center0":0.5,"center1":0.0077822208404541016,"center2":0.8999999761581421,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]},{"vertices":[{"x":-0.5,"y":0.0077822208404541016,"z":0.9199999570846558},{"x":0.0077822208404541016,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":-0.5,"z":0.9199999570846558},{"x":-0.5,"y":0.0077822208404541016,"z":-0.08000004291534424},{"x":0.0077822208404541016,"y":-0.5,"z":-0.08000004291534424},{"x":-0.5,"y":-0.5,"z":-0.08000004291534424},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":0.9199999570846558},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":0.9199999570846558},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":0.9199999570846558},{"x":-0.3436134159564972,"y":-0.08633613586425781,"z":-0.08000004291534424},{"x":-0.20450490713119507,"y":-0.2045048475265503,"z":-0.08000004291534424},{"x":-0.08633614331483841,"y":-0.3436134159564972,"z":-0.08000004291534424}],"faces":[{"bandIndex":0,"sticker":4,"isOuter":1,"vertexIndices":[0,2,1,8,7,6]},{"bandIndex":2,"sticker":4,"isOuter":0,"vertexIndices":[4,5,3,9,10,11]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[0,3,5,2]},{"bandIndex":1,"sticker":-1,"isOuter":0,"vertexIndices":[1,2,5,4]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[9,3,0,6]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[1,4,11,8]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[6,7,10,9]},{"bandIndex":2,"sticker":-1,"isOuter":0,"vertexIndices":[7,8,11,10]}],"bands":[{"height":0.019999999552965164,"angle":45,"distanceToCenter":0.20000000298023224,"distanceToFlat":0.4000000059604645,"numOfBands":5,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":3,"extraI":0,"extraJ":0},{"height":0.0010000000474974513,"angle":1,"distanceToCenter":0.30000001192092896,"distanceToFlat":0.5,"numOfBands":2,"extraI":0,"extraJ":0}],"effects":[{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":-1.5564441855531186E-4,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":0.0077822208404541016,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":-1.5564441855531186E-4,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":0.0077822208404541016,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false},{"name":"DEFORM","var0":0,"var1":0.009999999776482582,"var2":0.009999999776482582,"var3":0.001600000774487853,"var4":1,"center0":-0.5,"center1":-0.5,"center2":0.9199999570846558,"region0":0,"region1":0,"region2":0,"region3":0.09000000357627869,"use":false}]}],"cubits":[{"centers":[1,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,3,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,1],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-1],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":0,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[0,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,1],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[1,5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,1],"qx":0,"qy":0,"qz":0,"qw":1,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[4,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-1],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[3,4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-1],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":1,"type":0,"offsetX":0,"offsetY":0,"offsetZ":0,"colors":[5,3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":2,"type":2,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":2,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":2,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,0],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":2,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":2,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":2,"type":2,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,0],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,0],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,0],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,0,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,0,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,0],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,0],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":3,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":3,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0,"qw":1,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,1,-0.6000000238418579],"qx":0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-1,-0.6000000238418579],"qx":1,"qy":0,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,0.6000000238418579],"qx":0,"qy":0,"qz":0.7071067690849304,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,1,-0.6000000238418579],"qx":0,"qy":1,"qz":0,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,0.6000000238418579],"qx":0,"qy":0,"qz":1,"qw":6.123234262925839E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":-1,"colors":[4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-1,-0.6000000238418579],"qx":-0.7071067690849304,"qy":0.7071067690849304,"qz":4.329780301713277E-17,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":0,"offsetZ":1,"colors":[5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,0.6000000238418579,-1],"qx":0.7071067690849304,"qy":0,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[1,-0.6000000238418579,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,0.6000000238418579,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":0,"offsetY":-1,"offsetZ":0,"colors":[2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-1,-0.6000000238418579,-1],"qx":4.329780301713277E-17,"qy":0.7071067690849304,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":0,"offsetY":1,"offsetZ":0,"colors":[3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,1],"qx":-0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":0.7071067690849304,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,1,-1],"qx":0,"qy":0.7071067690849304,"qz":0,"qw":-0.7071067690849304,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,1,-1],"qx":0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,1],"qx":-0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":-4.329780301713277E-17,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,1],"qx":0.4999999701976776,"qy":-0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[0.6000000238418579,-1,-1],"qx":-0.4999999701976776,"qy":0.4999999701976776,"qz":-0.4999999701976776,"qw":-0.4999999701976776,"variant":4,"type":1,"offsetX":-1,"offsetY":0,"offsetZ":0,"colors":[0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]},{"centers":[-0.6000000238418579,-1,-1],"qx":0.7071067690849304,"qy":4.329780301713277E-17,"qz":-0.7071067690849304,"qw":4.329780301713277E-17,"variant":4,"type":1,"offsetX":1,"offsetY":0,"offsetZ":0,"colors":[1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]}],"stickers":[{"loops":[[{"x":0.36455219984054565,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":0.5,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.5,"y":-0.36455219984054565,"angle":0,"radius":0.06051865220069885,"stroke":0.10374625772237778},{"x":-0.0744519978761673,"y":-0.36455219984054565,"angle":-0.7853981852531433,"radius":0.09475317597389221,"stroke":0.10374625772237778},{"x":0.36455219984054565,"y":0.0744519978761673,"angle":0,"radius":0.09475317597389221,"stroke":0.10374625772237778}]]},{"loops":[[{"x":0.5,"y":-0.18238520622253418,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.3098326027393341,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.18238520622253418,"angle":-1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":0.5,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.5,"y":0.10332909971475601,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":-0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":-0.4044530987739563,"angle":0,"radius":0.07000000029802322,"stroke":0.11999999731779099},{"x":0.5,"y":0.10332909971475601,"angle":1.0471975803375244,"radius":0.07000000029802322,"stroke":0.11999999731779099}]]},{"loops":[[{"x":-0.41034889221191406,"y":0.5,"angle":0,"radius":0.05450456589460373,"stroke":0.21513527631759644},{"x":-0.41034889221191406,"y":-0.41034889221191406,"angle":0,"radius":0.12549558281898499,"stroke":0.21513527631759644},{"x":0.5,"y":-0.41034889221191406,"angle":0.7853981852531433,"radius":0.05450456589460373,"stroke":0.21513527631759644}]]}],"pillow":1,"overrides":[{"cubitfaces":[21,6,22,6,24,6],"color":16777215}]},"axis":[{"x":1,"y":0,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":1,"z":0,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]},{"x":0,"y":0,"z":1,"basicAngles":[4,4,4],"cuts":[-0.5,0.5],"rotatable":[true,true,true],"factor":[1,1,1]}],"quats":[{"x":0,"y":0,"z":0,"w":1},{"x":0.7071067690849304,"y":0,"z":0,"w":0.7071067690849304},{"x":1,"y":0,"z":0,"w":6.123234262925839E-17},{"x":0.7071067690849304,"y":0,"z":0,"w":-0.7071067690849304},{"x":0,"y":0.7071067690849304,"z":0,"w":0.7071067690849304},{"x":0,"y":1,"z":0,"w":6.123234262925839E-17},{"x":0,"y":0.7071067690849304,"z":0,"w":-0.7071067690849304},{"x":0,"y":0,"z":0.7071067690849304,"w":0.7071067690849304},{"x":0,"y":0,"z":1,"w":6.123234262925839E-17},{"x":0,"y":0,"z":0.7071067690849304,"w":-0.7071067690849304},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":0.4999999701976776},{"x":4.329780301713277E-17,"y":0.7071067690849304,"z":0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":0.4999999701976776,"w":-0.4999999701976776},{"x":0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":4.329780301713277E-17,"z":-0.7071067690849304,"w":-4.329780301713277E-17},{"x":0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":4.329780301713277E-17},{"x":-0.7071067690849304,"y":0.7071067690849304,"z":4.329780301713277E-17,"w":-4.329780301713277E-17},{"x":0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":-0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776},{"x":0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":-0.4999999701976776},{"x":-0.4999999701976776,"y":0.4999999701976776,"z":-0.4999999701976776,"w":0.4999999701976776}],"scrambling":{"scrambleType":0,"algorithms":[[0,1,-1],[0,1,1],[0,1,2],[0,2,-1],[0,2,1],[0,2,2],[0,4,-1],[0,4,1],[0,4,2],[1,1,-1],[1,1,1],[1,1,2],[1,2,-1],[1,2,1],[1,2,2],[1,4,-1],[1,4,1],[1,4,2],[2,1,-1],[2,1,1],[2,1,2],[2,2,-1],[2,2,1],[2,2,2],[2,4,-1],[2,4,1],[2,4,2]],"edges":[[0,1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,10,1,10,2,10,3,10,4,10,5,10,6,10,7,10,8,10,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,11,1,11,2,11,3,11,4,11,5,11,6,11,7,11,8,11,9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[9,12,10,12,11,12,12,12,13,12,14,12,15,12,16,12,17,12,18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8,9,13,10,13,11,13,12,13,13,13,14,13,15,13,16,13,17,13],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4,18,14,19,14,20,14,21,14,22,14,23,14,24,14,25,14,26,14],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6,18,15,19,15,20,15,21,15,22,15,23,15,24,15,25,15,26,15],[18,5,19,5,20,5,21,5,22,5,23,5,24,5,25,5,26,5],[9,4,10,4,11,4,12,4,13,4,14,4,15,4,16,4,17,4],[18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7],[0,6,1,6,2,6,3,6,4,6,5,6,6,6,7,6,8,6],[9,9,10,9,11,9,12,9,13,9,14,9,15,9,16,9,17,9],[0,8,1,8,2,8,3,8,4,8,5,8,6,8,7,8,8,8]]},"touchcontrol":{"movementType":6,"movementSplit":0,"enabledAxis":[[[1,2]],[[1,2]],[[0,2]],[[0,2]],[[0,1]],[[0,1]]],"dist3D":[0.5,0.5,0.5,0.5,0.5,0.5]},"colors":[-256,-1,-16776961,-16729344,-5636096,-40448,-16777216],"solved":{"functionIndex":2}} |
Also available in: Unified diff
improve the way Crazy Puzzles are done: JSON files