blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
a56cfb29e8d0651dd12ab0efe1d53446089f312d
449d555969bfd7befe906877abab098c6e63a0e8
/2339/CH3/EX3.32.1/Ex3_32.sce
5365650c38a04aa855972d9834f3dec3b0777c6c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
594
sce
Ex3_32.sce
clc clear //Inputs //The Values in the program are as follows: //Temperature in Celcius converted to Kelvin(by adding 273) //Pressure in bar converted to kPa (by multiplying 100) //Volume in m^3 //Value of R,Cp and Cv in kJ/kg K M=27; P1=1; T1=60+273; n=1.3; Cvm=21; Ro=8.314; R=Ro/M; //Calculations V1=(R*T1)/(P1*100); V2=V1/12; x=V1/V2; P2=P1*(x^n); W=((P1*100*V1)-(P2*100*V2))/(n-1); printf('Work Done: %3.2f kJ/kg',W); printf('\n'); Cv=Cvm/M; Cp=Cv+R; G=Cp/Cv; Q=((G-n)/(G-1))*W; printf('Heat Transfer during the process: %3.2f kJ/kg',Q); printf('\n');
dc0624b3b7d70f1fec9d95945daba3093c520a17
449d555969bfd7befe906877abab098c6e63a0e8
/2378/CH1/EX1.5/Exa_1_5.sce
df07fea13580e2abd2a212033ef8d4d47c7d2e3b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
764
sce
Exa_1_5.sce
//equivalent k of crane //Exa_1_5 clc; clear; //refer fig_1_27 l1=sqrt(3^2 + 10^2 -(2*3*10*cosd(135))); //length FC in m l2=10 //length of AB in m A1=100e-6; //cross section area of FB in m^2 A2=2500e-6; //cross section area of AB in m^2 E1=207e9; //youngs modulus of material E2=207e9; //youngs modulus of material theta= acosd(( l1^2 + 3^2 -10^2) / (2*l1*3)); //angle theta in degree k1=(A1 * E1)/ l1; //spring constant of FB k2=(A2 * E2)/ l2; //spring constant of AB keq= (k1*(cosd(45))^2) + (k2*((cosd(90-theta))^2)); //equivalent spring constant of system disp(keq,"equivalent spring constant of system in N/m = "); //note: the answer in the book is printed incorrectly as 26430400 N/m
ebf16e2e9004bc2a7fca053858f1423b4872ab94
244971ae8af51184d278cdc2be1c80775413adae
/SSSeSpectrumAnalyzer.sci
7f8b1cd6305f877947d2fb8a2c7502d0d019af42
[]
no_license
MSCA-SIMFREE/748767
5879f1f139b608c7cd2f1bd62325b281c9c1e7d1
4726206e514f1e47e939e73b9339c056057866db
refs/heads/master
2020-12-27T15:21:13.646362
2020-02-03T11:40:00
2020-02-03T11:40:00
237,951,088
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,051
sci
SSSeSpectrumAnalyzer.sci
// The code was developed under Horizon2020 Framework Programme // Project: 748767 — SIMFREE function [y,f0,df]=SSSeSpectrumAnalyzer(x) // Electrical Spectrum Analyzer // // Calling Sequence // [y,f0,df]=SSSeSpectrumAnalyzer(x) // // Parameters // x : Electrical Input // y : Electrical Output // f0 : f0 = 0 // df : Frequency spacing between the spectral components // // Description // Computes the single-sided power spectral density in input signal units RMS squared per bandwidth interval. // The bandwidth interval is the frequency spacing between the spectral components, df. This frequency interval is given at the output of the SSSconfig, and is equal to the symbol-rate divided by the code length 2^m. // The component at 0 GHz (DC) gives the average power in the signal. // global MNT MNS MDT; [lhs,rhs]=argn(0); if rhs==0 then error("Expect at least one argument"); end X=fft(x); y=abs(X)/MNT; y=y(1:MNT/2+1); f0=0; df=MSR/MNS; endfunction
e1dd1d7bdc0c08d18c3e03d2c8c69030d8387268
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH9/EX9.2/Chapter9_Example2.sce
a3ee6736f4dcb00df35b899409e616b31f73167b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
441
sce
Chapter9_Example2.sce
clc clear //Input data E=0.025//Energy of the electron in MeV e=(1.6*10^-19)//Charge of the electron in coloumbs h=(6.625*10^-34)//Plancks constant in Js m=(9.1*10^-31)//Mass of the electron in kg //Calculations E1=E*e*10^6//Energy of the electron in J v=sqrt((2*E1)/m)//Velocity of the electron in m/s l=(h/(m*v))/10^-10//de Broglie wavelength in angstroms //Output printf('The de Broglie wavelength is %3.4f angstroms',l)
b0d6245308306572d60e7900af4c5d22d6b2eac5
449d555969bfd7befe906877abab098c6e63a0e8
/67/CH1/EX1.31.a/example131a.sce
02666132b798ffeb1948da8edde7af0ff3ed8d35
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
193
sce
example131a.sce
//Example 1.31a //Determine whether the given signal is periodic or not clc; n=0:1/100:10 x=sin(6*%pi*n/7); plot(x)//plotting the signal and showing it is periodic with period 2pi/(6pi/7);
d92e7398ba8284bc4bff4e96dd780d8e087e42af
efc2fec9dd841d0ca834702c904e00c52762a9f9
/isEpipoleInImage/isEpipoleInImage4.sce
0bf51fe1f01f2cf2c89047cb45e525453841ffec
[]
no_license
surajch77/Scilab-Computer-Vision-Toolbox-TestCases
64c8e0382e8b9d416c4c27c1ed4272f49bf45b51
969f9bcddefea05b42c623aeebe2e0cdcffd6eeb
refs/heads/master
2021-01-20T20:24:14.345296
2016-06-29T15:16:52
2016-06-29T15:16:52
61,932,313
0
0
null
null
null
null
UTF-8
Scilab
false
false
243
sce
isEpipoleInImage4.sce
f = [0.0000 -0.0004 0.0348 0.0004 0.0000 -0.0937 -0.0425 0.0993 0.9892]; imageSize = [200, 300]; [isIn,epipole] = isEpipoleInImage(f',imageSize) //epipole = // 249.42735 103.19399 // isIn = // T
024fffd5a66b75ff56285c3cf826c279c55422b8
5f1321e89c543807965d796644be035556a4e9f7
/matrix/run.sce
4e3afea7e20b2a2f8b13364e9364351ea391dbcc
[]
no_license
rupakrokade/scilab_api_sig
1f7c5f7e5bf8460a51b12153cacfb3be7f978bcf
aff9775958830484a64dbe1709678d9725e86d3c
refs/heads/master
2022-02-21T01:56:07.485115
2019-10-04T10:05:30
2019-10-04T10:05:30
197,972,164
0
0
null
null
null
null
UTF-8
Scilab
false
false
161
sce
run.sce
try exec cleaner.sce end ulink ilib_build('build_matrix',['matrix','matrix','csci6'],"sci_matrix.c",[]); exec loader.sce [c, d] = matrix([2,2;2,2], [3,8;4,5])
b714959cbb57e04f7695a7712a23cfde80cf252c
449d555969bfd7befe906877abab098c6e63a0e8
/1646/CH3/EX3.2/Ch03Ex2.sce
c74579af9ac75f8ba47507c6eed5df89d8c3a658
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
959
sce
Ch03Ex2.sce
// Scilab Code Ex3.2 : Page:132 (2011) clc;clear; A = 32; // Gram atomic mass of oxygen, g/mol N_A = 6.023e+026; // Avogadro's number, per kmol m = A/N_A;....//mass of the molecule, kg k_B = 1.38e-23;....// Boltzmann constant, J/K T = 273;....// Temperature of the gas, K v_av = 1.59*sqrt(k_B*T/m);....// Average speed of oxygen molecule, m/s printf("\nThe average speed of oxygen molecule is = %3d m/s", v_av); v_rms = 1.73*sqrt(k_B*T/m);....// The mean square speed of oxygen molecule, m/s printf("\nThe root mean square speed of oxygen gas molecule is = %3d m/s", ceil(v_rms)) v_mp = 1.41*sqrt(k_B*T/m);....// The most probable speed of oxygen molecule, m/s printf("\nThe most probable speed of oxygen molecule is = %3d m/s", ceil(v_mp)); // Result // The average speed of oxygen molecule is = 423 m/s // The root mean square speed of oxygen gas molecule is = 461 m/s // The most probable speed of oxygen molecule is = 376 m/s
432481c6cd1b85dafa298bd7b90fc6bcbd6a4362
1573c4954e822b3538692bce853eb35e55f1bb3b
/DSP Functions/zpklp2bpc/test_7.sce
89cea7e129d2aba04d863883a5f3c7b6f0cdffdc
[]
no_license
shreniknambiar/FOSSEE-DSP-Toolbox
1f498499c1bb18b626b77ff037905e51eee9b601
aec8e1cea8d49e75686743bb5b7d814d3ca38801
refs/heads/master
2020-12-10T03:28:37.484363
2017-06-27T17:47:15
2017-06-27T17:47:15
95,582,974
1
0
null
null
null
null
UTF-8
Scilab
false
false
314
sce
test_7.sce
// Test #7 : Length test for Input Argument #4 or Input Argument #5 exec('./zpklp2bpc.sci',-1); [z,p,k,n,d]=zpklp2bpc(4,2.2,1,[0.6,0.7],[0.34,0.28]); //!--error 10000 //Wo must be real ,numeric and scalar //at line 43 of function zpklp2bpc called by : //[z,p,k,n,d]=zpklp2bpc(4,2.2,1,[0.6,0.7],[0.34,0.28])
c586cb608ceaeae460c3c40c1fa55aca8324166d
538e0c3891a6925534c9c93ff5a8987735b8d22f
/SciLAB/Assignment_1_sol.sce
a69f82570a3055a1730ba38092cb7cf8feec7f6c
[]
no_license
rajan596/Assignments
7a047cf0cd04a00497046252b56d9477a2830167
ce43e931cf74597263f89ddf7a4f0f7e86ac6085
refs/heads/master
2021-05-31T07:19:37.526649
2016-04-13T07:57:32
2016-04-13T07:57:32
34,728,601
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,041
sce
Assignment_1_sol.sce
//creating array A=[1,2,3;4,9,6;7,8,9] B=[1,2,3;4,2,3;1,9,3] //display array disp("A:") disp(A) disp("B:") disp(B) // Transpose of A disp("Transpose of A:") disp(A') //Add A+B disp("A+B : ") disp(A+B) //Multiply A*B disp("A*B : ") disp(A*B) // Multiplying individual elements of A with B disp("A.*B : ") disp(A.*B) //Square of individual elements disp("A.^2 : ") disp(A.^2) disp("B.^B : ") disp(B.^2) //First raw of A disp("First raw of A : ") disp(A(1,:)) //last column of B disp("last column of B") disp(B(:,$)) // determinanat disp("Determinant of A :") disp(det(A)) //Inverse of B disp("Inverse of B") disp(inv(B)) //Array using random function disp("Creating array using random function") A=rand(5,6)*10 disp(A) //string in a variable line="I am an Indian" disp(line) //type disp("Type of A : ") disp(typeof(A)) //Sub matrix disp(A(3:4, 2:5)) // variable Exists or not disp("If Exists variable A : ") disp(exists("A")) //Removing variable disp("Removing line variable") clear line disp(line) // it will show error
cfc8d11e96ad0602e9fe7b9c516a92f36a8924c0
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/KP85YLZ/ATWM1_Working_Memory_MEG_KP85YLZ_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
e4504730fee8a0b14d6ec99783880f9669548228
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,617
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 36; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 382; width = 382; color = 0, 0, 0;} frame1; box { height = 369; width = 369; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 369; width = 369; color = 42, 42, 42;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 62 292 292 399 125 1742 2992 2592 fixation_cross gabor_176 gabor_040 gabor_008 gabor_159 gabor_176 gabor_040 gabor_008_alt gabor_159_alt "2_1_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_176_040_008_159_target_position_1_2_retrieval_position_1" gabor_176_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 1942 fixation_cross gabor_090 gabor_064 gabor_124 gabor_176 gabor_090 gabor_064_alt gabor_124_alt gabor_176 "2_2_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_090_064_124_176_target_position_1_4_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2242 fixation_cross gabor_108 gabor_166 gabor_145 gabor_092 gabor_108 gabor_166_alt gabor_145_alt gabor_092 "2_3_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_108_166_145_092_target_position_1_4_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_004 gabor_129 gabor_155 gabor_113 gabor_004 gabor_129_alt gabor_155_alt gabor_113 "2_4_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_004_129_155_113_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_065_framed blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_176 gabor_021 gabor_130 gabor_108 gabor_176 gabor_021_alt gabor_130_alt gabor_108 "2_5_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_176_021_130_108_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_178 gabor_030 gabor_012 gabor_136 gabor_178_alt gabor_030 gabor_012_alt gabor_136 "2_6_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_178_030_012_136_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_136_framed blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2042 fixation_cross gabor_123 gabor_101 gabor_065 gabor_141 gabor_123_alt gabor_101_alt gabor_065 gabor_141 "2_7_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_123_101_065_141_target_position_3_4_retrieval_position_1" gabor_123_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_119 gabor_058 gabor_135 gabor_104 gabor_119_alt gabor_058_alt gabor_135 gabor_104 "2_8_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_119_058_135_104_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_088_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1842 2992 1892 fixation_cross gabor_049 gabor_029 gabor_084 gabor_119 gabor_049 gabor_029 gabor_084_alt gabor_119_alt "2_9_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_049_029_084_119_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_119_framed blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_119_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_136 gabor_163 gabor_052 gabor_030 gabor_136_alt gabor_163 gabor_052_alt gabor_030 "2_10_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_136_163_052_030_target_position_2_4_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_104 gabor_038 gabor_147 gabor_085 gabor_104 gabor_038 gabor_147_alt gabor_085_alt "2_11_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_104_038_147_085_target_position_1_2_retrieval_position_1" gabor_057_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_173 gabor_101 gabor_150 gabor_045 gabor_173_alt gabor_101_alt gabor_150 gabor_045 "2_12_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_173_101_150_045_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2142 fixation_cross gabor_039 gabor_144 gabor_091 gabor_120 gabor_039 gabor_144 gabor_091_alt gabor_120_alt "2_13_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_039_144_091_120_target_position_1_2_retrieval_position_2" gabor_circ gabor_144_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_144_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_004 gabor_025 gabor_157 gabor_079 gabor_004_alt gabor_025_alt gabor_157 gabor_079 "2_14_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_004_025_157_079_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_157_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_131 gabor_041 gabor_096 gabor_061 gabor_131_alt gabor_041 gabor_096_alt gabor_061 "2_15_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_131_041_096_061_target_position_2_4_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_089 gabor_019 gabor_146 gabor_125 gabor_089_alt gabor_019 gabor_146_alt gabor_125 "2_16_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_089_019_146_125_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_171_framed blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2042 fixation_cross gabor_042 gabor_025 gabor_083 gabor_165 gabor_042 gabor_025 gabor_083_alt gabor_165_alt "2_17_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2050_gabor_patch_orientation_042_025_083_165_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_132_framed gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_132_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_137 gabor_066 gabor_094 gabor_178 gabor_137 gabor_066 gabor_094_alt gabor_178_alt "2_18_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_137_066_094_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_119 gabor_010 gabor_157 gabor_097 gabor_119 gabor_010_alt gabor_157 gabor_097_alt "2_19_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_119_010_157_097_target_position_1_3_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2042 2992 2142 fixation_cross gabor_110 gabor_134 gabor_077 gabor_160 gabor_110 gabor_134 gabor_077_alt gabor_160_alt "2_20_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2150_gabor_patch_orientation_110_134_077_160_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_027_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_028 gabor_088 gabor_137 gabor_007 gabor_028 gabor_088_alt gabor_137_alt gabor_007 "2_21_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_028_088_137_007_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_146 gabor_092 gabor_032 gabor_010 gabor_146 gabor_092_alt gabor_032 gabor_010_alt "2_22_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_146_092_032_010_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_078 gabor_164 gabor_009 gabor_134 gabor_078 gabor_164 gabor_009_alt gabor_134_alt "2_23_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_078_164_009_134_target_position_1_2_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_126 gabor_159 gabor_049 gabor_109 gabor_126 gabor_159 gabor_049_alt gabor_109_alt "2_24_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_126_159_049_109_target_position_1_2_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_004 gabor_114 gabor_031 gabor_060 gabor_004 gabor_114_alt gabor_031 gabor_060_alt "2_25_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_004_114_031_060_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_049 gabor_032 gabor_066 gabor_109 gabor_049_alt gabor_032 gabor_066 gabor_109_alt "2_26_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_049_032_066_109_target_position_2_3_retrieval_position_2" gabor_circ gabor_032_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_031 gabor_109 gabor_091 gabor_070 gabor_031_alt gabor_109_alt gabor_091 gabor_070 "2_27_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_031_109_091_070_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1742 2992 2342 fixation_cross gabor_180 gabor_143 gabor_013 gabor_091 gabor_180_alt gabor_143 gabor_013_alt gabor_091 "2_28_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2350_gabor_patch_orientation_180_143_013_091_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_013_framed gabor_circ blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_013_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_180 gabor_110 gabor_065 gabor_094 gabor_180 gabor_110_alt gabor_065_alt gabor_094 "2_29_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_180_110_065_094_target_position_1_4_retrieval_position_1" gabor_180_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_072 gabor_159 gabor_007 gabor_135 gabor_072_alt gabor_159 gabor_007 gabor_135_alt "2_30_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_072_159_007_135_target_position_2_3_retrieval_position_2" gabor_circ gabor_024_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_055 gabor_173 gabor_101 gabor_127 gabor_055_alt gabor_173 gabor_101_alt gabor_127 "2_31_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_055_173_101_127_target_position_2_4_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_168 gabor_052 gabor_029 gabor_097 gabor_168_alt gabor_052 gabor_029 gabor_097_alt "2_32_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_168_052_029_097_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_079_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1892 2992 1892 fixation_cross gabor_129 gabor_004 gabor_178 gabor_067 gabor_129_alt gabor_004 gabor_178 gabor_067_alt "2_33_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_129_004_178_067_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_020_framed blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_020_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_165 gabor_083 gabor_111 gabor_047 gabor_165 gabor_083_alt gabor_111_alt gabor_047 "2_34_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_165_083_111_047_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2042 2992 2242 fixation_cross gabor_108 gabor_021 gabor_074 gabor_128 gabor_108_alt gabor_021_alt gabor_074 gabor_128 "2_35_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2250_gabor_patch_orientation_108_021_074_128_target_position_3_4_retrieval_position_2" gabor_circ gabor_021_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_021_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_177 gabor_004 gabor_109 gabor_130 gabor_177 gabor_004_alt gabor_109 gabor_130_alt "2_36_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_177_004_109_130_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_109_framed gabor_circ blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_145 gabor_082 gabor_011 gabor_163 gabor_145 gabor_082 gabor_011_alt gabor_163_alt "2_37_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_145_082_011_163_target_position_1_2_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2492 fixation_cross gabor_088 gabor_048 gabor_176 gabor_018 gabor_088 gabor_048 gabor_176_alt gabor_018_alt "2_38_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_088_048_176_018_target_position_1_2_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_148 gabor_124 gabor_041 gabor_005 gabor_148 gabor_124 gabor_041_alt gabor_005_alt "2_39_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_148_124_041_005_target_position_1_2_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 1992 fixation_cross gabor_052 gabor_120 gabor_079 gabor_033 gabor_052 gabor_120 gabor_079_alt gabor_033_alt "2_40_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_052_120_079_033_target_position_1_2_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 2042 2992 1892 fixation_cross gabor_141 gabor_106 gabor_178 gabor_088 gabor_141 gabor_106_alt gabor_178 gabor_088_alt "2_41_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_1900_gabor_patch_orientation_141_106_178_088_target_position_1_3_retrieval_position_2" gabor_circ gabor_106_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_106_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_135 gabor_107 gabor_150 gabor_025 gabor_135_alt gabor_107 gabor_150 gabor_025_alt "2_42_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_135_107_150_025_target_position_2_3_retrieval_position_2" gabor_circ gabor_107_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_019 gabor_088 gabor_159 gabor_175 gabor_019 gabor_088 gabor_159_alt gabor_175_alt "2_43_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_019_088_159_175_target_position_1_2_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_086 gabor_021 gabor_004 gabor_140 gabor_086_alt gabor_021 gabor_004 gabor_140_alt "2_44_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_086_021_004_140_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_140 gabor_057 gabor_075 gabor_017 gabor_140 gabor_057_alt gabor_075 gabor_017_alt "2_45_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_140_057_075_017_target_position_1_3_retrieval_position_1" gabor_091_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_125 gabor_168 gabor_059 gabor_107 gabor_125 gabor_168_alt gabor_059 gabor_107_alt "2_46_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_125_168_059_107_target_position_1_3_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2442 fixation_cross gabor_050 gabor_138 gabor_121 gabor_081 gabor_050_alt gabor_138 gabor_121_alt gabor_081 "2_47_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_050_138_121_081_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_170_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_122 gabor_073 gabor_100 gabor_043 gabor_122 gabor_073_alt gabor_100_alt gabor_043 "2_48_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_122_073_100_043_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_072 gabor_040 gabor_011 gabor_145 gabor_072 gabor_040 gabor_011_alt gabor_145_alt "2_49_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_072_040_011_145_target_position_1_2_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 1942 2992 2292 fixation_cross gabor_138 gabor_078 gabor_056 gabor_113 gabor_138_alt gabor_078 gabor_056 gabor_113_alt "2_50_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2300_gabor_patch_orientation_138_078_056_113_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 1992 fixation_cross gabor_004 gabor_177 gabor_139 gabor_110 gabor_004_alt gabor_177_alt gabor_139 gabor_110 "2_51_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_004_177_139_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_002 gabor_170 gabor_085 gabor_112 gabor_002_alt gabor_170 gabor_085 gabor_112_alt "2_52_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_002_170_085_112_target_position_2_3_retrieval_position_2" gabor_circ gabor_035_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1842 2992 2342 fixation_cross gabor_111 gabor_055 gabor_143 gabor_024 gabor_111 gabor_055_alt gabor_143_alt gabor_024 "2_53_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_111_055_143_024_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_024_framed blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_129 gabor_095 gabor_021 gabor_111 gabor_129 gabor_095_alt gabor_021_alt gabor_111 "2_54_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_129_095_021_111_target_position_1_4_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_058 gabor_043 gabor_003 gabor_026 gabor_058 gabor_043 gabor_003_alt gabor_026_alt "2_55_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_058_043_003_026_target_position_1_2_retrieval_position_2" gabor_circ gabor_043_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_102 gabor_065 gabor_121 gabor_086 gabor_102_alt gabor_065_alt gabor_121 gabor_086 "2_56_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_102_065_121_086_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_066 gabor_121 gabor_082 gabor_155 gabor_066_alt gabor_121_alt gabor_082 gabor_155 "2_57_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_066_121_082_155_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_162 gabor_053 gabor_028 gabor_102 gabor_162_alt gabor_053_alt gabor_028 gabor_102 "2_58_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_162_053_028_102_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_075_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 64 292 292 399 125 1992 2992 2542 fixation_cross gabor_038 gabor_096 gabor_177 gabor_059 gabor_038 gabor_096_alt gabor_177 gabor_059_alt "2_59_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2550_gabor_patch_orientation_038_096_177_059_target_position_1_3_retrieval_position_2" gabor_circ gabor_096_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_096_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_119 gabor_179 gabor_147 gabor_005 gabor_119 gabor_179_alt gabor_147_alt gabor_005 "2_60_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_119_179_147_005_target_position_1_4_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_004 gabor_056 gabor_029 gabor_167 gabor_004_alt gabor_056 gabor_029_alt gabor_167 "2_61_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_004_056_029_167_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_167_framed blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_167_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_105 gabor_131 gabor_153 gabor_089 gabor_105 gabor_131 gabor_153_alt gabor_089_alt "2_62_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_105_131_153_089_target_position_1_2_retrieval_position_2" gabor_circ gabor_131_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_102 gabor_030 gabor_080 gabor_047 gabor_102_alt gabor_030 gabor_080 gabor_047_alt "2_63_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_102_030_080_047_target_position_2_3_retrieval_position_2" gabor_circ gabor_168_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_062 gabor_019 gabor_105 gabor_034 gabor_062 gabor_019_alt gabor_105_alt gabor_034 "2_64_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_062_019_105_034_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2092 2992 2492 fixation_cross gabor_077 gabor_031 gabor_167 gabor_145 gabor_077 gabor_031 gabor_167_alt gabor_145_alt "2_65_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2500_gabor_patch_orientation_077_031_167_145_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2342 fixation_cross gabor_157 gabor_044 gabor_074 gabor_131 gabor_157_alt gabor_044 gabor_074 gabor_131_alt "2_66_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_157_044_074_131_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_074_framed gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_168 gabor_008 gabor_095 gabor_033 gabor_168 gabor_008_alt gabor_095_alt gabor_033 "2_67_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_168_008_095_033_target_position_1_4_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_152 gabor_109 gabor_020 gabor_002 gabor_152_alt gabor_109_alt gabor_020 gabor_002 "2_68_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_152_109_020_002_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_020_framed gabor_circ blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_092 gabor_133 gabor_076 gabor_148 gabor_092 gabor_133_alt gabor_076_alt gabor_148 "2_69_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_092_133_076_148_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_148_framed blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 44 63 292 292 399 125 2192 2992 2292 fixation_cross gabor_073 gabor_054 gabor_027 gabor_011 gabor_073_alt gabor_054 gabor_027_alt gabor_011 "2_70_Encoding_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2300_gabor_patch_orientation_073_054_027_011_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_163_framed gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P1_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
3690a2f83f1d3277294ca7c93248146ff4c37ce3
9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84
/tests/libs/hdf5/test-h5-wrappers-new/FORTRAN/H5D/testfiles/110/h5ex_d_checksum.tst
01ed8661b8c5b9bf0530e1e06abf602135cd6d18
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "LicenseRef-scancode-llnl", "LicenseRef-scancode-hdf4", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
openhpc/ohpc
17515db5082429eb9f250f12bf242b994beb715f
725a1f230434d0f08153ba1a5d0a7418574f8ae9
refs/heads/3.x
2023-08-19T02:15:14.682630
2023-08-18T19:33:51
2023-08-18T19:34:18
43,318,561
827
247
Apache-2.0
2023-09-14T01:22:18
2015-09-28T18:20:29
C
UTF-8
Scilab
false
false
77
tst
h5ex_d_checksum.tst
Filter type is: H5Z_FILTER_FLETCHER32_F Maximum value in DS1 is: 1984
b74c072bdd3ac4b211a2c7c15896291d40ea68ae
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH11/EX11.8/ex11_8.sce
10819ba12682e4b5dd6f0d1dc28f8e45386f307b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
247
sce
ex11_8.sce
clc; t1=327+273; //temp in Kelvin t2=127+273; //temp in Kelvin eff=1-(t2/t1); //calculating efficiency hi=4185; //1 kcal=4185 Joule W=eff*hi; //calculating Work in joule disp(W,"Work in Joule = "); //displaying result
6c71d84d2fbee2180f4cb122cfff698ae21a5df7
b29e9715ab76b6f89609c32edd36f81a0dcf6a39
/ketpicscifiles6/Writetextdata.sci
51a138847e28a766a8243cc1f6d43d60c46f3309
[]
no_license
ketpic/ketcindy-scilab-support
e1646488aa840f86c198818ea518c24a66b71f81
3df21192d25809ce980cd036a5ef9f97b53aa918
refs/heads/master
2021-05-11T11:40:49.725978
2018-01-16T14:02:21
2018-01-16T14:02:21
117,643,554
1
0
null
null
null
null
UTF-8
Scilab
false
false
797
sci
Writetextdata.sci
// 2010.04.27 function Writetextdata(varargin) Fname=varargin(1); Mt=varargin(2); D=-1; for I=3:length(varargin) Tmp=varargin(I); if mtlb_findstr(Tmp,'=')~=[] execstr(Tmp); end; end; Str=''; for J=1:size(Mt,2) Str=Str+'x'+string(J); if J<size(Mt,2) Str=Str+','; end; end; if Fname~='' Fid=mopen(Fname,'w'); mfprintf(Fid,'%s\n',Str); else mprintf('%s\n',Str); end; for I=1:size(Mt,1) Str=''; for J=1:size(Mt,2) Dt=Mt(I,J); if Dt==%inf Dt=D; end; Str=Str+string(Dt); if J<size(Mt,2) Str=Str+','; end; end; if Fname~='' mfprintf(Fid,'%s\n',Str); else mprintf('%s\n',Str); end; end; if Fname~='' mclose(Fid); end; endfunction;
f3a98bac006c345e953cbe0c8f3e2b6198b21da8
bf63c70e054c641e89a6f7a4623a7634ce9a8a9d
/test/SL1.prev.tst
5c0d4e9f846e187f17eedded366c5a5667e70f82
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
gfis/jextra
9c8c030faf35f0834843ed8f07cc061ca9d65a64
bdad8fd33fdf633cf2ff4c1879e1f61935c3d636
refs/heads/master
2022-03-13T21:31:56.132450
2022-02-12T21:27:40
2022-02-12T21:27:40
30,127,957
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,806
tst
SL1.prev.tst
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <mainSymbolList> <sym id="0" cat="0">The</sym> <sym id="1" cat="1">word</sym> <sym id="2" cat="2">der</sym> <sym id="3" cat="3">gets</sym> <sym id="4" cat="4">symbol number</sym> <sym id="5" cat="5">2</sym> <sym id="6" cat="6">.</sym> <sym id="7" cat="7">Dies</sym> <sym id="8" cat="8">ist</sym> <sym id="2" cat="2">der</sym> <sym id="9" cat="9">Test</sym> <sym id="2" cat="2">der</sym> <sym id="10" cat="10">Klasse</sym> <sym id="11" cat="11">SymbolList</sym> <sym id="2" cat="2">der</sym> <sym id="12" cat="12">die</sym> <sym id="13" cat="13">korrekte</sym> <sym id="14" cat="14">Speicherung</sym> <sym id="2" cat="2">der</sym> <sym id="15" cat="15">Symbole</sym> <sym id="16" cat="16">in</sym> <sym id="2" cat="2">der</sym> <sym id="11" cat="11">SymbolList</sym> <sym id="17" cat="17">zeigt</sym> <sym id="6" cat="6">.</sym> <symbolList> <sym id="0" cat="0" type="The">The</sym> <sym id="1" cat="1" type="word">word</sym> <sym id="2" cat="2" type="der">der</sym> <sym id="3" cat="3" type="gets">gets</sym> <sym id="4" cat="4" type="symbol number">symbol number</sym> <sym id="5" cat="5">2</sym> <sym id="6" cat="6">.</sym> <sym id="7" cat="7" type="Dies">Dies</sym> <sym id="8" cat="8" type="ist">ist</sym> <sym id="9" cat="9" type="Test">Test</sym> <sym id="10" cat="10" type="Klasse">Klasse</sym> <sym id="11" cat="11" type="SymbolList">SymbolList</sym> <sym id="12" cat="12" type="die">die</sym> <sym id="13" cat="13" type="korrekte">korrekte</sym> <sym id="14" cat="14" type="Speicherung">Speicherung</sym> <sym id="15" cat="15" type="Symbole">Symbole</sym> <sym id="16" cat="16" type="in">in</sym> <sym id="17" cat="17" type="zeigt">zeigt</sym> </symbolList> </mainSymbolList>
0e9b664685fbff7171ab65cbfbbaeb61ef5bf8a4
449d555969bfd7befe906877abab098c6e63a0e8
/122/CH7/EX7.27.1/exa7_27_1.sce
e69fa6f055a45e7f9a80e187ea1c1f285d5a00e9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
644
sce
exa7_27_1.sce
// Example 7-27-1 // Design of Lag compensator with Bode plots clear; clc; xdel(winsid()); //close all windows mode(0); // please edit the path // cd "/<your code directory>/"; // exec("shmargins.sci"); s = %s/2/%pi; G = 1 / (s * (s + 1) * (0.5*s + 1)); Kv = 5; K = Kv / horner(s * G,0) GK = syslin('c',K * G); [gm, gcrw, pm, pcrw] = shmargins(GK); // required specification is pm = 40 degrees wc = 0.5; // new gain crossover freq. beta = 10 z = 0.1 // z = 1 / T is chosen one octave less p = z / beta Kc = K / beta disp(Kc * (%s + z)/(%s + p),'Gc = '); Gc = Kc * (s + z)/(s + p); GGc = syslin('c',Gc * G); scf(); shmargins(GGc);
44039b8e8646ec0e52ef9efdd46bedbe97f1843c
449d555969bfd7befe906877abab098c6e63a0e8
/632/CH5/EX5.3/example5_3.sce
3cff0561b9c3b76babe13f21f1ba80cf502e3e46
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
257
sce
example5_3.sce
//clc() V = 0.6 * 10^-3;//m^3 T = 473;//K Tc = 405.5;//K Pc = 112.8 * 10 ^ 5//Pa R = 8.314; a = 0.4278 * (R^2) * (Tc ^ 2.5)/Pc; b = 0.0867 * R * Tc / Pc; P1 = (R*T/(V - b) - a/((T^0.5)*V*(V + b)))/10^5; disp("bar",P1,"Pressure developed by gas = ")
14cf5506039fc2f127c5687ad912f90dc7f72a5f
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH3/EX3.12/Ex3_12.sce
7d85d1b25f3b3865c7ccca3af533c9e6a14f7f46
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
953
sce
Ex3_12.sce
errcatch(-1,"stop");mode(2);//Caption:Calculate (a)Efficiency of transformer (b)Load KVA at which max efficiency occurs and max efficiency (c)voltage regulation //Exa:3.12 ; ; V1=2000;//in volts pf=0.8; I1=10000/V1;//in amperes P_iron=60;//in watts V_sc=40;//in volts I_sc=4;//in amperes a=2000/200; P_sc=70;//in watts Z_O1=V_sc/I_sc; R_O1=P_sc/I_sc^2; X_O1=sqrt(Z_O1^2-R_O1^2); R_O2=R_O1/a^2; X_O2=X_O1/a^2; I2=I1*a/2;//At half load Del_V=I2*(R_O2*pf+X_O2*sqrt(1-pf^2)); V2=200-Del_V; P_o=V2*I2*pf;//in watts P_cu=(2.5/4)^2*P_sc;//At half load Eff=0.5*P_o/(0.5*P_o+P_iron+P_cu); disp(Eff*100,'(a)Efficiency (in %)='); I_1=sqrt(P_iron/R_O1); KVA_Load=10*I_1/5; disp(KVA_Load,'(b)Load KVA at which max efficiency occurs='); Eff_max=P_o/(P_o+P_iron+P_iron); disp(Eff_max*100,' Max Efficiency (in %)='); I_2=50;//at full load VR=(I_2*(R_O2*pf-X_O2*sqrt(1-pf^2)))/200; disp(VR*100,'(c)Voltage Regulation (in %)=') exit();
ff4ded82dddcbb40215f8cb395131b7c8cbe2a12
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH5/EX5.4/ex5_4.sce
c22081ec0b0c44ecc29fd0a5307c64e0c591bf04
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
255
sce
ex5_4.sce
clc; clear all; t = 10e-2; // Thickness in meters r = 8.1e3; // Density in Kg per cubic meters Y = 8.2e11; // Youngs modulus in Newton per square meter f = (1/(2*t))*sqrt(Y/r); disp('Hz',f,'The frquency of produced ultrasonic waves by nickel is ')
3c391e1abb52e6b9861ab513a6872a0ca0ab0cd0
449d555969bfd7befe906877abab098c6e63a0e8
/3311/CH16/EX16.8/Ex16_8.sce
56930df4d993eb1369117f67dfc943813a3f94d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,211
sce
Ex16_8.sce
// chapter 16 // example 16.8 // Determine turn ratio of demagnetizing winding with primary winding, switch voltagae rating and dc supply current // page-1015 clear; clc; // given E0=12; // in V I0=12; // in A fs=60; // in kHz (switching frequency) E=230; // in V (rectified ac mains) alpha_max=0.6; // maximum duty cycle neta1=50; // in % (spike voltage percentage) neta2=20; // in % // calculate fs=fs*1E3; // changing unit from kHz to Hz Edc=E*sqrt(2); // calculation of dc voltage Esp=(neta1/100)*Edc; // calculation of spike voltage // since alpha_max=1/(1+(N3/N1)), therefore we get // K=N1/N3=1/((1/alpha_max)-1), K=1/((1/alpha_max)-1); // calculation of turns ratio Vsw=Edc+K*Edc+Esp; // calculation of switch voltage // since K1=N1/N2=V1/V2, therefore we get K1=(1-(neta2/100))*Edc/E0; // since I1/I2=N2/N1, therefore we get I1=I0/K1; // calculation of dc supply current printf("\nThe turn ratio of demagnetizing winding with primary winding is \t N1/N3=%.1f",K); printf("\nThe required switch voltage is \t\t\t\t\t\t Vsw=%.2f V",Vsw); printf("\nThe dc supply current at full current is \t\t\t\t I1=%.2f A",I1); // Note: The answer vary slightly due to precise calculations
8e8337a4aa5a0d9c52dbc3f3c1bcd3b07bb6b996
449d555969bfd7befe906877abab098c6e63a0e8
/72/CH7/EX7.3.1/7_3_1.sce
5cae0187c7611c57d2d5a2b91bb8c57b3ea814dc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
650
sce
7_3_1.sce
//chapter_no.-7, page_no.-298 //Example_no.7-2-2 clc; //(a)Calculate_the_electron_drift_velocity q=1.6*(10^-19); f=10*(10^9);//operating_frequency L=10*(10^-6);//Device_Length vd=f*L; disp(vd,'the_electron_drift_velocity(in m/sec)is ='); vd=vd*100; disp(vd,'the_electron_drift_velocity(in cm/sec)is ='); vd=vd/100; //(b)Calculate_the_current_density n=2*(10^14)*(10^6); J=q*n*vd; disp(J,'the_electron_drift(n A/m^2)is ='); J=J/(10^4); disp(J,'the_electron_drift(n A/cm^2)is ='); //(c)CAPTION: Calculate_the_negative_electron_mobility E=3200;//applied_field vd=vd*(100); un=-1*(vd/E); disp(un,'negative_electron_mobility(in cm^2/V*sec)is =');
5f61600d4492a9fe4fcd0cc5e18f3ce835797cd0
50998e579b0a8e47026c534b0f40caf9778f8e54
/lab08_questão_1.sci
8407ac5010d5fc5fa2cd5642cd9dcd79d6567b27
[]
no_license
luis69fernando/CN-lista-lab08
12e5697ecc7003e70f9e7d03ef95d4dd39f17671
46302f053b6f7fa1d3f9f3c9e1ced100d01e0f3e
refs/heads/master
2020-09-10T17:56:20.550694
2019-11-17T17:19:02
2019-11-17T17:19:02
221,787,117
0
0
null
null
null
null
UTF-8
Scilab
false
false
631
sci
lab08_questão_1.sci
clear; clc; function f = diff1(t, y) f = log(3/2)*y;//y' = f(x, y); endfunction function E = Euler(y0, t0, t, h, f) n = length(t), E = y0; for i=1:n-1 y0 = y0 + h*f(t(i), y0); E = [E y0]; end endfunction //Informações iniciais : y0 = 1000; t0 = 0; h=0.1; t = t0:h:5; //Resolução pelo metodo de Euler : y = Euler(y0, t0, t, h, diff1); //Resolução analítica : y1 = ode(y0, t0, t, diff1); //Plot dos gráficos : xgrid plot(t, y, 'o') plot(t, y1, '-r') //obs: pelo gráfico 3000 esta entre t = 2.5 e t = 3. Pelo calculo esta em ln(3)/ln(3/2) = 2.7095.
4ec4849667c4afb076b5abdcd2a49b0a867c6a09
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH7/EX7.04/7_04.sce
f3af164751134e06ce80a5eda5bac05520bfb853
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
283
sce
7_04.sce
//Problem 7.04: //initializing the variables: mdt = 1200; // in lb/min Cpav = 0.26; // in Btu/lbmol T1 = 200; // in deg F T2 = 1200; // in deg F //calculation: dT = T2 - T1 Q = mdt*Cpav*dT printf("\n\nResult\n\n") printf("\n the heat transfer rate is %.2E Btu/min",Q)
5328bf16f8aee228528a85780b546e1d4e12a37d
449d555969bfd7befe906877abab098c6e63a0e8
/3289/CH8/EX8.1/Ex8_1.sce
c5999edcfa07b0f200c8e0abe9b5c43508b09be3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
518
sce
Ex8_1.sce
clc di=0.3 //m de=0.4 //m v=0.3 sigmathetamax=250*10^6 //Pa p0=0 pi=0 //solution a: a=0.15 b=0.2 r=a //sigmathetamax=pi*((b^2+a^2)/(b^2-a^2)) pi=sigmathetamax*((b^2-a^2)/(b^2+a^2)) disp(pi,"in Pa is= ") //solution b: r=a //sigmathetamax=-2*p0*(b^2/(b^2-a^2)) p0=-(-sigmathetamax)*((b^2-a^2)/(2*b^2)) disp(p0,"in Pa is= ") //solution c: u=((a^3*pi)/(b^2-a^2))*(0.7+1.3*(b^2/a^2)) disp(u,"in per E meter is= ") sigmaz=(pi*a^2-p0*b^2)/(b^2-a^2) disp(sigmaz,"for longitudinal stress is")
4f02ddbf628e17893e985b79da3421a07b1353ce
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.1/Unix/scilab-2.1/macros/percent/%lssrs.sci
c7bfa4eb491d14be3da28d7db391bc589d8ba055
[ "MIT", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
345
sci
%lssrs.sci
//[s]=%lssrs(s1,d2) //s=%lssrs(s1,d2) calcule la mise en serie d'une matrice de gain 1/d2 //et d'un systeme lineaire decrit par sa representation d'etat s1. // --> d2 --> s1 --> //Cette macro correspond a l'operation s=s1*d2 //! // origine s. steer inria 1987 // [a1,b1,c1,d1,x1,dom1]=s1(2:7) s=list('lss',a1,b1/d2,c1,d1/d2,x1,dom1) //end
0d09fbac16710ebefedcc50c42f041ad2c1aed8a
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH14/EX14.1/100ex1.sce
6ac5d60e70344cdcb15582a1da30315ad7333fac
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
95
sce
100ex1.sce
//factors of 6a^2 + 3ac clear; clc; close; p=string('6*a^2+3*a*c ') disp('=> 3a(2a+c)')
cbfe12b03b5685ba3ef331b423f16a1266f635cb
449d555969bfd7befe906877abab098c6e63a0e8
/3785/CH9/EX9.6/Ex9_6.sce
7e77b6b01f3e81ade494c6f9a0f2e8f01ae0af69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,336
sce
Ex9_6.sce
// Example 9_6 clc;funcprot(0); // Given data L=1.5;// The length in km D=6;// Diameter in inch h=80;// m // Assume deltah_l=20;// m g=9.807;// The acceleration due to gravity in m/s^2 nu=1*10^-6;// m/s^2 epsilon=5*10^-5;// roughness in m // Calculation D=D*2.54*10^-2;// m sqrtoffintoRe_D=((2*g*deltah_l*D^3)/(((nu)^2)*L*10^3))^(1/2); Re_D=-2*sqrtoffintoRe_D*log10(((epsilon/D)/3.7)+(2.51/(sqrtoffintoRe_D)));// Reynolds number Q=(%pi*D*nu*Re_D)/4;// The volume flow rate in m^3/s Q_20=(Q*60)/(3.782*10^-3)// The volume flow rate in gal/min deltah=150*(1-(Q_20/1000)^2);// m dh_20=deltah-(h+deltah_l);// m deltah_l=40;// m sqrtoffintoRe_D=((2*g*deltah_l*D^3)/(((nu)^2)*L*10^3))^(1/2); Re_D=-2*sqrtoffintoRe_D*log10(((epsilon/D)/3.7)+(2.51/(sqrtoffintoRe_D)));// Reynolds number Q=(%pi*D*nu*Re_D)/4;// The volume flow rate in m^3/s Q_40=(Q*60)/(3.782*10^-3)// The volume flow rate in gal/min deltah=150*(1-(Q_40/1000)^2);// m dh_40=deltah-(h+deltah_l);// m Q=((((dh_20)/(dh_20-dh_40))*(Q_40-Q_20))+Q_20);// GPM deltah=150*(1-(Q/1000)^2);// m deltah_l=deltah-h;// m printf("\nThe flow rate through the system,Q=%3.1f GPM \ndeltah=%3.1f m \ndeltah_l=%2.2f m",Q,deltah,deltah_l); printf("\nContinuing this process to improve our estimate of Q and Ah we finally arrive at:Q=527.7(GPM);deltah=108.3 m")
9faaca7720107b7357f6b1f64feb771745bdde12
449d555969bfd7befe906877abab098c6e63a0e8
/2969/CH4/EX4.8/Ex4_8.sce
289be314be53f28e82a775fbb6b7a6a1b6313d94
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
801
sce
Ex4_8.sce
clc clear //At 0.75 bar. From steam tables, //At 100 deg celsius T1=100; //deg celsius hsup1=2679.4; //kJ/kg //At 150 deg celsius T2=150; //deg celsius hsup2=2778.2; //kJ/kg Cps1=(hsup2-hsup1)/(T2-T1); //At 0.5 bar. From steam tables, //At 300 deg celsius T3=300; //deg celsius hsup3=3075.5; //kJ/kg //At 400 deg celsius T4=400; //deg celsius hsup4=3278.9; //kJ/kg Cps2=(hsup4-hsup3)/(T4-T3); printf(' (i) The mean specific heat for superheated steam \n (At 0.75 bar, between 100 and 150 deg celsius) is: %1.3f. \n',Cps1); printf(' (ii) The mean specific heat for superheated steam \n (At 0.5 bar, between 300 and 400 deg celsius) is: %1.3f. \n',Cps2);
9d829589da73337b62156580f26d21866753a71e
449d555969bfd7befe906877abab098c6e63a0e8
/2063/CH7/EX7.14/7_14.sce
8bbbc9ff86a984d7b3e9cd982798cfe1cd206697
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
665
sce
7_14.sce
clc clear //Input data r=14;//The compression ratio of a diesel engine Vc=1;//Clearance volume in m^3 c=0.08;//Fuel supply cut off point nr=0.55;//Relative efficiency H=10000;//Calorific value of fuel in kcal/kg r1=1.4;//Ratio of specific heat of air Vs=13;//Stroke volume in m^3 //Calculations rho=Vc+(c*Vs);//Cut off ratio na=1-(1*(rho^r1-1)/((r^(r1-1)*r1)*(rho-1)));//Air standard efficiency of diesel cycle in percent In=(na*nr);//Indicated thermal efficiency in percent H1=(4500*60)/(In*427);//Heat in fuel supplied/1HP hr W=H1/10^4;//Weight of fuel required/1HP hr //Output printf('The weight of fuel required per 1HP hr is %3.4f kg',W)
37f1cbd62bc2a1dd516e1d33a87d5ddede1051a4
449d555969bfd7befe906877abab098c6e63a0e8
/3169/CH8/EX8.1/Ex8_1.sce
6a7be316986adb8b5ef8eb2e2ecd780ad706a266
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
582
sce
Ex8_1.sce
//developed in windows XP operating system //platform Scilab 5.4.1 clc;clear all; //example 8.1 //calculation of surge impedance,velocity and time taken by the surge to travel to the other end //given data L=1.26*10^-3//inductance(in H/km) C=0.009*10^-6//capacitance(in F/km) l=400//length(in km) of the transmission line //calculation v=1/sqrt(L*C) Xs=sqrt(L/C) t=l/v printf('The value of surge impedance is %3.1f ohm',Xs) printf('\nThe value of velocity is %3.0e km/s',v) printf('\nThe time taken by the surge to travel to the other end is %3.2f ms',t*10^3)
8f8bf5471f606becbb4c7f7586092bfe801e65f7
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH10/EX10.11/example10_11.sce
f818e9440bca27469724ea3e43c5ea7de023ada6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,786
sce
example10_11.sce
//Chapter 10 //Example 10_11 //Page 244 clear;clc; r=0.1; xl=0.2; y=0.04*1e-4; ll=100; f=50; pd=10000; v_r=66000; pfr=0.8; tr=r*ll; txl=ll*xl; ty=ll*y; vr=v_r/sqrt(3); ir=pd*1000/sqrt(3)/v_r/pfr; z=tr+%i*txl; ir_p=ir*(pfr-%i*sin(acos(pfr))); v1=vr+ir_p*z/2; ic=%i*ty*v1; is=ir_p+ic; vs=v1+is*z/2; theta1=atan(imag(vs)/real(vs)); theta2=atan(imag(is)/real(is)); thetas=theta1+abs(theta2); pfs=cos(thetas); ps=3*abs(vs)*abs(is)*pfs/1000; n=pd/ps; printf("Total resistance per phase = %.2f ohm \n\n", tr); printf("Total reactance per phase = %.2f ohm \n\n", txl); printf("Total susceptance per phase = %.5f ohm \n\n", ty); printf("Recieving end voltage = %.0f V \n\n", vr); printf("Load current = %.2f A \n\n", ir); printf("Impedance per phase = %.2f+j%.2f \n\n", real(z), imag(z)); printf("Receiving end voltage is the reference phasor = %.2f+j0 \n\n", vr); printf("Load current = %.2f+j%.2f \n\n", real(ir_p), imag(ir_p)); printf("Voltage across C = %.2f+j%.2f \n\n", real(v1), imag(v1)); printf("Charging current = %.2f+j%.2f \n\n", real(ic), imag(ic)); printf("Sending end current = %.2f+j%.2f \n\n", real(is), imag(is)); printf("Sending end current magnitude = %.2f A \n\n", abs(is)); printf("Sending end voltage = %.2f+j%.2f \n\n", real(vs), imag(vs)); printf("Sending end voltage magnitude = %.2f V \n\n", abs(vs)*sqrt(3)/1000); printf("Phase angle between Vr and Vs = %.2f degrees \n\n", theta1*180/%pi); printf("Phase angle between Vr and Is = %.2f degrees \n\n", abs(theta2*180/%pi)); printf("Sending end power factor angle = %.2f degrees \n\n", thetas*180/%pi); printf("Sending end power factor = %.2f \n\n", pfs); printf("Sending end power = %.3f kW \n\n", ps); printf("Power delivered = %.0f kW \n\n", pd); printf("Transmission efficiency = %.2f %% \n\n", n*100);
545a7a6fde5c29c701fc997c7d18026f1e581510
bbc11c0776778eadc6701c4eedfe19ae8dfa1584
/scilab/substituicaoRetroativa.sce
5636dd31bdad118855adbc4bca358ae74aa48851
[]
no_license
ceconelli/Metodos-Computacionais
842eeebf11cc74acc66fa08d7ca67f9c45f3b268
07f4326c4821facaf5989f89d5d959f8000e062c
refs/heads/master
2020-06-03T03:23:51.762483
2017-06-12T16:12:12
2017-06-12T16:12:12
94,114,311
0
0
null
null
null
null
UTF-8
Scilab
false
false
191
sce
substituicaoRetroativa.sce
y=[5 -2 6 1;0 3 7 -4;0 0 4 5;0 0 0 2]; c=[1 -2 28 8]; x=[0 0 0 0]; for i=4:-1:1 soma=0; for j=i+1:4 soma=soma+(y(i,j)*x(j)); end x(i)=(c(i)-soma)/y(i,i); end disp(x);
c3c27293e0d29bd0891480de286b594df7e0a333
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH11/EX11.6/ex6.sce
27730e97208cee9d39d1ef9f58de8715522d81f2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
415
sce
ex6.sce
//ex6 //Cooling of a Canned Drink by a Thermoelectric Refrigerator clear clc d=1;//density in kg/L V=0.350;//volume in L m=d*V;//mass in Kg c=4.18;//specific heat in kJ/kg.C T2=20;//Temperature in C T1=4;//Temperature in C Qcooling=m*c*(T2-T1);//heat of cooling in kJ t=30*60;//sec Qcoolings=Qcooling/t;//rate of cooling in kW COPr=0.10; Wins=Qcoolings/COPr; printf('Power = %.0f W',Wins*1000);
9eed1bc2bee9bdf1e4bd0e725d394af3dc7574b5
449d555969bfd7befe906877abab098c6e63a0e8
/1046/CH11/EX11.3/11_3.sce
5944a4aa85ddfb9c055b174f69777c8f51398f0f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,057
sce
11_3.sce
//Example 11.3 //Page No. 489 //given //Free strean velocity (v1) and temp.(t1) on side 1 v1=6 //m/s t1=150 //degree celcius //same on side 2 v2=3 //m/s t2=50 //degree celcius //distant x=0.7 //m //The plate temp. is assumed to be equal to the mean of the bulk air temp on the two sides of the plates T=100 //degree celcius //Side 1 //mean air temp. tm1=(T+t1)/2 //From thermophysical properties:kinetic viscosity (kv),Prandtl no.(P), thermal conductivity (k) kv1=2.6*10^-5 //m^2/s P1=0.69 k1=0.0336 //W/m degree celcius //Reynold no. Re1=x*v1/kv1 //Nusslet no(N1) a=1/3 N1=0.332*(Re1)^0.5*P1^a h1=k1*N1/x //Side 2 of the plate tm2=(T+t2)/2 //Similarly kv2=2.076*(10)^-5 //m^2/s P2=0.70 k2=0.03 //W/m degree celcius Re2=x*v2/kv2 N2=0.332*(Re2)^0.5*P2^a h2=k2*N2/x //overall heat transfer coeff. U=h1*h2/(h1+h2) //The local rate of heat exchange RH=U*(t1-t2) printf("Local rate of heat exchange is %f W/m2\n\n",RH) //the plate temp is given by TP=t2+(t1-t2)*U/h2 printf("Plate temperature is :%f Celsius \n",TP)
8ca89501232b9bd2936c19b4e2107d9eff152f48
449d555969bfd7befe906877abab098c6e63a0e8
/2066/CH11/EX11.3/11_3.sce
b9ca6dd412d7e24949b81c4cc51dd2d7bf8176a1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
574
sce
11_3.sce
clc clear //Initialization of variables yc=2 //ft g=32.2 //ft/s^2 d=10 //ft gam=62.4 rho=1.94 B=10 //ft //calculations Vc=sqrt(g*yc) Ac=yc*d Q=Vc*Ac y1=5.88 //ft y2=0.88 //ft V1=2.73 //ft/s V2=18.25 //ft/s Nf1=0.198 Nf2=3.43 F= 0.5*gam*y1^2 *B - 0.5*gam*y2^2 *B - Q*rho*V2 +Q*rho*V1 //results printf("Discharge in the channel = %.1f ft^3/s",Q) printf("\n Depth of the channel at upstream and downstream = %.2f ft and %.2f ft",y1,y2) printf("\n froude numbers at upstream and downstream = %.3f and %.3f",Nf1,Nf2) printf("\n Force applied = %d lb",F)
305b6f8e27bc56904a408304f0466ea837dd6849
449d555969bfd7befe906877abab098c6e63a0e8
/2219/CH2/EX2.2/Ex2_2.sce
c57b3110601805df046a7ac9d2d2c240165b6664
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,000
sce
Ex2_2.sce
// chapter 2 example 2 //------------------------------------------------------------------------------ clc; clear; // ur1 = 3 // ur2 = 5 // B1 = 2ax + ay // choosing the unit normal an = (ay + az)/√2 // |Bn1| = ((2ax + ay)*(ay + az))/√2 = 1/√2 //Therefore Bn1 = 1/√2an = (1/√2)*(ay + az)/√2 // Also, Bn2 = Bn1 = 0.5ay + 0.5az // the tangential component of B1 is given by // Bt1 = B1 - Bn1 = (2ax + ay)-(0.5ay + 0.5az) // = 2ax + 0.5ay - 0.5az // this gives Ht1 = (1/µo)((2/3)ax + (0.5/3)ay - (0.5/3)az) // Ht1 = (1/µo)*(0.66ax + 0.16ay -0.16az) = Ht2 // Bt2 = µoµr2Ht2 = 3.3ax + 0.8ay - 0.8az // now B2 = Bn2 + Bt2 = (0.5ay + 0.5az)+(3.3ax + 0.8ay - 0.8az) // = (3.3ax +1.3ay - 0.3az) // H2 = (1/µo)*((3.3/5)ax + (1.3/5)ay - (0.3/5)az) // H2 = (1/µo)*(0.66ax +0.26ay - 0.06az) mprintf('B2 = (3.3ax +1.3ay - 0.3az)\n H2 = (1/µo)*(0.66ax +0.26ay - 0.06az)' ); //------------------------------------------------------------------------------
0b20feb2a39306d121071f923ba12e793899581d
449d555969bfd7befe906877abab098c6e63a0e8
/581/CH11/EX11.6/Example11_6.sce
f1cbeebb2654ffc9f23035a9d5655ee4c1b6bcb5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
328
sce
Example11_6.sce
clear ; clc; printf("\t Example 11.6\n"); T1=263.15; //temp.of ice,K Pv=exp(21.99-6141/(T1)); //vapor pressure,KPa xw=Pv/101.325; //mole fraction of water mw=xw*18.02/(xw*18.02+(1-xw)*28.96); //mass fraction printf("\t mass fraction of watervapor above the surface of ice is :%.5f\n",mw); //end
ad296058c729ad87cf7651ab60e9e746448f38ea
449d555969bfd7befe906877abab098c6e63a0e8
/3557/CH15/EX15.5/Ex15_5.sce
c05eb34331338309b78d7e346c0ddbc416ee9b94
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
283
sce
Ex15_5.sce
//Example 15.5// a=5.6;//eV //energy band gap b=2;//ev //given E=a/b //Using T=25 degree C= 298K mprintf("E = %f eV",E) T=298;//K //temperature k=86.2*10^-6;//eV K^-1//Boltzmann's constant c1=(%e^(E/(k*T)))+1 //mprintf("c1 = %e ",c1) fE=1/c1 mprintf("\n fE = %e ",fE)
5e004849bdf5a3e47d603d5585301e8d104cf3be
449d555969bfd7befe906877abab098c6e63a0e8
/2150/CH1/EX1.27/ex1_27.sce
5c755386c1d0285c342cc36000b5e5a89c597e81
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
ex1_27.sce
// Exa 1.27 clc; clear; close; // Given data V1 = 20;// in V V2 = 0.7;// in V R = 4.7*10^3;// in ohm I = (V1-V2)/R;// in A I_D = I/2;// in A disp(I_D*10^3,"The diode current in mA is"); V_o = I_D*R;// in V disp(V_o,"The output voltage in V is");
5301d273fec9f52e4e5e1c86a8907648954d8779
449d555969bfd7befe906877abab098c6e63a0e8
/446/CH12/EX12.1/12_1.sce
89851765fe8973f8bd83efaa2697921d24da5e1b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
571
sce
12_1.sce
clear clc disp('Exa-12.1(a)'); Z=2;A=4;N=A-Z; // Given values printf('The following method of representing atoms is followed throughout the chapter\n\t\t x,ySz\n where x=atomic number y=mass number z= Neutron Number S=symbol of the atom\n\n') printf('The helium can be reperesented as %d,%dHe%d\n',Z,A,N); disp('Exa-12.1(b)'); Z=50;N=66;A=Z+N; //// Given values and standard formulae printf('The helium can be reperesented as %d,%dSn%d\n',Z,A,N); disp('Exa-12.1(c)'); A=235;N=143;Z=A-N; printf('The helium can be reperesented as %d,%dU%d',Z,A,N);
8e29fa7d901b366898b73e2bd08517e4fafc68dd
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualProcessComm_V4/macros/bdVpcDesconect.sci
6e8b0dd9f7c4b3a30ec3fe826684752aee75a529
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
302
sci
bdVpcDesconect.sci
function bdVpcDesconect() global %VirtualProcessCommPath varBDados path = getlongpathname(%VirtualProcessCommPath)+'xml'; xmlWrite(varBDados.Process,path+filesep()+"hrtProcess"+".xml"); xmlWrite(varBDados.Config,path+filesep()+"vpcConfig"+".xml"); clearglobal varBDados endfunction
4991128c7229116c58dcc227519be5226c4ed076
449d555969bfd7befe906877abab098c6e63a0e8
/686/CH6/EX6.1/Ex6_1.sci
683bd9c8355ce2b1e28e3f14f633a2ca3d439fb6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
335
sci
Ex6_1.sci
clc(); clear; //*****Data*****// x = 4/12;// [thickness of plate, inch] v = 33;// [fps] n = 15.4*10^(-5);// [kinematic viscosity, feet^2/s] //************// Re = v*x/n;// [Reynold's number] delta = 4.64*x*12/sqrt(Re);// [Boundary layer thickness ,ft] printf("Boundary layer thickness at 4 in. distance is %.4f in.",delta);
6943a940aa2ee49a0e6e9bd961fe3e04a3eae075
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH8/EX8.1/1.sce
25dd8df7ea58accc8740b2b9375f9cf5a28fad3f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
311
sce
1.sce
clc R=287; //J/kg K V1=40; //m^3 V2=40; //m^3 p1=1*10^5; //Pa p2=0.4*10^5; //Pa T1=298; //K T2=278; //K m1=p1*V1/R/T1; m2=p2*V2/R/T2; //Let mass of air removed be m m=m1-m2; disp("Mass of air removed =") disp(m) disp("kg") V=m*R*T1/p1; disp("Volume of gas removed =") disp(V) disp("m^3")
54a323a0e5b58bb9eb1da6724186251e56b08aca
717ddeb7e700373742c617a95e25a2376565112c
/1448/CH20/EX20.2.i/I20_2.sce
2c0b736361a8b9a4f0db95694488db936f499da9
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
217
sce
I20_2.sce
clc //Initialization of variables g2=5 g1=3 E2=6 E1=2 k=1.38*10^-23 //J/K h=6.626*10^-34 //J s B=3.18*10^11 //Hz //calculations ratio=g2/g1 *(%e^((E1-E2)*h*B/(k*T))) //results printf("Ratio= %.2f",ratio)
748e6af47687be75ea3322f5ccf9d62b6da849cb
449d555969bfd7befe906877abab098c6e63a0e8
/1847/CH2/EX2.5/Ch02Ex5.sce
8528af407b2ab0303fd9ad258f472a73d94d0c30
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
684
sce
Ch02Ex5.sce
// Scilab Code Ex2.5:: Page-2.10 (2009) clc; clear; lambda1 = 5890e-008; // Wavelength of D1 line of sodium, cm lambda2 = 5896e-008; // Wavelength of D2 line of sodium, cm D = 120; // Distance between source and the screen, cm d = 0.025; // Separation between the slits, cm n = 4; // Order of dark fringe x1 = (2*n+1)*lambda1*D/(2*d); // Position of 4th dark fringe due to D1 line, cm x2 = (2*n+1)*lambda2*D/(2*d); // Position of 4th dark fringe due to D2 line, cm delta_x = x2-x1; // Fringe separation, cm printf("\nThe separation between fourth order dark fringes = %4.2e cm", x2-x1); // Result // The separation between fourth order dark fringes = 1.30e-03 cm
b0dac64232db030e44779d81decfa17cf8dfe14e
449d555969bfd7befe906877abab098c6e63a0e8
/3638/CH14/EX14.4/Ex14_4.sce
d880380cf791902d81477ab98ce3df4833613e30
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
455
sce
Ex14_4.sce
//Introduction to Fiber Optics by A. Ghatak and K. Thyagarajan, Cambridge, New Delhi, 1999 //Example 14.4 //OS=Windows XP sp3 //Scilab version 5.5.2 clc; clear; //given DeltaLambda0=30e-9;//Gain bandwidth in wavelength domain in m Lambda0=1550e-9;//central wavelength in wavelength domain in m c=3e8;//Speed of light in m/s v=c/Lambda0; Deltav=DeltaLambda0/Lambda0*v; mprintf("\n Gain Bandwidth in frequency domain = %.1f THz",Deltav/1e12);
0f967710740f3c7391f5a96fd99a5a49df74bbba
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/scicos/systshow.sci
9bebe2e244cbcd433604b11dc5fd3efb9c569dbe
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
433
sci
systshow.sci
function win=systshow(x,win) [lhs,rhs]=argn(0) if rhs<2 then win=xget('window'),end xset('window',win);xbasc() wpar=x(1) wsiz=wpar(1) xset('wdim',wsiz(1),wsiz(2)) [frect1,frect]=xgetech() wdm=xget('wdim') xsetech([-1 -1 8 8]/6,[0 0 wdm(1) wdm(2)]) drawobjs(x) nx=size(x) for k=2:nx o=x(k) if o(1)=='Block' then model=o(3) if model(1)=='super' then win=win+1 win=systshow(model(8),win) end end end
ad53c9e51a5ed8674908391cd7aad85144303b68
090c4bc08ecd896fc1d76fa3454c03fa0cb805f0
/SciLab/laba162.sce
336381944a178227f9676d6c881c91f83a52ff67
[]
no_license
GennadySX/pLabs
6c64cd2fdc87a204e9b675ef7cf54f4cae4356c7
50810647bcc7a48ce38d51c321b165a48560b5d6
refs/heads/master
2020-09-05T17:22:46.474588
2019-11-07T06:35:33
2019-11-07T06:35:33
220,167,548
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,023
sce
laba162.sce
//Лаба 16 //Транспортная задача 2 //min(2000x1+1500x2+2300x3+1900x4+1700x5+2100x6) //x1+x2=4 x3+x4=3 x5+x6=6 x1+x3+x5=6 x2+x4+x6=7 //x1>=0,x2>=0,x3>=0,x4>=0,x5>=0,x6>=0 clc p=[2000; 1500; 2300; 1900; 1700; 2100] A=[ 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 1 0 1 0 1] b=[4; 3; 6; 6; 7] ci=[0; 0; 0; 0; 0; 0] cs=[4; 4; 3; 3; 6; 6] me=5 x0='v' [x,lagr,f]=linpro(p,A,b,ci,cs,me,x0) disp(x(1),'Из 1-го района на 1-ый молокозавод тонн:') disp(x(2),'Из 1-го района на 2-ый молокозавод тонн:') disp(x(3),'Из 2-го района на 1-ый молокозавод тонн:') disp(x(4),'Из 2-го района на 2-ый молокозавод тонн:') disp(x(5),'Из 3-го района на 1-ый молокозавод тонн:') disp(x(6),'Из 3-го района на 2-ый молокозавод тонн:') format('v',10) disp(f,'Стоимость перевозки составит в рублях:')
c13b65a767aff70526673084dd2e0f1b7647e5d0
449d555969bfd7befe906877abab098c6e63a0e8
/2825/CH21/EX21.7/Ex21_7.sce
cd37817344f3a37e71c1badec6a928ff584e98bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
200
sce
Ex21_7.sce
//Ex21_7 Pg-1073 clc R=260000 //resistor R in ohm C=25*10^(-6) //capacitance in farad tau=1.1 //time constant t_delay=tau*R*C //pulse width in sec printf(" Pulse width = %.2f sec",t_delay)
130c08fce8d45e031f49b99e5f38104e26ecfa00
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH2/EX2.55/ex2_55.sci
3afd0c16416bd2df1f7481c992b3043d87ccb623
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
737
sci
ex2_55.sci
//Chapter 2,Ex2.55,Pg2.68 clc; disp("Refer to the diagram shown in the figure") //Calculation of Vth //The network is divided into meshes and Kirchoff's laws are applied to the meshes to obtain simultaneous equations A=[4 -2;-1 4] B=[-25;10] I=A\B printf("\n I1=%.0f A \n",I(1)) printf("\n I2=%.0f A \n",I(2)) Vth=(2*I(1))+(2*I(2)) printf("\n Vth=%.0f V \n",Vth) //Calculation of Rth //Convert star resistances formed by 2 ohms, 2 ohms and 1 ohm into an equivalent delta network R1=2*2/(2+2+1) R2=R1 //R1=R2 since the resistances are of equal value R3=2*1/(2+1+2) Rth=8*(2*(4*1/(4+1)))/(8+(2*(4*1/(4+1)))) printf("\n Rth=%.2f ohms \n",Rth) //Calculation of load current Il=Vth/(Rth+10) printf("\n Il=%.2f A \n",Il)
409290521a1176d9c442d7d8faa0a0b4924b0515
717ddeb7e700373742c617a95e25a2376565112c
/1026/CH8/EX8.16/Example8_16.sce
955ff3493fc2459a48e7509700378de40966ab39
[]
no_license
appucrossroads/Scilab-TBC-Uploads
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
refs/heads/master
2021-01-22T04:15:15.512674
2017-09-19T11:51:56
2017-09-19T11:51:56
92,444,732
0
0
null
2017-05-25T21:09:20
2017-05-25T21:09:19
null
UTF-8
Scilab
false
false
509
sce
Example8_16.sce
//chapter8,Example8_16,pg 209 n=2 grat=1/5000//transmission grating lam=5893*10^-8 dtheta=(2.5*3.14)/(180*60)//change in angular displacement(in radian) //(a+b)=grat //dlam=((a+b)cos(theta)/n)dtheta cos(theta)=sqrt(1-(((n*lam)/grat)^2)) dlam=(dtheta*grat*cos(theta))/n//difference in wavelength f=30//focal length dl=f*dtheta//linear separation printf("difference between two yellow lines (in cm)\n") disp(dlam) printf("\nlinear separation\n") printf("dl=%.4f cm",dl)
aa580d54e747a31bfff601dd6f1bb85f51f049d7
449d555969bfd7befe906877abab098c6e63a0e8
/944/CH5/EX5.17/example5_17_TACC.sce
0944668dff61805eeafabf33997279e429f527ca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
787
sce
example5_17_TACC.sce
//example 5.17 clear; clc; disp("C3H6(g)+4.5O2(g)-->3CO2(g)+3H2O(l)"); //Given: S=-339.23;//standard change in entropy [J/K] T=298;//temperature[K] Hf1=20.42;//enthalpy of formation of C3H6(g)[J] Hf2=-393.51;//enthalpy of formation of CO2(g)[J] Hf3=-285.83;//enthalpy of formation of H2O(l)[J] dn=3-4.5-1;//change in no. of moles R=8.314;//Universal gas constant[J/K/mol] //To find the Helmholts free energy and Gibbs free energy H=3*Hf2+3*Hf3-Hf1;//Enthalpy of the reaction[J] U=H-dn*R*0.001*T;//Change in internal energy of the reaction[J] A=U-T*S*0.001;//Helmholts free energy change[J] G=A+dn*R*0.001*T;//Gibbs free energy change[J] printf("The change in Helmholts free energy is %f J",A); printf("\nThe change in Gibbs free energy is %f J ",G);
e38ecca84ada9e4cc01b5609834a5544ecfeddc6
c71594b945f16fe9017f71039bfcfc1412c43e2a
/Or8/Or8.tst
e22b297dff862390894ae7b8f581afa90d820beb
[]
no_license
Quanta770/nand2tetris-
089432ca788a743897e972a48cd29e451cceba91
fee41d9230bb4a964526f7ff13cc94a8b73f4a7e
refs/heads/master
2020-08-06T19:15:30.552297
2019-10-25T08:14:49
2019-10-25T08:14:49
213,120,493
0
0
null
2019-10-25T08:14:50
2019-10-06T06:39:34
Assembly
UTF-8
Scilab
false
false
416
tst
Or8.tst
load Or8.hdl, output-file Or8.out, compare-to Or8.cmp, output-list a%B1.8.1 b%B1.8.1 out%B1.8.1; set a %B00000000 , set b %B00000000 , eval, output; set a %B00000000 , set b %B11111111 , eval, output; set a %B11111111 , set b %B11111111 , eval, output; set a %B10101010 , set b %B01010101 , eval, output; set a %B00111001 , set b %B10001101 , eval, output; set a %B11100010 , set b %B11000101 , eval, output;
f1df9a2f82f3b5256e62466e8be7bd8105960c8a
449d555969bfd7befe906877abab098c6e63a0e8
/154/DEPENDENCIES/ch12_3.sce
1bb93b8e6fa57693d56cc1caf891250a98f55bf5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
653
sce
ch12_3.sce
clc disp("Example 12.3") printf("\n") printf("Given") disp("The system CBA is WYE connected") disp("Effective line voltage is 120V") disp("The three impedances are 20(-30 deg)") Zmag=20;Zph=-30; //Let maximum line voltage is Vmax Vmax=120*sqrt(2) //Let the line to neutral voltage magnitude be Vn Vn=Vmax/sqrt(3) //From fig 12.7(b) //VAN=Vn(-90 deg) //VBN=Vn(30 deg) //VCN=Vn(150 deg) //From figure 12.10 IAmag=Vn/Zmag IAph=-90-Zph printf("\nIA=%3.2f(%d deg)A\n",IAmag,IAph); IBmag=Vn/Zmag IBph=30-Zph printf("\nIB=%3.2f(%d deg)A\n",IBmag,IBph); ICmag=Vn/Zmag ICph=150-Zph printf("\nIC=%3.2f(%d deg)A\n",ICmag,ICph);
3ebb5e0535d765abf49647415156bb91c240a67d
e754eb2b1f65ee921a01907453d0c2621d7344bf
/1-Diagrama-Bode-Versao-Final.sce
2e21f0536b863c2297dd6d92579ba6273f72e1fb
[]
no_license
nascimento-luciano/Mathematical-Control-Theory
5ed2c1fc594081519c73e5ad38f399da6f1f7cf2
c8e2d1eb17ba1f3f08ad4b13b21bfb28c7c5bd8c
refs/heads/main
2023-07-30T07:35:12.667973
2021-09-15T12:50:01
2021-09-15T12:50:01
404,374,014
1
0
null
null
null
null
UTF-8
Scilab
false
false
471
sce
1-Diagrama-Bode-Versao-Final.sce
w=[.1:.1:10]; G1=w; G1=G1.*w^-1; G1=20*log10(abs(10/9))*G1; G2=-20*log10(abs(%i*w)); G3=20*log10(abs((%i*w)^2 +(%i*w)*0.4 + 1)); G4=-20*log10(abs((%i*w)^2*(1/9)+(%i*w)*(8/90) + 1)); G=G1+G2+G3+G4; plot(w,G1,'r',w,G2,'m',w,G3,'y',w,G4,'b',w,G,'k'); legend('G1','G2','G3','G4','G',[3]); a = gca (); //Verificar esta linha a.log_flags = "ln"; //Verificar esta linha ylabel('Ganho (dB)'); xlabel('Omega (rad)'); xgrid
3947209901a80d53d22e0b59fdf10b837ec9ec9e
449d555969bfd7befe906877abab098c6e63a0e8
/149/CH6/EX4.2.3/ques4_3.sce
260fbdba9dc01cd7ef4c6638425aa77d286eb309
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
128
sce
ques4_3.sce
//error no output //ques4 clc disp('definite integral'); syms x a g=x^3*(2*a*x-x^2)^(1/2); f=integ(g,x,0,2*a); disp(f);
0094bd8f2d7c9482a9b5b4bddf528d65d364181c
449d555969bfd7befe906877abab098c6e63a0e8
/3813/CH1/EX1.5.a/Ex1_5a.sce
b3aa88afcb6557c598300b1479ae3b60d7b37ed3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
408
sce
Ex1_5a.sce
//Electric Drives:concepts and applications by V.subrahmanyam //Publisher:Tata McGraw-Hill //Edition:Second //Ex1_5a clc; clear; V=250;// voltage in V Ra=0.4;// Resistance in ohm Na=480;//Speed in rpm Va=125;// voltage in V Ia=40;//Current in A Vi=V-(Ra*Ia); N=Na*(Vi/Va); disp(N,'The speed of the motor in rpm is:') N1=(2*%pi*N)/60; T=(Vi*Ia)/N1; disp(T,'The torque developed in Nm is:')
f8fc60ae058d449eef6c93504b69be789531caf2
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH6/EX6.10/6_10.sce
3195672f19bd001a73e4ad96230225c06fb9559d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,450
sce
6_10.sce
clear; clc; //Example - 6.10 //Page number - 228 printf("Example - 6.10 and Page number - 228\n\n"); //Given T_1 = 298.15;//[K] - Standard temperature T_2 = 1042;//[K] - Reaction temperature //At 298.15 K delta_H_CaCO3_for_298 = -289.5*10^(3);//[cal/mol] - Enthalpy of formation of CaCO3 at 298.15 K delta_H_CaO_for_298 = -151.7*10^(3);//[cal/mol] - Enthalpy of formation of CaO at 298.15 K delta_H_CO2_for_298 = -94.052*10^(3);//[cal/mol] - Enthalpy of formation of CO2 at 298.15 K delta_G_CaCO3_for_298 = -270.8*10^(3);//[cal/mol] - Gibbs free energy change for formation of CaCO3 at 298.15 K delta_G_CaO_for_298 = -144.3*10^(3);//[cal/mol] - Gibbs free energy change for formation of CaO at 298.15 K delta_G_CO2_for_298 = -94.260*10^(3);//[cal/mol] - Gibbs free energy change for formation of CO2 at 298.15 K ///Standaerd heat capacity data in cal/mol-K are given below, T is in K //Cp_0_CO2 = 5.316 + 1.4285*10^(-2)*T - 0.8362*10^(-5)*T^(2) + 1.784*10^(-9)*T^(3) //Cp_0_CaO = 12.129 + 0.88*10^(-3)*T + 2.08*10^(5)*T^(-2) //Cp_0_CaCO3 = 24.98 + 5.240*10^(-3)*T + 6.199*10^(5)*T^(-2) //Therefore standard heat capacity of reaction is given by, //Cp_0_rkn = Cp_0_CO2 + Cp_0_CaO - Cp_0_CaCO3 //On simplification,we get the relation //Cp_0_rkn = -7.535 + 9.925*10^(-3)*T - 0.8362*10^(-5)*T^(2) + 1.784*10^(-9)*T^(3) + 4.119*10^(5)*T^(-2) delta_H_rkn_298 = delta_H_CaO_for_298 + delta_H_CO2_for_298 - delta_H_CaCO3_for_298;//[cal] - Enthalpy of reaction at 298.15 K delta_G_rkn_298 = delta_G_CaO_for_298 + delta_G_CO2_for_298 - delta_G_CaCO3_for_298;//[cal] - Gibbs free energy of the reaction at 298.15 K delta_H_rkn_1042 = delta_H_rkn_298 + integrate('-7.535+9.925*10^(-3)*T-0.8362*10^(-5)*T^(2)+1.784*10^(-9)*T^(3)+4.119*10^(5)*T^(-2)','T',T_1,T_2);//[cal] printf(" Standard enthalpy change of reaction at 1042 K is %f cal\n\n",delta_H_rkn_1042); //Now determining the standard entropy change of reaction at 298.15 K delta_S_rkn_298 = (delta_H_rkn_298 - delta_G_rkn_298)/298.15;//[cal/K] delta_S_rkn_1042 = delta_S_rkn_298 + integrate('(-7.535+9.925*10^(-3)*T-0.8362*10^(-5)*T^(2)+1.784*10^(-9)*T^(3)+4.119*10^(5)*T^(-2))/T','T',T_1,T_2);//[cal/K] //Therefore,the standard Gibbs free energy change of the reaction is given by, delta_G_rkn_1042 = delta_H_rkn_1042 - 1042*delta_S_rkn_1042;//[cal] printf(" Standard Gibbs free energy change of reaction at 1042 K is %f cal",delta_G_rkn_1042);
899006276b32d66f06fef75bcb18dd0695d7c48d
449d555969bfd7befe906877abab098c6e63a0e8
/1319/CH12/EX12.15/i_15.sce
7a29f4e0f1cf44505ec987f5e5bc308e0ae754d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
305
sce
i_15.sce
// To determine the currents in parallel branches of a network. clc; clear; I=40; R1=20; R2=60; //Current Divider equation I1= I*(R2/(R1+R2)) I1=I*(R2/(R1+R2)); I2=I*(R1/(R1+R2)); disp('A',I1,'The Current in the 20 ohm branch =') disp('A',I2,'The Current in the 60 ohm branch =')
3f003663ed346a4ee56d7f96f4501c6dfccd5c81
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH24/EX24.8/example24_8.sce
c380f382bfb661900017c3f2eeae1757451df0bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
example24_8.sce
i=0.2; v1=120; f=60; v2=95; disp("Part a"); z1=v1/i; x_l=sqrt(z1^2-r^2); z2=v2/i; x_c=x_l-sqrt(z2^2-r^2); c=1/(2*%pi*f*x_c); disp("the size of capacitance (in μF) needed is"); disp(c*10^6); disp("Part b"); vc=i*x_c; disp("voltage (in V) across capacitor is");disp(vc); disp("Part c"); v=i*z1; disp("voltage (in V) across solenoid is"); disp(v);
1b8327e1413d1b8a2942c9c5edbc29493a09044b
449d555969bfd7befe906877abab098c6e63a0e8
/3871/CH8/EX8.10/Ex8_10.sce
d264b82df58817657d1b0904fbff90046e312891
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
879
sce
Ex8_10.sce
//=========================================================================== //chapter 8 example 10 clc;clear all; //variable declaration V = 230; //voltage in V I = 10; //current in A T = 30; //time in minutes x =0.8; //power factor n = 890; //number of revolutions made M = 1200; //meter constant in revolutions per kWh E = 58.25; //dial reading at the end of test E1 = 57.35; //dial reading at the start of test //calculations Ea = (V*I*(T/(60))*x)/(1000); //Energy consumed 1 minute Em = E-E1; //energy consumption recorded by the meter in kWh e = Em-Ea; //error in registration in kWh N = M*Em; //actual revolutions required to be made by the meter for an energy consumption of 0.90kWh e = (n-N)/(T); //error in rpm //result mprintf("error = %3.2f rpm",e);
b7447f201c071e020d95b0993a9340db09df76e7
935d5880888b1ef01c8dddaf85af2be07d7940e2
/AdaptiveSwarmRobotsSimulation-ASRS/stages/Stage1.sce
60cccaf93fd9a01995b04eb3f627ca23620d024b
[]
no_license
google-code/asrs
c3b35545bce8ae38c8184de002e93e18a67461ee
c9a828a4eb2fbf076116f3c51c44da45a60f9feb
refs/heads/master
2016-08-05T13:33:11.103066
2015-03-15T15:18:57
2015-03-15T15:18:57
32,267,209
0
0
null
null
null
null
UTF-8
Scilab
false
false
148
sce
Stage1.sce
___________ | | |_ | | _| | | _| | |_ | | | |_ | |__ | _| |___________|
3e9b94953acd829a6bb7cb62833e440529108c2b
676ffceabdfe022b6381807def2ea401302430ac
/solvers/CompressibleFlowSolver/Tests/Couette_WeakDG_LFRHU_SEM.tst
617f4825dbde6655966d88e79121b10a503c8ed6
[ "MIT" ]
permissive
mathLab/ITHACA-SEM
3adf7a49567040398d758f4ee258276fee80065e
065a269e3f18f2fc9d9f4abd9d47abba14d0933b
refs/heads/master
2022-07-06T23:42:51.869689
2022-06-21T13:27:18
2022-06-21T13:27:18
136,485,665
10
5
MIT
2019-05-15T08:31:40
2018-06-07T14:01:54
Makefile
UTF-8
Scilab
false
false
1,052
tst
Couette_WeakDG_LFRHU_SEM.tst
<?xml version="1.0" encoding="utf-8"?> <test> <description>NS, Couette flow, mixed bcs, WeakDG advection and LFRHU diffusion, SEM</description> <executable>CompressibleFlowSolver</executable> <parameters>Couette_WeakDG_LFRHU_SEM.xml</parameters> <files> <file description="Session File">Couette_WeakDG_LFRHU_SEM.xml</file> </files> <metrics> <metric type="L2" id="1"> <value variable="rho" tolerance="1e-12">0.0889266</value> <value variable="rhou" tolerance="1e-12">62.1102</value> <value variable="rhov" tolerance="1e-8">0.175939</value> <value variable="E" tolerance="1e-12">4904.77</value> </metric> <metric type="Linf" id="2"> <value variable="rho" tolerance="1e-12">0.0760033</value> <value variable="rhou" tolerance="1e-12">56.0587</value> <value variable="rhov" tolerance="2e-6">0.26569</value> <value variable="E" tolerance="1e-12">4376.14</value> </metric> </metrics> </test>
db7b83ff03b854582a5bf1e0780c6b4c5261de95
449d555969bfd7befe906877abab098c6e63a0e8
/1580/CH1/EX1.1/Ch01Ex1.sce
6c24ae621e829121afbce1da96f502a84cd2d3c7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
838
sce
Ch01Ex1.sce
// Scilab Code Ex1.1 : Page-1.8 (2004) clc;clear; N = 6.022e+23; // Avogadro Number; /mol E_A = 502; // First ionization energy of A atom, kJ/mol E_B = -335; // Electron affinity for B atom, kJ r = 3e-10; // Velocity of the particle at the mean position, angstrom E_o = 8.85e-12; //Permittivity of free space, C/N^2-m^2 e = 1.6e-19; // Electronic charge, C E_C = N*(-e^2)/(4*%pi*E_o*r)*1e-03; // The coulombic electrostatic attaction energy, kJ/mol E = E_A + E_B + E_C; // Net change in energy per mol, kJ/mol printf("\nNet change in energy per mol = %3d kJ/mol", E); disp("Since net change in energy is negative, the molecule A+B- is stable."); // Result // Net change in energy per mol = -295 kJ/mol // Since net change in energy is negative, the molecule A+B- is stable.
70ac9d43f70492633cff863cc3b84fc04fc2e710
449d555969bfd7befe906877abab098c6e63a0e8
/3041/CH1/EX1.14/Ex1_14.sce
9ff780f9d7aa4415ed9934324ca5211d16fdddc2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,105
sce
Ex1_14.sce
//Variable declaration Idc=0.1 //dc current(A) Rf=0.5 //forward resistance(ohms) Rl=20 //load resistance(ohm) Rs=1 //secondary resistance of transformer(ohm) //Calculations //Part a Vdc=Idc*Rl //dc voltage(V) Vm=(%pi/2)*(Vdc+Idc*(Rs+Rf)) //mean voltage(V) Vrms=Vm/sqrt(2) //rms value of voltage(V) //Part b Pdc=Idc**2*Rl //dc power supplied to the load //Part c PIV=2*Vm //PIV rating for each diode(V) //Part d Im=(%pi/2)*Idc //peak value of current(mA) Irms=Im/sqrt(2) //rms calue of current(A) Pac=Irms**2*(Rs+Rf+Rl) //ac power input(W) //Part e eta=(Pdc/Pac)*100 //conversion efficiency //Part f Vr=((Rs+Rf)/Rl)*100 //voltage regulation(V) //results printf ("rms value of voltage is %.2f V",Vrms) printf ("dc power supplied to load is %.1f W",Pdc) printf ("PIV rating for each diode %.2f V",PIV) printf ("ac input power is %.3f W",Pac) printf ("conversion efficiency %.1f %%",eta) printf ("voltage regulation %.1f %%",Vr)
ad0db0ac018123bd8cf06e766e65109eeb68cde2
449d555969bfd7befe906877abab098c6e63a0e8
/623/CH27/EX5.5.20/U5_C5_20.sce
9bf6d7c62b74f317864b0b733207bd35dc25fb20
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
743
sce
U5_C5_20.sce
//variable initialization h=6.62*10^-34; //Plank's constant (joule second) c=3*10^8; //Speed of light (m/s) x=62.4*100; //(m-1) y=41.6*100; //(m-1) //calculation of the moment of inertia of HCl molecule B=y/4; //Rotational constant of HCl (m-1) I=h/(8*%pi^2*B*c); //Moment of inertia (kg m^2) printf("\n I = %.1e kg m^2",I);
789264f77e6db52a0f034b0c3cef02f6eeb45b5d
37ecd78225875673db86fad4abb97404437eb339
/jacobi.sce
505ef0a308e3d684830f1db70fc86cb53275bd7b
[]
no_license
andreviniciusmb/Calculo_Numerico
4a856ffb3887e447dcbd6d39a1b12218e38dc088
316a4c29686fd40b25a6353e404d7b1455b2d507
refs/heads/master
2022-04-20T13:55:09.969949
2020-04-15T19:17:39
2020-04-15T19:17:39
255,652,623
0
0
null
null
null
null
UTF-8
Scilab
false
false
629
sce
jacobi.sce
// Método iterativo, está menos sujeito ao acúmulo de erros de arredondamento. function [x0]=Jacobi(a,b,x0) n = size(a,1) parar=1 for it = 1:5 for i = 1:n soma = 0 for j = 1:n if j ~= i soma = soma + a(i,j)*x0(j) end end x(i) = (1/a(i,i))*(b(i) - soma) end if (abs(norm(x) - norm(x0))< 0.001) parar = 0; else X=x; end end endfunction a = [173 128 255;216 128 192;230 128 203] b = [64;224;208] x0 = [0;0;0] y = linsolve(a,b) disp(y) x = Jacobi(a,b,x0) disp(x)
bcd5f5ea0e481aa17801ae461330eca05a791c22
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH10/EX10.01/10_01.sce
13d4a983d7d90e654c740f933f36db8b4c974ef4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
357
sce
10_01.sce
//Problem 10.01: //initializing the variables: DH0co2 = -94052; // in cal/gmol DH0h2o = -57798; // in cal/gmol DH0ch4 = -17889; // in cal/gmol DH0o2 = 0; // in cal/gmol T = 298; // in K //calculation: DH0298 = DH0co2 + 2*DH0h2o - 2*DH0o2 - DH0ch4 printf("\n\nResult\n\n") printf("\n the standard enthalpy of reaction is %.0fcal/gmol",DH0298)
b32ea3efd0d63315fb83bce7b8dce012365fac57
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos/default_color.sci
281fb8b30f63bddea3175dd25b1c982b23cdc5ed
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
71
sci
default_color.sci
function clr=default_color(typ) if typ==-1 then clr=5,else clr=1,end
9a394feb41f364f097c6743e8a8613aa60e195a4
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH13/EX13.4/example13_4.sce
99d97f3a3919eb46478784db4f2b41cd0d98c461
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
213
sce
example13_4.sce
i=10*10^(-3); r=10*10^3; v=15; fsd=0.02; disp("Part a"); r1=v/(i-v/r); disp("the resistance (in Ω) is"); disp(r1/1000); disp("Part b"); e=2*fsd*100; disp("the maximum possible error (in %) is"); disp(e);
5eb69b98a2fb3135706f46803cc98064b845cf10
15377b2b4e60d6691378cf1a03c5998fedde45ca
/nc_linear_systems_approach/source/system_approach.sci
48daa8e7d4d748bc343f90d44fa8db06c9bf897e
[]
no_license
Forbrig/nc_algorithms
de28754ed4321e127ffb6dcd00cb80a9f1cddef7
de0165aa4dbcc6db36298ab7b46637bfa00364e5
refs/heads/master
2021-08-28T10:43:40.414903
2017-12-12T01:01:07
2017-12-12T01:01:07
111,705,263
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,968
sci
system_approach.sci
//Vitor Guilherme Forbrig (vitorforbrig@gmail.com) clc(); //clear console A = [ 4, -1, -1, 0, 0, 0, 0, 0; -1, 4, 0, -1, 0, 0, 0, 0; -1, 0, 4, -1, 0, -1, 0, 0; 0, -1, -1, 4, -1, 0, -1, 0; 0, 0, 0, -1, 4, 0, 0, -1; 0, 0, -1, 0, 0, 4, -1, 0; 0, 0, 0, -1, 0, -1, 4, -1; 0, 0, 0, 0, -1, 0, -1, 4; ]; I = eye(A); //create an identity matrix with dimensions of A ind = [95; 50; 80; 0; 30; 190; 110; 135]; //independent terms indv = [95, 50, 80, 0, 30, 190, 110, 135]; x = [0; 0; 0; 0; 0; 0; 0; 0]; x0 = [0; 0; 0; 0; 0; 0; 0; 0]; //initial solution (dont change) n = 8; //size of matrix nxn eps = 10^-6; //here we put the minimum aproximation that we want it = 100; //qt of iteractions //---------------------------------------------------------------------MISC------------------------------------------------------------------ function diagonal_dominant () flag = 1; // convergent criteria //if the main diagonal is dominant, it converge for in Jacobi method (sufficient but not necessary) i = 1; while (i < n+1) j = 1; test = 0; while (j < n+1) test = test + A(i, j); j = j+1; end if ((test - A(i,i)) < A(i,i)) then flag = 1; else flag = 0; break; end i = i+1; end if (flag == 1) then //check to see if jacobi converges (sufficient but not necessary) printf("Main diagonal is dominant\n"); //it converge for in Jacobi method end endfunction function eigen_values (AXX) //(auto valores) evals = spec(AXX); if max(abs(evals)) < 1 then printf("it converges\n"); end disp (abs(evals)); //disp (evals); endfunction //---------------------------------------------------------------------JACOBI------------------------------------------------------------------ function jacobi(A, ind, x, eps, it, n) for i = 1 : n for j = 1 : n AX(i, j) = A(i, j)/A(i, i); //create a new matrix isolating each xn -> ex: x1 = (k2*x2+k3*x3)/k1 end; indaux(i) = ind(i)/A(i, i); //same as line 6 all in reason of xn end; //eigen_values(AX); it2 = 0; prec = 10000; //just to enter on the loop while (eps < prec & it2 < it) x = indaux - (AX-I)*x; //new solution of this iteraction prec = norm((AX*x)-indaux); it2 = it2+1; end printf("JACOBI: after %d iteractions with a precision of %f the result is:\n", it2, prec); disp(x); endfunction //---------------------------------------------------------------------GAUSS------------------------------------------------------------------ function gauss (A, ind, x, eps, it, n) it2 = 0; prec = 1000; while (prec > eps & it2 < it) for (i=1:n) aux = 0; for (j=1:n) if (i <> j) then aux = (A(i, j) * x(i)) + aux; end; end; x(i) = (1/A(i, i)) * (ind(i) - aux); //disp(x); end; prec = norm((A*x)-ind'); it2 = it2 + 1; end; printf("GAUSS: after %d iteractions with a precision of %f the result is:\n", it2, prec); disp(x); endfunction //---------------------------------------------------------------------MAIN------------------------------------------------------------------ printf("Welcome to system_approach 0.0.1\n"); while(1) printf("Select an option:\n 1. Jacobi; 2. Gauss; 3. All; 0. Exit.\n"); option = input("Option: "); select option case 1 then jacobi(A, ind, x0, eps, it, n); case 2 then gauss(A, indv, x0, eps, it, n); case 3 then jacobi(A, ind, x0, eps, it, n); gauss(A, indv, x0, eps, it, n); case 0 then break; else printf("Invalid option!\n"); end; break; end;
b1d7a149bfa95213528a7cf2e523fb711c2ed676
449d555969bfd7befe906877abab098c6e63a0e8
/1943/CH4/EX4.8/Ex4_8.sce
65f3383a4566ee1c5d22c1c5c519101ac9cf8ba8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,407
sce
Ex4_8.sce
clc clear //Input data n=6;//Total lancashire boilers in a textile factory Ws=6;//Each boiler supplying steam in t/h p=16;//Pressure at which steam is supplied in bar t=250;//Temperature at which steam is supplied in degree centigrade CV=43960;//Calorific value of the fuel oil in kJ/kg no=75;//Overall efficiency of the boiler in % a=16;//The amount of air required for efficient burning of the fuel inkg H=20;//Drought of water gauge required at the base of chimney in mm tf=320;//The flue gases leave the boiler in degree centigrade ts=300;//The average temperature of the gases in the stack in degree centigrade ta=30;//The atmospheric temperature in degree centigrade R=0.287;//Real Gas constant in kJ/kgK h1=2919.2;//enthalpy at the entrance of the boiler in kJ/kgK hf=125.8;//Enthalpy at the feed in kJ/kgK pi=3.1412;//Mathematical constant g=9.81;//gravitational fore constant in m/s^2 P=1.013;//Atmospheric pressure in bar //Calculations H1=[(H*R*(273+ta)*(273+ts))]/[P*100*[(273+ts)-(273+ta)]];//The draught produced in m Wf=[[(Ws*1000)*6*(h1-hf)]/((no/100)*CV)]/3600;//Air fuel ratio in kg/s Wa=a*Wf;//Actual air fuel ratio in kg/s Wfg=17*Wf;//Air fuel ratio in kg/s D=[[(Wfg*R*(273+ts)*(4/pi))]/[(101.3)*(2*g*H1)^(1/2)]]^(1/2);//Diameter at its base in m //Output printf('(a)The height of the stack H = %3.2f m \n (b)The diameter at its base D = %3.2f m ',H1,D)
39fad512539a0d64703706588a77773f5a4488ed
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/NW42UPG/ATWM1_Working_Memory_MEG_NW42UPG_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
603520630b65cb0501eb52dc7d6173b0ae4ebf8a
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,618
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_134 gabor_112 gabor_169 gabor_047 gabor_134 gabor_112_alt gabor_169_alt gabor_047 "1_1_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_134_112_169_047_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_062 gabor_042 gabor_126 gabor_082 gabor_062 gabor_042_alt gabor_126 gabor_082_alt "1_2_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_062_042_126_082_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_126_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2442 fixation_cross gabor_005 gabor_132 gabor_161 gabor_116 gabor_005 gabor_132_alt gabor_161 gabor_116_alt "1_3_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_005_132_161_116_target_position_1_3_retrieval_position_1" gabor_005_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1892 2992 1992 fixation_cross gabor_078 gabor_040 gabor_154 gabor_105 gabor_078_alt gabor_040 gabor_154_alt gabor_105 "1_4_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2000_gabor_patch_orientation_078_040_154_105_target_position_2_4_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_125_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_048 gabor_155 gabor_171 gabor_124 gabor_048 gabor_155_alt gabor_171_alt gabor_124 "1_5_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_048_155_171_124_target_position_1_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_138 gabor_102 gabor_026 gabor_179 gabor_138 gabor_102 gabor_026_alt gabor_179_alt "1_6_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_138_102_026_179_target_position_1_2_retrieval_position_2" gabor_circ gabor_102_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2592 fixation_cross gabor_127 gabor_158 gabor_082 gabor_105 gabor_127_alt gabor_158 gabor_082_alt gabor_105 "1_7_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_127_158_082_105_target_position_2_4_retrieval_position_2" gabor_circ gabor_158_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_128 gabor_164 gabor_108 gabor_039 gabor_128 gabor_164_alt gabor_108 gabor_039_alt "1_8_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_128_164_108_039_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_108_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1842 2992 1992 fixation_cross gabor_083 gabor_125 gabor_104 gabor_157 gabor_083 gabor_125_alt gabor_104_alt gabor_157 "1_9_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_083_125_104_157_target_position_1_4_retrieval_position_2" gabor_circ gabor_125_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_125_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_116 gabor_055 gabor_145 gabor_008 gabor_116_alt gabor_055 gabor_145 gabor_008_alt "1_10_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_116_055_145_008_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_175 gabor_062 gabor_092 gabor_138 gabor_175 gabor_062 gabor_092_alt gabor_138_alt "1_11_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_175_062_092_138_target_position_1_2_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_055 gabor_095 gabor_121 gabor_014 gabor_055_alt gabor_095_alt gabor_121 gabor_014 "1_12_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_055_095_121_014_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2592 fixation_cross gabor_081 gabor_102 gabor_122 gabor_154 gabor_081 gabor_102_alt gabor_122 gabor_154_alt "1_13_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_081_102_122_154_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_126 gabor_058 gabor_163 gabor_038 gabor_126 gabor_058_alt gabor_163 gabor_038_alt "1_14_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_126_058_163_038_target_position_1_3_retrieval_position_1" gabor_126_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_120 gabor_057 gabor_039 gabor_008 gabor_120_alt gabor_057 gabor_039 gabor_008_alt "1_15_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_120_057_039_008_target_position_2_3_retrieval_position_1" gabor_075_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_075_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_058 gabor_122 gabor_004 gabor_088 gabor_058_alt gabor_122 gabor_004_alt gabor_088 "1_16_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_058_122_004_088_target_position_2_4_retrieval_position_2" gabor_circ gabor_172_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_166 gabor_011 gabor_143 gabor_055 gabor_166_alt gabor_011 gabor_143_alt gabor_055 "1_17_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_166_011_143_055_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_101_framed blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_120 gabor_138 gabor_073 gabor_179 gabor_120 gabor_138 gabor_073_alt gabor_179_alt "1_18_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_120_138_073_179_target_position_1_2_retrieval_position_2" gabor_circ gabor_093_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_041 gabor_010 gabor_075 gabor_161 gabor_041 gabor_010_alt gabor_075_alt gabor_161 "1_19_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_041_010_075_161_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_161_framed blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_180 gabor_119 gabor_135 gabor_008 gabor_180 gabor_119_alt gabor_135_alt gabor_008 "1_20_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_180_119_135_008_target_position_1_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_028 gabor_113 gabor_148 gabor_008 gabor_028 gabor_113_alt gabor_148 gabor_008_alt "1_21_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_028_113_148_008_target_position_1_3_retrieval_position_1" gabor_076_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 1892 fixation_cross gabor_077 gabor_056 gabor_162 gabor_092 gabor_077 gabor_056_alt gabor_162 gabor_092_alt "1_22_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_077_056_162_092_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_162_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2142 2992 2142 fixation_cross gabor_041 gabor_162 gabor_179 gabor_101 gabor_041 gabor_162_alt gabor_179 gabor_101_alt "1_23_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_041_162_179_101_target_position_1_3_retrieval_position_2" gabor_circ gabor_023_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_023_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_048 gabor_008 gabor_086 gabor_030 gabor_048_alt gabor_008 gabor_086 gabor_030_alt "1_24_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_048_008_086_030_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1942 2992 1992 fixation_cross gabor_006 gabor_130 gabor_064 gabor_096 gabor_006 gabor_130 gabor_064_alt gabor_096_alt "1_25_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2000_gabor_patch_orientation_006_130_064_096_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_114_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_114_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_066 gabor_103 gabor_023 gabor_134 gabor_066_alt gabor_103 gabor_023_alt gabor_134 "1_26_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_066_103_023_134_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_027 gabor_109 gabor_088 gabor_070 gabor_027_alt gabor_109 gabor_088_alt gabor_070 "1_27_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_027_109_088_070_target_position_2_4_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2492 fixation_cross gabor_136 gabor_111 gabor_028 gabor_071 gabor_136_alt gabor_111 gabor_028 gabor_071_alt "1_28_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_136_111_028_071_target_position_2_3_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_010 gabor_119 gabor_068 gabor_095 gabor_010 gabor_119 gabor_068_alt gabor_095_alt "1_29_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_010_119_068_095_target_position_1_2_retrieval_position_1" gabor_145_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1742 2992 2292 fixation_cross gabor_116 gabor_001 gabor_152 gabor_032 gabor_116_alt gabor_001 gabor_152_alt gabor_032 "1_30_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_116_001_152_032_target_position_2_4_retrieval_position_1" gabor_116_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_116_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_124 gabor_018 gabor_062 gabor_096 gabor_124 gabor_018 gabor_062_alt gabor_096_alt "1_31_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_124_018_062_096_target_position_1_2_retrieval_position_1" gabor_169_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_154 gabor_047 gabor_021 gabor_102 gabor_154_alt gabor_047 gabor_021 gabor_102_alt "1_32_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_154_047_021_102_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_070_framed gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_050 gabor_116 gabor_132 gabor_174 gabor_050_alt gabor_116 gabor_132 gabor_174_alt "1_33_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_050_116_132_174_target_position_2_3_retrieval_position_2" gabor_circ gabor_116_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_154 gabor_087 gabor_169 gabor_016 gabor_154 gabor_087 gabor_169_alt gabor_016_alt "1_34_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_154_087_169_016_target_position_1_2_retrieval_position_1" gabor_154_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_091 gabor_123 gabor_018 gabor_054 gabor_091_alt gabor_123 gabor_018_alt gabor_054 "1_35_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_091_123_018_054_target_position_2_4_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_022 gabor_038 gabor_148 gabor_177 gabor_022 gabor_038_alt gabor_148_alt gabor_177 "1_36_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_022_038_148_177_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_013 gabor_094 gabor_121 gabor_153 gabor_013 gabor_094_alt gabor_121 gabor_153_alt "1_37_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_013_094_121_153_target_position_1_3_retrieval_position_2" gabor_circ gabor_094_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_094_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_034 gabor_169 gabor_050 gabor_005 gabor_034 gabor_169_alt gabor_050 gabor_005_alt "1_38_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_034_169_050_005_target_position_1_3_retrieval_position_1" gabor_084_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_052 gabor_138 gabor_166 gabor_023 gabor_052 gabor_138_alt gabor_166 gabor_023_alt "1_39_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_052_138_166_023_target_position_1_3_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_156 gabor_090 gabor_051 gabor_068 gabor_156 gabor_090_alt gabor_051 gabor_068_alt "1_40_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_156_090_051_068_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_005_framed gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2042 fixation_cross gabor_072 gabor_107 gabor_037 gabor_156 gabor_072_alt gabor_107_alt gabor_037 gabor_156 "1_41_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_072_107_037_156_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_062 gabor_024 gabor_169 gabor_088 gabor_062 gabor_024 gabor_169_alt gabor_088_alt "1_42_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_062_024_169_088_target_position_1_2_retrieval_position_1" gabor_108_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2092 2992 2292 fixation_cross gabor_110 gabor_045 gabor_091 gabor_173 gabor_110_alt gabor_045 gabor_091 gabor_173_alt "1_43_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_110_045_091_173_target_position_2_3_retrieval_position_1" gabor_110_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_110_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_169 gabor_040 gabor_090 gabor_060 gabor_169 gabor_040_alt gabor_090_alt gabor_060 "1_44_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_169_040_090_060_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_011_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_068 gabor_042 gabor_177 gabor_153 gabor_068_alt gabor_042 gabor_177_alt gabor_153 "1_45_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_068_042_177_153_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_107_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2092 2992 2092 fixation_cross gabor_163 gabor_127 gabor_051 gabor_106 gabor_163_alt gabor_127 gabor_051 gabor_106_alt "1_46_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_163_127_051_106_target_position_2_3_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2192 2992 2592 fixation_cross gabor_092 gabor_110 gabor_180 gabor_066 gabor_092 gabor_110_alt gabor_180 gabor_066_alt "1_47_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_092_110_180_066_target_position_1_3_retrieval_position_1" gabor_092_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2242 2992 2342 fixation_cross gabor_064 gabor_147 gabor_042 gabor_126 gabor_064 gabor_147_alt gabor_042 gabor_126_alt "1_48_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2350_gabor_patch_orientation_064_147_042_126_target_position_1_3_retrieval_position_2" gabor_circ gabor_102_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_102_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2442 fixation_cross gabor_046 gabor_026 gabor_001 gabor_160 gabor_046 gabor_026_alt gabor_001 gabor_160_alt "1_49_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_046_026_001_160_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_140 gabor_159 gabor_088 gabor_023 gabor_140 gabor_159_alt gabor_088_alt gabor_023 "1_50_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_140_159_088_023_target_position_1_4_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_040 gabor_123 gabor_093 gabor_004 gabor_040 gabor_123 gabor_093_alt gabor_004_alt "1_51_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_040_123_093_004_target_position_1_2_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2292 fixation_cross gabor_009 gabor_116 gabor_043 gabor_131 gabor_009 gabor_116 gabor_043_alt gabor_131_alt "1_52_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_009_116_043_131_target_position_1_2_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1792 2992 1892 fixation_cross gabor_023 gabor_041 gabor_147 gabor_091 gabor_023_alt gabor_041_alt gabor_147 gabor_091 "1_53_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_1900_gabor_patch_orientation_023_041_147_091_target_position_3_4_retrieval_position_2" gabor_circ gabor_177_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_131 gabor_102 gabor_049 gabor_064 gabor_131 gabor_102 gabor_049_alt gabor_064_alt "1_54_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_131_102_049_064_target_position_1_2_retrieval_position_1" gabor_082_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_075 gabor_107 gabor_034 gabor_158 gabor_075 gabor_107 gabor_034_alt gabor_158_alt "1_55_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_075_107_034_158_target_position_1_2_retrieval_position_1" gabor_075_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2192 2992 1892 fixation_cross gabor_143 gabor_179 gabor_028 gabor_104 gabor_143_alt gabor_179 gabor_028 gabor_104_alt "1_56_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_1900_gabor_patch_orientation_143_179_028_104_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_104_framed blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_104_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_133 gabor_110 gabor_073 gabor_004 gabor_133_alt gabor_110 gabor_073 gabor_004_alt "1_57_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_133_110_073_004_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_026_framed gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2042 fixation_cross gabor_047 gabor_152 gabor_109 gabor_074 gabor_047 gabor_152 gabor_109_alt gabor_074_alt "1_58_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_047_152_109_074_target_position_1_2_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2442 fixation_cross gabor_161 gabor_027 gabor_179 gabor_047 gabor_161_alt gabor_027_alt gabor_179 gabor_047 "1_59_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_161_027_179_047_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2342 fixation_cross gabor_141 gabor_113 gabor_034 gabor_059 gabor_141 gabor_113_alt gabor_034 gabor_059_alt "1_60_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_141_113_034_059_target_position_1_3_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_155 gabor_089 gabor_134 gabor_016 gabor_155_alt gabor_089 gabor_134_alt gabor_016 "1_61_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_155_089_134_016_target_position_2_4_retrieval_position_1" gabor_105_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_105_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_144 gabor_066 gabor_173 gabor_039 gabor_144_alt gabor_066_alt gabor_173 gabor_039 "1_62_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_144_066_173_039_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2042 fixation_cross gabor_005 gabor_177 gabor_041 gabor_021 gabor_005_alt gabor_177 gabor_041_alt gabor_021 "1_63_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_005_177_041_021_target_position_2_4_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2392 fixation_cross gabor_136 gabor_075 gabor_103 gabor_060 gabor_136_alt gabor_075 gabor_103_alt gabor_060 "1_64_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_136_075_103_060_target_position_2_4_retrieval_position_2" gabor_circ gabor_025_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_071 gabor_135 gabor_107 gabor_052 gabor_071_alt gabor_135 gabor_107 gabor_052_alt "1_65_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_071_135_107_052_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_055 gabor_001 gabor_034 gabor_091 gabor_055 gabor_001 gabor_034_alt gabor_091_alt "1_66_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_055_001_034_091_target_position_1_2_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2192 2992 1942 fixation_cross gabor_149 gabor_109 gabor_134 gabor_002 gabor_149 gabor_109_alt gabor_134 gabor_002_alt "1_67_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_1950_gabor_patch_orientation_149_109_134_002_target_position_1_3_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_109_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_135 gabor_023 gabor_045 gabor_106 gabor_135_alt gabor_023 gabor_045_alt gabor_106 "1_68_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_135_023_045_106_target_position_2_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2042 2992 2342 fixation_cross gabor_050 gabor_135 gabor_004 gabor_022 gabor_050 gabor_135_alt gabor_004_alt gabor_022 "1_69_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2350_gabor_patch_orientation_050_135_004_022_target_position_1_4_retrieval_position_2" gabor_circ gabor_135_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_135_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2542 fixation_cross gabor_023 gabor_155 gabor_095 gabor_137 gabor_023 gabor_155_alt gabor_095 gabor_137_alt "1_70_Encoding_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_023_155_095_137_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P6_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
8f424253fd791736a9d2a4d0d57c5e8e12a1cbb9
449d555969bfd7befe906877abab098c6e63a0e8
/3417/CH7/EX7.15.1/Ex7_15_1.sce
b71b8805be01a37ae5ef7c02acacfefecee6ca58
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
940
sce
Ex7_15_1.sce
//Ex7.15.1; calculate volume of biogas digester and power available from the digester //Mass of the dry input M0=2*5;//M0=2.5 kg/day * 5 pm=50;//unit=kg/m^3 tr=20;//retention time in days C=0.24;//unit=m^3 per kg;Biogas yeild. n=0.6;//efficiency of burner Hm=28;//unit=MJ/m^3//combustion of methane Fm=0.8;//methane proportional //Fluid volume Vf is =M0/pm Vf=M0/pm; printf(" Mass of the dry input M0=%f kg/day \n Fluid volume Vf=%f m^3 /day",M0,Vf); //for expression Vd=Vftr,the digester volume is Vd=Vf*tr; printf("\n Vd=%f m^3",Vd); //volume of biogas is Vb=C*M0= biogas yield input * mass of dry input Vb=C*M0; printf("\n volume of biogas is Vb=%f m^3 /day",Vb); //The Power available from the digester is E=n*Hm*Fm*Vb; printf("\n The Power available from the digester=%f Mj/day",E); E=E*0.2728;//unit=kWh/day printf("=%f kWh/day",E); E=E*41.8//unit=W(continuous thermal) printf("=%f W(continuous thermal)",E);
d36b6b8d715fbc22c5a25012e9d8ede29535f66b
449d555969bfd7befe906877abab098c6e63a0e8
/1244/CH4/EX4.1/Example41.sce
19c11d1218e010a1e9fd92fa0abc76dbfd0c882c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
828
sce
Example41.sce
// Display mode mode(0); // Display warning for floating point exception ieee(1); clc; disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 4 Example # 4.1 ") // Temperature of air in C is given as: Tinfinity = 20; // Temperature of surface in C is given as: Ts = 100; // Therefore avaerage temperature in degree C would be: Ta = (Ts+Tinfinity)/2; // From fig. 4.2 on page 232, it can be easily seen that (deltaT/deltaY) at // y=0 is -66.7 K/mm // From Table 28 in Appendix 2, at average temperature of air, thermal // conductivity in W/m-K is k = 0.028; //Therefore from eq. 4.1 disp("The heat transfer coefficient is given by, as per Eq. 4.1, in W/m2K") // 1000 is added to convert from mm to m //heat transfer coefficient in W/m2K hc = ((-k*(-66.7))/(Ts-Tinfinity))*1000
86016630f7214eac404681f3070ddd26dbe1fc30
449d555969bfd7befe906877abab098c6e63a0e8
/2096/CH1/EX1.42/ex_1_42.sce
a64466e53d203018bac6788cf997a1ed8409446a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
358
sce
ex_1_42.sce
//Example 1.42://limitting error clc; clear; Er= 3;//full scale reading Qs=2.5*10^-6;//full scale reading Fm=1.25*10^-3;//flow measured by the meter in meter cuber per seconds dQs= Er*Qs;//magnitude limiting errr Er1= dQs/Qs;//relative error at flow PEr= dQs/(Fm*10^-3);//percentage limiting error disp(PEr," peercentage limiting error in percentage in ±")
4ffc633cbfb1f8d70e8e586901bb483fdcc20077
449d555969bfd7befe906877abab098c6e63a0e8
/1382/CH5/EX5.3/EX_5_3.sce
980bd3b803603fa62249efae78d2e13f53a4a7e8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
262
sce
EX_5_3.sce
// Example 5.3:amplifier gain clc; clear; close; f=40;//frequency in hertz Avm=40;//mid voltage gain fl=40;//lower cut off frequency in hertz Avl= (Avm/(sqrt(1+(fl/f)^2)));//gain at lower cut off frequency disp(Avl,"gain at lower cut off frequency")
856e049bf0bf72b51888eb098fa8c3298a32f964
449d555969bfd7befe906877abab098c6e63a0e8
/174/CH2/EX2.5/example2_5.sce
a6bc919f0163c6d383eb537b2cc60ad1472b104a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
794
sce
example2_5.sce
// To convert speed limit to a different unit // Modern Electronic Instrumentation And Measurement Techniques // By Albert D. Helfrick, William D. Cooper // First Edition Second Impression, 2009 // Dorling Kindersly Pvt. Ltd. India // Example 2-5 in Page 30 clear; clc; close; // Given data speed_km = 60; // speed limit in km/hr //Calculations speed_m = 60 *10^3 *10^2 *(1/2.54) *(1/12)*(1/5280); speed_ft = 37.3 *5280 *(1/(3.6*10^3)); printf("(a) The speed limit in m/hr = %0.1f mi/hr\n",speed_m); printf("(b) The speed limit in ft/s = %0.1f ft/s",speed_ft); //Result // (a) The speed limit in m/hr = 37.3 mi/hr // (b) The speed limit in ft/s = 54.7 ft/s //The answer given in textbook is printed incorrectly and does not match with calculated answer
a5046038d53c6285e9797af1db6ee9af84ac241e
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%hm_abs.sci
f5934a5c0ff0f6209597622a64c54e3858b8d5ca
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
76
sci
%hm_abs.sci
function M=%hm_abs(M) // Copyright INRIA M('entries')=abs(M('entries'))
d4da01ba67c39c7ca3b71f2cc277d284304ba16f
1485852dd59aafc286600126cf832a32e10f117f
/macros/rgb2gray.sci
8da330f7a9e90c56dc828cf1b7f77423c2f4fc80
[]
no_license
rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox
dec9fbbce32cfd1eab3c45ccb29c89aaa1384758
8adb116da3a9c29a32e5e0727105aff571e5b374
refs/heads/master
2020-12-02T16:14:45.282650
2017-07-07T10:12:04
2017-07-07T10:12:04
96,524,257
0
0
null
2017-07-07T09:43:50
2017-07-07T09:43:50
null
UTF-8
Scilab
false
false
1,483
sci
rgb2gray.sci
// Copyright (C) 2015 - IIT Bombay - FOSSEE // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // Author: Priyanka Hiranandani,Rohan Gurve // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in // function [outputImg]=rgb2gray(inputImage) //Given an original color image, this function converts it into a single channel grayscale image and return the same. // // Calling Sequence // inputImage = imread("image-location-for-inputImage"); // outputImg = rgb2gray(inputImage) // // Parameters // outputImage: single channel grayscale version of the inputImage // inputImage: Input source image // // Examples // // src = imread("../images/color2.jpeg"); // gray = rgb2gray(src); // imshow(gray);//view the output grayscale image // // Authors // Priyanka Hiranandani // Rohan Gurve [lhs rhs]=argn(0); if rhs>1 //max i/p arguments is 1 error(msprintf(" Too many input arguments")); elseif rhs<1 //min i/p argument is 1 error(msprintf("input arguments missing")); end if lhs>1 error(msprintf("Too many output arguments")); end inputList=mattolist(inputImage); out=raw_rgb2gray(inputList); sz = size(out); for i=1:sz outputImg(:, :, i) = out(i) end endfunction
2271eb0a7f3129022a2a2d6fbceadec463143521
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH24/EX24.14/24Ex14.sce
ffa713d118ad987c68dc109e3b01b81140d184f1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
481
sce
24Ex14.sce
//Chapter 24 Ex 14 clc; clear; close; tc1=270; rate1=5; area1=tc1/rate1; //area of floor //given length is 3/2 of breadth. //breadth=x then length=(3*x/2) and area= (x*3*x)/2 b=sqrt(area1*(2/3)); l=(3/2)*b; tc2=1720; rate2=10; area2=tc2/rate2; //papered area area3=8; //given area of a door and 2 windows totarea=area2+area3; ht=totarea/(2*(l+b)); mprintf("The length,bredth and height of the room are %d m,%d m,%d m respectively.",l,b,ht);
a9c69478f00cf783267fd4e3570fc37a53b3f59b
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH5/EX5.2/Ex5_2.sce
05dae0868d517df8ee2da20546cb60cbdaab72bc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
484
sce
Ex5_2.sce
clc p = 200000 // present worth in Rs i = 10 // annual interest rate i = 10/100 n = 20 // number of years a1 = (p*i)/((1+i)^n-1) // annual investment using sinking fund factor in Rs a2 = (p*i*(i+1)^n)/((i+1)^n-1)// annual investment using capital recovery factor in Rs printf("\nAnnual investment using sinking fund factor = Rs %d /- per year" , a1) printf("\nAnnual investment using capital recovery factor = Rs %d /- per year" , a2) // Answers vary due to round off error
27b3af2130e9059333091897d6fd9be927319c80
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/Computing/testjustify.sce
c8d378bdf1c8717ce1f9ae28baa609d6dfaea478
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
171
sce
testjustify.sce
M=['short text';' text with spaces '; 'loooooonnnnnnnggggg text'] justify(M,'l') // left-alignment justify(M,'r') // right-alignment justify(M,'c') // center
69df829995401718847449c09651bfb9af6ef762
1232196a72221f6cc0ee0a9a47111ef1188dafe9
/xcos_blocks/lpfota_c.sci
52933b792b53165e7c1f8ac7d023cfc54f147b3d
[]
no_license
sumagin/rasp30
06dc2ee1587a4eaf3cf5fb992375b8589617f882
a11dcffaed22dbac1f93c2f4798a48c7b0b1f795
refs/heads/master
2021-01-24T23:51:54.459864
2016-07-08T22:03:43
2016-07-08T22:03:43
16,685,217
2
3
null
2015-07-23T15:28:49
2014-02-10T05:17:38
C
UTF-8
Scilab
false
false
332
sci
lpfota_c.sci
function block=lpfota_c(block,flag) if flag ==1 r = 1:block.ipar(1) block.outptr(1)(r)=block.x(r) elseif flag==0 kap= 0.7; C = 5e-9; Ut = 0.256; j = 1:block.ipar(1) block.xd(j)=(block.rpar(j)/C).*tanh((kap*(block.inptr(1)(j)-block.x(j)))/(2*Ut)) end endfunction
fabb31da7d965fa13431117d0d1b79ae6d133e57
449d555969bfd7befe906877abab098c6e63a0e8
/3745/CH1/EX1.12/Ex1_12.sce
9bdeee200e8c14e64b8ef3b526ed088d43168a0e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
490
sce
Ex1_12.sce
// Ex 12 Page 353 clc;clear;close; // Given VRY=200*expm(%i*0);//V VYB=200*expm(%i*-120*%pi/180);//V VBR=200*expm(%i*120*%pi/180);//V ZA=10*expm(%i*60*%pi/180);//ohm ZB=10*expm(%i*0*%pi/180);//ohm ZC=10*expm(%i*60*%pi/180);//ohm //Phase current IRY=VRY/ZA;//A IYB=VYB/ZB;//A IBR=VBR/ZC;//A IR=IRY-IBR;//A PVA=conj(VRY)*IR;//W printf("Wattmeter W1 reading=%.f W",real(PVA)) IB=IBR-IYB;//A PVB=conj(-VYB)*IB;//W printf("\n Wattmeter W2 reading=%.f W or %.f kW",real(PVB),real(PVB)/1000)
f25deb2911a609b6a7b45e772183c402c366a83d
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH11/EX11.11/ex11_11.sce
51bb30fd265becad10d52fbcad9d20f8dfb64ef8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
243
sce
ex11_11.sce
clc; t1=34+273; //temperature in Kelvin t2=35+273; //temperature in Kelvin r=((t2^4)-(t1^4))/(t1^4); //calculating percentage difference in radiation disp(r*100,"Percentage difference in radiation = "); //displaying result
46c434dfdc832e29e7f31f16e3f5f0096f6139b9
449d555969bfd7befe906877abab098c6e63a0e8
/914/CH13/EX13.10/ex13_10.sce
6c71a88ff43607d18ac2e52d968cef969f7c8ef0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
417
sce
ex13_10.sce
clc; warning("off"); printf("\n\n example13.10 - pg701"); // given d=0.01; //[m] - diameter of cyclindrical porous plug D=2*10^-9; //[m^2/sec] - diffusion coefficient t=60*60; //[sec] r=d/2; m=0; Ca_inf=0; Ca_0=10; X=(D*t)/((r)^2); // from fig 13.14 the ordinate is Y=0.7; Ca_c=Ca_inf-Y*(Ca_inf-Ca_0); printf("\n\n the concentration of KCL at the centre after 60 min is \n Ca = %f kg/m^3",Ca_c);
fc24edb4784566b2f77c144876ee06bd803b4d7c
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/5 sphere 30 seconds.sce
1e0ca6b54fbf6e3c9d9699301577e0ee84999497
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
283,986
sce
5 sphere 30 seconds.sce
Name=5 sphere 30 seconds PlayerCharacters=16ML9 - 080 BotCharacters=TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot IsChallenge=true Timelimit=30.0 PlayerProfile=16ML9 - 080 AddedBots=TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot;TileFrenzy Sphere.bot PlayerMaxLives=0 BotMaxLives=0;0;0;0;0 PlayerTeam=1 BotTeams=0;0;0;0;0 MapName=Frenzy_16ML9_080.map MapScale=6.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=true InvincibleBots=false Timescale=1.0 BlockHealthbars=true TimeRefilledByKill=0.0 ScoreToWin=0.0 ScorePerDamage=0.0 ScorePerKill=1.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=true ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Endurance, Speed, Sphere, Apex Legends, Fortnite WeaponHeroTag= DifficultyTag=3 AuthorsTag=MattyBuj, creator code elo BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=true Description=Practice snapping to smaller than normal targets. GameVersion=1.0.8.0 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false [Aim Profile] Name=_ MinReactionTime=0.000001 MaxReactionTime=0.000001 MinSelfMovementCorrectionTime=0.000001 MaxSelfMovementCorrectionTime=0.000001 FlickFOV=90.0 FlickSpeed=10.0 FlickError=0.0 TrackSpeed=10.0 TrackError=0.0 MaxTurnAngleFromPadCenter=360.0 MinRecenterTime=0.0 MaxRecenterTime=0.0 OptimalAimFOV=360.0 OuterAimPenalty=0.0 MaxError=0.0 ShootFOV=90.0 VerticalAimOffset=0.0 MaxTolerableSpread=0.0 MinTolerableSpread=0.0 TolerableSpreadDist=100000.0 MaxSpreadDistFactor=1.0 [Bot Profile] Name=TileFrenzy Sphere DodgeProfileNames=ADAD DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=100.0 DodgeProfileMinChangeTime=100.0 WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=_;_;_;_;_;_;_;_ WeaponSwitchTime=60.0 UseWeapons=false CharacterProfile=TileFrenzy Sphere SeeThroughWalls=false NoDodging=false NoAiming=true [Character Profile] Name=16ML9 - 080 MaxHealth=1.0 WeaponProfileNames=16ML9 - 080;;;;;;; MinRespawnDelay=0.001 MaxRespawnDelay=0.001 StepUpHeight=0.0 CrouchHeightModifier=1.0 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=0.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=0.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=255.000 Y=0.000 Z=0.000 EnemyHeadColor=X=255.000 Y=255.000 Z=255.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=true InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Cylindrical MainBBHeight=2.0 MainBBRadius=1.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=2.0 ProjBBRadius=1.0 ProjBBHasHead=false ProjBBHeadRadius=0.1 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=0.0 VerticalSpawnOffset=-1.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Character Profile] Name=TileFrenzy Sphere MaxHealth=1.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.000001 MaxRespawnDelay=0.000001 StepUpHeight=0.0 CrouchHeightModifier=1.0 CrouchAnimationSpeed=1.0 CameraOffset=X=0.000 Y=0.000 Z=0.000 HeadshotOnly=false DamageKnockbackFactor=0.0 MovementType=Base MaxSpeed=0.0 MaxCrouchSpeed=0.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=0.0 Gravity=0.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=false CanJumpFromCrouch=false EnemyBodyColor=X=1.000 Y=1.000 Z=1.000 EnemyHeadColor=X=1.000 Y=0.000 Z=0.000 TeamBodyColor=X=0.000 Y=0.000 Z=255.000 TeamHeadColor=X=255.000 Y=255.000 Z=255.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=800.0 MainBBType=Spheroid MainBBHeight=560.0 MainBBRadius=280.0 MainBBHasHead=false MainBBHeadRadius=0.1 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Spheroid ProjBBHeight=256.0 ProjBBRadius=128.0 ProjBBHasHead=false ProjBBHeadRadius=0.1 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=true AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=false BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=0.0 VerticalSpawnOffset=-164.0 SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false [Dodge Profile] Name=ADAD MaxTargetDistance=2500.0 MinTargetDistance=750.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.2 MaxLRTimeChange=0.5 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.2 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.16 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.1 MaxCrouchTime=0.2 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 [Weapon Profile] Name=16ML9 - 080 Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.1 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=1000000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=1000000.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=1.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot=Semi - Auto Hitscan StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=80.0 ADSFOVScale=Horizontal (16:9) ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=true AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=Semi - Auto Hitscan Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.01 Pierces=false Category=SemiAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=1000000.0 GravityScale=1.0 HeadshotCapable=false HeadshotMultiplier=2.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.1 ReloadTimeFromPartial=0.1 DamageFalloffStartDistance=1000000.0 DamageFalloffStopDistance=1000000.0 DamageAtMaxRange=1.0 DelayBeforeShot=0.0 HitscanVisualEffect=None ProjectileGraphic=Ball VisualLifetime=0.1 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=1.0 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=4.0 RecoilNegatable=false DecalType=1 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=6.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 ProjectileTrail=None RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=90.0 ADSFOVScale=Horizontal (16:9) ADSAllowUserOverrideFOV=false IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=0.0,0.1,0.0,0.0 SpreadSCA=0.0,0.1,0.0,0.0 SpreadMSA=0.0,0.1,0.0,0.0 SpreadMCA=0.0,0.1,0.0,0.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=0.0,0.1,0.0,0.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=0.0,0.1,0.0,0.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=1.0 RecoilAutoReset=false TimeToRecoilPeak=0.05 TimeToRecoilReset=0.35 AAMode=0 AAPreferClosestPlayer=true AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn brush vertices -2432.000000 -2432.000000 2432.000000 2432.000000 -2432.000000 2432.000000 2432.000000 -2432.000000 -2432.000000 -2432.000000 -2432.000000 -2432.000000 -2432.000000 -2496.000000 2432.000000 2432.000000 -2496.000000 2432.000000 2432.000000 -2496.000000 -2432.000000 -2432.000000 -2496.000000 -2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2496.000000 2432.000000 2432.000000 -2432.000000 2432.000000 2432.000000 -2432.000000 2432.000000 -2432.000000 -2496.000000 2432.000000 -2432.000000 -2496.000000 -2432.000000 2432.000000 -2432.000000 -2432.000000 2432.000000 -2432.000000 -2432.000000 -2432.000000 -2496.000000 -2432.000000 -2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 2432.000000 2432.000000 -2432.000000 2432.000000 2432.000000 -2496.000000 -2432.000000 2432.000000 -2496.000000 -2432.000000 2432.000000 -2432.000000 2432.000000 -2432.000000 -2432.000000 2432.000000 -2432.000000 -2496.000000 -2432.000000 -2432.000000 -2496.000000 -2432.000000 -2432.000000 -2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices 2432.000000 2432.000000 2432.000000 2496.000000 2432.000000 2432.000000 2496.000000 2432.000000 -2432.000000 2432.000000 2432.000000 -2432.000000 2432.000000 -2432.000000 2432.000000 2496.000000 -2432.000000 2432.000000 2496.000000 -2432.000000 -2432.000000 2432.000000 -2432.000000 -2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2432.000000 2496.000000 2432.000000 2432.000000 2496.000000 2432.000000 2432.000000 2496.000000 -2432.000000 -2432.000000 2496.000000 -2432.000000 -2432.000000 2432.000000 2432.000000 2432.000000 2432.000000 2432.000000 2432.000000 2432.000000 -2432.000000 -2432.000000 2432.000000 -2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2432.000000 2432.000000 2496.000000 2432.000000 2432.000000 2496.000000 2432.000000 2432.000000 2432.000000 -2432.000000 2432.000000 2432.000000 -2432.000000 -2432.000000 2496.000000 2432.000000 -2432.000000 2496.000000 2432.000000 -2432.000000 2432.000000 -2432.000000 -2432.000000 2432.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 entity type PlayerSpawn Vector3 position -0.000000 -0.000000 0.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamB 0 entity type CameraPath UInt32 entityIdAttachedTo 132 UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 462.125000 473.812500 -2042.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 441.437500 473.812500 -2046.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 420.718750 473.812500 -2051.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 399.953125 473.812500 -2055.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.140625 473.812500 -2059.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 358.281250 473.812500 -2063.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 337.406250 473.812500 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 316.484375 473.812500 -2069.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.531250 473.812500 -2072.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 274.546875 473.812500 -2075.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 253.531250 473.812500 -2078.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 232.500000 473.812500 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 211.437500 473.812500 -2083.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.359375 473.812500 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 169.250000 473.812500 -2087.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 148.140625 473.812500 -2088.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 127.000000 473.812500 -2090.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 105.859375 473.812500 -2091.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.703125 473.812500 -2092.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 63.531250 473.812500 -2092.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 42.359375 473.812500 -2093.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 21.171875 473.812500 -2093.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 473.812500 -2093.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -21.171875 473.812500 -2093.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -42.359375 473.812500 -2093.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -63.531250 473.812500 -2092.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.703125 473.812500 -2092.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -105.859375 473.812500 -2091.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -127.000000 473.812500 -2090.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -148.140625 473.812500 -2088.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -169.250000 473.812500 -2087.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.359375 473.812500 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -211.437500 473.812500 -2083.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.500000 473.812500 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -253.531250 473.812500 -2078.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -274.546875 473.812500 -2075.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.531250 473.812500 -2072.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -316.484375 473.812500 -2069.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -337.406250 473.812500 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -358.281250 473.812500 -2063.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.140625 473.812500 -2059.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -399.953125 473.812500 -2055.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -420.718750 473.812500 -2051.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -441.437500 473.812500 -2046.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -462.125000 473.812500 -2042.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 463.000000 455.875000 -2046.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 442.750000 455.875000 -2050.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 422.437500 455.875000 -2054.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 402.093750 455.875000 -2059.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.718750 455.875000 -2062.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 361.296875 455.875000 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 340.828125 455.875000 -2070.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.343750 455.875000 -2073.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 299.828125 455.875000 -2076.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 279.281250 455.875000 -2079.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 258.703125 455.875000 -2081.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.093750 455.875000 -2084.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.468750 455.875000 -2086.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.828125 455.875000 -2088.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.156250 455.875000 -2090.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 155.468750 455.875000 -2092.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 134.781250 455.875000 -2093.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.062500 455.875000 -2094.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.343750 455.875000 -2095.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.609375 455.875000 -2096.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 51.859375 455.875000 -2097.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.125000 455.875000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.375000 455.875000 -2097.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.375000 455.875000 -2097.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.125000 455.875000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -51.859375 455.875000 -2097.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.609375 455.875000 -2096.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.343750 455.875000 -2095.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.062500 455.875000 -2094.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -134.781250 455.875000 -2093.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -155.468750 455.875000 -2092.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.156250 455.875000 -2090.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.828125 455.875000 -2088.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.468750 455.875000 -2086.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.093750 455.875000 -2084.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -258.703125 455.875000 -2081.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -279.281250 455.875000 -2079.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -299.828125 455.875000 -2076.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -320.343750 455.875000 -2073.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -340.828125 455.875000 -2070.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -361.296875 455.875000 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.718750 455.875000 -2062.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -402.093750 455.875000 -2059.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -422.437500 455.875000 -2054.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -442.750000 455.875000 -2050.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -463.000000 455.875000 -2046.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 463.843750 437.890625 -2049.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 443.546875 437.890625 -2054.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 423.203125 437.890625 -2058.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 402.828125 437.890625 -2062.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 382.406250 437.890625 -2066.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 361.953125 437.890625 -2070.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.453125 437.890625 -2073.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.937500 437.890625 -2077.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.375000 437.890625 -2080.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 279.781250 437.890625 -2083.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 259.171875 437.890625 -2085.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.531250 437.890625 -2088.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.859375 437.890625 -2090.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.187500 437.890625 -2092.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.484375 437.890625 -2094.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 155.750000 437.890625 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 135.015625 437.890625 -2097.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.265625 437.890625 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.515625 437.890625 -2099.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.734375 437.890625 -2100.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 51.968750 437.890625 -2101.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.171875 437.890625 -2101.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.390625 437.890625 -2101.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.390625 437.890625 -2101.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.171875 437.890625 -2101.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -51.968750 437.890625 -2101.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.734375 437.890625 -2100.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.515625 437.890625 -2099.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.265625 437.890625 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -135.015625 437.890625 -2097.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -155.750000 437.890625 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.484375 437.890625 -2094.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.187500 437.890625 -2092.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.859375 437.890625 -2090.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.531250 437.890625 -2088.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -259.171875 437.890625 -2085.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -279.781250 437.890625 -2083.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.375000 437.890625 -2080.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -320.937500 437.890625 -2077.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.453125 437.890625 -2073.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -361.953125 437.890625 -2070.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -382.406250 437.890625 -2066.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -402.828125 437.890625 -2062.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -423.203125 437.890625 -2058.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -443.546875 437.890625 -2054.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -463.843750 437.890625 -2049.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 464.656250 419.890625 -2053.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 444.328125 419.890625 -2057.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 423.953125 419.890625 -2062.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 403.531250 419.890625 -2066.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 383.078125 419.890625 -2070.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 362.578125 419.890625 -2073.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 342.046875 419.890625 -2077.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 321.484375 419.890625 -2080.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.890625 419.890625 -2083.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.265625 419.890625 -2086.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 259.625000 419.890625 -2089.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.953125 419.890625 -2091.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 218.250000 419.890625 -2094.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.531250 419.890625 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.781250 419.890625 -2097.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 156.031250 419.890625 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 135.250000 419.890625 -2101.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.468750 419.890625 -2102.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.671875 419.890625 -2103.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.859375 419.890625 -2104.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 52.046875 419.890625 -2104.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.234375 419.890625 -2105.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.406250 419.890625 -2105.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.406250 419.890625 -2105.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.234375 419.890625 -2105.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -52.046875 419.890625 -2104.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.859375 419.890625 -2104.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.671875 419.890625 -2103.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.468750 419.890625 -2102.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -135.250000 419.890625 -2101.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -156.031250 419.890625 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.781250 419.890625 -2097.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.531250 419.890625 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -218.250000 419.890625 -2094.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.953125 419.890625 -2091.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -259.625000 419.890625 -2089.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.265625 419.890625 -2086.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.890625 419.890625 -2083.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -321.484375 419.890625 -2080.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -342.046875 419.890625 -2077.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -362.578125 419.890625 -2073.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -383.078125 419.890625 -2070.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -403.531250 419.890625 -2066.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -423.953125 419.890625 -2062.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -444.328125 419.890625 -2057.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -464.656250 419.890625 -2053.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 465.437500 401.859375 -2056.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 445.515625 401.859375 -2061.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 425.546875 401.859375 -2065.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 405.546875 401.859375 -2069.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 385.500000 401.859375 -2073.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 365.421875 401.859375 -2077.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.312500 401.859375 -2080.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 325.171875 401.859375 -2083.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.984375 401.859375 -2086.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 284.781250 401.859375 -2089.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.562500 401.859375 -2092.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 244.296875 401.859375 -2094.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.015625 401.859375 -2096.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.718750 401.859375 -2099.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.406250 401.859375 -2100.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.078125 401.859375 -2102.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 142.718750 401.859375 -2104.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.359375 401.859375 -2105.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 101.984375 401.859375 -2106.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.593750 401.859375 -2107.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.203125 401.859375 -2108.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.812500 401.859375 -2108.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.406250 401.859375 -2108.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 401.859375 -2108.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.406250 401.859375 -2108.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.812500 401.859375 -2108.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.203125 401.859375 -2108.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.593750 401.859375 -2107.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -101.984375 401.859375 -2106.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.359375 401.859375 -2105.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -142.718750 401.859375 -2104.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.078125 401.859375 -2102.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.406250 401.859375 -2100.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.718750 401.859375 -2099.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.015625 401.859375 -2096.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -244.296875 401.859375 -2094.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -264.562500 401.859375 -2092.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -284.781250 401.859375 -2089.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.984375 401.859375 -2086.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -325.171875 401.859375 -2083.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.312500 401.859375 -2080.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -365.421875 401.859375 -2077.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -385.500000 401.859375 -2073.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -405.546875 401.859375 -2069.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -425.546875 401.859375 -2065.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -445.515625 401.859375 -2061.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -465.437500 401.859375 -2056.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 466.171875 383.796875 -2060.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 446.218750 383.796875 -2064.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 426.218750 383.796875 -2068.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 406.187500 383.796875 -2072.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 386.109375 383.796875 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 366.000000 383.796875 -2080.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.859375 383.796875 -2083.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 325.687500 383.796875 -2087.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 305.468750 383.796875 -2090.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.234375 383.796875 -2092.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.984375 383.796875 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 244.687500 383.796875 -2098.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.375000 383.796875 -2100.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.046875 383.796875 -2102.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.703125 383.796875 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.328125 383.796875 -2105.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 142.953125 383.796875 -2107.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.546875 383.796875 -2108.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.140625 383.796875 -2109.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.718750 383.796875 -2110.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.296875 383.796875 -2111.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.875000 383.796875 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.437500 383.796875 -2112.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 383.796875 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.437500 383.796875 -2112.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.875000 383.796875 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.296875 383.796875 -2111.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.718750 383.796875 -2110.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.140625 383.796875 -2109.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.546875 383.796875 -2108.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -142.953125 383.796875 -2107.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.328125 383.796875 -2105.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.703125 383.796875 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.046875 383.796875 -2102.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.375000 383.796875 -2100.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -244.687500 383.796875 -2098.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -264.984375 383.796875 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.234375 383.796875 -2092.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -305.468750 383.796875 -2090.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -325.687500 383.796875 -2087.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.859375 383.796875 -2083.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -366.000000 383.796875 -2080.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -386.109375 383.796875 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -406.187500 383.796875 -2072.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -426.218750 383.796875 -2068.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -446.218750 383.796875 -2064.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -466.171875 383.796875 -2060.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 466.875000 365.703125 -2063.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 446.890625 365.703125 -2067.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 426.875000 365.703125 -2071.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 406.796875 365.703125 -2076.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 386.703125 365.703125 -2079.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 366.562500 365.703125 -2083.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 346.390625 365.703125 -2086.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.171875 365.703125 -2090.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 305.937500 365.703125 -2093.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.671875 365.703125 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 265.375000 365.703125 -2098.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 245.062500 365.703125 -2101.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.718750 365.703125 -2103.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.359375 365.703125 -2105.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.984375 365.703125 -2107.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.578125 365.703125 -2109.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 143.171875 365.703125 -2110.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.734375 365.703125 -2111.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.296875 365.703125 -2113.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.843750 365.703125 -2113.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.390625 365.703125 -2114.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.937500 365.703125 -2115.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.468750 365.703125 -2115.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 365.703125 -2115.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.468750 365.703125 -2115.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.937500 365.703125 -2115.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.390625 365.703125 -2114.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.843750 365.703125 -2113.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.296875 365.703125 -2113.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.734375 365.703125 -2111.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -143.171875 365.703125 -2110.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.578125 365.703125 -2109.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.984375 365.703125 -2107.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.359375 365.703125 -2105.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.718750 365.703125 -2103.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -245.062500 365.703125 -2101.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -265.375000 365.703125 -2098.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.671875 365.703125 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -305.937500 365.703125 -2093.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.171875 365.703125 -2090.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -346.390625 365.703125 -2086.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -366.562500 365.703125 -2083.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -386.703125 365.703125 -2079.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -406.796875 365.703125 -2076.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -426.875000 365.703125 -2071.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -446.890625 365.703125 -2067.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -466.875000 365.703125 -2063.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 467.562500 347.578125 -2066.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 447.546875 347.578125 -2070.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 427.484375 347.578125 -2074.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 407.390625 347.578125 -2079.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 387.265625 347.578125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 367.093750 347.578125 -2086.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 346.890625 347.578125 -2089.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.640625 347.578125 -2093.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 306.375000 347.578125 -2096.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 286.078125 347.578125 -2099.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 265.765625 347.578125 -2101.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 245.421875 347.578125 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 225.046875 347.578125 -2106.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.656250 347.578125 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.250000 347.578125 -2110.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.812500 347.578125 -2112.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 143.375000 347.578125 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.921875 347.578125 -2114.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.453125 347.578125 -2116.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.968750 347.578125 -2116.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.484375 347.578125 -2117.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.984375 347.578125 -2118.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.500000 347.578125 -2118.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 347.578125 -2118.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.500000 347.578125 -2118.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.984375 347.578125 -2118.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.484375 347.578125 -2117.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.968750 347.578125 -2116.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.453125 347.578125 -2116.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.921875 347.578125 -2114.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -143.375000 347.578125 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.812500 347.578125 -2112.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.250000 347.578125 -2110.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.656250 347.578125 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -225.046875 347.578125 -2106.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -245.421875 347.578125 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -265.765625 347.578125 -2101.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -286.078125 347.578125 -2099.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -306.375000 347.578125 -2096.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.640625 347.578125 -2093.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -346.890625 347.578125 -2089.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -367.093750 347.578125 -2086.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -387.265625 347.578125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -407.390625 347.578125 -2079.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -427.484375 347.578125 -2074.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -447.546875 347.578125 -2070.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -467.562500 347.578125 -2066.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 468.187500 329.437500 -2069.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 448.578125 329.437500 -2073.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 428.921875 329.437500 -2077.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 409.234375 329.437500 -2081.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 389.500000 329.437500 -2085.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 369.734375 329.437500 -2088.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 349.937500 329.437500 -2092.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.109375 329.437500 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 310.250000 329.437500 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 290.375000 329.437500 -2101.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.453125 329.437500 -2104.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 250.515625 329.437500 -2106.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 230.562500 329.437500 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 210.578125 329.437500 -2110.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.578125 329.437500 -2112.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 170.562500 329.437500 -2114.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.531250 329.437500 -2116.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.500000 329.437500 -2117.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.437500 329.437500 -2118.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.375000 329.437500 -2119.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.296875 329.437500 -2120.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.218750 329.437500 -2120.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.125000 329.437500 -2121.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.046875 329.437500 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.046875 329.437500 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.125000 329.437500 -2121.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.218750 329.437500 -2120.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.296875 329.437500 -2120.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.375000 329.437500 -2119.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.437500 329.437500 -2118.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.500000 329.437500 -2117.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.531250 329.437500 -2116.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -170.562500 329.437500 -2114.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.578125 329.437500 -2112.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -210.578125 329.437500 -2110.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -230.562500 329.437500 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -250.515625 329.437500 -2106.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.453125 329.437500 -2104.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -290.375000 329.437500 -2101.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -310.250000 329.437500 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.109375 329.437500 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -349.937500 329.437500 -2092.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -369.734375 329.437500 -2088.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -389.500000 329.437500 -2085.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -409.234375 329.437500 -2081.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -428.921875 329.437500 -2077.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -448.578125 329.437500 -2073.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -468.187500 329.437500 -2069.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 468.796875 311.265625 -2071.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 449.156250 311.265625 -2076.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 429.484375 311.265625 -2080.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 409.765625 311.265625 -2084.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 390.015625 311.265625 -2088.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 370.218750 311.265625 -2091.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 350.390625 311.265625 -2095.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.546875 311.265625 -2098.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 310.656250 311.265625 -2101.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 290.750000 311.265625 -2104.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.812500 311.265625 -2106.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 250.843750 311.265625 -2109.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 230.859375 311.265625 -2111.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 210.859375 311.265625 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.828125 311.265625 -2115.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 170.796875 311.265625 -2117.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.734375 311.265625 -2118.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.656250 311.265625 -2120.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.578125 311.265625 -2121.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.484375 311.265625 -2122.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.390625 311.265625 -2123.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.281250 311.265625 -2123.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.171875 311.265625 -2123.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.062500 311.265625 -2124.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.062500 311.265625 -2124.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.171875 311.265625 -2123.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.281250 311.265625 -2123.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.390625 311.265625 -2123.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.484375 311.265625 -2122.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.578125 311.265625 -2121.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.656250 311.265625 -2120.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.734375 311.265625 -2118.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -170.796875 311.265625 -2117.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.828125 311.265625 -2115.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -210.859375 311.265625 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -230.859375 311.265625 -2111.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -250.843750 311.265625 -2109.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.812500 311.265625 -2106.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -290.750000 311.265625 -2104.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -310.656250 311.265625 -2101.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.546875 311.265625 -2098.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -350.390625 311.265625 -2095.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -370.218750 311.265625 -2091.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -390.015625 311.265625 -2088.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -409.765625 311.265625 -2084.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -429.484375 311.265625 -2080.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -449.156250 311.265625 -2076.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -468.796875 311.265625 -2071.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 469.375000 293.078125 -2074.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 449.703125 293.078125 -2078.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 430.000000 293.078125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 410.265625 293.078125 -2086.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 390.484375 293.078125 -2090.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 370.671875 293.078125 -2094.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 350.828125 293.078125 -2097.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.937500 293.078125 -2100.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 311.031250 293.078125 -2103.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 291.093750 293.078125 -2106.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 271.140625 293.078125 -2109.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 251.156250 293.078125 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 231.140625 293.078125 -2114.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 211.109375 293.078125 -2116.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 191.062500 293.078125 -2118.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.000000 293.078125 -2119.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.921875 293.078125 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.828125 293.078125 -2122.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.718750 293.078125 -2123.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.593750 293.078125 -2124.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.468750 293.078125 -2125.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.343750 293.078125 -2126.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.203125 293.078125 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.062500 293.078125 -2126.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.062500 293.078125 -2126.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.203125 293.078125 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.343750 293.078125 -2126.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.468750 293.078125 -2125.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.593750 293.078125 -2124.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.718750 293.078125 -2123.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.828125 293.078125 -2122.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.921875 293.078125 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.000000 293.078125 -2119.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -191.062500 293.078125 -2118.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -211.109375 293.078125 -2116.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -231.140625 293.078125 -2114.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -251.156250 293.078125 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -271.140625 293.078125 -2109.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -291.093750 293.078125 -2106.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -311.031250 293.078125 -2103.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.937500 293.078125 -2100.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -350.828125 293.078125 -2097.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -370.671875 293.078125 -2094.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -390.484375 293.078125 -2090.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -410.265625 293.078125 -2086.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -430.000000 293.078125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -449.703125 293.078125 -2078.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -469.375000 293.078125 -2074.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 469.906250 274.859375 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 450.625000 274.859375 -2080.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 431.312500 274.859375 -2085.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 411.968750 274.859375 -2088.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 392.578125 274.859375 -2092.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.156250 274.859375 -2096.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 353.703125 274.859375 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.218750 274.859375 -2102.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 314.718750 274.859375 -2105.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.171875 274.859375 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 275.609375 274.859375 -2111.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.031250 274.859375 -2113.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.421875 274.859375 -2116.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 216.781250 274.859375 -2118.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.140625 274.859375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.468750 274.859375 -2121.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 157.796875 274.859375 -2123.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.093750 274.859375 -2124.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.390625 274.859375 -2125.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.671875 274.859375 -2126.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 78.953125 274.859375 -2127.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.218750 274.859375 -2128.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.484375 274.859375 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.734375 274.859375 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 274.859375 -2129.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.734375 274.859375 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.484375 274.859375 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.218750 274.859375 -2128.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -78.953125 274.859375 -2127.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.671875 274.859375 -2126.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.390625 274.859375 -2125.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.093750 274.859375 -2124.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -157.796875 274.859375 -2123.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.468750 274.859375 -2121.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.140625 274.859375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -216.781250 274.859375 -2118.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.421875 274.859375 -2116.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.031250 274.859375 -2113.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -275.609375 274.859375 -2111.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.171875 274.859375 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -314.718750 274.859375 -2105.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.218750 274.859375 -2102.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -353.703125 274.859375 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.156250 274.859375 -2096.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -392.578125 274.859375 -2092.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -411.968750 274.859375 -2088.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -431.312500 274.859375 -2085.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -450.625000 274.859375 -2080.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -469.906250 274.859375 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 470.406250 256.625000 -2078.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.109375 256.625000 -2083.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 431.781250 256.625000 -2087.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 412.406250 256.625000 -2091.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.000000 256.625000 -2094.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.562500 256.625000 -2098.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.093750 256.625000 -2101.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.578125 256.625000 -2105.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.046875 256.625000 -2108.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.484375 256.625000 -2110.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 275.906250 256.625000 -2113.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.296875 256.625000 -2116.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.671875 256.625000 -2118.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.015625 256.625000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.343750 256.625000 -2122.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.656250 256.625000 -2124.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 157.953125 256.625000 -2125.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.250000 256.625000 -2126.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.515625 256.625000 -2128.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.781250 256.625000 -2129.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.031250 256.625000 -2130.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.281250 256.625000 -2130.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.531250 256.625000 -2131.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.765625 256.625000 -2131.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 256.625000 -2131.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.765625 256.625000 -2131.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.531250 256.625000 -2131.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.281250 256.625000 -2130.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.031250 256.625000 -2130.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.781250 256.625000 -2129.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.515625 256.625000 -2128.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.250000 256.625000 -2126.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -157.953125 256.625000 -2125.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.656250 256.625000 -2124.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.343750 256.625000 -2122.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.015625 256.625000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.671875 256.625000 -2118.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.296875 256.625000 -2116.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -275.906250 256.625000 -2113.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.484375 256.625000 -2110.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.046875 256.625000 -2108.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.578125 256.625000 -2105.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.093750 256.625000 -2101.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.562500 256.625000 -2098.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.000000 256.625000 -2094.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -412.406250 256.625000 -2091.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -431.781250 256.625000 -2087.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.109375 256.625000 -2083.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -470.406250 256.625000 -2078.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 470.875000 238.375000 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.562500 238.375000 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 432.203125 238.375000 -2089.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 412.812500 238.375000 -2093.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.390625 238.375000 -2097.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.937500 238.375000 -2100.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.437500 238.375000 -2103.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.921875 238.375000 -2107.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.359375 238.375000 -2110.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.781250 238.375000 -2112.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 276.187500 238.375000 -2115.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.546875 238.375000 -2118.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.906250 238.375000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.234375 238.375000 -2122.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.546875 238.375000 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.843750 238.375000 -2126.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.109375 238.375000 -2127.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.375000 238.375000 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.640625 238.375000 -2130.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.875000 238.375000 -2131.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.109375 238.375000 -2132.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.343750 238.375000 -2132.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.562500 238.375000 -2133.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.781250 238.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 238.375000 -2133.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.781250 238.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.562500 238.375000 -2133.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.343750 238.375000 -2132.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.109375 238.375000 -2132.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.875000 238.375000 -2131.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.640625 238.375000 -2130.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.375000 238.375000 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.109375 238.375000 -2127.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.843750 238.375000 -2126.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.546875 238.375000 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.234375 238.375000 -2122.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.906250 238.375000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.546875 238.375000 -2118.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -276.187500 238.375000 -2115.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.781250 238.375000 -2112.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.359375 238.375000 -2110.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.921875 238.375000 -2107.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.437500 238.375000 -2103.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.937500 238.375000 -2100.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.390625 238.375000 -2097.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -412.812500 238.375000 -2093.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -432.203125 238.375000 -2089.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.562500 238.375000 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -470.875000 238.375000 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 471.312500 220.109375 -2082.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.984375 220.109375 -2087.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 432.609375 220.109375 -2091.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 413.203125 220.109375 -2095.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.750000 220.109375 -2098.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 374.281250 220.109375 -2102.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.765625 220.109375 -2105.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 335.218750 220.109375 -2109.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.656250 220.109375 -2112.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.062500 220.109375 -2114.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 276.437500 220.109375 -2117.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.796875 220.109375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 237.125000 220.109375 -2122.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.437500 220.109375 -2124.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.718750 220.109375 -2126.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 178.000000 220.109375 -2128.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.265625 220.109375 -2129.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.515625 220.109375 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.750000 220.109375 -2132.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.968750 220.109375 -2133.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.187500 220.109375 -2134.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.390625 220.109375 -2134.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.593750 220.109375 -2135.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.796875 220.109375 -2135.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 220.109375 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.796875 220.109375 -2135.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.593750 220.109375 -2135.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.390625 220.109375 -2134.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.187500 220.109375 -2134.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.968750 220.109375 -2133.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.750000 220.109375 -2132.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.515625 220.109375 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.265625 220.109375 -2129.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -178.000000 220.109375 -2128.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.718750 220.109375 -2126.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.437500 220.109375 -2124.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -237.125000 220.109375 -2122.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.796875 220.109375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -276.437500 220.109375 -2117.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -296.062500 220.109375 -2114.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.656250 220.109375 -2112.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -335.218750 220.109375 -2109.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.765625 220.109375 -2105.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -374.281250 220.109375 -2102.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.750000 220.109375 -2098.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -413.203125 220.109375 -2095.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -432.609375 220.109375 -2091.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.984375 220.109375 -2087.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -471.312500 220.109375 -2082.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 471.703125 201.828125 -2084.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 452.750000 201.828125 -2088.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 433.765625 201.828125 -2092.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 414.734375 201.828125 -2096.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 395.671875 201.828125 -2100.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 376.578125 201.828125 -2103.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.453125 201.828125 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.296875 201.828125 -2110.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.125000 201.828125 -2113.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 299.906250 201.828125 -2116.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.671875 201.828125 -2118.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.421875 201.828125 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.140625 201.828125 -2123.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 222.843750 201.828125 -2125.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.531250 201.828125 -2127.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.203125 201.828125 -2129.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 164.843750 201.828125 -2130.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.484375 201.828125 -2132.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.109375 201.828125 -2133.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.734375 201.828125 -2134.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.328125 201.828125 -2135.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 67.937500 201.828125 -2136.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.531250 201.828125 -2136.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.125000 201.828125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.703125 201.828125 -2137.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.703125 201.828125 -2137.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.125000 201.828125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.531250 201.828125 -2136.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -67.937500 201.828125 -2136.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.328125 201.828125 -2135.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.734375 201.828125 -2134.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.109375 201.828125 -2133.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.484375 201.828125 -2132.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -164.843750 201.828125 -2130.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.203125 201.828125 -2129.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.531250 201.828125 -2127.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -222.843750 201.828125 -2125.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.140625 201.828125 -2123.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.421875 201.828125 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.671875 201.828125 -2118.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -299.906250 201.828125 -2116.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.125000 201.828125 -2113.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.296875 201.828125 -2110.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.453125 201.828125 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -376.578125 201.828125 -2103.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -395.671875 201.828125 -2100.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -414.734375 201.828125 -2096.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -433.765625 201.828125 -2092.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -452.750000 201.828125 -2088.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -471.703125 201.828125 -2084.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.078125 183.515625 -2086.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 453.109375 183.515625 -2090.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 434.093750 183.515625 -2094.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 415.062500 183.515625 -2098.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 395.984375 183.515625 -2102.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 376.875000 183.515625 -2105.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.734375 183.515625 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.562500 183.515625 -2112.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.359375 183.515625 -2115.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.140625 183.515625 -2117.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.890625 183.515625 -2120.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.625000 183.515625 -2122.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.328125 183.515625 -2125.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 223.015625 183.515625 -2127.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.687500 183.515625 -2129.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.343750 183.515625 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 164.968750 183.515625 -2132.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.593750 183.515625 -2134.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.203125 183.515625 -2135.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.812500 183.515625 -2136.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.406250 183.515625 -2137.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 67.984375 183.515625 -2137.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.562500 183.515625 -2138.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.140625 183.515625 -2138.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.718750 183.515625 -2138.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.718750 183.515625 -2138.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.140625 183.515625 -2138.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.562500 183.515625 -2138.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -67.984375 183.515625 -2137.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.406250 183.515625 -2137.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.812500 183.515625 -2136.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.203125 183.515625 -2135.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.593750 183.515625 -2134.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -164.968750 183.515625 -2132.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.343750 183.515625 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.687500 183.515625 -2129.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -223.015625 183.515625 -2127.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.328125 183.515625 -2125.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.625000 183.515625 -2122.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.890625 183.515625 -2120.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.140625 183.515625 -2117.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.359375 183.515625 -2115.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.562500 183.515625 -2112.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.734375 183.515625 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -376.875000 183.515625 -2105.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -395.984375 183.515625 -2102.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -415.062500 183.515625 -2098.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -434.093750 183.515625 -2094.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -453.109375 183.515625 -2090.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.078125 183.515625 -2086.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.406250 165.203125 -2087.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 453.421875 165.203125 -2091.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 434.406250 165.203125 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 415.343750 165.203125 -2099.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 396.250000 165.203125 -2103.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 377.140625 165.203125 -2107.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.984375 165.203125 -2110.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.796875 165.203125 -2113.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.593750 165.203125 -2116.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.359375 165.203125 -2119.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 281.093750 165.203125 -2121.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.812500 165.203125 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.500000 165.203125 -2126.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 223.171875 165.203125 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.828125 165.203125 -2130.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.468750 165.203125 -2132.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 165.093750 165.203125 -2134.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.703125 165.203125 -2135.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.296875 165.203125 -2136.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.890625 165.203125 -2137.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.468750 165.203125 -2138.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 68.031250 165.203125 -2139.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.593750 165.203125 -2139.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.156250 165.203125 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.718750 165.203125 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.718750 165.203125 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.156250 165.203125 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.593750 165.203125 -2139.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -68.031250 165.203125 -2139.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.468750 165.203125 -2138.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.890625 165.203125 -2137.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.296875 165.203125 -2136.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.703125 165.203125 -2135.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -165.093750 165.203125 -2134.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.468750 165.203125 -2132.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.828125 165.203125 -2130.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -223.171875 165.203125 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.500000 165.203125 -2126.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.812500 165.203125 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -281.093750 165.203125 -2121.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.359375 165.203125 -2119.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.593750 165.203125 -2116.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.796875 165.203125 -2113.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.984375 165.203125 -2110.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -377.140625 165.203125 -2107.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -396.250000 165.203125 -2103.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -415.343750 165.203125 -2099.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -434.406250 165.203125 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -453.421875 165.203125 -2091.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.406250 165.203125 -2087.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.703125 146.875000 -2089.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.078125 146.875000 -2093.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.437500 146.875000 -2097.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.750000 146.875000 -2100.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.031250 146.875000 -2104.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.281250 146.875000 -2107.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.500000 146.875000 -2111.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.703125 146.875000 -2114.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 322.859375 146.875000 -2117.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 146.875000 -2120.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.125000 146.875000 -2122.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.218750 146.875000 -2125.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.296875 146.875000 -2127.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.343750 146.875000 -2129.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.375000 146.875000 -2131.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.390625 146.875000 -2133.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.406250 146.875000 -2134.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.390625 146.875000 -2136.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.375000 146.875000 -2137.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.328125 146.875000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.296875 146.875000 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.250000 146.875000 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.187500 146.875000 -2141.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.125000 146.875000 -2141.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.062500 146.875000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 146.875000 -2141.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.062500 146.875000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.125000 146.875000 -2141.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.187500 146.875000 -2141.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.250000 146.875000 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.296875 146.875000 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.328125 146.875000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.375000 146.875000 -2137.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.390625 146.875000 -2136.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.406250 146.875000 -2134.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.390625 146.875000 -2133.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.375000 146.875000 -2131.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.343750 146.875000 -2129.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.296875 146.875000 -2127.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.218750 146.875000 -2125.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.125000 146.875000 -2122.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.000000 146.875000 -2120.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -322.859375 146.875000 -2117.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.703125 146.875000 -2114.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.500000 146.875000 -2111.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.281250 146.875000 -2107.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.031250 146.875000 -2104.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -416.750000 146.875000 -2100.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.437500 146.875000 -2097.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.078125 146.875000 -2093.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.703125 146.875000 -2089.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.953125 128.546875 -2090.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.328125 128.546875 -2094.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.671875 128.546875 -2098.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.984375 128.546875 -2102.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.250000 128.546875 -2105.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.500000 128.546875 -2109.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.703125 128.546875 -2112.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.890625 128.546875 -2115.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 323.046875 128.546875 -2118.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.171875 128.546875 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.281250 128.546875 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.359375 128.546875 -2126.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.421875 128.546875 -2128.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.468750 128.546875 -2130.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.500000 128.546875 -2132.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.500000 128.546875 -2134.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.500000 128.546875 -2136.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.468750 128.546875 -2137.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.437500 128.546875 -2138.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.390625 128.546875 -2139.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.343750 128.546875 -2140.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.281250 128.546875 -2141.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.218750 128.546875 -2142.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.156250 128.546875 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.078125 128.546875 -2142.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 128.546875 -2143.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.078125 128.546875 -2142.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.156250 128.546875 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.218750 128.546875 -2142.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.281250 128.546875 -2141.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.343750 128.546875 -2140.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.390625 128.546875 -2139.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.437500 128.546875 -2138.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.468750 128.546875 -2137.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.500000 128.546875 -2136.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.500000 128.546875 -2134.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.500000 128.546875 -2132.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.468750 128.546875 -2130.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.421875 128.546875 -2128.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.359375 128.546875 -2126.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.281250 128.546875 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.171875 128.546875 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -323.046875 128.546875 -2118.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.890625 128.546875 -2115.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.703125 128.546875 -2112.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.500000 128.546875 -2109.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.250000 128.546875 -2105.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -416.984375 128.546875 -2102.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.671875 128.546875 -2098.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.328125 128.546875 -2094.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.953125 128.546875 -2090.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.187500 110.203125 -2091.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.546875 110.203125 -2095.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.875000 110.203125 -2099.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 417.171875 110.203125 -2103.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.437500 110.203125 -2106.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.671875 110.203125 -2110.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.875000 110.203125 -2113.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 342.046875 110.203125 -2116.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 323.203125 110.203125 -2119.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.312500 110.203125 -2122.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.421875 110.203125 -2124.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.484375 110.203125 -2127.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.546875 110.203125 -2129.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.578125 110.203125 -2131.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.593750 110.203125 -2133.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.593750 110.203125 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.578125 110.203125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.546875 110.203125 -2138.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.500000 110.203125 -2139.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.453125 110.203125 -2140.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.390625 110.203125 -2141.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.328125 110.203125 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.250000 110.203125 -2143.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.171875 110.203125 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.078125 110.203125 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 110.203125 -2144.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.078125 110.203125 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.171875 110.203125 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.250000 110.203125 -2143.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.328125 110.203125 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.390625 110.203125 -2141.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.453125 110.203125 -2140.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.500000 110.203125 -2139.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.546875 110.203125 -2138.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.578125 110.203125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.593750 110.203125 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.593750 110.203125 -2133.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.578125 110.203125 -2131.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.546875 110.203125 -2129.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.484375 110.203125 -2127.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.421875 110.203125 -2124.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.312500 110.203125 -2122.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -323.203125 110.203125 -2119.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -342.046875 110.203125 -2116.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.875000 110.203125 -2113.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.671875 110.203125 -2110.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.437500 110.203125 -2106.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -417.171875 110.203125 -2103.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.875000 110.203125 -2099.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.546875 110.203125 -2095.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.187500 110.203125 -2091.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.375000 91.843750 -2092.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.093750 91.843750 -2096.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 436.796875 91.843750 -2099.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.453125 91.843750 -2103.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.078125 91.843750 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.671875 91.843750 -2110.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.234375 91.843750 -2113.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.781250 91.843750 -2117.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.281250 91.843750 -2119.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.781250 91.843750 -2122.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.234375 91.843750 -2125.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.687500 91.843750 -2127.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.109375 91.843750 -2130.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.515625 91.843750 -2132.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 214.890625 91.843750 -2134.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.265625 91.843750 -2135.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.609375 91.843750 -2137.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.953125 91.843750 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.281250 91.843750 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.593750 91.843750 -2141.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.906250 91.843750 -2142.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.203125 91.843750 -2143.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.500000 91.843750 -2143.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.796875 91.843750 -2144.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.078125 91.843750 -2144.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 91.843750 -2144.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 91.843750 -2144.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.078125 91.843750 -2144.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.796875 91.843750 -2144.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.500000 91.843750 -2143.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.203125 91.843750 -2143.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.906250 91.843750 -2142.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.593750 91.843750 -2141.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.281250 91.843750 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.953125 91.843750 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.609375 91.843750 -2137.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.265625 91.843750 -2135.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -214.890625 91.843750 -2134.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.515625 91.843750 -2132.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.109375 91.843750 -2130.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.687500 91.843750 -2127.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.234375 91.843750 -2125.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.781250 91.843750 -2122.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.281250 91.843750 -2119.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.781250 91.843750 -2117.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.234375 91.843750 -2113.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.671875 91.843750 -2110.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.078125 91.843750 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.453125 91.843750 -2103.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -436.796875 91.843750 -2099.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.093750 91.843750 -2096.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.375000 91.843750 -2092.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.531250 73.484375 -2092.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.250000 73.484375 -2096.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 436.937500 73.484375 -2100.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.593750 73.484375 -2104.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.203125 73.484375 -2107.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.796875 73.484375 -2111.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.359375 73.484375 -2114.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.890625 73.484375 -2117.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.390625 73.484375 -2120.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.875000 73.484375 -2123.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.343750 73.484375 -2126.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.765625 73.484375 -2128.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.187500 73.484375 -2130.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.578125 73.484375 -2132.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 214.968750 73.484375 -2134.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.328125 73.484375 -2136.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.671875 73.484375 -2138.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.000000 73.484375 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.328125 73.484375 -2141.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.640625 73.484375 -2142.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.937500 73.484375 -2143.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.234375 73.484375 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.531250 73.484375 -2144.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.812500 73.484375 -2145.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.078125 73.484375 -2145.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 73.484375 -2145.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 73.484375 -2145.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.078125 73.484375 -2145.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.812500 73.484375 -2145.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.531250 73.484375 -2144.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.234375 73.484375 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.937500 73.484375 -2143.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.640625 73.484375 -2142.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.328125 73.484375 -2141.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.000000 73.484375 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.671875 73.484375 -2138.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.328125 73.484375 -2136.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -214.968750 73.484375 -2134.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.578125 73.484375 -2132.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.187500 73.484375 -2130.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.765625 73.484375 -2128.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.343750 73.484375 -2126.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.875000 73.484375 -2123.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.390625 73.484375 -2120.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.890625 73.484375 -2117.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.359375 73.484375 -2114.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.796875 73.484375 -2111.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.203125 73.484375 -2107.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.593750 73.484375 -2104.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -436.937500 73.484375 -2100.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.250000 73.484375 -2096.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.531250 73.484375 -2092.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.656250 55.125000 -2093.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.359375 55.125000 -2097.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.046875 55.125000 -2101.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.687500 55.125000 -2104.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.312500 55.125000 -2108.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.890625 55.125000 -2111.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.453125 55.125000 -2115.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.984375 55.125000 -2118.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.484375 55.125000 -2121.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.953125 55.125000 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.406250 55.125000 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.843750 55.125000 -2129.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.250000 55.125000 -2131.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.640625 55.125000 -2133.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 215.015625 55.125000 -2135.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.375000 55.125000 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.718750 55.125000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.046875 55.125000 -2140.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.359375 55.125000 -2141.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.671875 55.125000 -2142.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.968750 55.125000 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.250000 55.125000 -2144.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.546875 55.125000 -2145.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.812500 55.125000 -2145.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.093750 55.125000 -2145.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 55.125000 -2146.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 55.125000 -2146.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.093750 55.125000 -2145.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.812500 55.125000 -2145.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.546875 55.125000 -2145.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.250000 55.125000 -2144.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.968750 55.125000 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.671875 55.125000 -2142.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.359375 55.125000 -2141.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.046875 55.125000 -2140.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.718750 55.125000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.375000 55.125000 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -215.015625 55.125000 -2135.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.640625 55.125000 -2133.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.250000 55.125000 -2131.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.843750 55.125000 -2129.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.406250 55.125000 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.953125 55.125000 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.484375 55.125000 -2121.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.984375 55.125000 -2118.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.453125 55.125000 -2115.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.890625 55.125000 -2111.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.312500 55.125000 -2108.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.687500 55.125000 -2104.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.046875 55.125000 -2101.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.359375 55.125000 -2097.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.656250 55.125000 -2093.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.734375 36.750000 -2093.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.453125 36.750000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.125000 36.750000 -2101.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.765625 36.750000 -2105.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.375000 36.750000 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.968750 36.750000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.515625 36.750000 -2115.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.046875 36.750000 -2118.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.546875 36.750000 -2121.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 308.015625 36.750000 -2124.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.468750 36.750000 -2126.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.890625 36.750000 -2129.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.296875 36.750000 -2131.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.687500 36.750000 -2133.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 215.062500 36.750000 -2135.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.406250 36.750000 -2137.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.750000 36.750000 -2139.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.078125 36.750000 -2140.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.390625 36.750000 -2141.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.687500 36.750000 -2143.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.984375 36.750000 -2144.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.265625 36.750000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.546875 36.750000 -2145.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.828125 36.750000 -2146.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.093750 36.750000 -2146.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 36.750000 -2146.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 36.750000 -2146.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.093750 36.750000 -2146.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.828125 36.750000 -2146.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.546875 36.750000 -2145.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.265625 36.750000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.984375 36.750000 -2144.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.687500 36.750000 -2143.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.390625 36.750000 -2141.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.078125 36.750000 -2140.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.750000 36.750000 -2139.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.406250 36.750000 -2137.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -215.062500 36.750000 -2135.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.687500 36.750000 -2133.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.296875 36.750000 -2131.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.890625 36.750000 -2129.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.468750 36.750000 -2126.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -308.015625 36.750000 -2124.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.546875 36.750000 -2121.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.046875 36.750000 -2118.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.515625 36.750000 -2115.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.968750 36.750000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.375000 36.750000 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.765625 36.750000 -2105.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.125000 36.750000 -2101.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.453125 36.750000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.734375 36.750000 -2093.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.796875 18.375000 -2093.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.843750 18.375000 -2097.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.875000 18.375000 -2101.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 419.875000 18.375000 -2105.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 401.843750 18.375000 -2108.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 383.781250 18.375000 -2112.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 365.687500 18.375000 -2115.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 347.562500 18.375000 -2118.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 329.421875 18.375000 -2121.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 311.250000 18.375000 -2124.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 293.062500 18.375000 -2126.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 274.859375 18.375000 -2129.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.625000 18.375000 -2131.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.375000 18.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 220.093750 18.375000 -2135.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 201.812500 18.375000 -2137.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.515625 18.375000 -2138.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 165.203125 18.375000 -2140.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 146.875000 18.375000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 128.546875 18.375000 -2142.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.187500 18.375000 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 91.843750 18.375000 -2144.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 73.484375 18.375000 -2145.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 55.109375 18.375000 -2146.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 36.750000 18.375000 -2146.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 18.375000 18.375000 -2146.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 18.375000 -2146.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -18.375000 18.375000 -2146.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -36.750000 18.375000 -2146.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -55.109375 18.375000 -2146.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -73.484375 18.375000 -2145.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -91.843750 18.375000 -2144.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.187500 18.375000 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -128.546875 18.375000 -2142.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -146.875000 18.375000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -165.203125 18.375000 -2140.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.515625 18.375000 -2138.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -201.812500 18.375000 -2137.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -220.093750 18.375000 -2135.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.375000 18.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.625000 18.375000 -2131.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -274.859375 18.375000 -2129.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -293.062500 18.375000 -2126.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -311.250000 18.375000 -2124.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -329.421875 18.375000 -2121.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -347.562500 18.375000 -2118.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -365.687500 18.375000 -2115.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -383.781250 18.375000 -2112.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -401.843750 18.375000 -2108.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -419.875000 18.375000 -2105.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.875000 18.375000 -2101.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.843750 18.375000 -2097.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.796875 18.375000 -2093.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.812500 0.000000 -2093.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.875000 0.000000 -2097.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.890625 0.000000 -2101.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 419.890625 0.000000 -2105.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 401.859375 0.000000 -2108.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 383.796875 0.000000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 365.703125 0.000000 -2115.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 347.578125 0.000000 -2118.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 329.437500 0.000000 -2121.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 311.265625 0.000000 -2124.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 293.078125 0.000000 -2126.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 274.859375 0.000000 -2129.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.625000 0.000000 -2131.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.375000 0.000000 -2133.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 220.109375 0.000000 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 201.828125 0.000000 -2137.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.515625 0.000000 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 165.203125 0.000000 -2140.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 146.875000 0.000000 -2141.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 128.546875 0.000000 -2143.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.203125 0.000000 -2144.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 91.843750 0.000000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 73.484375 0.000000 -2145.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 55.125000 0.000000 -2146.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 36.750000 0.000000 -2146.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 18.375000 0.000000 -2146.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 0.000000 -2146.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -18.375000 0.000000 -2146.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -36.750000 0.000000 -2146.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -55.125000 0.000000 -2146.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -73.484375 0.000000 -2145.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -91.843750 0.000000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.203125 0.000000 -2144.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -128.546875 0.000000 -2143.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -146.875000 0.000000 -2141.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -165.203125 0.000000 -2140.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.515625 0.000000 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -201.828125 0.000000 -2137.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -220.109375 0.000000 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.375000 0.000000 -2133.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.625000 0.000000 -2131.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -274.859375 0.000000 -2129.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -293.078125 0.000000 -2126.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -311.265625 0.000000 -2124.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -329.437500 0.000000 -2121.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -347.578125 0.000000 -2118.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -365.703125 0.000000 -2115.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -383.796875 0.000000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -401.859375 0.000000 -2108.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -419.890625 0.000000 -2105.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.890625 0.000000 -2101.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.875000 0.000000 -2097.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.812500 0.000000 -2093.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.796875 -18.375000 -2093.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.843750 -18.375000 -2097.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.875000 -18.375000 -2101.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 419.875000 -18.375000 -2105.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 401.843750 -18.375000 -2108.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 383.781250 -18.375000 -2112.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 365.687500 -18.375000 -2115.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 347.562500 -18.375000 -2118.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 329.421875 -18.375000 -2121.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 311.250000 -18.375000 -2124.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 293.062500 -18.375000 -2126.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 274.859375 -18.375000 -2129.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.625000 -18.375000 -2131.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.375000 -18.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 220.093750 -18.375000 -2135.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 201.812500 -18.375000 -2137.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.515625 -18.375000 -2138.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 165.203125 -18.375000 -2140.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 146.875000 -18.375000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 128.546875 -18.375000 -2142.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.187500 -18.375000 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 91.843750 -18.375000 -2144.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 73.484375 -18.375000 -2145.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 55.109375 -18.375000 -2146.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 36.750000 -18.375000 -2146.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 18.375000 -18.375000 -2146.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -18.375000 -2146.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -18.375000 -18.375000 -2146.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -36.750000 -18.375000 -2146.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -55.109375 -18.375000 -2146.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -73.484375 -18.375000 -2145.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -91.843750 -18.375000 -2144.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.187500 -18.375000 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -128.546875 -18.375000 -2142.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -146.875000 -18.375000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -165.203125 -18.375000 -2140.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.515625 -18.375000 -2138.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -201.812500 -18.375000 -2137.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -220.093750 -18.375000 -2135.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.375000 -18.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.625000 -18.375000 -2131.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -274.859375 -18.375000 -2129.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -293.062500 -18.375000 -2126.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -311.250000 -18.375000 -2124.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -329.421875 -18.375000 -2121.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -347.562500 -18.375000 -2118.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -365.687500 -18.375000 -2115.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -383.781250 -18.375000 -2112.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -401.843750 -18.375000 -2108.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -419.875000 -18.375000 -2105.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.875000 -18.375000 -2101.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.843750 -18.375000 -2097.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.796875 -18.375000 -2093.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.734375 -36.750000 -2093.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.453125 -36.750000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.125000 -36.750000 -2101.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.765625 -36.750000 -2105.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.375000 -36.750000 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.968750 -36.750000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.515625 -36.750000 -2115.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.046875 -36.750000 -2118.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.546875 -36.750000 -2121.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 308.015625 -36.750000 -2124.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.468750 -36.750000 -2126.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.890625 -36.750000 -2129.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.296875 -36.750000 -2131.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.687500 -36.750000 -2133.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 215.062500 -36.750000 -2135.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.406250 -36.750000 -2137.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.750000 -36.750000 -2139.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.078125 -36.750000 -2140.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.390625 -36.750000 -2141.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.687500 -36.750000 -2143.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.984375 -36.750000 -2144.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.265625 -36.750000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.546875 -36.750000 -2145.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.828125 -36.750000 -2146.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.093750 -36.750000 -2146.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 -36.750000 -2146.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 -36.750000 -2146.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.093750 -36.750000 -2146.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.828125 -36.750000 -2146.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.546875 -36.750000 -2145.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.265625 -36.750000 -2144.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.984375 -36.750000 -2144.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.687500 -36.750000 -2143.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.390625 -36.750000 -2141.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.078125 -36.750000 -2140.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.750000 -36.750000 -2139.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.406250 -36.750000 -2137.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -215.062500 -36.750000 -2135.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.687500 -36.750000 -2133.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.296875 -36.750000 -2131.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.890625 -36.750000 -2129.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.468750 -36.750000 -2126.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -308.015625 -36.750000 -2124.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.546875 -36.750000 -2121.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.046875 -36.750000 -2118.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.515625 -36.750000 -2115.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.968750 -36.750000 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.375000 -36.750000 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.765625 -36.750000 -2105.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.125000 -36.750000 -2101.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.453125 -36.750000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.734375 -36.750000 -2093.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.656250 -55.125000 -2093.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.359375 -55.125000 -2097.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 437.046875 -55.125000 -2101.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.687500 -55.125000 -2104.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.312500 -55.125000 -2108.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.890625 -55.125000 -2111.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.453125 -55.125000 -2115.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.984375 -55.125000 -2118.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.484375 -55.125000 -2121.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.953125 -55.125000 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.406250 -55.125000 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.843750 -55.125000 -2129.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.250000 -55.125000 -2131.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.640625 -55.125000 -2133.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 215.015625 -55.125000 -2135.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.375000 -55.125000 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.718750 -55.125000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.046875 -55.125000 -2140.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.359375 -55.125000 -2141.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.671875 -55.125000 -2142.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.968750 -55.125000 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.250000 -55.125000 -2144.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.546875 -55.125000 -2145.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.812500 -55.125000 -2145.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.093750 -55.125000 -2145.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 -55.125000 -2146.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 -55.125000 -2146.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.093750 -55.125000 -2145.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.812500 -55.125000 -2145.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.546875 -55.125000 -2145.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.250000 -55.125000 -2144.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.968750 -55.125000 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.671875 -55.125000 -2142.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.359375 -55.125000 -2141.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.046875 -55.125000 -2140.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.718750 -55.125000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.375000 -55.125000 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -215.015625 -55.125000 -2135.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.640625 -55.125000 -2133.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.250000 -55.125000 -2131.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.843750 -55.125000 -2129.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.406250 -55.125000 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.953125 -55.125000 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.484375 -55.125000 -2121.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.984375 -55.125000 -2118.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.453125 -55.125000 -2115.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.890625 -55.125000 -2111.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.312500 -55.125000 -2108.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.687500 -55.125000 -2104.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -437.046875 -55.125000 -2101.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.359375 -55.125000 -2097.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.656250 -55.125000 -2093.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.531250 -73.484375 -2092.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.250000 -73.484375 -2096.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 436.937500 -73.484375 -2100.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.593750 -73.484375 -2104.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.203125 -73.484375 -2107.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.796875 -73.484375 -2111.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.359375 -73.484375 -2114.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.890625 -73.484375 -2117.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.390625 -73.484375 -2120.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.875000 -73.484375 -2123.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.343750 -73.484375 -2126.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.765625 -73.484375 -2128.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.187500 -73.484375 -2130.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.578125 -73.484375 -2132.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 214.968750 -73.484375 -2134.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.328125 -73.484375 -2136.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.671875 -73.484375 -2138.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 159.000000 -73.484375 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.328125 -73.484375 -2141.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.640625 -73.484375 -2142.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.937500 -73.484375 -2143.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.234375 -73.484375 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.531250 -73.484375 -2144.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.812500 -73.484375 -2145.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.078125 -73.484375 -2145.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 -73.484375 -2145.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 -73.484375 -2145.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.078125 -73.484375 -2145.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.812500 -73.484375 -2145.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.531250 -73.484375 -2144.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.234375 -73.484375 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.937500 -73.484375 -2143.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.640625 -73.484375 -2142.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.328125 -73.484375 -2141.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -159.000000 -73.484375 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.671875 -73.484375 -2138.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.328125 -73.484375 -2136.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -214.968750 -73.484375 -2134.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.578125 -73.484375 -2132.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.187500 -73.484375 -2130.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.765625 -73.484375 -2128.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.343750 -73.484375 -2126.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.875000 -73.484375 -2123.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.390625 -73.484375 -2120.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.890625 -73.484375 -2117.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.359375 -73.484375 -2114.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.796875 -73.484375 -2111.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.203125 -73.484375 -2107.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.593750 -73.484375 -2104.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -436.937500 -73.484375 -2100.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.250000 -73.484375 -2096.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.531250 -73.484375 -2092.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.375000 -91.843750 -2092.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 455.093750 -91.843750 -2096.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 436.796875 -91.843750 -2099.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 418.453125 -91.843750 -2103.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 400.078125 -91.843750 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.671875 -91.843750 -2110.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 363.234375 -91.843750 -2113.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 344.781250 -91.843750 -2117.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.281250 -91.843750 -2119.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 307.781250 -91.843750 -2122.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 289.234375 -91.843750 -2125.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.687500 -91.843750 -2127.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 252.109375 -91.843750 -2130.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 233.515625 -91.843750 -2132.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 214.890625 -91.843750 -2134.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.265625 -91.843750 -2135.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.609375 -91.843750 -2137.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.953125 -91.843750 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 140.281250 -91.843750 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 121.593750 -91.843750 -2141.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.906250 -91.843750 -2142.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.203125 -91.843750 -2143.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 65.500000 -91.843750 -2143.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 46.796875 -91.843750 -2144.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 28.078125 -91.843750 -2144.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.359375 -91.843750 -2144.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.359375 -91.843750 -2144.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -28.078125 -91.843750 -2144.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -46.796875 -91.843750 -2144.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -65.500000 -91.843750 -2143.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.203125 -91.843750 -2143.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.906250 -91.843750 -2142.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -121.593750 -91.843750 -2141.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -140.281250 -91.843750 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.953125 -91.843750 -2139.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.609375 -91.843750 -2137.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.265625 -91.843750 -2135.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -214.890625 -91.843750 -2134.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -233.515625 -91.843750 -2132.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -252.109375 -91.843750 -2130.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.687500 -91.843750 -2127.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -289.234375 -91.843750 -2125.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -307.781250 -91.843750 -2122.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.281250 -91.843750 -2119.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -344.781250 -91.843750 -2117.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -363.234375 -91.843750 -2113.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.671875 -91.843750 -2110.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -400.078125 -91.843750 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -418.453125 -91.843750 -2103.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -436.796875 -91.843750 -2099.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -455.093750 -91.843750 -2096.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.375000 -91.843750 -2092.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 473.187500 -110.203125 -2091.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.546875 -110.203125 -2095.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.875000 -110.203125 -2099.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 417.171875 -110.203125 -2103.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.437500 -110.203125 -2106.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.671875 -110.203125 -2110.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.875000 -110.203125 -2113.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 342.046875 -110.203125 -2116.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 323.203125 -110.203125 -2119.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.312500 -110.203125 -2122.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.421875 -110.203125 -2124.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.484375 -110.203125 -2127.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.546875 -110.203125 -2129.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.578125 -110.203125 -2131.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.593750 -110.203125 -2133.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.593750 -110.203125 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.578125 -110.203125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.546875 -110.203125 -2138.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.500000 -110.203125 -2139.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.453125 -110.203125 -2140.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.390625 -110.203125 -2141.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.328125 -110.203125 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.250000 -110.203125 -2143.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.171875 -110.203125 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.078125 -110.203125 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -110.203125 -2144.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.078125 -110.203125 -2143.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.171875 -110.203125 -2143.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.250000 -110.203125 -2143.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.328125 -110.203125 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.390625 -110.203125 -2141.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.453125 -110.203125 -2140.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.500000 -110.203125 -2139.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.546875 -110.203125 -2138.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.578125 -110.203125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.593750 -110.203125 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.593750 -110.203125 -2133.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.578125 -110.203125 -2131.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.546875 -110.203125 -2129.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.484375 -110.203125 -2127.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.421875 -110.203125 -2124.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.312500 -110.203125 -2122.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -323.203125 -110.203125 -2119.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -342.046875 -110.203125 -2116.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.875000 -110.203125 -2113.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.671875 -110.203125 -2110.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.437500 -110.203125 -2106.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -417.171875 -110.203125 -2103.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.875000 -110.203125 -2099.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.546875 -110.203125 -2095.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -473.187500 -110.203125 -2091.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.953125 -128.546875 -2090.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.328125 -128.546875 -2094.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.671875 -128.546875 -2098.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.984375 -128.546875 -2102.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.250000 -128.546875 -2105.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.500000 -128.546875 -2109.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.703125 -128.546875 -2112.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.890625 -128.546875 -2115.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 323.046875 -128.546875 -2118.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.171875 -128.546875 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.281250 -128.546875 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.359375 -128.546875 -2126.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.421875 -128.546875 -2128.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.468750 -128.546875 -2130.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.500000 -128.546875 -2132.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.500000 -128.546875 -2134.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.500000 -128.546875 -2136.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.468750 -128.546875 -2137.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.437500 -128.546875 -2138.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.390625 -128.546875 -2139.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.343750 -128.546875 -2140.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.281250 -128.546875 -2141.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.218750 -128.546875 -2142.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.156250 -128.546875 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.078125 -128.546875 -2142.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -128.546875 -2143.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.078125 -128.546875 -2142.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.156250 -128.546875 -2142.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.218750 -128.546875 -2142.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.281250 -128.546875 -2141.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.343750 -128.546875 -2140.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.390625 -128.546875 -2139.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.437500 -128.546875 -2138.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.468750 -128.546875 -2137.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.500000 -128.546875 -2136.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.500000 -128.546875 -2134.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.500000 -128.546875 -2132.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.468750 -128.546875 -2130.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.421875 -128.546875 -2128.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.359375 -128.546875 -2126.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.281250 -128.546875 -2123.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.171875 -128.546875 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -323.046875 -128.546875 -2118.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.890625 -128.546875 -2115.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.703125 -128.546875 -2112.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.500000 -128.546875 -2109.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.250000 -128.546875 -2105.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -416.984375 -128.546875 -2102.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.671875 -128.546875 -2098.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.328125 -128.546875 -2094.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.953125 -128.546875 -2090.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.703125 -146.875000 -2089.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 454.078125 -146.875000 -2093.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 435.437500 -146.875000 -2097.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 416.750000 -146.875000 -2100.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 398.031250 -146.875000 -2104.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.281250 -146.875000 -2107.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 360.500000 -146.875000 -2111.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.703125 -146.875000 -2114.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 322.859375 -146.875000 -2117.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.000000 -146.875000 -2120.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.125000 -146.875000 -2122.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 266.218750 -146.875000 -2125.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 247.296875 -146.875000 -2127.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 228.343750 -146.875000 -2129.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 209.375000 -146.875000 -2131.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.390625 -146.875000 -2133.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.406250 -146.875000 -2134.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 152.390625 -146.875000 -2136.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 133.375000 -146.875000 -2137.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.328125 -146.875000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 95.296875 -146.875000 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 76.250000 -146.875000 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 57.187500 -146.875000 -2141.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 38.125000 -146.875000 -2141.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.062500 -146.875000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -146.875000 -2141.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.062500 -146.875000 -2141.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -38.125000 -146.875000 -2141.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -57.187500 -146.875000 -2141.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -76.250000 -146.875000 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -95.296875 -146.875000 -2139.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.328125 -146.875000 -2138.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -133.375000 -146.875000 -2137.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -152.390625 -146.875000 -2136.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.406250 -146.875000 -2134.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.390625 -146.875000 -2133.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -209.375000 -146.875000 -2131.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -228.343750 -146.875000 -2129.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -247.296875 -146.875000 -2127.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -266.218750 -146.875000 -2125.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.125000 -146.875000 -2122.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.000000 -146.875000 -2120.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -322.859375 -146.875000 -2117.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.703125 -146.875000 -2114.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -360.500000 -146.875000 -2111.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.281250 -146.875000 -2107.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -398.031250 -146.875000 -2104.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -416.750000 -146.875000 -2100.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -435.437500 -146.875000 -2097.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -454.078125 -146.875000 -2093.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.703125 -146.875000 -2089.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.406250 -165.203125 -2087.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 453.421875 -165.203125 -2091.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 434.406250 -165.203125 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 415.343750 -165.203125 -2099.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 396.250000 -165.203125 -2103.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 377.140625 -165.203125 -2107.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.984375 -165.203125 -2110.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.796875 -165.203125 -2113.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.593750 -165.203125 -2116.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.359375 -165.203125 -2119.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 281.093750 -165.203125 -2121.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.812500 -165.203125 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.500000 -165.203125 -2126.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 223.171875 -165.203125 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.828125 -165.203125 -2130.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.468750 -165.203125 -2132.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 165.093750 -165.203125 -2134.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.703125 -165.203125 -2135.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.296875 -165.203125 -2136.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.890625 -165.203125 -2137.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.468750 -165.203125 -2138.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 68.031250 -165.203125 -2139.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.593750 -165.203125 -2139.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.156250 -165.203125 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.718750 -165.203125 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.718750 -165.203125 -2140.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.156250 -165.203125 -2140.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.593750 -165.203125 -2139.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -68.031250 -165.203125 -2139.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.468750 -165.203125 -2138.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.890625 -165.203125 -2137.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.296875 -165.203125 -2136.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.703125 -165.203125 -2135.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -165.093750 -165.203125 -2134.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.468750 -165.203125 -2132.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.828125 -165.203125 -2130.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -223.171875 -165.203125 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.500000 -165.203125 -2126.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.812500 -165.203125 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -281.093750 -165.203125 -2121.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.359375 -165.203125 -2119.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.593750 -165.203125 -2116.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.796875 -165.203125 -2113.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.984375 -165.203125 -2110.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -377.140625 -165.203125 -2107.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -396.250000 -165.203125 -2103.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -415.343750 -165.203125 -2099.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -434.406250 -165.203125 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -453.421875 -165.203125 -2091.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.406250 -165.203125 -2087.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 472.078125 -183.515625 -2086.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 453.109375 -183.515625 -2090.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 434.093750 -183.515625 -2094.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 415.062500 -183.515625 -2098.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 395.984375 -183.515625 -2102.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 376.875000 -183.515625 -2105.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.734375 -183.515625 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.562500 -183.515625 -2112.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.359375 -183.515625 -2115.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.140625 -183.515625 -2117.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.890625 -183.515625 -2120.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.625000 -183.515625 -2122.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.328125 -183.515625 -2125.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 223.015625 -183.515625 -2127.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.687500 -183.515625 -2129.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.343750 -183.515625 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 164.968750 -183.515625 -2132.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.593750 -183.515625 -2134.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.203125 -183.515625 -2135.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.812500 -183.515625 -2136.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.406250 -183.515625 -2137.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 67.984375 -183.515625 -2137.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.562500 -183.515625 -2138.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.140625 -183.515625 -2138.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.718750 -183.515625 -2138.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.718750 -183.515625 -2138.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.140625 -183.515625 -2138.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.562500 -183.515625 -2138.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -67.984375 -183.515625 -2137.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.406250 -183.515625 -2137.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.812500 -183.515625 -2136.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.203125 -183.515625 -2135.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.593750 -183.515625 -2134.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -164.968750 -183.515625 -2132.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.343750 -183.515625 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.687500 -183.515625 -2129.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -223.015625 -183.515625 -2127.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.328125 -183.515625 -2125.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.625000 -183.515625 -2122.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.890625 -183.515625 -2120.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.140625 -183.515625 -2117.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.359375 -183.515625 -2115.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.562500 -183.515625 -2112.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.734375 -183.515625 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -376.875000 -183.515625 -2105.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -395.984375 -183.515625 -2102.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -415.062500 -183.515625 -2098.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -434.093750 -183.515625 -2094.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -453.109375 -183.515625 -2090.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -472.078125 -183.515625 -2086.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 471.703125 -201.828125 -2084.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 452.750000 -201.828125 -2088.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 433.765625 -201.828125 -2092.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 414.734375 -201.828125 -2096.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 395.671875 -201.828125 -2100.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 376.578125 -201.828125 -2103.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 357.453125 -201.828125 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 338.296875 -201.828125 -2110.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 319.125000 -201.828125 -2113.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 299.906250 -201.828125 -2116.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.671875 -201.828125 -2118.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 261.421875 -201.828125 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 242.140625 -201.828125 -2123.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 222.843750 -201.828125 -2125.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.531250 -201.828125 -2127.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.203125 -201.828125 -2129.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 164.843750 -201.828125 -2130.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 145.484375 -201.828125 -2132.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 126.109375 -201.828125 -2133.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 106.734375 -201.828125 -2134.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 87.328125 -201.828125 -2135.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 67.937500 -201.828125 -2136.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 48.531250 -201.828125 -2136.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 29.125000 -201.828125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 9.703125 -201.828125 -2137.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -9.703125 -201.828125 -2137.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -29.125000 -201.828125 -2137.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -48.531250 -201.828125 -2136.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -67.937500 -201.828125 -2136.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -87.328125 -201.828125 -2135.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -106.734375 -201.828125 -2134.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -126.109375 -201.828125 -2133.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -145.484375 -201.828125 -2132.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -164.843750 -201.828125 -2130.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.203125 -201.828125 -2129.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.531250 -201.828125 -2127.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -222.843750 -201.828125 -2125.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -242.140625 -201.828125 -2123.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -261.421875 -201.828125 -2121.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.671875 -201.828125 -2118.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -299.906250 -201.828125 -2116.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -319.125000 -201.828125 -2113.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -338.296875 -201.828125 -2110.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -357.453125 -201.828125 -2107.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -376.578125 -201.828125 -2103.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -395.671875 -201.828125 -2100.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -414.734375 -201.828125 -2096.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -433.765625 -201.828125 -2092.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -452.750000 -201.828125 -2088.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -471.703125 -201.828125 -2084.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 471.312500 -220.109375 -2082.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.984375 -220.109375 -2087.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 432.609375 -220.109375 -2091.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 413.203125 -220.109375 -2095.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.750000 -220.109375 -2098.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 374.281250 -220.109375 -2102.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.765625 -220.109375 -2105.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 335.218750 -220.109375 -2109.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.656250 -220.109375 -2112.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 296.062500 -220.109375 -2114.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 276.437500 -220.109375 -2117.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.796875 -220.109375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 237.125000 -220.109375 -2122.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.437500 -220.109375 -2124.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.718750 -220.109375 -2126.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 178.000000 -220.109375 -2128.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.265625 -220.109375 -2129.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.515625 -220.109375 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.750000 -220.109375 -2132.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.968750 -220.109375 -2133.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.187500 -220.109375 -2134.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.390625 -220.109375 -2134.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.593750 -220.109375 -2135.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.796875 -220.109375 -2135.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -220.109375 -2135.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.796875 -220.109375 -2135.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.593750 -220.109375 -2135.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.390625 -220.109375 -2134.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.187500 -220.109375 -2134.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.968750 -220.109375 -2133.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.750000 -220.109375 -2132.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.515625 -220.109375 -2131.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.265625 -220.109375 -2129.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -178.000000 -220.109375 -2128.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.718750 -220.109375 -2126.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.437500 -220.109375 -2124.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -237.125000 -220.109375 -2122.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.796875 -220.109375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -276.437500 -220.109375 -2117.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -296.062500 -220.109375 -2114.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.656250 -220.109375 -2112.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -335.218750 -220.109375 -2109.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.765625 -220.109375 -2105.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -374.281250 -220.109375 -2102.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.750000 -220.109375 -2098.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -413.203125 -220.109375 -2095.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -432.609375 -220.109375 -2091.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.984375 -220.109375 -2087.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -471.312500 -220.109375 -2082.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 470.875000 -238.375000 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.562500 -238.375000 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 432.203125 -238.375000 -2089.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 412.812500 -238.375000 -2093.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.390625 -238.375000 -2097.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.937500 -238.375000 -2100.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.437500 -238.375000 -2103.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.921875 -238.375000 -2107.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.359375 -238.375000 -2110.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.781250 -238.375000 -2112.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 276.187500 -238.375000 -2115.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.546875 -238.375000 -2118.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.906250 -238.375000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.234375 -238.375000 -2122.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.546875 -238.375000 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.843750 -238.375000 -2126.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 158.109375 -238.375000 -2127.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.375000 -238.375000 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.640625 -238.375000 -2130.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.875000 -238.375000 -2131.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.109375 -238.375000 -2132.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.343750 -238.375000 -2132.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.562500 -238.375000 -2133.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.781250 -238.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -238.375000 -2133.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.781250 -238.375000 -2133.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.562500 -238.375000 -2133.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.343750 -238.375000 -2132.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.109375 -238.375000 -2132.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.875000 -238.375000 -2131.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.640625 -238.375000 -2130.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.375000 -238.375000 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -158.109375 -238.375000 -2127.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.843750 -238.375000 -2126.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.546875 -238.375000 -2124.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.234375 -238.375000 -2122.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.906250 -238.375000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.546875 -238.375000 -2118.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -276.187500 -238.375000 -2115.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.781250 -238.375000 -2112.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.359375 -238.375000 -2110.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.921875 -238.375000 -2107.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.437500 -238.375000 -2103.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.937500 -238.375000 -2100.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.390625 -238.375000 -2097.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -412.812500 -238.375000 -2093.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -432.203125 -238.375000 -2089.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.562500 -238.375000 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -470.875000 -238.375000 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 470.406250 -256.625000 -2078.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 451.109375 -256.625000 -2083.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 431.781250 -256.625000 -2087.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 412.406250 -256.625000 -2091.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 393.000000 -256.625000 -2094.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.562500 -256.625000 -2098.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 354.093750 -256.625000 -2101.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.578125 -256.625000 -2105.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 315.046875 -256.625000 -2108.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.484375 -256.625000 -2110.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 275.906250 -256.625000 -2113.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.296875 -256.625000 -2116.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.671875 -256.625000 -2118.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.015625 -256.625000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.343750 -256.625000 -2122.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.656250 -256.625000 -2124.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 157.953125 -256.625000 -2125.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.250000 -256.625000 -2126.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.515625 -256.625000 -2128.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.781250 -256.625000 -2129.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 79.031250 -256.625000 -2130.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.281250 -256.625000 -2130.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.531250 -256.625000 -2131.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.765625 -256.625000 -2131.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -256.625000 -2131.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.765625 -256.625000 -2131.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.531250 -256.625000 -2131.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.281250 -256.625000 -2130.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -79.031250 -256.625000 -2130.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.781250 -256.625000 -2129.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.515625 -256.625000 -2128.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.250000 -256.625000 -2126.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -157.953125 -256.625000 -2125.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.656250 -256.625000 -2124.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.343750 -256.625000 -2122.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.015625 -256.625000 -2120.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.671875 -256.625000 -2118.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.296875 -256.625000 -2116.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -275.906250 -256.625000 -2113.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.484375 -256.625000 -2110.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -315.046875 -256.625000 -2108.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.578125 -256.625000 -2105.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -354.093750 -256.625000 -2101.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.562500 -256.625000 -2098.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -393.000000 -256.625000 -2094.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -412.406250 -256.625000 -2091.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -431.781250 -256.625000 -2087.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -451.109375 -256.625000 -2083.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -470.406250 -256.625000 -2078.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 469.906250 -274.859375 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 450.625000 -274.859375 -2080.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 431.312500 -274.859375 -2085.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 411.968750 -274.859375 -2088.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 392.578125 -274.859375 -2092.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 373.156250 -274.859375 -2096.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 353.703125 -274.859375 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 334.218750 -274.859375 -2102.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 314.718750 -274.859375 -2105.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.171875 -274.859375 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 275.609375 -274.859375 -2111.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 256.031250 -274.859375 -2113.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 236.421875 -274.859375 -2116.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 216.781250 -274.859375 -2118.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.140625 -274.859375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 177.468750 -274.859375 -2121.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 157.796875 -274.859375 -2123.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 138.093750 -274.859375 -2124.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 118.390625 -274.859375 -2125.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 98.671875 -274.859375 -2126.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 78.953125 -274.859375 -2127.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 59.218750 -274.859375 -2128.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 39.484375 -274.859375 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 19.734375 -274.859375 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -274.859375 -2129.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -19.734375 -274.859375 -2129.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -39.484375 -274.859375 -2128.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -59.218750 -274.859375 -2128.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -78.953125 -274.859375 -2127.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -98.671875 -274.859375 -2126.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -118.390625 -274.859375 -2125.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -138.093750 -274.859375 -2124.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -157.796875 -274.859375 -2123.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -177.468750 -274.859375 -2121.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.140625 -274.859375 -2120.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -216.781250 -274.859375 -2118.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -236.421875 -274.859375 -2116.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -256.031250 -274.859375 -2113.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -275.609375 -274.859375 -2111.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.171875 -274.859375 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -314.718750 -274.859375 -2105.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -334.218750 -274.859375 -2102.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -353.703125 -274.859375 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -373.156250 -274.859375 -2096.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -392.578125 -274.859375 -2092.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -411.968750 -274.859375 -2088.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -431.312500 -274.859375 -2085.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -450.625000 -274.859375 -2080.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -469.906250 -274.859375 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 469.375000 -293.078125 -2074.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 449.703125 -293.078125 -2078.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 430.000000 -293.078125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 410.265625 -293.078125 -2086.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 390.484375 -293.078125 -2090.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 370.671875 -293.078125 -2094.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 350.828125 -293.078125 -2097.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.937500 -293.078125 -2100.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 311.031250 -293.078125 -2103.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 291.093750 -293.078125 -2106.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 271.140625 -293.078125 -2109.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 251.156250 -293.078125 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 231.140625 -293.078125 -2114.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 211.109375 -293.078125 -2116.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 191.062500 -293.078125 -2118.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 171.000000 -293.078125 -2119.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.921875 -293.078125 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.828125 -293.078125 -2122.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.718750 -293.078125 -2123.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.593750 -293.078125 -2124.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.468750 -293.078125 -2125.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.343750 -293.078125 -2126.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.203125 -293.078125 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.062500 -293.078125 -2126.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.062500 -293.078125 -2126.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.203125 -293.078125 -2126.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.343750 -293.078125 -2126.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.468750 -293.078125 -2125.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.593750 -293.078125 -2124.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.718750 -293.078125 -2123.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.828125 -293.078125 -2122.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.921875 -293.078125 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -171.000000 -293.078125 -2119.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -191.062500 -293.078125 -2118.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -211.109375 -293.078125 -2116.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -231.140625 -293.078125 -2114.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -251.156250 -293.078125 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -271.140625 -293.078125 -2109.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -291.093750 -293.078125 -2106.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -311.031250 -293.078125 -2103.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.937500 -293.078125 -2100.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -350.828125 -293.078125 -2097.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -370.671875 -293.078125 -2094.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -390.484375 -293.078125 -2090.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -410.265625 -293.078125 -2086.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -430.000000 -293.078125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -449.703125 -293.078125 -2078.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -469.375000 -293.078125 -2074.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 468.796875 -311.265625 -2071.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 449.156250 -311.265625 -2076.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 429.484375 -311.265625 -2080.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 409.765625 -311.265625 -2084.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 390.015625 -311.265625 -2088.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 370.218750 -311.265625 -2091.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 350.390625 -311.265625 -2095.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.546875 -311.265625 -2098.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 310.656250 -311.265625 -2101.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 290.750000 -311.265625 -2104.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.812500 -311.265625 -2106.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 250.843750 -311.265625 -2109.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 230.859375 -311.265625 -2111.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 210.859375 -311.265625 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.828125 -311.265625 -2115.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 170.796875 -311.265625 -2117.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.734375 -311.265625 -2118.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.656250 -311.265625 -2120.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.578125 -311.265625 -2121.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.484375 -311.265625 -2122.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.390625 -311.265625 -2123.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.281250 -311.265625 -2123.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.171875 -311.265625 -2123.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.062500 -311.265625 -2124.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.062500 -311.265625 -2124.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.171875 -311.265625 -2123.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.281250 -311.265625 -2123.578125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.390625 -311.265625 -2123.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.484375 -311.265625 -2122.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.578125 -311.265625 -2121.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.656250 -311.265625 -2120.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.734375 -311.265625 -2118.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -170.796875 -311.265625 -2117.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.828125 -311.265625 -2115.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -210.859375 -311.265625 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -230.859375 -311.265625 -2111.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -250.843750 -311.265625 -2109.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.812500 -311.265625 -2106.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -290.750000 -311.265625 -2104.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -310.656250 -311.265625 -2101.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.546875 -311.265625 -2098.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -350.390625 -311.265625 -2095.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -370.218750 -311.265625 -2091.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -390.015625 -311.265625 -2088.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -409.765625 -311.265625 -2084.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -429.484375 -311.265625 -2080.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -449.156250 -311.265625 -2076.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -468.796875 -311.265625 -2071.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 468.187500 -329.437500 -2069.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 448.578125 -329.437500 -2073.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 428.921875 -329.437500 -2077.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 409.234375 -329.437500 -2081.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 389.500000 -329.437500 -2085.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 369.734375 -329.437500 -2088.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 349.937500 -329.437500 -2092.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 330.109375 -329.437500 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 310.250000 -329.437500 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 290.375000 -329.437500 -2101.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 270.453125 -329.437500 -2104.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 250.515625 -329.437500 -2106.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 230.562500 -329.437500 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 210.578125 -329.437500 -2110.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.578125 -329.437500 -2112.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 170.562500 -329.437500 -2114.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 150.531250 -329.437500 -2116.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 130.500000 -329.437500 -2117.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 110.437500 -329.437500 -2118.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 90.375000 -329.437500 -2119.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 70.296875 -329.437500 -2120.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 50.218750 -329.437500 -2120.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 30.125000 -329.437500 -2121.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.046875 -329.437500 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.046875 -329.437500 -2121.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -30.125000 -329.437500 -2121.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -50.218750 -329.437500 -2120.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -70.296875 -329.437500 -2120.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -90.375000 -329.437500 -2119.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -110.437500 -329.437500 -2118.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -130.500000 -329.437500 -2117.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -150.531250 -329.437500 -2116.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -170.562500 -329.437500 -2114.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.578125 -329.437500 -2112.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -210.578125 -329.437500 -2110.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -230.562500 -329.437500 -2108.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -250.515625 -329.437500 -2106.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -270.453125 -329.437500 -2104.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -290.375000 -329.437500 -2101.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -310.250000 -329.437500 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -330.109375 -329.437500 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -349.937500 -329.437500 -2092.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -369.734375 -329.437500 -2088.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -389.500000 -329.437500 -2085.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -409.234375 -329.437500 -2081.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -428.921875 -329.437500 -2077.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -448.578125 -329.437500 -2073.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -468.187500 -329.437500 -2069.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 467.562500 -347.578125 -2066.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 447.546875 -347.578125 -2070.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 427.484375 -347.578125 -2074.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 407.390625 -347.578125 -2079.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 387.265625 -347.578125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 367.093750 -347.578125 -2086.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 346.890625 -347.578125 -2089.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.640625 -347.578125 -2093.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 306.375000 -347.578125 -2096.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 286.078125 -347.578125 -2099.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 265.765625 -347.578125 -2101.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 245.421875 -347.578125 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 225.046875 -347.578125 -2106.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.656250 -347.578125 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 184.250000 -347.578125 -2110.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.812500 -347.578125 -2112.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 143.375000 -347.578125 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.921875 -347.578125 -2114.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.453125 -347.578125 -2116.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.968750 -347.578125 -2116.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.484375 -347.578125 -2117.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.984375 -347.578125 -2118.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.500000 -347.578125 -2118.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -347.578125 -2118.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.500000 -347.578125 -2118.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.984375 -347.578125 -2118.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.484375 -347.578125 -2117.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.968750 -347.578125 -2116.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.453125 -347.578125 -2116.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.921875 -347.578125 -2114.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -143.375000 -347.578125 -2113.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.812500 -347.578125 -2112.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -184.250000 -347.578125 -2110.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.656250 -347.578125 -2108.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -225.046875 -347.578125 -2106.546875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -245.421875 -347.578125 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -265.765625 -347.578125 -2101.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -286.078125 -347.578125 -2099.125000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -306.375000 -347.578125 -2096.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.640625 -347.578125 -2093.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -346.890625 -347.578125 -2089.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -367.093750 -347.578125 -2086.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -387.265625 -347.578125 -2082.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -407.390625 -347.578125 -2079.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -427.484375 -347.578125 -2074.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -447.546875 -347.578125 -2070.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -467.562500 -347.578125 -2066.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 466.875000 -365.703125 -2063.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 446.890625 -365.703125 -2067.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 426.875000 -365.703125 -2071.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 406.796875 -365.703125 -2076.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 386.703125 -365.703125 -2079.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 366.562500 -365.703125 -2083.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 346.390625 -365.703125 -2086.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 326.171875 -365.703125 -2090.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 305.937500 -365.703125 -2093.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.671875 -365.703125 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 265.375000 -365.703125 -2098.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 245.062500 -365.703125 -2101.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.718750 -365.703125 -2103.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.359375 -365.703125 -2105.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.984375 -365.703125 -2107.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.578125 -365.703125 -2109.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 143.171875 -365.703125 -2110.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.734375 -365.703125 -2111.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.296875 -365.703125 -2113.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.843750 -365.703125 -2113.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.390625 -365.703125 -2114.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.937500 -365.703125 -2115.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.468750 -365.703125 -2115.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -365.703125 -2115.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.468750 -365.703125 -2115.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.937500 -365.703125 -2115.093750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.390625 -365.703125 -2114.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.843750 -365.703125 -2113.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.296875 -365.703125 -2113.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.734375 -365.703125 -2111.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -143.171875 -365.703125 -2110.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.578125 -365.703125 -2109.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.984375 -365.703125 -2107.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.359375 -365.703125 -2105.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.718750 -365.703125 -2103.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -245.062500 -365.703125 -2101.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -265.375000 -365.703125 -2098.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.671875 -365.703125 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -305.937500 -365.703125 -2093.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -326.171875 -365.703125 -2090.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -346.390625 -365.703125 -2086.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -366.562500 -365.703125 -2083.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -386.703125 -365.703125 -2079.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -406.796875 -365.703125 -2076.000000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -426.875000 -365.703125 -2071.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -446.890625 -365.703125 -2067.734375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -466.875000 -365.703125 -2063.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 466.171875 -383.796875 -2060.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 446.218750 -383.796875 -2064.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 426.218750 -383.796875 -2068.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 406.187500 -383.796875 -2072.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 386.109375 -383.796875 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 366.000000 -383.796875 -2080.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.859375 -383.796875 -2083.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 325.687500 -383.796875 -2087.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 305.468750 -383.796875 -2090.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 285.234375 -383.796875 -2092.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.984375 -383.796875 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 244.687500 -383.796875 -2098.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.375000 -383.796875 -2100.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 204.046875 -383.796875 -2102.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.703125 -383.796875 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.328125 -383.796875 -2105.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 142.953125 -383.796875 -2107.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.546875 -383.796875 -2108.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 102.140625 -383.796875 -2109.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.718750 -383.796875 -2110.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.296875 -383.796875 -2111.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.875000 -383.796875 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.437500 -383.796875 -2112.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -383.796875 -2112.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.437500 -383.796875 -2112.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.875000 -383.796875 -2111.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.296875 -383.796875 -2111.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.718750 -383.796875 -2110.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -102.140625 -383.796875 -2109.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.546875 -383.796875 -2108.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -142.953125 -383.796875 -2107.437500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.328125 -383.796875 -2105.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.703125 -383.796875 -2104.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -204.046875 -383.796875 -2102.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.375000 -383.796875 -2100.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -244.687500 -383.796875 -2098.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -264.984375 -383.796875 -2095.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -285.234375 -383.796875 -2092.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -305.468750 -383.796875 -2090.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -325.687500 -383.796875 -2087.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.859375 -383.796875 -2083.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -366.000000 -383.796875 -2080.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -386.109375 -383.796875 -2076.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -406.187500 -383.796875 -2072.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -426.218750 -383.796875 -2068.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -446.218750 -383.796875 -2064.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -466.171875 -383.796875 -2060.187500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 465.437500 -401.859375 -2056.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 445.515625 -401.859375 -2061.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 425.546875 -401.859375 -2065.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 405.546875 -401.859375 -2069.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 385.500000 -401.859375 -2073.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 365.421875 -401.859375 -2077.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 345.312500 -401.859375 -2080.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 325.171875 -401.859375 -2083.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 304.984375 -401.859375 -2086.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 284.781250 -401.859375 -2089.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 264.562500 -401.859375 -2092.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 244.296875 -401.859375 -2094.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 224.015625 -401.859375 -2096.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 203.718750 -401.859375 -2099.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 183.406250 -401.859375 -2100.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 163.078125 -401.859375 -2102.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 142.718750 -401.859375 -2104.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 122.359375 -401.859375 -2105.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 101.984375 -401.859375 -2106.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 81.593750 -401.859375 -2107.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 61.203125 -401.859375 -2108.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 40.812500 -401.859375 -2108.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 20.406250 -401.859375 -2108.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -401.859375 -2108.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -20.406250 -401.859375 -2108.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -40.812500 -401.859375 -2108.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -61.203125 -401.859375 -2108.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -81.593750 -401.859375 -2107.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -101.984375 -401.859375 -2106.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -122.359375 -401.859375 -2105.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -142.718750 -401.859375 -2104.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -163.078125 -401.859375 -2102.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -183.406250 -401.859375 -2100.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -203.718750 -401.859375 -2099.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -224.015625 -401.859375 -2096.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -244.296875 -401.859375 -2094.718750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -264.562500 -401.859375 -2092.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -284.781250 -401.859375 -2089.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -304.984375 -401.859375 -2086.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -325.171875 -401.859375 -2083.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -345.312500 -401.859375 -2080.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -365.421875 -401.859375 -2077.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -385.500000 -401.859375 -2073.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -405.546875 -401.859375 -2069.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -425.546875 -401.859375 -2065.531250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -445.515625 -401.859375 -2061.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -465.437500 -401.859375 -2056.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 464.656250 -419.890625 -2053.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 444.328125 -419.890625 -2057.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 423.953125 -419.890625 -2062.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 403.531250 -419.890625 -2066.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 383.078125 -419.890625 -2070.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 362.578125 -419.890625 -2073.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 342.046875 -419.890625 -2077.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 321.484375 -419.890625 -2080.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.890625 -419.890625 -2083.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 280.265625 -419.890625 -2086.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 259.625000 -419.890625 -2089.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.953125 -419.890625 -2091.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 218.250000 -419.890625 -2094.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.531250 -419.890625 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.781250 -419.890625 -2097.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 156.031250 -419.890625 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 135.250000 -419.890625 -2101.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.468750 -419.890625 -2102.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.671875 -419.890625 -2103.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.859375 -419.890625 -2104.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 52.046875 -419.890625 -2104.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.234375 -419.890625 -2105.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.406250 -419.890625 -2105.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.406250 -419.890625 -2105.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.234375 -419.890625 -2105.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -52.046875 -419.890625 -2104.750000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.859375 -419.890625 -2104.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.671875 -419.890625 -2103.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.468750 -419.890625 -2102.281250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -135.250000 -419.890625 -2101.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -156.031250 -419.890625 -2099.609375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.781250 -419.890625 -2097.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.531250 -419.890625 -2096.109375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -218.250000 -419.890625 -2094.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.953125 -419.890625 -2091.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -259.625000 -419.890625 -2089.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -280.265625 -419.890625 -2086.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.890625 -419.890625 -2083.781250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -321.484375 -419.890625 -2080.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -342.046875 -419.890625 -2077.421875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -362.578125 -419.890625 -2073.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -383.078125 -419.890625 -2070.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -403.531250 -419.890625 -2066.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -423.953125 -419.890625 -2062.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -444.328125 -419.890625 -2057.984375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -464.656250 -419.890625 -2053.484375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 463.843750 -437.890625 -2049.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 443.546875 -437.890625 -2054.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 423.203125 -437.890625 -2058.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 402.828125 -437.890625 -2062.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 382.406250 -437.890625 -2066.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 361.953125 -437.890625 -2070.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 341.453125 -437.890625 -2073.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.937500 -437.890625 -2077.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 300.375000 -437.890625 -2080.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 279.781250 -437.890625 -2083.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 259.171875 -437.890625 -2085.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.531250 -437.890625 -2088.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.859375 -437.890625 -2090.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 197.187500 -437.890625 -2092.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.484375 -437.890625 -2094.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 155.750000 -437.890625 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 135.015625 -437.890625 -2097.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.265625 -437.890625 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.515625 -437.890625 -2099.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.734375 -437.890625 -2100.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 51.968750 -437.890625 -2101.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.171875 -437.890625 -2101.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.390625 -437.890625 -2101.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.390625 -437.890625 -2101.703125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.171875 -437.890625 -2101.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -51.968750 -437.890625 -2101.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.734375 -437.890625 -2100.468750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.515625 -437.890625 -2099.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.265625 -437.890625 -2098.625000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -135.015625 -437.890625 -2097.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -155.750000 -437.890625 -2095.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.484375 -437.890625 -2094.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -197.187500 -437.890625 -2092.453125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.859375 -437.890625 -2090.406250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.531250 -437.890625 -2088.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -259.171875 -437.890625 -2085.687500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -279.781250 -437.890625 -2083.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -300.375000 -437.890625 -2080.156250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -320.937500 -437.890625 -2077.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -341.453125 -437.890625 -2073.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -361.953125 -437.890625 -2070.328125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -382.406250 -437.890625 -2066.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -402.828125 -437.890625 -2062.765625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -423.203125 -437.890625 -2058.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -443.546875 -437.890625 -2054.390625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -463.843750 -437.890625 -2049.906250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 463.000000 -455.875000 -2046.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 442.750000 -455.875000 -2050.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 422.437500 -455.875000 -2054.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 402.093750 -455.875000 -2059.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 381.718750 -455.875000 -2062.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 361.296875 -455.875000 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 340.828125 -455.875000 -2070.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 320.343750 -455.875000 -2073.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 299.828125 -455.875000 -2076.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 279.281250 -455.875000 -2079.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 258.703125 -455.875000 -2081.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 238.093750 -455.875000 -2084.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 217.468750 -455.875000 -2086.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 196.828125 -455.875000 -2088.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 176.156250 -455.875000 -2090.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 155.468750 -455.875000 -2092.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 134.781250 -455.875000 -2093.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 114.062500 -455.875000 -2094.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 93.343750 -455.875000 -2095.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 72.609375 -455.875000 -2096.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 51.859375 -455.875000 -2097.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 31.125000 -455.875000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 10.375000 -455.875000 -2097.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -10.375000 -455.875000 -2097.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -31.125000 -455.875000 -2097.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -51.859375 -455.875000 -2097.265625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -72.609375 -455.875000 -2096.640625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -93.343750 -455.875000 -2095.828125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -114.062500 -455.875000 -2094.796875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -134.781250 -455.875000 -2093.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -155.468750 -455.875000 -2092.140625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -176.156250 -455.875000 -2090.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -196.828125 -455.875000 -2088.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -217.468750 -455.875000 -2086.593750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -238.093750 -455.875000 -2084.343750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -258.703125 -455.875000 -2081.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -279.281250 -455.875000 -2079.234375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -299.828125 -455.875000 -2076.359375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -320.343750 -455.875000 -2073.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -340.828125 -455.875000 -2070.031250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -361.296875 -455.875000 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -381.718750 -455.875000 -2062.890625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -402.093750 -455.875000 -2059.015625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -422.437500 -455.875000 -2054.937500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -442.750000 -455.875000 -2050.656250 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -463.000000 -455.875000 -2046.171875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 462.125000 -473.812500 -2042.296875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 441.437500 -473.812500 -2046.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 420.718750 -473.812500 -2051.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 399.953125 -473.812500 -2055.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 379.140625 -473.812500 -2059.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 358.281250 -473.812500 -2063.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 337.406250 -473.812500 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 316.484375 -473.812500 -2069.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 295.531250 -473.812500 -2072.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 274.546875 -473.812500 -2075.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 253.531250 -473.812500 -2078.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 232.500000 -473.812500 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 211.437500 -473.812500 -2083.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 190.359375 -473.812500 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 169.250000 -473.812500 -2087.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 148.140625 -473.812500 -2088.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 127.000000 -473.812500 -2090.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 105.859375 -473.812500 -2091.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 84.703125 -473.812500 -2092.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 63.531250 -473.812500 -2092.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 42.359375 -473.812500 -2093.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 21.171875 -473.812500 -2093.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position 0.000000 -473.812500 -2093.921875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -21.171875 -473.812500 -2093.812500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -42.359375 -473.812500 -2093.500000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -63.531250 -473.812500 -2092.953125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -84.703125 -473.812500 -2092.203125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -105.859375 -473.812500 -2091.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -127.000000 -473.812500 -2090.062500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -148.140625 -473.812500 -2088.671875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -169.250000 -473.812500 -2087.078125 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -190.359375 -473.812500 -2085.250000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -211.437500 -473.812500 -2083.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -232.500000 -473.812500 -2080.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -253.531250 -473.812500 -2078.515625 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -274.546875 -473.812500 -2075.843750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -295.531250 -473.812500 -2072.968750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -316.484375 -473.812500 -2069.875000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -337.406250 -473.812500 -2066.562500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -358.281250 -473.812500 -2063.046875 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -379.140625 -473.812500 -2059.312500 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -399.953125 -473.812500 -2055.375000 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -420.718750 -473.812500 -2051.218750 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -441.437500 -473.812500 -2046.859375 Bool8 teamA 0 entity type PlayerSpawn Vector3 position -462.125000 -473.812500 -2042.296875 Bool8 teamA 0
125f60b2bc37407b21a2516b938916c99752e53a
449d555969bfd7befe906877abab098c6e63a0e8
/3535/CH7/EX7.5/Ex7_5.sce
a7fffe7f3992dca71d97c6824c3e7ea578060043
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
291
sce
Ex7_5.sce
//Chapter 7, Example 7.5, Page 199 clc clear // Activity of the sample lambda = 7.466*10**-5 m = 2 Na = 0.6022*10**24 A = 55 sigma = 13.3*10**-24 delta = 10**13 t = 120 Activity= lambda*(m*Na/A)*sigma*delta*t printf("Activity = %e Bq\n",Activity) //Answers may vary due to round off error
152ad86f07b7a346c32ca6753fdc815582024449
449d555969bfd7befe906877abab098c6e63a0e8
/3862/CH11/EX11.11/Ex11_11.sce
d7780da3cfa766f04154228a48dc1b0a7a7989cd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
882
sce
Ex11_11.sce
clear // //variable declaration L=(6) //m w=(60) //uniformly distributed load,KN/m Rs=L*w/2 //Reaction at support,KN //Moment at 1.5 m from support M =( Rs*1.5-(w*(1.5**2)/2)) //Shear force at 1.5 m from support F=Rs-1.5*w B=(200) //width of I-beam,mm H=(400) //height or I-beam,mm b=(190) h=(380) I= (B*(H**3)/12)-(b*(h**3)/12) //Bending stress at 100 mm above N–A y=100 f=M*1000000*y/I //Thus the state of stress on an element at y = 100 mm, as px = f,py=0 px=-f py=0 A=200*10*195+10*90*145 q=(F*1000*(A))/(10*I) //shearing stress,N/mm^2 p1=(px+py)/2+sqrt((((px-py)/2)**2)+(q**2)) p2=(px+py)/2-sqrt((((px-py)/2)**2)+(q**2)) printf("\n p1= %0.2f N/mm^2",p1) printf("\n p2= %0.2f N/mm^2",p2) qmax=sqrt((((px-py)/2)**2)+(q**2)) printf("\n qmax= %0.2f N/mm^2",qmax)
18a90ffe7fd2e3f307bf99bf004611ad83164506
3655c97e8146a7ca97eaf60c4eb20ced2238eacb
/scilab/Eight Queens/createInitialStates.sci
baeca195bd79813c1ed5ddf86cd1b9697e89081b
[]
no_license
edielsonpf/genetic-algorithm
99ae112982b6fee77ecfc55cbd10172b381e1dde
94c599a23fa3b2f477c7a5062f65248a93cc395a
refs/heads/master
2020-04-05T22:02:45.016605
2018-12-24T14:36:40
2018-12-24T14:36:40
32,630,334
0
1
null
2019-03-25T12:23:16
2015-03-21T11:45:11
Python
UTF-8
Scilab
false
false
834
sci
createInitialStates.sci
// Função que cria um estado inicial aleatório do problema de 8 rainhas //Autor: edielson@inatel.br function populacao = createInitialStates() populacao = []; //posição máxima onde uma rainha pode ser colocada no tabuleiro //MaxSymbol = 8; MaxSymbol = 6; //MaxSymbol = 4; //Lines length //VectorSize=8; VectorSize=6; //VectorSize=4; //tmanaho da população inicial POPINICIAL=5; //Cria todos os indiviudos e insere na populacao inicial for i = 1 : POPINICIAL individuo = grand(1, VectorSize, "uin", 1, MaxSymbol); //individuo = [2 4 6 grand(1, VectorSize-3, "uin", 1, MaxSymbol)]; populacao = mycat(populacao,individuo); end disp("Incial population"); disp(populacao); endfunction
d7ce9e70ba8e13d1c4d45d563b1fee386f3c053a
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH6/EX6.3/Exa6_3.sce
b969c0f1b13e1422b3dfc51669404abde0af24f4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
327
sce
Exa6_3.sce
//Exa 6.3 clc; clear; close; //given data alfaDC=0.98;//unitless ICBO=4;//in uA ICBO=ICBO*10^-3;//in mA IB=50;//in uA IB=IB*10^-3;//in mA //Formula : IC=alfaDC*(IB+IC)+ICBO IC=alfaDC*IB/(1-alfaDC)+ICBO/(1-alfaDC);//in mA IE=IC+IB;//in mA disp(IE,"Emitter current in mA : "); disp(IC,"Collector current in mA : ");
33d040d6070bf247f41af8c08f1c47640bbcb9c8
449d555969bfd7befe906877abab098c6e63a0e8
/3753/CH6/EX6.4/Ex6_4.sce
c15b44a49d5b006d5402aa34a1a7805797496d61
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
477
sce
Ex6_4.sce
//Example number 6.4, Page number 6.47 clc;clear;close // Variable declaration B=9.27*10**-24; // bohr magneton(ampere m**2) a=2.86*10**-10; // edge(m) Is=1.76*10**6; // saturation value of magnetisation(ampere/m) // Calculation N=2/a**3; mew_bar=Is/N; // number of Bohr magnetons(ampere m**2) mew_bar=mew_bar/B; // number of Bohr magnetons(bohr magneon/atom) // Result printf("number of Bohr magnetons is : %.2f"+" bohr magneon/atom",(mew_bar))
584d86214b84ba563baed7775e5f2b577f8a3a62
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH3/EX3.10/example10.sce
84943af9a7d9a0f8c7ee7dccf7da22022d147224
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,420
sce
example10.sce
clc clear //input data H=0.075//Pressure developed by a fan in m W.G D2=0.89//The impeller diameter in m N=720//The running speed of the fan in rpm b22=39//The blade air angle at the tip in degree b2=0.1//The width of the impeller in m Cr=9.15//The constant radial velocity in m/s d=1.2//Density of air in kg/m^3 r=1.4//The ratio of specific heats of air R=287//The universal gas constant in J/kg.K Cp=1005//The specific heat of air at constant pressure in J/kg.K g=9.81//Acceleration due to gravity in m/s^2 dw=1000//Density of water in kg/m^3 //calculations IW=(dw*g*H)/d//Ideal work done in J/kg U2=(3.1415*D2*N)/60//The impeller tip speed in m/s Wx2=Cr/tand(b22)//Relative whirl component of velocity at outlet in m/s Cx2=U2-(Wx2)//Outlet absolute velocity of air in tangential direction in m/s Wm=U2*Cx2//Actual work done per unit mass flow rate in J/kg nf=IW/Wm//Fan efficiency Q=3.1415*D2*b2*Cr//The discharge of the air by fan in m^3/s m=d*Q//Mass flow rate of the air by the fan in kg/s W=m*Wm*10^-3//Power required to drive the fan in kW R=1-(Cx2/(2*U2))//Stage reaction of the fan sp=2*Cx2/U2//The pressure coefficient //output printf('(a)The fan efficiency is %3.3f\n(b)The Discharge of air by the fan is %3.3f m^3/s\n(c)The power required to drive the fan is %3.4f kW\n(d)The stage reaction of the fan is %3.4f\n(e)The pressure coefficient of the fan is %3.3f',nf,Q,W,R,sp)
273cfc99346138434fcf07524a1c486f0f4a1314
b9c6de66a61d6f9a57edaa44baf92266ccbab3db
/tests/binomial/binornd.tst
17e8dd8c634cb962dd94a12a0dcd1d8be733a924
[]
no_license
papriwalprateek/distfun-scilab
81b3edef0af1d1908e05472dfb15b0a55f61571d
82fd34521d1e6ebb6513773264b54a0d48f5f3f9
refs/heads/master
2016-09-03T07:08:47.605240
2013-10-13T05:53:43
2013-10-13T05:53:43
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,854
tst
binornd.tst
// Copyright (C) 2012 - Prateek Papriwal // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt // <-- JVM NOT MANDATORY --> //////////////////////////////////////////////////////////// // // Check empty matrix r = distfun_binornd([],[]); assert_checkequal(r,[]); // set the initial seed for tests distfun_seedset(1); // Check with expanded N N = [10 100 1000 10000]; Pr = 0.1; computed = distfun_binornd(N, Pr); expected = [1 19 98 964]; assert_checkequal ( size ( computed ) , [1 4] ); assert_checkequal ( computed , expected ); // set the initial seed distfun_seedset(1); //Check with expanded Pr N =100; Pr = [0.1 0.2 0.3 0.4]; computed = distfun_binornd(N, Pr); expected = [9 32 29 38]; assert_checkequal ( size ( computed ) , [1 4] ); assert_checkequal ( computed , expected ); //Check expansion of Pr in R = distfun_binornd(N,Pr) distfun_seedset(1); N =100; Pr = [0.1 0.2 0.3 0.4 0.5 0.6]; computed1 = []; for i = 1:10 computed1(1:6,i) = distfun_binornd(N,Pr)'; end distfun_seedset(1); computed2 = []; for i = 1:10 for k = 1 : 6 computed2(k,i)=distfun_binornd(N,Pr(k)); end end assert_checkequal(computed1,computed2); //Check R = distfun_binornd(Pr,v) computed = distfun_binornd(100,0.2,[4 5]); assert_checkequal(size(computed),[4 5]); //Check mean and variance N = 1000; Pr = 0.3; n = 5000; computed = distfun_binornd(N,Pr,[1 n]); c = mean(computed(1:n)); [M,V] = distfun_binostat (N,Pr); assert_checkalmostequal ( c , M , 0.1 ); c = st_deviation(computed(1:n) ); assert_checkalmostequal ( c.^2 , V , 1 );
e0007e46b41b92bafbdfb59c2121d08298e50353
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%r_x_r.sci
37e53fb957debc12269fc26a883e301efc0d6f90
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
201
sci
%r_x_r.sci
function f=%r_x_r(s1,s2) // %r_x_r(r1,r2)=r1.*r2 r1,r2 rationals //! // Copyright INRIA [s1,s2]=sysconv(s1,s2) [num,den]=simp(s1('num').*s2('num'),s1('den').*s2('den')) f=rlist(num,den,s1('dt'))
88a92496c961e38f4a6cc37d11f8a44ebe962bfc
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH5/EX5.4/Ex5_4.sce
954ced5f49b27463f8232b7d0a641cbf5c4cc209
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
437
sce
Ex5_4.sce
clear; clc; disp('Example 5.4'); // aim : To determine // the final temperature // Given values V1 = .2;// original volume,[m^3] T1 = 273+303;// original temperature, [K] V2 = .1;// final volume, [m^3] // solution // since pressure is constant, so using charle's law V/T=constant // hence T2 = T1*V2/V1;// [K] t2 = T2-273;// [C] mprintf('\n The final temperature of the gas is = %f C\n',t2); // End
74b0a9808423b608d72eefd791fb8804c6834ec0
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH14/EX14.15/Ex14_15.sce
c951a6fc0d06032c9acc8c9e5ae307ffc84975d9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
213
sce
Ex14_15.sce
clear //Given Vp=220.0 //V Vs=22 //V Z=220 //ohm Is=0.1 //Calclation Ip=(Vs*Is)/Vp //Result printf("\n Current drawn is %0.3f A", Ip)
6a79df3722259517d039d0748503690815ac0510
449d555969bfd7befe906877abab098c6e63a0e8
/1184/CH14/EX14.1/Ex14_1.sce
d3022f3d9e8eb99e82e93ec9ed7a0fc0dc207da9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
613
sce
Ex14_1.sce
//Example 14-1, page No - 544 clear clc f=310*10^6 len1 =(492*0.97)/f len2 =(492/f)*0.8 len3 =(984/f)*0.73 z1 =120*log(35/2) len4 =234/f z2 = 73/2 printf('The length and radiation resistance of the dipole \n are %.2f feet and 73 ohm respectively',len1*10^6) printf('\n\nThe length of the folded dipole are %.2f feet ',len2*10^6) printf('\n\nThe length and radiation resistance of the bow tie antenna \n are %.1f feet and %.1f ohm respectively',len3*10^6,z1) printf('\n\nThe length and radiation resistance of the groun plane antenna \n are %.3f feet and %.1f ohmrespectively',len4*10^6,z2)
774f5081094ab01fcbceed19fb58a2fae69bc29e
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/XW75EDU/ATWM1_Working_Memory_MRI_XW75EDU/ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce
2433c36cde115fcb059206c92fb234322ba1632c
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
12,442
sce
ATWM1_Working_Memory_MRI_Salient_Cued_Run1.sce
# ATWM1 MRI Experiment scenario = "ATWM1_Working_Memory_MRI_salient_cued_run1"; scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen #scenario_type = trials; scan_period = 2000; # TR pulses_per_scan = 1; pulse_code = 1; #pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; #write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 9400; mri_pulse = 1; code = "BaselinePre"; #port_code = 1; }; TEMPLATE "ATWM1_Working_Memory_MRI.tem" { trigger_volume_encoding trigger_volume_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 6 12 292 292 399 125 11543 2992 14342 fixation_cross gabor_074 gabor_039 gabor_146 gabor_179 gabor_074 gabor_039 gabor_146_alt gabor_179_alt "1_1_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_074_039_146_179_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_129_framed blank blank blank blank fixation_cross_target_position_3_4 "1_1_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 21 27 292 292 399 125 11543 2992 12342 fixation_cross gabor_001 gabor_059 gabor_141 gabor_031 gabor_001 gabor_059_alt gabor_141_alt gabor_031 "1_2_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_001_059_141_031_target_position_2_3_retrieval_position_2" gabor_circ gabor_108_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_2_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_108_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 35 41 292 292 399 125 11543 2992 12342 fixation_cross gabor_078 gabor_028 gabor_103 gabor_053 gabor_078 gabor_028_alt gabor_103 gabor_053_alt "1_3_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_078_028_103_053_target_position_2_4_retrieval_position_2" gabor_circ gabor_028_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_3_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 49 54 292 292 399 125 9543 2992 12342 fixation_cross gabor_133 gabor_150 gabor_015 gabor_086 gabor_133_alt gabor_150_alt gabor_015 gabor_086 "1_4_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_133_150_015_086_target_position_1_2_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_4_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 62 67 292 292 399 125 9543 2992 14342 fixation_cross gabor_149 gabor_070 gabor_090 gabor_007 gabor_149_alt gabor_070 gabor_090_alt gabor_007 "1_5_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_149_070_090_007_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_041_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_5_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 76 81 292 292 399 125 9543 2992 14342 fixation_cross gabor_063 gabor_005 gabor_123 gabor_094 gabor_063 gabor_005_alt gabor_123 gabor_094_alt "1_6_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_063_005_123_094_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_target_position_2_4 "1_6_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 90 96 292 292 399 125 11543 2992 14342 fixation_cross gabor_117 gabor_062 gabor_084 gabor_144 gabor_117_alt gabor_062 gabor_084 gabor_144_alt "1_7_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_11601_3000_14400_gabor_patch_orientation_117_062_084_144_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_7_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 105 111 292 292 399 125 11543 2992 14342 fixation_cross gabor_010 gabor_116 gabor_096 gabor_174 gabor_010_alt gabor_116_alt gabor_096 gabor_174 "1_8_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_010_116_096_174_target_position_1_2_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_8_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 120 125 292 292 399 125 9543 2992 12342 fixation_cross gabor_082 gabor_168 gabor_148 gabor_023 gabor_082 gabor_168_alt gabor_148_alt gabor_023 "1_9_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_082_168_148_023_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_9_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 133 138 292 292 399 125 9543 2992 14342 fixation_cross gabor_093 gabor_121 gabor_011 gabor_035 gabor_093_alt gabor_121_alt gabor_011 gabor_035 "1_10_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_9601_3000_14400_gabor_patch_orientation_093_121_011_035_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_173_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 147 152 292 292 399 125 9543 2992 14342 fixation_cross gabor_166 gabor_002 gabor_107 gabor_128 gabor_166_alt gabor_002_alt gabor_107 gabor_128 "1_11_Encoding_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_9601_3000_14400_gabor_patch_orientation_166_002_107_128_target_position_1_2_retrieval_position_2" gabor_circ gabor_048_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_11_Retrieval_Working_Memory_MRI_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 161 167 292 292 399 125 11543 2992 12342 fixation_cross gabor_012 gabor_035 gabor_095 gabor_179 gabor_012_alt gabor_035 gabor_095 gabor_179_alt "1_12_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_12400_gabor_patch_orientation_012_035_095_179_target_position_1_4_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_12_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 175 180 292 292 399 125 9543 2992 12342 fixation_cross gabor_163 gabor_145 gabor_008 gabor_078 gabor_163_alt gabor_145 gabor_008 gabor_078_alt "1_13_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_9601_3000_12400_gabor_patch_orientation_163_145_008_078_target_position_1_4_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_13_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_145_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 188 193 292 292 399 125 9543 2992 12342 fixation_cross gabor_092 gabor_018 gabor_063 gabor_124 gabor_092 gabor_018_alt gabor_063 gabor_124_alt "1_14_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_9601_3000_12400_gabor_patch_orientation_092_018_063_124_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_124_framed blank blank blank blank fixation_cross_target_position_2_4 "1_14_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 201 207 292 292 399 125 11543 2992 14342 fixation_cross gabor_133 gabor_051 gabor_025 gabor_097 gabor_133_alt gabor_051 gabor_025_alt gabor_097 "1_15_Encoding_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_11601_3000_14400_gabor_patch_orientation_133_051_025_097_target_position_1_3_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_15_Retrieval_Working_Memory_MRI_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 20600; code = "BaselinePost"; #port_code = 2; };