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
fb87c50e3885a651f40a526c227efd81b7c73992
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/examples/addinter-examples/ex17c.sce
6d1c32a1c3eba24745f766d42b4e3181019d3c00
[ "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
3,004
sce
ex17c.sce
//We build a function ex17c with 3 input parameters X,Y,f and //1 output parameter Z: Z=ex17c(X,Y,f). //The third input parameter of ex17c (f) is a function. //This function, which is passed to ex17c as an argument, //is called a "argument function". //This function can be a Scilab function or a C function. //In both cases, this function must have a specific calling //sequence which is imposed by ex17c. // (A typical example is the case of an ode solver: // if we want to solve an ode xdot=f(x), we want to build a function // ode with a syntax like y=ode(x0,t,f) where x0 is a real vector, // t a real number and f the "argument function" f: x->f(x). ) //There are two ways of calling ex17c: //Z=ex17c(X,Y,f) for computing Z from X and Y using the Scilab function f //Z=ex17c(X,Y,"f") for computing Z from X and Y using the C function "f" //The C function f can be dynamically linked to Scilab, using the //link command (e.g. if f=f3c, link("f3c.o","f3c","C") ) or it can be put in //a table of functions (see ex17c.c). //In the example proposed here, we want to build a function ex17c with //syntax Z=ex17c(X,Y,f) which returns a real matrix Z obtained from //the two real input vectors X and Y by a calculation performed by //f. To be specific, we want Z(i,j)=f(X(i),Y(j)). In this example, //the argument function f is a function from R x R to R. //The Scilab built-in function function feval does this: ex17c emulates //feval. //If f is a Scilab function, its syntax is z=f(x,y), defined for instance //by: //deff('z=f(x,y)','z=cos(x+y)'); // //If f is a C function, its definition will be: //int f(x,y,z) // double x,y,*z; //{ // *z= cos(x+y); //} //Note that the argument function f must be defined as above, defining f as e.g. //int f(z,x,y) //is not allowed. //If X is a vector with m components and Y is a vector with n components, //the resulting matrix Z=ext17(X,Y) is m x n. //The interface function is intex17c. //Test inputs for ex17c: X=1:3;Y=4:6; //...and 3 examples of Scilab argument functions: deff('z=f1(x,y)','z=x+y'); deff('z=f2(x,y)','z=x*x+y*y'); deff('z=f3(x,y)','z=cos(x+y)'); //reference values for Z calculated by feval Zref1=feval(X,Y,f1); Zref2=feval(X,Y,f2); Zref3=feval(X,Y,f3); // Calling ex17c with a argument function which is a Scilab function: Z1=ex17c(X,Y,f1); if norm(Z1-Zref1) > %eps then pause,end Z2=ex17c(X,Y,f2); if norm(Z2-Zref2) > %eps then pause,end Z3=ex17c(X,Y,f3); if norm(Z3-Zref3) > %eps then pause,end // Calling ex17c with a argument function which is a C function: Z1=ex17c(X,Y,'f1c'); // f1c defined in ex17c.c if norm(Z1 - Zref1) > %eps then pause,end Z2=ex17c(X,Y,'f2c'); // f2c defined in ex17c.c if norm(Z2 - Zref2) > %eps then pause,end // making f3c.o and linking f3c dynamically with Scilab if ~c_link('f3c') then files=G_make(['f3c.o'],'f3c.dll'); link(files,'f3c','C') ; end // Calling ex17c with the C argument function fp3 Z3=ex17c(X,Y,'f3c'); if norm(Z3 - Zref3) > %eps then pause,end
48f9cfb82bac9cb4a3bd0c28c6d3d90db47603f4
449d555969bfd7befe906877abab098c6e63a0e8
/2138/CH12/EX12.3.b/EX_12_3_b.sce
1bcdef6659f15c279bd1f2613311b48453165ec6
[]
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
709
sce
EX_12_3_b.sce
//Example 12.3.b // motor generator in each phase clc; clear; close; Vl=1100;//line voltage in volts n=99;//motor efficiency in percentage Mo=n*735.5;//output of the motor Mi=(Mo*100)/75;// INPUT OF THE MOTOR IN WATTS pf= 0.8;//power factor Il=(Mi)/(sqrt(3)*Vl*pf);//line current in amperes Ip=Il/(sqrt(3));//phase current in amperes Ipm=Il;//phase curent of the motor Ac=Ipm*pf;//active component of phase current in the generator Rc=Ipm*(sqrt(1-pf^2));//reactive component of phase current of generator disp(Ipm,"phase current of the genertor in ampere is") disp(Ac,"active component of phase current in the generator in amperes") disp(Rc,"reactive component of phase current in the generator in amperes")
4d64f614dc4613525fc9921d0ea0aae4db4f722a
931090e82489a96a263c3a3f0747d2cf703d4672
/tests/cmd-rv.tst
45203a9c563ea3aa8ba4ee7d47bbecce0abcaa8a
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive", "BSD-2-Clause", "Zlib", "BSD-3-Clause" ]
permissive
darindf/hyperion
2b70924f94fc5fa62eed330c3736f1adf9ff7c44
05652fb9d7993d942138196c4e9bad6b1c7a63e1
refs/heads/master
2020-12-03T10:29:01.460015
2016-07-30T09:37:00
2016-07-30T09:37:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
436
tst
cmd-rv.tst
* #------------ defsym cmd r #------------ * defsym arch S/370 script $(testpath)/cmd-rv-2K.subtst * defsym arch S/390 script $(testpath)/cmd-rv-4K-32.subtst * defsym arch z/Arch script $(testpath)/cmd-rv-4K-64.subtst * #------------ defsym cmd v #------------ * defsym arch S/370 script $(testpath)/cmd-rv-2K.subtst * defsym arch S/390 script $(testpath)/cmd-rv-4K-32.subtst * defsym arch z/Arch script $(testpath)/cmd-rv-4K-64.subtst
d3800699c91e45b288c4b537a79ed2fc05f322d5
717ddeb7e700373742c617a95e25a2376565112c
/40/CH8/EX8.10/Exa_8_10.sce
d9676ae26ee0289e4ef58a2b1a78c9ba40f6bf38
[]
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
219
sce
Exa_8_10.sce
//DFS of sampled periodic signals xn=[0 ones(2:16) 0 -ones(18:32)]; XDFS=0.032*dft(xn,-1); for i=1:length(XDFS) if (abs(XDFS(i))<0.000001) then XDFS(i)=0; end end disp(XDFS,'The DFS of x[n] is');
b122fe3488160191e6b3d9ae4b61c4bd3a282a8c
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH4/EX4.11/Ex4_11.sce
74809924c2d3a7954bf374c0dfc205f6a50a2042
[]
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
443
sce
Ex4_11.sce
clc // from figure 4.4 v = 100 // cutting speed in m/min D = 50 // mm l1 = 76 // mm f = 7.5 // feed in mm/rev. // Case 1 , time to turn 38 mm diameter by 76 mm length of cut N1 = (1000*v)/(%pi*D)// r.p.m tm1 = l1*10/(f*N1) // min. // Case 2 , time to turn 25 mm by 38 mm length N2 = (1000*v)/(%pi*38) // r.p.m l2 = 38 // mm tm2 = l2*10/(f*N2) // min tt = tm1 + tm2 // total time in min printf("\n Total time = %0.2f min." , tt)
6a4964a6ebb5391bdda7d17ab12c4c32e5cc3391
449d555969bfd7befe906877abab098c6e63a0e8
/3754/CH27/EX27.3/27_3.sce
3d33e41f08e49ee0ad580a250406fcc556d5efff
[]
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
701
sce
27_3.sce
clear// //Variables r1e = 8.0 //a.c. load resistance (in ohm) RC = 220.0 //Collector resistance (in ohm) RE = 47.0 //Emitter resistance (in ohm) R1 = 4.7 * 10**3 //Resistance (in ohm) R2 = 470.0 //Resistance (in ohm) beta = 50.0 //Common emitter current gain //Calculation rL = RC //Load resistance (in ohm) Av = rL / r1e //Voltage gain Ai = beta //Current gain Ap = Av * Ai //Power gain //Result printf("\n Voltage gain is %0.3f and Power gain is %0.3f .",Av,Ap)
b1b9f215cbd123dd6896c8f5aef53336d2ec246a
449d555969bfd7befe906877abab098c6e63a0e8
/3622/CH1/EX1.1/Ex1_1.sce
609c49cf2bd2db38690ab010705eb8d4225d4a08
[]
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
235
sce
Ex1_1.sce
//Initialisation of variables clc C=20/(9*10^11)//converting cms to farads F=154-100//fall in potential R=F/60//rate of fall in potential I=C*R//ionization current printf('ionization current is %e amp \n',I)//correction applied
c02c9078f76492e1a46506b22dd687748621fba5
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set11/s_Fundamentals_Of_Electronic_Devices_P._Raja_And_P._Sharma_2720.zip/Fundamentals_Of_Electronic_Devices_P._Raja_And_P._Sharma_2720/CH5/EX5.9.2/ex5_9_2.sce
951e604de1c8db570ce8cb575f8661237c7e3061
[]
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
206
sce
ex5_9_2.sce
errcatch(-1,"stop");mode(2);// Exa 5.9.2 ; ; // Given data alpha = 0.9; I_E = 1;// mA I_C = alpha * I_E;// in mA I_B = I_E - I_C;// in mA disp(I_B,"The value of base current in mA is"); exit();
feb5fa8c2b943844cfdf6c269b58b1ca3dbd6577
449d555969bfd7befe906877abab098c6e63a0e8
/1627/CH4/EX4.4/Ex4_4.sce
c4313952786313cba152013ab3e236f330f742a2
[]
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
265
sce
Ex4_4.sce
clc //initialisation of variables f=5//cm d=10//cm r=150//liters p=4//in A2=7.84*10^-3//m^2 //CALCULATIONS A=((%pi)*(f*10^-2)^2)/p//m^2 V1=(r*10^-3)*(1/60)/A//m/s V2=(A*V1)/A2//m/s //RESULTS printf('The velocity of the fluid in both pipes=% f m/s',V2)
2eab3470a22d66638289ddd2abef5cc3b5e3f679
fcd4bce0080771389b4a69338ed6443153942183
/cores/n64/mupen64plus-rsp-paraLLEl/lightning/check/cvt.tst
18282597ce7f2d7d8fb652353aad911488e38f87
[ "GPL-3.0-only", "LGPL-3.0-only", "MIT", "GPL-2.0-only", "GFDL-1.1-or-later", "GPL-1.0-or-later", "LicenseRef-scancode-other-copyleft", "GFDL-1.1-only", "LGPL-2.1-only", "MPL-1.1", "LicenseRef-scancode-mame", "Zlib", "LGPL-2.1-or-later", "MPL-2.0", "CC-PDDC", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-brian-gladman-3-clause", "BSD-3-Clause", "LicenseRef-scancode-generic-cla" ]
permissive
wulfebw/retro
d4fcf9229b257b3c495f54b1aeb3ea36004ae4aa
dad4b509e99e729e39a2f27e9ee4120e3b607f58
refs/heads/master
2022-10-23T07:17:55.320585
2020-06-12T01:38:06
2020-06-12T01:38:06
260,832,205
8
1
MIT
2020-06-12T01:38:08
2020-05-03T05:06:17
C
UTF-8
Scilab
false
false
8,401
tst
cvt.tst
.data 12 ok: .c "ok\n" #if __WORDSIZE == 32 # define w7f 0x7fffffff # define w80 0x80000000 # define w81 0x80000001 # define wff 0xffffffff # define LEXTII2(N, R0, R1) # define LEXTIC2(N, R0) #else # define w7f 0x7fffffffffffffff # define w80 0x8000000000000000 # define w81 0x8000000000000001 # define wff 0xffffffffffffffff # define i7f wff # define ui7f 0xffffffff # define i80 0 # define ui80 0 # define i81 1 # define ui81 1 # define iff wff # define uiff 0xffffffff # define LEXTII2(N, R0, R1) \ EXTII2(N, i, R0, R1) \ EXTII2(N, ui, R0, R1) # define LEXTIC2(N, R0) \ EXTIC2(N, i, R0) \ EXTIC2(N, ui, R0) #endif #define c7f wff #define uc7f 0xff #define s7f wff #define us7f 0xffff #define c80 0 #define uc80 0 #define s80 0 #define us80 0 #define c81 1 #define uc81 1 #define s81 1 #define us81 1 #define cff wff #define ucff 0xff #define sff wff #define usff 0xffff #define EXTII2(N, T, R0, R1) \ movi %R0 w##N \ extr_##T %R1 %R0 \ beqi T##_##R0##_##R1##_##N %R1 T##N \ calli @abort \ T##_##R0##_##R1##_##N: #define EXTII1(N, R0, R1) \ EXTII2(N, c, R0, R1) \ EXTII2(N, uc, R0, R1) \ EXTII2(N, s, R0, R1) \ EXTII2(N, us, R0, R1) \ LEXTII2(N, R0, R1) #define EXTII0(R0, R1) \ EXTII1(7f, R0, R1) \ EXTII1(80, R0, R1) \ EXTII1(81, R0, R1) \ EXTII1(ff, R0, R1) #define EXTIC2(N, T, R0) \ movi %R0 w##N \ extr_##T %R0 %R0 \ beqi T##_##R0##_##N %R0 T##N \ calli @abort \ T##_##R0##_##N: #define EXTIC1(N, R0) \ EXTIC2(N, c, R0) \ EXTIC2(N, uc, R0) \ EXTIC2(N, s, R0) \ EXTIC2(N, us, R0) \ LEXTIC2(N, R0) #define EXTIC0(R0) \ EXTIC1(7f, R0) \ EXTIC1(80, R0) \ EXTIC1(81, R0) \ EXTIC1(ff, R0) #define EXTII(V0, V1, V2, R0, R1, R2) \ EXTII0(V0, V1) \ EXTII0(V0, V2) \ EXTII0(V0, R0) \ EXTII0(V0, R1) \ EXTII0(V0, R2) \ EXTII0(V1, V0) \ EXTII0(V1, V2) \ EXTII0(V1, R0) \ EXTII0(V1, R1) \ EXTII0(V1, R2) \ EXTII0(V2, V0) \ EXTII0(V2, V1) \ EXTII0(V2, R0) \ EXTII0(V2, R1) \ EXTII0(V2, R2) \ EXTII0(R0, V0) \ EXTII0(R0, V1) \ EXTII0(R0, V2) \ EXTII0(R0, R1) \ EXTII0(R0, R2) \ EXTII0(R1, V0) \ EXTII0(R1, V1) \ EXTII0(R1, V2) \ EXTII0(R1, R0) \ EXTII0(R1, R2) \ EXTII0(R2, V0) \ EXTII0(R2, V1) \ EXTII0(R2, V2) \ EXTII0(R2, R0) \ EXTII0(R2, R1) \ EXTIC0(V0) \ EXTIC0(V1) \ EXTIC0(V2) \ EXTIC0(R0) \ EXTIC0(R1) \ EXTIC0(R2) #define EXIF1(N, V, R0, R1) \ movi %R0 V \ extr_f %R1 %R0 \ beqi_f wf##_##R0##_##R1##_##N %R1 V \ wf##_##R0##_##R1##_##N: #define EXIF0(R0, R1) \ EXIF1(0, -1, R0, R1) \ EXIF1(1, 64, R0, R1) #define EXIF(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ EXIF0(V0, F0) \ EXIF0(V1, F1) \ EXIF0(V2, F2) \ EXIF0(R0, F3) \ EXIF0(R1, F4) \ EXIF0(R2, F5) #define EXID1(N, V, R0, R1) \ movi %R0 V \ extr_d %R1 %R0 \ beqi_d wd##_##R0##_##R1##_##N %R1 V \ wd##_##R0##_##R1##_##N: #define EXID0(R0, R1) \ EXID1(0, -1, R0, R1) \ EXID1(1, 64, R0, R1) #define EXID(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ EXID0(V0, F0) \ EXID0(V1, F1) \ EXID0(V2, F2) \ EXID0(R0, F3) \ EXID0(R1, F4) \ EXID0(R2, F5) #define EXFI1(N, V, R0, R1) \ movi_f %R1 V \ truncr_f %R0 %R1 \ beqi fi##_##R0##_##R1##_##N %R0 V \ calli @abort \ fi##_##R0##_##R1##_##N: #define EXFI0(R0, R1) \ EXFI1(0, 42, R0, R1) \ EXFI1(1, -128, R0, R1) #define EXFI(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ EXFI0(V0, F5) \ EXFI0(V1, F4) \ EXFI0(V2, F3) \ EXFI0(R0, F2) \ EXFI0(R1, F1) \ EXFI0(R2, F0) #define EXDI1(N, V, R0, R1) \ movi_d %R1 V \ truncr_d %R0 %R1 \ beqi di##_##R0##_##R1##_##N %R0 V \ calli @abort \ di##_##R0##_##R1##_##N: #define EXDI0(R0, R1) \ EXDI1(0, 42, R0, R1) \ EXDI1(1, -128, R0, R1) #define EXDI(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ EXDI0(V0, F5) \ EXDI0(V1, F4) \ EXDI0(V2, F3) \ EXDI0(R0, F2) \ EXDI0(R1, F1) \ EXDI0(R2, F0) #define LEXFI1(N, V, R0, R1) \ movi_f %R1 V \ truncr_f_i %R0 %R1 \ andi %R0 %R0 0xffffffff \ beqi lfi##_##R0##_##R1##_##N %R0 $(V & 0xffffffff) \ calli @abort \ lfi##_##R0##_##R1##_##N: #define LEXFI0(R0, R1) \ LEXFI1(0, 42, R0, R1) \ LEXFI1(1, -128, R0, R1) #define LEXFI(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ LEXFI0(V0, F5) \ LEXFI0(V1, F4) \ LEXFI0(V2, F3) \ LEXFI0(R0, F2) \ LEXFI0(R1, F1) \ LEXFI0(R2, F0) #define LEXDI1(N, V, R0, R1) \ movi_d %R1 V \ truncr_d_i %R0 %R1 \ andi %R0 %R0 0xffffffff \ beqi ldi##_##R0##_##R1##_##N %R0 $(V & 0xffffffff) \ calli @abort \ ldi##_##R0##_##R1##_##N: #define LEXDI0(R0, R1) \ LEXDI1(0, 42, R0, R1) \ LEXDI1(1, -128, R0, R1) #define LEXDI(V0, V1, V2, R0, R1, R2, F0, F1, F2, F3, F4, F5) \ LEXDI0(V0, F5) \ LEXDI0(V1, F4) \ LEXDI0(V2, F3) \ LEXDI0(R0, F2) \ LEXDI0(R1, F1) \ LEXDI0(R2, F0) #define EXTFD2(V, R0, R1) \ movi_f %R0 V \ extr_f_d %R1 %R0 \ beqi_d fd##_##R0##_##R1 %R1 V \ calli @abort \ fd##_##R0##_##R1: #define EXTFD1(R0, R1) \ EXTFD2(1.25, R0, R1) #define EXTFDC2(V, R0) \ movi_f %R0 V \ extr_f_d %R0 %R0 \ beqi_d fdc##_##R0 %R0 V \ calli @abort \ fdc##_##R0: #define EXTFDC1(R0) \ EXTFDC2(-0.75, R0) #define EXTFD(R0, R1, R2, R3, R4, R5) \ EXTFD1(R0, R1) \ EXTFD1(R0, R2) \ EXTFD1(R0, R3) \ EXTFD1(R0, R4) \ EXTFD1(R0, R5) \ EXTFDC1(R0) \ EXTFDC1(R1) \ EXTFDC1(R2) \ EXTFDC1(R3) \ EXTFDC1(R4) \ EXTFDC1(R5) #define EXTDF2(V, R0, R1) \ movi_d %R0 V \ extr_d_f %R1 %R0 \ beqi_f df##_##R0##_##R1 %R1 V \ calli @abort \ df##_##R0##_##R1: #define EXTDF1(R0, R1) \ EXTDF2(1.25, R0, R1) #define EXTDFC2(V, R0) \ movi_d %R0 V \ extr_d_f %R0 %R0 \ beqi_f dfc##_##R0 %R0 V \ calli @abort \ dfc##_##R0: #define EXTDFC1(R0) \ EXTDFC2(-0.75, R0) #define EXTDF(R0, R1, R2, R3, R4, R5) \ EXTDF1(R0, R1) \ EXTDF1(R0, R2) \ EXTDF1(R0, R3) \ EXTDF1(R0, R4) \ EXTDF1(R0, R5) \ EXTDFC1(R0) \ EXTDFC1(R1) \ EXTDFC1(R2) \ EXTDFC1(R3) \ EXTDFC1(R4) \ EXTDFC1(R5) .code prolog /* simple sequence for easier disassembly reading and encoding check */ movi %r0 w7f extr_c %r1 %r0 beqi xc %r1 c7f calli @abort xc: movi %r0 w7f extr_uc %r1 %r0 beqi xuc %r1 uc7f calli @abort xuc: movi %r0 w7f extr_s %r1 %r0 beqi xs %r1 s7f calli @abort xs: movi %r0 w7f extr_us %r1 %r0 beqi xus %r1 us7f calli @abort xus: #if __WORDSIZE == 64 movi %r0 w7f extr_i %r1 %r0 beqi xi %r1 i7f calli @abort xi: movi %r0 w7f extr_ui %r1 %r0 beqi xui %r1 ui7f calli @abort xui: #endif movi %r0 -2 extr_f %f0 %r0 beqi_f xif %f0 -2 calli @abort xif: movi %r0 32 extr_d %f0 %r0 beqi_d xid %f0 32 calli @abort xid: movi_f %f0 -128 truncr_f %r0 %f0 beqi xfi %r0 -128 calli @abort xfi: movi_d %f0 -128 truncr_d %r0 %f0 beqi xdi %r0 -128 calli @abort xdi: #if __WORDSIZE == 64 movi_f %f0 -128 truncr_f_i %r0 %f0 andi %r0 %r0 0xffffffff beqi yfi %r0 $(-128 & 0xffffffff) calli @abort yfi: movi_d %f0 -128 truncr_d_i %r0 %f0 andi %r0 %r0 0xffffffff beqi ydi %r0 $(-128 & 0xffffffff) calli @abort ydi: #endif movi_f %f0 0.5 extr_f_d %f1 %f0 beqi_d xfd %f1 0.5 calli @abort xfd: movi_d %f0 0.5 extr_d_f %f1 %f0 beqi_f xdf %f1 0.5 calli @abort xdf: EXTII(v0, v1, v2, r0, r1, r2) EXIF(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) EXID(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) EXFI(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) #if __WORDSIZE == 64 LEXFI(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) LEXDI(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) #endif EXDI(v0, v1, v2, r0, r1, r2, f0, f1, f2, f3, f4, f5) EXTFD(f0, f1, f2, f3, f4, f5) EXTDF(f0, f1, f2, f3, f4, f5) // just to know did not abort prepare pushargi ok ellipsis finishi @printf ret epilog
e850a86234ab35471911399cde13b37088456121
449d555969bfd7befe906877abab098c6e63a0e8
/620/CH11/EX11.5/example11_5.sce
9d639ea87c174e21aa82915b5404df028c664326
[]
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
171
sce
example11_5.sce
s=2*10^(-2); a=s^2; phi=5.2*10^(-4); b=phi/a; h=800;...........//from the B-H curve l=4*6*10^(-2); n=600; i=h*l/n; disp("the current required (in A) is"); disp(i);
8848efd521e4c586f202ec4af52a5ea1d46b2e03
449d555969bfd7befe906877abab098c6e63a0e8
/2414/CH1/EX1.11/Ex1_11.sce
1b84bcb361cfcdba43fb31ae364902bb34f8e7ab
[]
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
392
sce
Ex1_11.sce
clc; //page 17 //ex-1.11 P=5; //In mW N=100*10^-6; //in mW S2N=P/N; disp(S2N,'(a) Absolute signal to noise ratio :'); S2NdB=10*log10(S2N); disp('dB',S2NdB,'(b) dB signal to noise ratio is:') PdBm=10*log10(P/1); disp('dBm',PdBm,'(c) Signal Power is'); NdBm=10*log10(N/1); disp('dBm',NdBm,'Noise power is'); S2NdB=PdBm-NdBm; disp('dB',S2NdB,'Decinel S/N ratio is');
cd8c27fffb6c49d23dc4ee01427dc78e107fffff
449d555969bfd7befe906877abab098c6e63a0e8
/2615/CH7/EX34.5/34.sce
f8ff8864d6e617d352cad1ac9c9a923244e2480d
[]
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
208
sce
34.sce
clc //initialisation of variables a=0.139//m/sec^2 h=12.5//m/sec t=120//m/sec //CALCULATIONS V=h+a*t//m/sec //RESULTS printf('The acceleration level trackage it was travelling at speed=% f m/sec',V)
7a1a60b39ac030f114f7b6b30a4472ef4322b9d9
89dea31a969e428f3ba6bbe7e01abe63875ecc6e
/scilab/Policy for Inventory Control.sce
d7da294bbf0f4a4007c461ea5367e9be2462ff7b
[]
no_license
arvinsingh/b_tech
9603a83121f8b6beb7ee7d4aae9c2a27599b6f92
40e4d29ddfbe13d613709d8303faaccd9bb2db33
refs/heads/master
2020-03-19T14:40:00.460378
2018-06-08T15:25:19
2018-06-08T15:25:19
136,634,452
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,008
sce
Policy for Inventory Control.sce
//Policy for Inventory Control function bestpolicy(p, q) C = 0.0//Cost S = 115//Stock I = 1//Day UD = 0//Units Due DD = 0//Due Date for I = 1:180//Loop for 6 months or 180 days if DD == I then//Is today due date? S = S + q//Add q to stock UD = 0//units due = 0 end dem = int(abs(grand(1,1,"unf",0,99)))//Generate random demand for today if dem <= S then//Is demand <= stock? S = S - dem//Compute new cost C = C + S * 0.75//Add carrying cost else C = C + (dem - S) * 18.0//Add shortage cost to total cost S = 0//Reset stock to zero end ES = S + UD if ES <= p then//is stock + units due <= reorder point? UD = q DD = I + 3//due date = today + 3 C = C + 75.0//add reorder cost end end disp([p, q, C])//Display reorder point - reorder quantity - Total Cost endfunction bestpolicy(125,150) bestpolicy(125,250) bestpolicy(150,250) bestpolicy(175,250) bestpolicy(175,300)
491e8e322e01b13608777e7f647029011e431744
449d555969bfd7befe906877abab098c6e63a0e8
/2615/CH16/EX77.3/77.sce
b32bcc8e508fceddca2b5bb331843ecc6f0fc434
[]
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
202
sce
77.sce
clc //initialisation of variables n=1500//rpm d1=180//mm d2=540//mm d3=160//mm d4=400//mm //CALCULATIONS M=(d1/d2)*(d3/d4)//mm N=n*M//rpm //RESULTS printf('the total speed ratio=% f rpm',N)
320d3a93f9562d716ee7fc4f8d313335efa28acd
8969edc2d07b10470fa302efcbdd89c39694ff71
/Labs/module_1/Importing-Exporting-Data/data/shuttle.csv
08dbbe382cbdef0511f7837f779a9a1a0a804d21
[]
no_license
tmcdonald92/248_Repo
4173c417c7ba72412d23bed429aa2717cf99d22e
35e173a75705e526e93d17f8ea9374ed0b4c4d74
refs/heads/master
2023-01-07T14:28:16.966520
2020-11-02T14:06:07
2020-11-02T14:06:07
289,919,738
0
0
null
2020-08-24T12:20:05
2020-08-24T12:20:04
null
UTF-8
Scilab
false
false
135,084
csv
shuttle.csv
:@computed_region_cbhk_fwbd,:@computed_region_nnqa_25f4,fall,geolocation,id,mass,name,nametype,recclass,reclat,reclong,year ,,Fell,"{'type': 'Point', 'coordinates': [6.08333, 50.775]}",1,21.0,Aachen,Valid,L5,50.775,6.08333,1880-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.23333, 56.18333]}",2,720.0,Aarhus,Valid,H6,56.18333,10.23333,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-113, 54.21667]}",6,107000.0,Abee,Valid,EH4,54.21667,-113.0,1952-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-99.9, 16.88333]}",10,1914.0,Acapulco,Valid,Acapulcoite,16.88333,-99.9,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-64.95, -33.16667]}",370,780.0,Achiras,Valid,L6,-33.16667,-64.95,1902-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [71.8, 32.1]}",379,4239.0,Adhi Kot,Valid,EH4,32.1,71.8,1919-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [95.16667, 44.83333]}",390,910.0,Adzhi-Bogdo (stone),Valid,LL3-6,44.83333,95.16667,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.61667, 44.21667]}",392,30000.0,Agen,Valid,H5,44.21667,0.61667,1814-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-65.23333, -31.6]}",398,1620.0,Aguada,Valid,L6,-31.6,-65.23333,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-64.55, -30.86667]}",417,1440.0,Aguila Blanca,Valid,L,-30.86667,-64.55,1920-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-9.57028, 16.39806]}",423,1000.0,Aioun el Atrouss,Valid,Diogenite-pm,16.39806,-9.57028,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.38333, 19.08333]}",424,24000.0,Aïr,Valid,L6,19.08333,8.38333,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.33333, 50.66667]}",425,,Aire-sur-la-Lys,Valid,Unknown,50.66667,2.33333,1769-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.05, 29.51667]}",426,779.0,Akaba,Valid,L6,29.51667,35.05,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.95, 29.71667]}",427,1800.0,Akbarpur,Valid,H4,29.71667,77.95,1838-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.43333, 8.91667]}",432,3000.0,Akwanga,Valid,H,8.91667,8.43333,1959-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [42.81667, 39.91667]}",433,50000.0,Akyumak,Valid,"Iron, IVA",39.91667,42.81667,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [39.51667, 24.41667]}",446,160.0,Al Rais,Valid,CR2-an,24.41667,39.51667,1957-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.96, 13.66033]}",447,700.0,Al Zarnkh,Valid,LL5,13.66033,28.96,2001-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.08333, 44.11667]}",448,6000.0,Alais,Valid,CI1,44.11667,4.08333,1806-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.01667, 44.65]}",453,2000.0,Albareto,Valid,L/LL4,44.65,11.01667,1766-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.66667, 2]}",454,625.0,Alberta,Valid,L,2.0,22.66667,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.01533, 45.82133]}",458,252.0,Alby sur Chéran,Valid,Eucrite-mmict,45.82133,6.01533,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.78333, 51.78333]}",461,700.0,Aldsworth,Valid,LL5,51.78333,-1.78333,1835-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.13333, 36.23333]}",462,3200.0,Aleppo,Valid,L6,36.23333,37.13333,1873-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.75, 44.88333]}",463,908.0,Alessandria,Valid,H5,44.88333,8.75,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.81667, 50.95]}",465,9251.0,Alexandrovsky,Valid,H4,50.95,31.81667,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.15, 45.26667]}",466,228000.0,Alfianello,Valid,L6,45.26667,10.15,1883-01-01T00:00:00.000 50.0,429.0,Fell,"{'type': 'Point', 'coordinates': [-85.88333, 42.53333]}",2276,32000.0,Allegan,Valid,H5,42.53333,-85.88333,1899-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-105.31667, 26.96667]}",2278,2000000.0,Allende,Valid,CV3,26.96667,-105.31667,1969-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.41275, 20.74575]}",48915,3950.0,Almahata Sitta,Valid,Ureilite-an,20.74575,32.41275,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [44.21556, 35.27333]}",2284,6000.0,Alta'ameem,Valid,LL5,35.27333,44.21556,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.25, 27.66667]}",2290,6400.0,Ambapur Nagla,Valid,H5,27.66667,78.25,1895-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [85.56667, 26.58333]}",2294,2700.0,Andhara,Valid,Stone-uncl,26.58333,85.56667,1880-01-01T00:00:00.000 49.0,1723.0,Fell,"{'type': 'Point', 'coordinates': [-70.75, 44.61667]}",2295,3200.0,Andover,Valid,L6,44.61667,-70.75,1898-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.5, 48.7]}",2296,600.0,Andreevka,Valid,L3,48.7,37.5,1969-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.86667, 20.88333]}",2298,17900.0,Andura,Valid,H6,20.88333,76.86667,1939-01-01T00:00:00.000 ,,Found,"{'type': 'Point', 'coordinates': [0, 0]}",50693,256.8,Northwest Africa 5815,Valid,L5,0.0,0.0, ,,Fell,"{'type': 'Point', 'coordinates': [-0.55, 47.46667]}",2301,,Angers,Valid,L6,47.46667,-0.55,1822-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-44.31667, -22.96667]}",2302,1500.0,Angra dos Reis (stone),Valid,Angrite,-22.96667,-44.31667,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [39.71667, 9.53333]}",2304,6500.0,Ankober,Valid,H4,9.53333,39.71667,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [105.18333, 25.15]}",2305,2500.0,Anlong,Valid,H5,25.15,105.18333,1971-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [140.78556, 40.81056]}",2313,320.0,Aomori,Valid,L6,40.81056,140.78556,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.71667, 53.58333]}",2318,15000.0,Appley Bridge,Valid,LL6,53.58333,-2.71667,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.38333, 43.86667]}",2320,3200.0,Apt,Valid,L6,43.86667,5.38333,1803-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-66, -33]}",2325,810.0,Arbol Solo,Valid,H5,-33.0,-66.0,1954-01-01T00:00:00.000 18.0,2697.0,Fell,"{'type': 'Point', 'coordinates': [-94.3, 38.5]}",2329,5070.0,Archie,Valid,H6,38.5,-94.3,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-60.66667, -31.41667]}",2340,7450.0,Arroyo Aguiar,Valid,H5,-31.41667,-60.66667,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.03333, 42.45]}",2345,41.0,Asco,Valid,H6,42.45,9.03333,1805-01-01T00:00:00.000 23.0,774.0,Fell,"{'type': 'Point', 'coordinates': [-97.01, 31.805]}",48954,9500.0,Ash Creek,Valid,L6,31.805,-97.01,2009-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.30000000000000004, 52.05]}",2346,1300.0,Ashdon,Valid,L6,52.05,0.30000000000000004,1923-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.55, 43.03333]}",2353,2000.0,Assisi,Valid,H5,43.03333,12.55,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [80.625, 25.25417]}",4883,1280.0,Atarra,Valid,L4,25.25417,80.625,1920-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-103.66667, 20.06667]}",4884,94.2,Atemajac,Valid,L6,20.06667,-103.66667,1896-01-01T00:00:00.000 29.0,3134.0,Fell,"{'type': 'Point', 'coordinates': [-87, 34.75]}",4885,265.0,Athens,Valid,LL6,34.75,-87.0,1933-01-01T00:00:00.000 20.0,602.0,Fell,"{'type': 'Point', 'coordinates': [-96.15, 34.31667]}",4888,1384.2,Atoka,Valid,L6,34.31667,-96.15,1945-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.16667, 44.38333]}",4893,800.0,Aubres,Valid,Aubrite,44.38333,5.16667,1836-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.66667, 36.16667]}",4899,50000.0,Aumale,Valid,L6,36.16667,3.66667,1865-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.23333, 44.33333]}",4900,2000.0,Aumieres,Valid,L6,44.33333,3.23333,1842-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.58333, 43.08333]}",4903,50000.0,Ausson,Valid,L5,43.08333,0.58333,1858-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-49.95083, -21.46028]}",4905,9330.0,Avanhandava,Valid,H4,-21.46028,-49.95083,1952-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.5, 46]}",4906,1230.0,Avce,Valid,"Iron, IIAB",46.0,13.5,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-103.5, 25]}",4907,146.0,Avilez,Valid,H,25.0,-103.5,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.83333, 2.71667]}",4910,134.0,Awere,Valid,L4,2.71667,32.83333,1968-01-01T00:00:00.000 11.0,1989.0,Fell,"{'type': 'Point', 'coordinates': [-108, 36.8]}",4913,2830.0,Aztec,Valid,L6,36.8,-108.0,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [38, 48.6]}",4917,18000.0,Bachmut,Valid,L6,48.6,38.0,1814-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.5, 28.48333]}",4922,10322.0,Bahjoi,Valid,"Iron, IAB-sLL",28.48333,78.5,1934-01-01T00:00:00.000 37.0,2373.0,Fell,"{'type': 'Point', 'coordinates': [-82.48333, 35.96667]}",4925,3700.0,Bald Mountain,Valid,L4,35.96667,-82.48333,1929-01-01T00:00:00.000 32.0,495.0,Fell,"{'type': 'Point', 'coordinates': [-88.66667, 34.5]}",4926,345.0,Baldwyn,Valid,L6,34.5,-88.66667,1922-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.38333, 5.38333]}",4928,1000.0,Bali,Valid,CV3,5.38333,16.38333,1907-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [101.18333, 16.66667]}",4934,16700.0,Ban Rong Du,Valid,"Iron, ungrouped",16.66667,101.18333,1993-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [107.6, -6.91667]}",4935,11500.0,Bandong,Valid,LL6,-6.91667,107.6,1871-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.33333, 27.7]}",4936,15000.0,Bansur,Valid,L6,27.7,76.33333,1892-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.2, 30.4]}",4937,14.0,Banswal,Valid,L5,30.4,78.2,1913-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [106, -6.33333]}",4938,629.0,Banten,Valid,CM2,-6.33333,106.0,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.05, 43.95]}",4942,6400.0,Barbotan,Valid,H5,43.95,-0.05,1790-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.16667, 41.36667]}",4944,,Barcelona (stone),Valid,OC,41.36667,2.16667,1704-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.5, 42.38333]}",4946,3200.0,Barea,Valid,Mesosiderite-A1,42.38333,-2.5,1842-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.08333, 52.73333]}",4947,23.2,Barnaul,Valid,H5,52.73333,84.08333,1904-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.1, 52]}",4948,17.0,Barntrup,Valid,LL4,52.0,9.1,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.8, 31.61667]}",4949,4500.0,Baroti,Valid,L6,31.61667,76.8,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.33972, 52.56528]}",4954,44000.0,Barwell,Valid,L5,52.56528,-1.33972,1965-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.9, 15.78333]}",44876,29560.0,Bassikounou,Valid,H5,15.78333,-5.9,2006-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [20.93583, 52.03333]}",4957,15500.0,Baszkówka,Valid,L5,52.03333,20.93583,1994-01-01T00:00:00.000 21.0,662.0,Fell,"{'type': 'Point', 'coordinates': [-98.31667, 45.41667]}",4974,21000.0,Bath,Valid,H4,45.41667,-98.31667,1892-01-01T00:00:00.000 36.0,1921.0,Fell,"{'type': 'Point', 'coordinates': [-83.75, 38.25]}",4975,86000.0,Bath Furnace,Valid,L6,38.25,-83.75,1902-01-01T00:00:00.000 10.0,2397.0,Fell,"{'type': 'Point', 'coordinates': [-117.18913, 40.66813]}",56133,2900.0,Battle Mountain,Valid,L6,40.66813,-117.18913,2012-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.18333000000000002, 11.08333]}",4976,1557.0,Bawku,Valid,LL5,11.08333,-0.18333000000000002,1989-01-01T00:00:00.000 18.0,2216.0,Fell,"{'type': 'Point', 'coordinates': [-93.5, 36.75]}",4977,611.0,Baxter,Valid,L6,36.75,-93.5,1916-01-01T00:00:00.000 17.0,1285.0,Fell,"{'type': 'Point', 'coordinates': [-101.2, 39.8]}",4984,16000.0,Beardsley,Valid,H5,39.8,-101.2,1929-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-117.33333, 51.16667]}",4986,14000.0,Beaver Creek,Valid,H5,51.16667,-117.33333,1893-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-4.1, 53.01667]}",4993,794.0,Beddgelert,Valid,H5,53.01667,-4.1,1949-01-01T00:00:00.000 23.0,1978.0,Fell,"{'type': 'Point', 'coordinates': [-96.46667, 33.6]}",5005,375.0,Bells,Valid,C2-ung,33.6,-96.46667,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-64.86667, -32.33333]}",5009,,Belville,Valid,OC,-32.33333,-64.86667,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.91667, 25.36667]}",5011,3700.0,Benares (a),Valid,LL4,25.36667,82.91667,1798-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.15, 32.25]}",30443,25000.0,Benguerir,Valid,LL6,32.25,-8.15,2004-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.8, 32.86667]}",5018,19000.0,Beni M'hira,Valid,L6,32.86667,10.8,2001-01-01T00:00:00.000 34.0,1869.0,Fell,"{'type': 'Point', 'coordinates': [-89.15, 39.08333]}",5021,1770.5,Benld,Valid,H6,39.08333,-89.15,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.41667, -26.16667]}",5023,3880.0,Benoni,Valid,H6,-26.16667,28.41667,1943-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7, 30]}",5024,45000.0,Bensour,Valid,LL6,30.0,-7.0,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-67.55, 45.95]}",5026,2840.0,Benton,Valid,LL6,45.95,-67.55,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-58.32833, -31.91]}",48975,270.0,Berduc,Valid,L6,-31.91,-58.32833,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.65, 11.65]}",5028,18000.0,Béréba,Valid,Eucrite-mmict,11.65,-3.65,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.8, 41.68333]}",5029,1440.0,Berlanguillas,Valid,L6,41.68333,-3.8,1811-01-01T00:00:00.000 9.0,1072.0,Fell,"{'type': 'Point', 'coordinates': [-105.02325, 40.30583]}",47355,960.0,Berthoud,Valid,Eucrite-mmict,40.30583,-105.02325,2004-01-01T00:00:00.000 47.0,2030.0,Fell,"{'type': 'Point', 'coordinates': [-73.83333, 42.53333]}",5032,13.9,Bethlehem,Valid,H,42.53333,-73.83333,1859-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.23333, 43.21667]}",5034,2000.0,Beuste,Valid,L5,43.21667,-0.23333,1859-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.5, 33.88333]}",5035,1100.0,Beyrout,Valid,LL3.8,33.88333,35.5,1921-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [74.83333, 20.88333]}",5037,18.0,Bhagur,Valid,L6,20.88333,74.83333,1877-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.11528, 26.50833]}",36591,678.0,Bhawad,Valid,LL6,26.50833,73.11528,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [71.46667, 20.83333]}",5039,100.0,Bherai,Valid,L6,20.83333,71.46667,1893-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [90.65, 22.68333]}",5040,1047.0,Bhola,Valid,LL3-6,22.68333,90.65,1940-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [86.9, 22.08333]}",5041,2500.0,Bholghati,Valid,Howardite,22.08333,86.9,1905-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23.2, 53.1]}",5042,4000.0,Bialystok,Valid,Eucrite-pmict,53.1,23.2,1827-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.16667, 50.13333]}",5043,1900.0,Bielokrynitschie,Valid,H4,50.13333,27.16667,1887-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.08333, 12.45]}",5045,25000.0,Bilanga,Valid,Diogenite,12.45,-0.08333,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.67639, -33.15639]}",5051,488.1,Binningup,Valid,H5,-33.15639,115.67639,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.3, 13.76667]}",5056,560.0,Birni N'konni,Valid,H4,13.76667,5.3,1923-01-01T00:00:00.000 33.0,657.0,Fell,"{'type': 'Point', 'coordinates': [-80.28333, 34.16667]}",5059,6000.0,Bishopville,Valid,Aubrite,34.16667,-80.28333,1843-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.6, 25.38333]}",5060,1039.0,Bishunpur,Valid,LL3.15,25.38333,82.6,1895-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.16667, 49.78333]}",5063,1850.0,Bjelaja Zerkov,Valid,H6,49.78333,30.16667,1796-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.8, 60.4]}",5064,330000.0,Bjurböle,Valid,L/LL4,60.4,25.8,1899-01-01T00:00:00.000 48.0,2495.0,Fell,"{'type': 'Point', 'coordinates': [-78.08333, 40.91667]}",5065,705.0,Black Moshannan Park,Valid,L5,40.91667,-78.08333,1941-01-01T00:00:00.000 20.0,2164.0,Fell,"{'type': 'Point', 'coordinates': [-97.33333, 36.83333]}",5068,2381.0,Blackwell,Valid,L5,36.83333,-97.33333,1906-01-01T00:00:00.000 23.0,3063.0,Fell,"{'type': 'Point', 'coordinates': [-98.83333, 31.83333]}",5071,5100.0,Blanket,Valid,L6,31.83333,-98.83333,1909-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.63333, 49.36667]}",5072,470.0,Blansko,Valid,H6,49.36667,16.63333,1833-01-01T00:00:00.000 34.0,1795.0,Fell,"{'type': 'Point', 'coordinates': [-89.00417, 40.48]}",5076,67.8,Bloomington,Valid,LL6,40.48,-89.00417,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.83333, 33.83333]}",5090,7500.0,Bo Xian,Valid,LL3.9,33.83333,115.83333,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-102, 23]}",5093,56.0,Bocas,Valid,L6,23.0,-102.0,1804-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.7000000000000001, 12.5]}",5097,8800.0,Bogou,Valid,"Iron, IAB-MG",12.5,0.7000000000000001,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [131.63333, 44.55]}",5098,256000.0,Boguslavka,Valid,"Iron, IIAB",44.55,131.63333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.05, 44.86667]}",5110,1676.0,Borgo San Donino,Valid,LL6,44.86667,10.05,1808-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.03333, 21.95]}",5111,8600.0,Bori,Valid,L6,21.95,78.03333,1894-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [52.48333, 54.23333]}",5112,1342.0,Boriskino,Valid,CM2,54.23333,52.48333,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.28333, 48.15]}",5113,7000.0,Borkut,Valid,L5,48.15,24.28333,1852-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.86667, 55.46667]}",5114,500.0,Borodino,Valid,H5,55.46667,35.86667,1812-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.88333, 51.33333]}",5117,614.0,Botschetschki,Valid,L4,51.33333,33.88333,1823-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-11.3715, 17.71067]}",57168,190.0,Boumdeid (2003),Valid,L6,17.71067,-11.3715,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-11.34133, 17.17493]}",57167,3599.0,Boumdeid (2011),Valid,L6,17.17493,-11.34133,2011-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.33333, 54.56667]}",5121,5460.0,Bovedy,Valid,L3,54.56667,-6.33333,1969-01-01T00:00:00.000 48.0,2455.0,Fell,"{'type': 'Point', 'coordinates': [-80.08333, 40.5]}",5128,762.0,Bradford Woods,Valid,L,40.5,-80.08333,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.3, 50.6]}",5133,39000.0,Braunau,Valid,"Iron, IIAB",50.6,16.3,1847-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.18361, 50.66694]}",5134,1500.0,Breitscheid,Valid,H5,50.66694,8.18361,1956-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.1, 53.4]}",5135,7250.0,Bremervörde,Valid,H/L3.9,53.4,9.1,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [59.31667, 52.13333]}",5140,219.0,Brient,Valid,Eucrite-pmict,52.13333,59.31667,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-112.88333, 53.9]}",5156,303000.0,Bruderheim,Valid,L6,53.9,-112.88333,1960-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [64.60035, 39.77978]}",30448,5300.0,Bukhara,Valid,CV3,39.77978,64.60035,2001-01-01T00:00:00.000 ,,Fell,,5163,2250.0,Bulls Run,Valid,Iron?,,,1964-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [129.19, -31.35]}",48653,324.0,Bunburra Rockhole,Valid,Eucrite,-31.35,129.19,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.58333, 10.01667]}",5165,357.0,Bununu,Valid,Howardite,10.01667,9.58333,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [48, 5]}",5169,120000.0,Bur-Gheluai,Valid,H5,5.0,48.0,1919-01-01T00:00:00.000 36.0,256.0,Fell,"{'type': 'Point', 'coordinates': [-82.23722, 37.62194]}",5175,1504.0,Burnwell,Valid,H4-an,37.62194,-82.23722,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.23333, 40.2]}",5177,25000.0,Bursa,Valid,L6,40.2,29.23333,1946-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.78333, 46.45]}",5178,5000.0,Buschhof,Valid,L6,46.45,25.78333,1863-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.83333, 26.78333]}",5181,1500.0,Bustee,Valid,Aubrite,26.78333,82.83333,1852-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.08333, 27.08333]}",5183,29000.0,Butsura,Valid,H6,27.08333,84.08333,1861-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-109.84817, 52.996]}",48654,41000.0,Buzzard Coulee,Valid,H4,52.996,-109.84817,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.16667, 37.98333]}",5185,25000.0,Cabezo de Mayo,Valid,L/LL6,37.98333,-1.16667,1870-01-01T00:00:00.000 15.0,1029.0,Fell,"{'type': 'Point', 'coordinates': [-93.5, 35.5]}",5186,48500.0,Cabin Creek,Valid,"Iron, IIIAB",35.5,-93.5,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [20.33333, 43.83889]}",5187,212.0,Cacak,Valid,OC,43.83889,20.33333,1919-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-76.51, 3.4050000000000002]}",45976,478.0,Cali,Valid,H/L4,3.4050000000000002,-76.51,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [122.33333, 11.75]}",5200,2400.0,Calivo,Valid,Stone-uncl,11.75,122.33333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-40.16667, -7.03333]}",5249,23680.0,Campos Sales,Valid,L5,-7.03333,-40.16667,1991-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.6, 39.8]}",5250,4000.0,Çanakkale,Valid,L6,39.8,26.6,1964-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.66667, 41.25]}",5251,945.0,Cañellas,Valid,H4,41.25,1.66667,1861-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.15, 43.38333]}",5252,34000.0,Cangas de Onis,Valid,H5,43.38333,-5.15,1866-01-01T00:00:00.000 9.0,1448.0,Fell,"{'type': 'Point', 'coordinates': [-105.24139, 38.47028]}",5253,1400.0,Canon City,Valid,H6,38.47028,-105.24139,1973-01-01T00:00:00.000 18.0,2695.0,Fell,"{'type': 'Point', 'coordinates': [-89.58333, 37.26667]}",5260,2300.0,Cape Girardeau,Valid,H6,37.26667,-89.58333,1846-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-64.55, -30.88333]}",5264,750.0,Capilla del Monte,Valid,H6,-30.88333,-64.55,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-69.04389, -16.66444]}",45817,342.0,Carancas,Valid,H4-5,-16.66444,-69.04389,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27, 38.5]}",5265,8.0,Caratash,Valid,LL6,38.5,27.0,1902-01-01T00:00:00.000 37.0,648.0,Fell,"{'type': 'Point', 'coordinates': [-78.06667, 36.08333]}",5291,7300.0,Castalia,Valid,H5,36.08333,-78.06667,1874-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.5, 43.35]}",5292,,Castel Berardenga,Valid,Stone-uncl,43.35,11.5,1791-01-01T00:00:00.000 49.0,414.0,Fell,"{'type': 'Point', 'coordinates': [-68.75, 44.38333]}",5293,94.0,Castine,Valid,L6,44.38333,-68.75,1848-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.2, 39.8]}",5295,15000.0,Castrovillari,Valid,Stone-uncl,39.8,16.2,1583-01-01T00:00:00.000 37.0,637.0,Fell,"{'type': 'Point', 'coordinates': [-79.25, 36.5]}",5296,1360.0,Caswell County,Valid,OC,36.5,-79.25,1810-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-105.23333, 26.46667]}",5306,1025.0,Ceniceros,Valid,L3.7,26.46667,-105.23333,1988-01-01T00:00:00.000 21.0,2684.0,Fell,"{'type': 'Point', 'coordinates': [-96.91667, 43.2]}",5307,45.6,Centerville,Valid,H5,43.2,-96.91667,1956-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.3, 45.08333]}",5308,6460.0,Cereseto,Valid,H5,45.08333,8.3,1840-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [109.31667, 28.53333]}",5313,3700.0,Chadong,Valid,L6,28.53333,109.31667,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.66667, 25.36667]}",5314,0.5,Chail,Valid,H6,25.36667,81.66667,1814-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.48333, 25.85]}",5315,8200.0,Chainpur,Valid,LL3.4,25.85,83.48333,1907-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-58.05, -30.78333]}",5316,18300.0,Chajari,Valid,L5,-30.78333,-58.05,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.01667, 20.26667]}",5320,8800.0,Chandakapur,Valid,L5,20.26667,76.01667,1838-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79.05, 27.28333]}",5321,1100.0,Chandpur,Valid,L6,27.28333,79.05,1885-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.75, 29.08333]}",5322,1810.0,Changde,Valid,H5,29.08333,111.75,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.05, 46.68333]}",5325,31500.0,Chantonnay,Valid,L6,46.68333,1.05,1812-01-01T00:00:00.000 39.0,2007.0,Fell,"{'type': 'Point', 'coordinates': [-87.33333, 36.16667]}",5328,4300.0,Charlotte,Valid,"Iron, IVA",36.16667,-87.33333,1835-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.56667, 47.93333]}",5329,27000.0,Charsonville,Valid,H6,47.93333,1.56667,1810-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.5, 29.48333]}",5330,12000.0,Charwallas,Valid,H6,29.48333,75.5,1834-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.36667, 47.71667]}",5331,4000.0,Chassigny,Valid,Martian (chassignite),47.71667,5.36667,1815-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.91667, 47.93333]}",5332,30000.0,Château-Renard,Valid,L6,47.93333,2.91667,1841-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.46667, 41.93333]}",5334,2945.0,Chaves,Valid,Howardite,41.93333,-7.46667,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.5, -3.66667]}",5338,2936.0,Chela,Valid,H4,-3.66667,32.5,1988-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [61.11667, 54.81667]}",57165,100000.0,Chelyabinsk,Valid,LL5,54.81667,61.11667,2013-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.01472, 23.69639]}",47347,100000.0,Chergach ,Valid,H5,23.69639,-5.01472,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.1, 53.7]}",5339,6000.0,Chernyi Bor,Valid,H4,53.7,30.1,1964-01-01T00:00:00.000 33.0,2582.0,Fell,"{'type': 'Point', 'coordinates': [-81.88333, 35.03333]}",5340,8400.0,Cherokee Springs,Valid,LL6,35.03333,-81.88333,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.81667, 46.55]}",5341,705.0,Chervettaz,Valid,L5,46.55,6.81667,1901-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [34, 50.83333]}",5342,1700.0,Chervony Kut,Valid,Eucrite-mmict,50.83333,34.0,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.5, 14.5]}",5344,72.0,Chetrinahatti,Valid,Stone-uncl,14.5,76.5,1880-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [101.63333, 17.9]}",5345,367.0,Chiang Khan,Valid,H6,17.9,101.63333,1981-01-01T00:00:00.000 48.0,2459.0,Fell,"{'type': 'Point', 'coordinates': [-79.73333, 40.93333]}",5349,303.0,Chicora,Valid,LL6,40.93333,-79.73333,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.395, -10.05944]}",5355,3920.0,Chisenga,Valid,"Iron, IIIAB",-10.05944,33.395,1988-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.96667, -17.35]}",5356,,Chitado,Valid,L6,-17.35,13.96667,1966-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.97667, 47.47083]}",5357,4000.0,Chitenay,Valid,L6,47.47083,0.97667,1978-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [108.1, -6.95]}",5364,1600.0,Cilimus,Valid,L5,-6.95,108.1,1979-01-01T00:00:00.000 31.0,67.0,Fell,"{'type': 'Point', 'coordinates': [-81.87278, 32.1025]}",5374,1455.0,Claxton,Valid,L6,32.1025,-81.87278,1984-01-01T00:00:00.000 ,,Fell,,5383,48.6,Clohars,Valid,L4,,,1822-01-01T00:00:00.000 41.0,877.0,Fell,"{'type': 'Point', 'coordinates': [-90.28333, 44.9]}",5395,104000.0,Colby (Wisconsin),Valid,L6,44.9,-90.28333,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [19.38333, -33.13333]}",5397,5200.0,Cold Bokkeveld,Valid,CM2,-33.13333,19.38333,1838-01-01T00:00:00.000 50.0,356.0,Fell,"{'type': 'Point', 'coordinates': [-84.50778, 43.76111]}",5401,469.0,Coleman,Valid,L6,43.76111,-84.50778,1994-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.61667, 42.53333]}",5403,5000.0,Collescipoli,Valid,H5,42.53333,12.61667,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-47.55, -19.85]}",5418,20350.0,Conquista,Valid,H4,-19.85,-47.55,1965-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-100.86667, 21.16667]}",5451,1200.0,Cosina,Valid,H5,21.16667,-100.86667,1844-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.26667, 10.2]}",5465,1460.0,Cranganore,Valid,L6,10.2,76.26667,1917-01-01T00:00:00.000 20.0,2201.0,Fell,"{'type': 'Point', 'coordinates': [-97.58333, 35.95]}",5470,78.4,Crescent,Valid,CM2,35.95,-97.58333,1936-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.3, -27.7]}",5474,3650.0,Cronstad,Valid,H5,-27.7,27.3,1877-01-01T00:00:00.000 37.0,2332.0,Fell,"{'type': 'Point', 'coordinates': [-78.13333, 35.63333]}",5476,167.0,Cross Roads,Valid,H5,35.63333,-78.13333,1892-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.21667, 54.61667]}",5477,4255.0,Crumlin,Valid,L5,54.61667,-6.21667,1902-01-01T00:00:00.000 36.0,1426.0,Fell,"{'type': 'Point', 'coordinates': [-84.35, 36.83333]}",5496,17000.0,Cumberland Falls,Valid,Aubrite,36.83333,-84.35,1919-01-01T00:00:00.000 36.0,244.0,Fell,"{'type': 'Point', 'coordinates': [-84.25, 38.4]}",5500,6000.0,Cynthiana,Valid,L/LL4,38.4,-84.25,1877-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.83333, 35.61667]}",5504,18000.0,Dahmani,Valid,LL6,35.61667,8.83333,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.96667, 26.91667]}",5511,5650.0,Dandapur,Valid,L6,26.91667,83.96667,1878-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.56667, -28.2]}",5513,1064.0,Daniel's Kuil,Valid,EL6,-28.2,24.56667,1868-01-01T00:00:00.000 29.0,103.0,Fell,"{'type': 'Point', 'coordinates': [-87.06667, 34.4]}",5514,2000.0,Danville,Valid,L6,34.4,-87.06667,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.65, 49.86667]}",6603,100.0,Darmstadt,Valid,H5,49.86667,8.65,1804-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [59.685, 41.98444]}",6604,7000.0,Dashoguz,Valid,H5,41.98444,59.685,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-79.95756, -1.8708900000000002]}",51559,6580.0,Daule,Valid,L5,-1.8708900000000002,-79.95756,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-80, 43]}",6621,340.0,De Cewsville,Valid,H6,43.0,-80.0,1887-01-01T00:00:00.000 ,2491.0,Fell,"{'type': 'Point', 'coordinates': [-74, 40.25]}",6634,28.0,Deal,Valid,L6,40.25,-74.0,1829-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.25, 28.56667]}",6642,0.8,Delhi,Valid,L5,28.56667,77.25,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.76667, 51.46667]}",6649,16400.0,Demina,Valid,L6,51.46667,84.76667,1911-01-01T00:00:00.000 9.0,1444.0,Fell,"{'type': 'Point', 'coordinates': [-104.93056, 39.7825]}",6660,230.0,Denver,Valid,L6,39.7825,-104.93056,1967-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [93.86667, 26.68333]}",6664,12500.0,Dergaon,Valid,H5,26.68333,93.86667,2001-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.61667, 25.73333]}",6693,25400.0,Desuri,Valid,H6,25.73333,73.61667,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81, 19]}",6694,12000.0,Devgaon,Valid,H3.8,19.0,81.0,2001-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.525, 24.225]}",6696,1140.0,Devri-Khera,Valid,L6,24.225,76.525,1994-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [71.42722, 22.37778]}",6698,45000.0,Dhajala,Valid,H3.8,22.37778,71.42722,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.6, 14.88333]}",6699,1800.0,Dharwar,Valid,OC,14.88333,75.6,1848-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.46667, 32.23333]}",7640,32000.0,Dhurmsala,Valid,LL6,32.23333,76.46667,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.32997, 37.35172]}",47350,3396.0,Didim,Valid,H3-5,37.35172,27.32997,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [18.56667, -33.75]}",7642,1000.0,Diep River,Valid,L6,-33.75,18.56667,1906-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-60.46667, -31.88333]}",7649,400.0,Distrito Quebracho,Valid,H4,-31.88333,-60.46667,1957-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.5, -7.5]}",7652,166000.0,Djati-Pengilon,Valid,H6,-7.5,111.5,1884-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.05, 12.73333]}",7656,3950.0,Djermaia,Valid,H,12.73333,15.05,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.55, 36.95]}",7657,10000.0,Djoumine,Valid,H5-6,36.95,9.55,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [90.33333, 23.5]}",7658,3840.0,Dokachi,Valid,H5,23.5,90.33333,1903-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.3, 50.75]}",7659,1600.0,Dolgovoli,Valid,L6,50.75,25.3,1864-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29, 40]}",7661,438.0,Domanitch,Valid,L5,40.0,29.0,1907-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [119.03333, 45.5]}",7706,128800.0,Dong Ujimqin Qi,Valid,Mesosiderite,45.5,119.03333,1995-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.45, 21.86667]}",7707,230.0,Donga Kohrod,Valid,H6,21.86667,82.45,1899-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.78333, 32.91667]}",7708,5500.0,Dongtai,Valid,LL6,32.91667,120.78333,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [112.3, 51.2]}",7718,3891.0,Doroninsk,Valid,H5-7,51.2,112.3,1805-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.16667, 13.05]}",7722,1250.0,Dosso,Valid,L6,13.05,3.16667,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.3, 32.33333]}",7723,1161.0,Douar Mghila,Valid,LL6,32.33333,-6.3,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.91667, -13.66667]}",7725,642.0,Dowa,Valid,Stone-uncl,-13.66667,33.91667,1976-01-01T00:00:00.000 39.0,2115.0,Fell,"{'type': 'Point', 'coordinates': [-86.5, 36.4]}",7728,5000.0,Drake Creek,Valid,L6,36.4,-86.5,1827-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-82.26, 42.52]}",7731,47700.0,Dresden (Ontario),Valid,H6,42.52,-82.26,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [18.44167, 42.45833]}",7736,1900.0,Dubrovnik,Valid,L3-6,42.45833,18.44167,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [152.83333, -31.66667]}",7743,30.0,Dunbogan,Valid,L6,-31.66667,152.83333,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.03333, 52.55]}",7745,2270.0,Dundrum,Valid,H5,52.55,-8.03333,1865-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [128.25, 43.33333]}",7749,,Dunhua,Valid,Stone-uncl,43.33333,128.25,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.63333, 30.3]}",7750,13200.0,Durala,Valid,L6,30.3,76.63333,1815-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [39.5, -4]}",7752,577.0,Duruma,Valid,L6,-4.0,39.5,1853-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [127.26667, 33.43333]}",7754,2117.0,Duwun,Valid,L6,33.43333,127.26667,1943-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.31667, -27.2]}",7755,3230.0,Dwaleni,Valid,H4-6,-27.2,31.31667,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82, 26.25]}",7757,300.0,Dyalpur,Valid,Ureilite,26.25,82.0,1872-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [151, -3]}",7758,188.0,Dyarrl Island,Valid,Mesosiderite-A1,-3.0,151.0,1933-01-01T00:00:00.000 19.0,462.0,Fell,"{'type': 'Point', 'coordinates': [-96.47167, 40.78167]}",7760,10000.0,Eagle,Valid,EL6,40.78167,-96.47167,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.83333, -17.3]}",7774,2400.0,Ehole,Valid,H5,-17.3,15.83333,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.21667, 48.9]}",7775,3000.0,Eichstädt,Valid,H5,48.9,11.21667,1785-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13, 56.03333]}",7776,3336.0,Ekeby,Valid,H4,56.03333,13.0,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.78333, 28.26667]}",7777,840.0,Ekh Khera,Valid,H6,28.26667,78.78333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.25, 34.41667]}",7807,10000.0,El Idrissia,Valid,L6,34.41667,3.25,1989-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-97.37, 25.37]}",45977,17226.0,El Paso de Aguila,Valid,H5,25.37,-97.37,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-103.05167, 19.96722]}",7819,5000.0,El Tigre,Valid,L6,19.96722,-103.05167,1993-01-01T00:00:00.000 9.0,88.0,Fell,"{'type': 'Point', 'coordinates': [-104.58817, 39.24667]}",7822,680.5,Elbert,Valid,LL6,39.24667,-104.58817,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.73333, 50.18333]}",7823,107000.0,Elbogen,Valid,"Iron, IID",50.18333,12.73333,1400-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.66667, 47.83333]}",7824,54640.0,Elenovka,Valid,L5,47.83333,37.66667,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4, 51.75]}",10019,1470.0,Ellemeet,Valid,Diogenite,51.75,4.0,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [151.61667, -29.46667]}",10033,127.0,Emmaville,Valid,Eucrite-mmict,-29.46667,151.61667,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [109.5, 30.3]}",10038,8000.0,Enshi,Valid,H5,30.3,109.5,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.35, 47.86667]}",10039,127000.0,Ensisheim,Valid,LL6,47.86667,7.35,1492-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.46667, 48.18333]}",10041,277.0,Épinal,Valid,H5,48.18333,6.46667,1822-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.89167, 19.03333]}",10042,113.0,Erakot,Valid,CM2,19.03333,81.89167,1940-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [44.5, 40.3]}",10043,107.2,Erevan,Valid,Howardite,40.3,44.5,1911-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [44.16667, 1.16667]}",10044,20000.0,Ergheo,Valid,L5,1.16667,44.16667,1889-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.25, 52.21667]}",10049,2250.0,Erxleben,Valid,H6,52.21667,11.25,1812-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.1, 46.25]}",10051,1500.0,Esnandes,Valid,L6,46.25,-1.1,1837-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.83333, 2.88333]}",10055,500.0,Essebi,Valid,C2-ung,2.88333,30.83333,1957-01-01T00:00:00.000 16.0,277.0,Fell,"{'type': 'Point', 'coordinates': [-94.83333, 43.41667]}",10059,320000.0,Estherville,Valid,Mesosiderite-A3/4,43.41667,-94.83333,1879-01-01T00:00:00.000 17.0,1300.0,Fell,"{'type': 'Point', 'coordinates': [-97.03333, 39.75]}",10074,89400.0,Farmington,Valid,L5,39.75,-97.03333,1890-01-01T00:00:00.000 37.0,2439.0,Fell,"{'type': 'Point', 'coordinates': [-77.53333, 35.55]}",10075,56000.0,Farmville,Valid,H4,35.55,-77.53333,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.8166700000000002, 44.38333]}",10078,1500.0,Favars,Valid,H5,44.38333,2.8166700000000002,1844-01-01T00:00:00.000 15.0,70.0,Fell,"{'type': 'Point', 'coordinates': [-94.16667, 36.05]}",10079,2360.0,Fayetteville,Valid,H4,36.05,-94.16667,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.45, 36.88333]}",10080,380.0,Feid Chair,Valid,H4,36.88333,8.45,1875-01-01T00:00:00.000 29.0,1631.0,Fell,"{'type': 'Point', 'coordinates': [-87.16667, 32.53333]}",10081,3200.0,Felix,Valid,CO3.3,32.53333,-87.16667,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [116.75, 34.6]}",10086,82.0,Fenghsien-Ku,Valid,H5,34.6,116.75,1924-01-01T00:00:00.000 37.0,2331.0,Fell,"{'type': 'Point', 'coordinates': [-81.41667, 36.1]}",10088,220.0,Ferguson,Valid,OC,36.1,-81.41667,1889-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.75333, 43.18111]}",10091,10200.0,Fermo,Valid,H3-5,43.18111,13.75333,1996-01-01T00:00:00.000 1.0,385.0,Fell,"{'type': 'Point', 'coordinates': [-96.85, 47.81667]}",10107,17600.0,Fisher,Valid,L6,47.81667,-96.85,1894-01-01T00:00:00.000 23.0,807.0,Fell,"{'type': 'Point', 'coordinates': [-97.76667, 30.83333]}",10111,3640.0,Florence,Valid,H3,30.83333,-97.76667,1922-01-01T00:00:00.000 16.0,1785.0,Fell,"{'type': 'Point', 'coordinates': [-93.66667, 43.25]}",10119,152000.0,Forest City,Valid,H5,43.25,-93.66667,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [146.85833, -33.35]}",10120,26000.0,Forest Vale,Valid,H4,-33.35,146.85833,1942-01-01T00:00:00.000 40.0,2839.0,Fell,"{'type': 'Point', 'coordinates': [-78.08333, 36.78333]}",10123,6067.0,Forksville,Valid,L6,36.78333,-78.08333,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.31667, 50.95]}",10163,240.0,Forsbach,Valid,H6,50.95,7.31667,1900-01-01T00:00:00.000 31.0,1470.0,Fell,"{'type': 'Point', 'coordinates': [-83.96667, 33.01667]}",10164,16300.0,Forsyth,Valid,L6,33.01667,-83.96667,1829-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7, 28.25]}",10166,,Fort Flatters,Valid,Stone-uncl,28.25,7.0,1944-01-01T00:00:00.000 29.0,99.0,Fell,"{'type': 'Point', 'coordinates': [-87.83333, 34.48333]}",10177,650.0,Frankfort (stone),Valid,Howardite,34.48333,-87.83333,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [113.56694, 31.47556]}",52412,23000.0,Fuhe,Valid,L5,31.47556,113.56694,1945-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [130.2, 33.18333]}",10836,11620.0,Fukutomi,Valid,L5,33.18333,130.2,1882-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.33333, 55.33333]}",10838,,Fünen,Valid,Stone-uncl,55.33333,10.33333,1654-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [80.81667, 25.95]}",10839,4000.0,Futtehpur,Valid,L6,25.95,80.81667,1822-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.9, 32.9]}",10840,2500.0,Fuyang,Valid,Stone-uncl,32.9,115.9,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.4, 44.3]}",10846,132.7,Galapian,Valid,H6,44.3,0.4,1826-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.43333, 7.05]}",10848,36.1,Galim (a),Valid,LL6,7.05,12.43333,1952-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.43333, 7.05]}",10849,28.0,Galim (b),Valid,EH3/4-an,7.05,12.43333,1952-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.78333, 51.68333]}",10850,5000.0,Galkiv,Valid,H4,51.68333,30.78333,1995-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [68.53333, 27.35]}",10851,6400.0,Gambat,Valid,L6,27.35,68.53333,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.18333, 11.65]}",10854,,Gao-Guenie,Valid,H5,11.65,-2.18333,1960-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [68.53333, 27.88333]}",10860,380.0,Garhi Yasin,Valid,"Iron, IIE",27.88333,68.53333,1917-01-01T00:00:00.000 13.0,2985.0,Fell,"{'type': 'Point', 'coordinates': [-112.13333, 41.68333]}",10861,102.0,Garland,Valid,Diogenite-pm,41.68333,-112.13333,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.03333, 12.85]}",44882,4162.0,Gashua,Valid,L6,12.85,11.03333,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.04167, 14.15083]}",10866,,Gasseltepaoua,Valid,H5,14.15083,-2.04167,2000-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.91667, 12.91667]}",10870,725.0,Geidam,Valid,H5,12.91667,11.91667,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.88333, 35.53333]}",10914,14290.0,Gifu,Valid,L6,35.53333,136.88333,1909-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.56667, 37.31667]}",10917,18000.0,Girgenti,Valid,L6,37.31667,13.56667,1853-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.91667, 9.6]}",10919,480.0,Git-Git,Valid,L6,9.6,9.91667,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.86667, 52.2]}",10923,670.0,Glanerbrug,Valid,L/LL5,52.2,6.86667,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [107.7, -7.25]}",10924,1303.0,Glanggang,Valid,H5-6,-7.25,107.7,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.61667, 57.35]}",10926,152000.0,Glasatovo,Valid,H4,57.35,37.61667,1918-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.30000000000000004, 52.45972]}",10930,767.0,Glatton,Valid,L6,52.45972,-0.30000000000000004,1991-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.76667, 50.66667]}",10936,1750.0,Gnadenfrei,Valid,H5,50.66667,16.76667,1879-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [89.05, 24.23333]}",10948,1600.0,Gopalpur,Valid,H6,24.23333,89.05,1865-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [38.08333, 48.28333]}",10949,3618.0,Gorlovka,Valid,H3.7,48.28333,38.08333,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.25, 42.9]}",10956,9000.0,Granes,Valid,L6,42.9,2.25,1964-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11, 60.66667]}",11196,45.5,Grefsheim,Valid,L5,60.66667,11.0,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-79.61667, 43.2]}",50911,215.0,Grimsby,Valid,H5,43.2,-79.61667,2009-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [45.38333, 43.66667]}",11206,3500.0,Grosnaja,Valid,CV3,43.66667,45.38333,1861-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [18.71667, 49.26667]}",11207,10500.0,Gross-Divina,Valid,H5,49.26667,18.71667,1837-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.58333, 46.35]}",11208,8000.0,Grossliebenthal,Valid,L6,46.35,30.58333,1881-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.5, 51.93333]}",11426,1000.0,Grüneberg,Valid,H4,51.93333,15.5,1841-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.63333, 52.86667]}",11429,690.0,Grzempach,Valid,H5,52.86667,16.63333,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-58.61667, -33]}",11432,22000.0,Gualeguaychú,Valid,H6,-33.0,-58.61667,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [122.76389, 39.80417]}",11435,2910.0,Guangmingshan,Valid,H5,39.80417,122.76389,1996-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [105, 24.1]}",11436,,Guangnan,Valid,L6,24.1,105.0,1983-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.4, 37.1]}",11437,1900.0,Guangrao,Valid,L6,37.1,118.4,1980-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.01667, 38.73333]}",11439,39000.0,Guareña,Valid,H6,38.73333,-6.01667,1892-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [20.23333, 43.76667]}",11440,1915.0,Guêa,Valid,Stone-uncl,43.76667,20.23333,1891-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.6833300000000001, 13.5]}",11442,288.0,Guibga,Valid,L5,13.5,-0.6833300000000001,1972-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.98333, 9.91667]}",11443,968.0,Guidder,Valid,LL5,9.91667,13.98333,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.05, 22.98333]}",11448,2449.0,Gujargaon,Valid,H5,22.98333,76.05,1982-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.65833, 11.49167]}",11449,100000.0,Gujba,Valid,CBa,11.49167,11.65833,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.7, 42.9]}",11450,5700.0,Gumoschnik,Valid,H5,42.9,24.7,1904-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.56667, 13.78333]}",11464,28.0,Gurram Konda,Valid,L6,13.78333,78.56667,1814-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [42.41667, 9.36667]}",11465,34650.0,Gursum,Valid,H4/5,9.36667,42.41667,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.38333, 51.91667]}",11466,1000.0,Gütersloh,Valid,H3/4,51.91667,8.38333,1851-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [127.5, 35]}",11467,1320.0,Gyokukei,Valid,OC,35.0,127.5,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.33333, 35.65]}",11468,0.2,Hachi-oji,Valid,H?,35.65,139.33333,1817-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.73333, 50.31667]}",11472,9000.0,Hainaut,Valid,H3-6,50.31667,3.73333,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.23333, 57.81667]}",11479,1456.0,Hallingeberg,Valid,L3.4,57.81667,16.23333,1944-01-01T00:00:00.000 35.0,1205.0,Fell,"{'type': 'Point', 'coordinates': [-86.6, 41.38333]}",11485,3710.0,Hamlet,Valid,LL4,41.38333,-86.6,1959-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.53333, 26.8]}",11824,1000.0,Haraiya,Valid,Eucrite-mmict,26.8,82.53333,1878-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.78333, 28.38333]}",11829,315.0,Haripura,Valid,CM2,28.38333,75.78333,1921-01-01T00:00:00.000 23.0,2025.0,Fell,"{'type': 'Point', 'coordinates': [-94.51167, 32.675]}",11830,8360.0,Harleton,Valid,L6,32.675,-94.51167,1961-01-01T00:00:00.000 35.0,1855.0,Fell,"{'type': 'Point', 'coordinates': [-86.16667, 38.25]}",11842,680.0,Harrison County,Valid,L6,38.25,-86.16667,1859-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.70033, 35.2945]}",11848,1110.6,Hashima,Valid,H4,35.2945,136.70033,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.8166700000000001, 28.95]}",11852,1250.0,Hassi-Jekna,Valid,"Iron, IAB-sHL",28.95,0.8166700000000001,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.51667, 51.65]}",11855,29000.0,Hatford,Valid,Stone-uncl,51.65,-1.51667,1628-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.06194, 60.24556]}",11859,1544.0,Haverö,Valid,Ureilite,60.24556,22.06194,1971-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.78333, 55.46667]}",11869,3500.0,Hedeskoga,Valid,H5,55.46667,13.78333,1922-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.66667, 27.33333]}",11870,6100.0,Hedjaz,Valid,L3.7-6,27.33333,35.66667,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-84.1, 10]}",11875,1000.0,Heredia,Valid,H5,10.0,-84.1,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [17.66667, 59.85]}",11878,20000.0,Hessle,Valid,H5,59.85,17.66667,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [130.43333, 33.6]}",11883,750.0,Higashi-koen,Valid,H5,33.6,130.43333,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-4.23333, 55.9]}",11884,4500.0,High Possil,Valid,L6,55.9,-4.23333,1804-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [132.38333, 34.45]}",11889,414.0,Hiroshima,Valid,H5,34.45,132.38333,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.47278, 1.345]}",44714,167.7,Hoima,Valid,H6,1.345,31.47278,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.2, 64.43333]}",11893,305.5,Hökmark,Valid,L4,64.43333,21.2,1954-01-01T00:00:00.000 7.0,990.0,Fell,"{'type': 'Point', 'coordinates': [-110.18333, 34.9]}",11894,220000.0,Holbrook,Valid,L/LL6,34.9,-110.18333,1912-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [38.41667, 9.06667]}",11895,1415.0,Holetta,Valid,Stone-uncl,9.06667,38.41667,1923-01-01T00:00:00.000 16.0,284.0,Fell,"{'type': 'Point', 'coordinates': [-91.86667, 41.8]}",11901,230000.0,Homestead,Valid,L5,41.8,-91.86667,1875-01-01T00:00:00.000 4.0,1657.0,Fell,"{'type': 'Point', 'coordinates': [-157.86667, 21.3]}",11904,2420.0,Honolulu,Valid,L5,21.3,-157.86667,1825-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.5, 35.66667]}",11913,180.0,Hotse,Valid,L6,35.66667,115.5,1956-01-01T00:00:00.000 17.0,1293.0,Fell,"{'type': 'Point', 'coordinates': [-100.45, 39.35]}",11915,266.1,Hoxie,Valid,OC,39.35,-100.45,1963-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.33333, 46.1]}",11916,49000.0,Hraschina,Valid,"Iron, IID",46.1,16.33333,1751-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [106.63241, 26.46469]}",54719,1600.0,Huaxi,Valid,H5,26.46469,106.63241,2010-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.91667, 50.3]}",11986,112.0,Hungen,Valid,H6,50.3,8.91667,1877-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.68333, 61.18333]}",11989,14000.0,Hvittis,Valid,EL6,61.18333,22.68333,1901-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.7, 52.28333]}",11992,2000.0,Ibbenbüren,Valid,Diogenite,52.28333,7.7,1870-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-45, -20]}",11993,2500.0,Ibitira,Valid,Eucrite-mmict,-20.0,-45.0,1957-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35, 38]}",11994,,Ibrisim,Valid,OC,38.0,35.0,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.93333, 58.2]}",11995,3973.0,Ichkala,Valid,H6,58.2,82.93333,1936-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.33333, -32.1]}",12000,3457.0,Idutywa,Valid,H5,-32.1,28.33333,1956-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-51.83333, -23.2]}",12003,1200.0,Iguaracu,Valid,H5,-23.2,-51.83333,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [145.36667, -6.03333]}",12004,7330.0,Ijopega,Valid,H6,-6.03333,145.36667,1975-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [46.66667, 39.75]}",12027,27000.0,Indarch,Valid,EH4,39.75,46.66667,1891-01-01T00:00:00.000 18.0,525.0,Fell,"{'type': 'Point', 'coordinates': [-94.4, 39.08333]}",12028,880.0,Independence,Valid,L6,39.08333,-94.4,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [112, 41]}",12037,3000.0,Inner Mongolia,Valid,L6,41.0,112.0,1963-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-111.3375, 53.415]}",12039,4576.0,Innisfree,Valid,L5,53.415,-111.3375,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-54.5, -25.5]}",12043,7000.0,Ipiranga,Valid,H6,-25.5,-54.5,1972-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.8, -8.93333]}",12049,1300.0,Ishinga,Valid,H,-8.93333,33.8,1954-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-57.95, -31.18333]}",12053,3050.0,Isthilart,Valid,H5,-31.18333,-57.95,1928-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-44.33333, -3.4]}",12056,2024.0,Itapicuru-Mirim,Valid,H5,-3.4,-44.33333,1879-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-12.95217, 26.59083]}",12058,4720.0,Itqiy,Valid,EH7-an,26.59083,-12.95217,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.43333, -8.41667]}",12063,704.5,Ivuna,Valid,CI1,-8.41667,32.43333,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.9, -32.5]}",12065,48000.0,Jackalsfontein,Valid,L6,-32.5,21.9,1903-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [68.41667, 26.75]}",12067,973.0,Jajh deh Kot Lalu,Valid,EL6,26.75,68.41667,1926-01-01T00:00:00.000 ,,Fell,,12068,700.0,Jalanash,Valid,Ureilite,,,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75, 31]}",12069,1967.0,Jalandhar,Valid,Iron,31.0,75.0,1621-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.33333, 18.75]}",12072,22.0,Jamkheir,Valid,H6,18.75,75.33333,1866-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [105.8, 39.7]}",12074,20500.0,Jartai,Valid,L6,39.7,105.8,1979-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [20.44167, 43.83333]}",12078,34000.0,Jelica,Valid,LL6,43.83333,20.44167,1889-01-01T00:00:00.000 ,,Fell,,12079,450.0,Jemlapur,Valid,L6,,,1901-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.05217, 46.42137]}",51589,3667.0,Jesenice,Valid,L6,46.42137,14.05217,2009-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.38333, 31.3]}",12085,5900.0,Jhung,Valid,L5,31.3,72.38333,1873-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [104.91667, 31.91667]}",12086,222.0,Jiange,Valid,H5,31.91667,104.91667,1964-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [109.5, 30.80833]}",12087,600000.0,Jianshi,Valid,"Iron, IIIAB",30.80833,109.5,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [126.16667, 44.05]}",12171,4000000.0,Jilin,Valid,H5,44.05,126.16667,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [70.31333, 22.68]}",47362,100.0,Jodiya,Valid,L5,22.68,70.31333,2006-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.4, 55.7]}",12173,30.0,Jodzie,Valid,Howardite,55.7,24.4,1877-01-01T00:00:00.000 9.0,1072.0,Fell,"{'type': 'Point', 'coordinates': [-104.9, 40.35]}",12198,40300.0,Johnstown,Valid,Diogenite,40.35,-104.9,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.83333, -11.85]}",12199,483.0,Jolomba,Valid,LL6,-11.85,15.83333,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.45, 45.43333]}",12202,5000.0,Jonzac,Valid,Eucrite-mmict,45.43333,-0.45,1819-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.41667, 35.5]}",12203,100000.0,Juancheng,Valid,H5,35.5,115.41667,1997-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.8, 12.85]}",12207,680.0,Judesegeri,Valid,H6,12.85,76.8,1876-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.2, -7.71667]}",12209,32490.0,Jumapalo,Valid,L6,-7.71667,111.2,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.8, 35.2]}",12210,950.0,Junan,Valid,L6,35.2,118.8,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.27, 38.74028]}",12213,25250.0,Juromenha,Valid,"Iron, IIIAB",38.74028,-7.27,1968-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.3, 44.71667]}",12214,91000.0,Juvinas,Valid,Eucrite-mmict,44.71667,4.3,1821-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.3, 47.35]}",12218,3000.0,Kaba,Valid,CV3,47.35,21.3,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.21667, 11.85]}",12220,13400.0,Kabo,Valid,H4,11.85,8.21667,1971-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.33333, 27.08333]}",12221,89.0,Kadonah,Valid,H6,27.08333,78.33333,1822-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79.96667, 27.25]}",12222,230.0,Kaee,Valid,H5,27.25,79.96667,1838-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.83333, 49.86667]}",12227,1900.0,Kagarlyk,Valid,L6,49.86667,30.83333,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [48.3, 15]}",12228,2000.0,Kaidun,Valid,CR2,15.0,48.3,1980-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [53.25, 55.43333]}",12229,200000.0,Kainsaz,Valid,CO3.2,55.43333,53.25,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.51667, 12.38333]}",12230,350.0,Kakangari,Valid,K3,12.38333,78.51667,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.66667, 45.13333]}",12231,577.0,Kakowa,Valid,L6,45.13333,21.66667,1858-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.5, -6.83333]}",12232,950.0,Kalaba,Valid,H4,-6.83333,29.5,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.98333, 17.83333]}",12236,4500.0,Kalumbi,Valid,L6,17.83333,73.98333,1879-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.46667, 26.03333]}",12238,2770.0,Kamalpur,Valid,L6,26.03333,81.46667,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.95667, 36.04167]}",12240,448.0,Kamiomi,Valid,H5,36.04167,139.95667,1913-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.8, 14.18333]}",12241,1293.0,Kamsagar,Valid,L6,14.18333,75.8,1902-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [65.78333, 31.6]}",12243,299.0,Kandahar (Afghanistan),Valid,L6,31.6,65.78333,1959-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.5, -7]}",12245,1630.0,Kangean,Valid,H5,-7.0,115.5,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.3, 32.08333]}",12246,400.0,Kangra Valley,Valid,H5,32.08333,76.3,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.63333, 4.7]}",12251,11355.0,Kapoeta,Valid,Howardite,4.7,33.63333,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.22329, 20.33916]}",47357,1600.0,Kaprada,Valid,L5/6,20.33916,73.22329,2004-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.36667, 42.45]}",12253,3500.0,Kaptal-Aryk,Valid,L6,42.45,73.36667,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.01667, 47.21667]}",12256,3000.0,Karakol,Valid,LL6,47.21667,81.01667,1840-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.58333, -3.5]}",12258,2220.0,Karatu,Valid,LL6,-3.5,35.58333,1963-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.15, 12.9]}",12260,180.0,Karewar,Valid,L6,12.9,7.15,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [67.16667, 27.8]}",12262,22000.0,Karkh,Valid,L6,27.8,67.16667,1905-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [71.6, 31.58333]}",12263,2950.0,Karloowala,Valid,L6,31.58333,71.6,1955-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.91667, -35.08333]}",12264,41730.0,Karoonda,Valid,CK4,-35.08333,139.91667,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.76667, 35.36667]}",12266,710.0,Kasamatsu,Valid,H,35.36667,136.76667,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.58333, 29.58333]}",30740,16820.0,Kasauli,Valid,H4,29.58333,77.58333,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.08333, 11.33333]}",35465,1500.0,Katagum,Valid,L6,11.33333,10.08333,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.81333, 25.14333]}",47351,6800.0,Kavarpura,Valid,"Iron, IIE-an",25.14333,75.81333,2006-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.78, 39.26333]}",12268,85000.0,Kayakent,Valid,"Iron, IIIAB",39.26333,31.78,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [112.01667, -7.75]}",12270,3300.0,Kediri,Valid,L4,-7.75,112.01667,1940-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.41822, 36.54194]}",53654,5760.0,Kemer,Valid,L4,36.54194,29.41822,2008-01-01T00:00:00.000 23.0,3190.0,Fell,"{'type': 'Point', 'coordinates': [-96, 29.45]}",12275,6937.0,Kendleton,Valid,L4,29.45,-96.0,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [86.70278, 20.4625]}",12276,6669.2,Kendrapara,Valid,H4-5,20.4625,86.70278,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.3, 48.4]}",12282,5000.0,Kerilis,Valid,H5,48.4,-3.3,1874-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.08333, 48.11667]}",12284,80000.0,Kernouve,Valid,H6,48.11667,-3.08333,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [141.61667, 38.98333]}",12286,135000.0,Kesen,Valid,H4,38.98333,141.61667,1850-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.3, 29.53333]}",12288,13600.0,Khairpur,Valid,EL6,29.53333,72.3,1873-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.11667, 25.55]}",12289,3698.0,Khanpur,Valid,LL5,25.55,83.11667,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.075, 50.625]}",12291,1500.0,Kharkov,Valid,L6,50.625,35.075,1787-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.88333, 26.95]}",12294,450.0,Kheragur,Valid,L6,26.95,77.88333,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.81667, 28.01667]}",12296,100.0,Khetri,Valid,H6,28.01667,75.81667,1867-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.33333, 56.75]}",12297,6109.0,Khmelevka,Valid,L5,56.75,75.33333,1929-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.53333, 25.1]}",12298,9700.0,Khohar,Valid,L3.6,25.1,81.53333,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [36, 16]}",12299,3200.0,Khor Temiki,Valid,Aubrite,16.0,36.0,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28, 14]}",12300,100000.0,Kidairat,Valid,H6,14.0,28.0,1983-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.15, 54.4]}",12301,737.6,Kiel,Valid,L6,54.4,10.15,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-11.33333, 16.58333]}",12303,1500.0,Kiffa,Valid,H5,16.58333,-11.33333,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [138.38333, 36.85]}",12305,331.0,Kijima (1906),Valid,Stone-uncl,36.85,138.38333,1906-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [34, 55]}",12306,195.0,Kikino,Valid,H6,55.0,34.0,1809-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.8, 12.76667]}",12307,19000.0,Kilabo,Valid,LL6,12.76667,9.8,2002-01-01T00:00:00.000 41.0,2971.0,Fell,"{'type': 'Point', 'coordinates': [-89.6, 43.58333]}",12308,772.0,Kilbourn,Valid,H5,43.58333,-89.6,1911-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.66667, 54.66667]}",12309,140.0,Killeter,Valid,H6,54.66667,-7.66667,1844-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.68333, 11.63333]}",12316,67.4,Kingai,Valid,H6,11.63333,24.68333,1967-01-01T00:00:00.000 23.0,2018.0,Fell,"{'type': 'Point', 'coordinates': [-95.95, 30.75]}",12321,97.7,Kirbyville,Valid,Eucrite-mmict,30.75,-95.95,1906-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.30833, 48.16667]}",12325,1550.0,Kisvarsány,Valid,L6,48.16667,22.30833,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-80.38333, 43.38333]}",12326,202.6,Kitchener,Valid,L6,43.38333,-80.38333,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.8, 51.6]}",12332,3250.0,Klein-Wenden,Valid,H6,51.6,10.8,1843-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.4, 48.9]}",12335,500000.0,Knyahinya,Valid,L/LL5,48.9,22.4,1866-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [135.16667, 34.73333]}",12336,136.0,Kobe,Valid,CK4,34.73333,135.16667,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [133.95, 34.3]}",12342,11510.0,Kokubunji,Valid,L6,34.3,133.95,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.75, 35.73333]}",12343,238.0,Komagome,Valid,Iron,35.73333,139.75,1926-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.16667, 42.51667]}",12344,90.0,Konovo,Valid,LL5,42.51667,26.16667,1931-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.17633, 48.76367]}",53810,4300.0,Košice,Valid,H5,48.76367,21.17633,2010-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.46472, 49.32694]}",12353,16500.0,Krähenberg,Valid,LL5,49.32694,7.46472,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [40.9, 54.03333]}",12355,2440.0,Krasnoi-Ugol,Valid,L6,54.03333,40.9,1829-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [56.08333, 54.33333]}",12357,4000.0,Krasnyi Klyuch,Valid,H5,54.33333,56.08333,1946-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77, 56.8]}",12363,845.2,Krutikha,Valid,OC,56.8,77.0,1906-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.76667, 47.83333]}",12364,50000.0,Krymka,Valid,LL3.2,47.83333,30.76667,1946-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.7, 51.15]}",12368,2250.0,Kukschin,Valid,L6,51.15,31.7,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [66.80222, 30.73111]}",12369,453.6,Kulak,Valid,L5,30.73111,66.80222,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.5, 50.75]}",12370,6000.0,Kuleschovka,Valid,L6,50.75,33.5,1811-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [45, 41.11667]}",12373,3719.0,Kulp,Valid,H6,41.11667,45.0,1906-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [61.36667, 55.78333]}",12377,200000.0,Kunashak,Valid,L6,55.78333,61.36667,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [59.2, 42.25]}",12379,1100000.0,Kunya-Urgench,Valid,H5,42.25,59.2,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [138.38333, 37.05]}",12381,4460.0,Kushiike,Valid,OC,37.05,138.38333,1920-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.38333, 29.68333]}",12382,5.0,Kusiali,Valid,L6,29.68333,78.38333,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [39.3, 44.51667]}",12383,23.0,Kutais,Valid,H5,44.51667,39.3,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.03333, 10.83333]}",12384,45000.0,Kuttippuram,Valid,L6,10.83333,76.03333,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.33333, 55.2]}",12385,4047.0,Kuznetzovo,Valid,L6,55.2,75.33333,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [130.63333, 32.03333]}",12390,45000.0,Kyushu,Valid,L6,32.03333,130.63333,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.75, 47.08333]}",12392,2800.0,La Bécasse,Valid,L6,47.08333,1.75,1879-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-101.28333, 20.66667]}",12394,399.0,La Charca,Valid,OC,20.66667,-101.28333,1878-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-61.53333, -37.33333]}",12395,2000.0,La Colina,Valid,H5,-37.33333,-61.53333,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-58.16667, -31.23333]}",12396,45000.0,La Criolla,Valid,L6,-31.23333,-58.16667,1985-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.58333, 44.28333]}",12408,3833.0,Laborel,Valid,H5,44.28333,5.58333,1871-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.71667, 26.78333]}",12433,900.0,Lahrauli,Valid,Ureilite,26.78333,82.71667,1955-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.6333300000000001, 48.76667]}",12434,37000.0,L'Aigle,Valid,L6,48.76667,0.6333300000000001,1803-01-01T00:00:00.000 ,,Found,,32531,9.6,Cumulus Hills 04075,Valid,Pallasite,,,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.03333, 21.86667]}",12435,212.5,Lakangaon,Valid,Eucrite-mmict,21.86667,76.03333,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.56667, 24.45]}",12451,372.0,Lalitpur,Valid,L6,24.45,78.56667,1887-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.06667, 47.7]}",12455,51700.0,Lancé,Valid,CO3.5,47.7,1.06667,1872-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.11667, 43.75]}",12456,7000.0,Lancon,Valid,H6,43.75,5.11667,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.73333, 58.85]}",12461,2300.0,Långhalsen,Valid,L6,58.85,16.73333,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [126.19611, 46.24167]}",12464,1282.0,Lanxi,Valid,L6,46.24167,126.19611,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.23333, 47.75]}",12465,7000.0,Lanzenkirchen,Valid,L4,47.75,16.23333,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.16667, 33.13333]}",12466,14250.0,Laochenzhen,Valid,H5,33.13333,115.16667,1987-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.11667, 51.9]}",12740,1060.0,Launton,Valid,L6,51.9,-1.11667,1830-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [51.56667, 52.45]}",12743,800.0,Lavrentievka,Valid,L6,52.45,51.56667,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.43333000000000005, 47.16667]}",12748,3000.0,Le Pressoir,Valid,H5,47.16667,0.43333000000000005,1845-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.86667, 48.53333]}",12749,780.0,Le Teilleul,Valid,Howardite,48.53333,-0.86667,1845-01-01T00:00:00.000 20.0,608.0,Fell,"{'type': 'Point', 'coordinates': [-99.33333, 35.88333]}",12755,51500.0,Leedey,Valid,L6,35.88333,-99.33333,1943-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.36667, -25.66667]}",12756,460.0,Leeuwfontein,Valid,L6,-25.66667,28.36667,1912-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.96667, 52.66667]}",12759,271.4,Leighlinbridge,Valid,L6,52.66667,-6.96667,1999-01-01T00:00:00.000 29.0,1585.0,Fell,"{'type': 'Point', 'coordinates': [-87.5, 34.58333]}",12760,877.0,Leighton,Valid,H5,34.58333,-87.5,1907-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.85, 52.26667]}",12765,700.0,Leonovka,Valid,L6,52.26667,32.85,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.25, 48.35]}",12769,125.0,Les Ormes,Valid,L6,48.35,3.25,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.7333300000000005, 50.36667]}",12772,2000.0,Lesves,Valid,L6,50.36667,4.7333300000000005,1896-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.18333, -26.15]}",14646,4000.0,Lichtenberg,Valid,H6,-26.15,26.18333,1973-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.86667, 56.65]}",14650,6862.0,Lillaverke,Valid,H5,56.65,15.86667,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.78333, 52.56667]}",14652,50000.0,Limerick,Valid,H5,52.56667,-8.78333,1813-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.9, 52.75]}",14655,1862.0,Linum,Valid,L6,52.75,12.9,1854-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.98333, 31.63333]}",14659,498.0,Lishui,Valid,L5,31.63333,118.98333,1978-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.85, 50.2]}",14661,12800.0,Lissa,Valid,L6,50.2,14.85,1808-01-01T00:00:00.000 18.0,2171.0,Fell,"{'type': 'Point', 'coordinates': [-92.08333, 37.91667]}",14664,491.0,Little Piney,Valid,L5,37.91667,-92.08333,1839-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.43333, 56]}",14670,5213.0,Lixna,Valid,H4,56.0,26.43333,1820-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [71.8, 29.53333]}",14675,1000.0,Lodran,Valid,Lodranite,29.53333,71.8,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.62667, 26.96556]}",14678,40000.0,Lohawat,Valid,Howardite,26.96556,72.62667,1994-01-01T00:00:00.000 40.0,2770.0,Fell,"{'type': 'Point', 'coordinates': [-77.21163, 38.70066]}",52843,329.7,Lorton,Valid,L6,38.70066,-77.21163,2010-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.83333, 38]}",14708,25.0,Los Martinez,Valid,L6,38.0,-0.83333,1894-01-01T00:00:00.000 20.0,2711.0,Fell,"{'type': 'Point', 'coordinates': [-95.15, 36.00833]}",14711,17000.0,Lost City,Valid,H5,36.00833,-95.15,1970-01-01T00:00:00.000 36.0,1327.0,Fell,"{'type': 'Point', 'coordinates': [-85.75, 38.25]}",14716,1300.0,Louisville,Valid,L6,38.25,-85.75,1977-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [19.91667, 52]}",14718,59000.0,Łowicz,Valid,Mesosiderite-A3,52.0,19.91667,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.15, 24.95]}",14721,9241.0,Lua,Valid,L5,24.95,75.15,1926-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.48333000000000004, 47.85]}",14724,3500.0,Lucé,Valid,L6,47.85,0.48333000000000004,1768-01-01T00:00:00.000 31.0,1567.0,Fell,"{'type': 'Point', 'coordinates': [-84.76667, 32.03333]}",14753,340.0,Lumpkin,Valid,L6,32.03333,-84.76667,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [103.3, 24.8]}",14754,2520.0,Lunan,Valid,H6,24.8,103.3,1980-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.03333, 56.21667]}",14755,11000.0,Lundsgård,Valid,L6,56.21667,13.03333,1889-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.7, 61.2]}",14756,885.0,Luotolax,Valid,Howardite,61.2,27.7,1813-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5, 46.21667]}",14757,14000.0,Luponnas,Valid,H3-5,46.21667,5.0,1753-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.43333, -7.21667]}",14759,,Lusaka,Valid,Unknown,-7.21667,29.43333,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [97, 19]}",14764,540.0,Mabwe-Khoywa,Valid,L5,19.0,97.0,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-36.66667, -5.2]}",15370,1500.0,Macau,Valid,H5,-5.2,-36.66667,1836-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.24222, -15.21222]}",15371,93200.0,Machinga,Valid,L6,-15.21222,35.24222,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.95, -28.83333]}",15372,1995.0,Macibini,Valid,Eucrite-pmict,-28.83333,31.95,1936-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [86.36667, 25.91667]}",15379,1000.0,Madhipura,Valid,L,25.91667,86.36667,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.53333, -7.75]}",15380,400.0,Madiun,Valid,L6,-7.75,111.53333,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.71667, 40.41667]}",15382,400.0,Madrid,Valid,L6,40.41667,-3.71667,1896-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-49.93333, -26.16667]}",15383,600.0,Mafra,Valid,L3-4,-26.16667,-49.93333,1941-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.51667, 37.86667]}",15386,5000.0,Magnesia,Valid,"Iron, IAB-sHL",37.86667,27.51667,1899-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.65, -19.48333]}",15387,666.6,Magombedze,Valid,H3-5,-19.48333,31.65,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [95.78333, 27.66667]}",47361,70500.0,Mahadevpur,Valid,H4/5,27.66667,95.78333,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.38333, 12.83333]}",30751,4629.0,Maigatari-Danduma,Valid,H5/6,12.83333,9.38333,2004-01-01T00:00:00.000 11.0,611.0,Fell,"{'type': 'Point', 'coordinates': [-104, 32.21667]}",15393,150.0,Malaga,Valid,OC,32.21667,-104.0,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.75, 9.5]}",15394,2000.0,Malakal,Valid,L5,9.5,31.75,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.51667, -3.13333]}",15395,470.0,Malampaka,Valid,H,-3.13333,33.51667,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-63.23333, -28.93333]}",15397,,Malotas,Valid,H5,-28.93333,-63.23333,1931-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.76667, -29.45]}",15400,807.0,Malvern,Valid,Eucrite-pmict,-29.45,26.76667,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [62.08333, 45.21667]}",15401,1000.0,Mamra Springs,Valid,L6,45.21667,62.08333,1927-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [86.7, 23.05]}",15402,1700.0,Manbhoom,Valid,LL6,23.05,86.7,1863-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.1, 20.96667]}",15403,50.0,Manegaon,Valid,Diogenite,20.96667,76.1,1843-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.6, -17.65]}",15405,22300.0,Mangwendi,Valid,LL6,-17.65,31.6,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [44.63333, 45.81667]}",15409,3555.0,Manych,Valid,LL3.4,45.81667,44.63333,1951-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.08333, 34.23333]}",15414,4500.0,Mardan,Valid,H5,34.23333,72.08333,1948-01-01T00:00:00.000 ,,Fell,,15418,114.0,Maria Linden,Valid,L4,,,1925-01-01T00:00:00.000 19.0,471.0,Fell,"{'type': 'Point', 'coordinates': [-99.38333, 42.71667]}",15419,340.0,Mariaville,Valid,Iron,42.71667,-99.38333,1898-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.46745, 54.76183]}",48973,25.81,Maribo,Valid,CM2,54.76183,11.46745,2009-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.25, 4.66667]}",15421,3200.0,Maridi,Valid,H6,4.66667,29.25,1941-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-49.93333, -22.25]}",15422,2500.0,Marilia,Valid,H4,-22.25,-49.93333,1971-01-01T00:00:00.000 16.0,287.0,Fell,"{'type': 'Point', 'coordinates': [-91.6, 41.9]}",15424,28400.0,Marion (Iowa),Valid,L6,41.9,-91.6,1847-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.5, 61.5]}",15426,45000.0,Marjalahti,Valid,"Pallasite, PMG",61.5,30.5,1902-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.15, 44.5]}",15429,3000.0,Marmande,Valid,L5,44.5,0.15,1848-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [48.1, -14.2]}",15430,6000.0,Maromandia,Valid,L6,-14.2,48.1,2002-01-01T00:00:00.000 39.0,2740.0,Fell,"{'type': 'Point', 'coordinates': [-84.1, 35.8]}",15436,1443.0,Maryville,Valid,L6,35.8,-84.1,1983-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.86667, 45.36667]}",15438,1000.0,Mascombes,Valid,L6,45.36667,1.86667,1836-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0, 0]}",53653,24.54,Mason Gully,Valid,H5,0.0,0.0,2010-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.61667, 48.13333]}",15443,1600.0,Mässing,Valid,Howardite,48.13333,12.61667,1803-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.13333, 48.18333]}",15446,19000.0,Mauerkirchen,Valid,L6,48.18333,13.13333,1768-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [57, -20]}",15447,220.0,Mauritius,Valid,L6,-20.0,57.0,1801-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.08333, 8.96667]}",15451,4850.0,Mayo Belwa,Valid,Aubrite,8.96667,12.08333,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-101.68333, 24.68333]}",15453,4000.0,Mazapil,Valid,"Iron, IAB-sLL",24.68333,-101.68333,1885-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30, -1.2166700000000001]}",15454,4975.0,Maziba,Valid,L6,-1.2166700000000001,30.0,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [34.16667, 1.06667]}",15455,150000.0,Mbale,Valid,L5/6,1.06667,34.16667,1992-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-67.5, -27.25]}",15467,31.0,Medanitos,Valid,Eucrite-cm,-27.25,-67.5,1953-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.8, 29.01667]}",15469,22.0,Meerut,Valid,H5,29.01667,77.8,1861-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [106.88333, -6.23333]}",15470,24750.0,Meester-Cornelis,Valid,H5,-6.23333,106.88333,1915-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.15, 53.18333]}",15485,10500.0,Menow,Valid,H4,53.18333,13.15,1862-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.21817, 46.81867]}",15486,28.9,Menziswyl,Valid,L5,46.81867,7.21817,1903-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.06667, 55.05]}",15489,4000.0,Mern,Valid,L6,55.05,12.06667,1878-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.66667, 0]}",15491,6000.0,Meru,Valid,LL6,0.0,37.66667,1945-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [81.98333, 25.48333]}",15492,71400.0,Merua,Valid,H5,25.48333,81.98333,1920-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.56667, 38.18333]}",15495,2405.0,Messina,Valid,L5,38.18333,15.56667,1955-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.1, 50.58333]}",16626,870.0,Meuselbach,Valid,L6,50.58333,11.1,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.25, 45.76667]}",16627,1300.0,Mezel,Valid,L6,45.76667,3.25,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.73333, 46.5]}",16628,22700.0,Mezö-Madaras,Valid,L3.7,46.5,25.73333,1852-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.61667, 25.9]}",16629,350.0,Mhow,Valid,L6,25.9,83.61667,1827-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.7, 34.8]}",16631,1100.0,Mianchi,Valid,H5,34.8,111.7,1980-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.16667, 54.56667]}",16632,1600.0,Middlesbrough,Valid,L6,54.56667,-1.16667,1881-01-01T00:00:00.000 41.0,2996.0,Fell,"{'type': 'Point', 'coordinates': [-90.36556, 42.9075]}",52090,3584.0,Mifflin,Valid,L5,42.9075,-90.36556,2010-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.96667, 48.06667]}",16634,8000.0,Mighei,Valid,CM2,48.06667,30.96667,1889-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [133.22, 35.56833]}",16635,6380.0,Mihonoseki,Valid,L6,35.56833,133.22,1992-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [17.53333, 46.23333]}",16636,224.2,Mike,Valid,L6,46.23333,17.53333,1944-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.1, 46.18333]}",16640,10000.0,Milena,Valid,L6,46.18333,16.1,1842-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.36667, -26.45]}",16643,330000.0,Millbillillie,Valid,Eucrite-mmict,-26.45,120.36667,1960-01-01T00:00:00.000 15.0,11.0,Fell,"{'type': 'Point', 'coordinates': [-92.05, 35.4]}",16645,16700.0,Miller (Arkansas),Valid,H5,35.4,-92.05,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.93333, 35.07833]}",16692,1040.0,Minamino,Valid,L,35.07833,136.93333,1632-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.7, 37.28333]}",16696,42.0,Mineo,Valid,Pallasite,37.28333,14.7,1826-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.66667, 32.33333]}",16697,5500.0,Min-Fan-Zhun,Valid,LL6,32.33333,120.66667,1952-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.6, 47.7]}",16700,550.0,Minnichhof,Valid,OC,47.7,16.6,1905-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.25, 25.68333]}",16701,8510.0,Mirzapur,Valid,L5,25.68333,83.25,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23, 56.66667]}",16703,5800.0,Misshof,Valid,H5,56.66667,23.0,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.93333, 61.73333]}",16707,100.7,Mjelleim,Valid,H,61.73333,5.93333,1898-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [24.03333, 46.8]}",16709,300000.0,Mocs,Valid,L5-6,46.8,24.03333,1882-01-01T00:00:00.000 17.0,1290.0,Fell,"{'type': 'Point', 'coordinates': [-101.1, 38.5]}",16711,35000.0,Modoc (1905),Valid,L6,38.5,-101.1,1905-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [174.4, -39.63333]}",16713,4500.0,Mokoia,Valid,CV3,-39.63333,174.4,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.16667, 38.11667]}",16715,144000.0,Molina,Valid,H5,38.11667,-1.16667,1858-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.46667, -31.25]}",16717,150.0,Molteno,Valid,Howardite,-31.25,26.46667,1953-01-01T00:00:00.000 23.0,2957.0,Fell,"{'type': 'Point', 'coordinates': [-102.85833, 31.60833]}",16719,2587.0,Monahans (1998),Valid,H5,31.60833,-102.85833,1998-01-01T00:00:00.000 37.0,636.0,Fell,"{'type': 'Point', 'coordinates': [-80.5, 35.25]}",16720,8600.0,Monroe,Valid,H4,35.25,-80.5,1849-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.25, 38.01667]}",16725,4885.0,Monte das Fortes,Valid,L5,38.01667,-8.25,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.35, 43.26667]}",16726,3130.0,Monte Milone,Valid,L5,43.26667,13.35,1846-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.9625, 43.39056]}",16727,149000.0,Montferré,Valid,H5,43.39056,1.9625,1923-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.5833300000000001, 47.63333]}",16729,500.0,Montlivault,Valid,L6,47.63333,1.5833300000000001,1838-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.35, -15.96667]}",16733,,Monze,Valid,L6,-15.96667,27.35,1950-01-01T00:00:00.000 37.0,2431.0,Fell,"{'type': 'Point', 'coordinates': [-79.38333, 35.41667]}",16736,1880.0,Moore County,Valid,Eucrite-cm,35.41667,-79.38333,1913-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.33333, 52.45]}",16737,3520.0,Mooresfort,Valid,H5,52.45,-8.33333,1810-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [145.6, -40.975]}",16738,8887.5,Moorleah,Valid,L6,-40.975,145.6,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.83333, 28.78333]}",16740,70.0,Moradabad,Valid,L6,28.78333,78.83333,1808-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [18.53333, 49.6]}",16742,633.0,Morávka,Valid,H5,49.6,18.53333,2000-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.13333, 44.6]}",16747,1300.0,Mornans,Valid,H5,44.6,5.13333,1875-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.7, 59.43333]}",36592,3763.0,Moss,Valid,CO3.6,59.43333,10.7,2006-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.33333, 26.83333]}",16759,1500.0,Moti-ka-nagla,Valid,H6,26.83333,77.33333,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.5, 45.2]}",16762,9150.0,Motta di Conti,Valid,H4,45.2,8.5,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [141.7, -29.8]}",16766,11300.0,Mount Browne,Valid,H6,-29.8,141.7,1902-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.8, 18.7]}",16804,110000.0,Mount Tazerzait,Valid,L5,18.7,4.8,1991-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.86667, 44.08333]}",16805,17000.0,Mount Vaisi,Valid,Stone-uncl,44.08333,6.86667,1637-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.5, -11.5]}",16820,1100.0,Mtola,Valid,Stone-uncl,-11.5,33.5,1944-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.01667, 12.63333]}",16841,4400.0,Muddoor,Valid,L5,12.63333,77.01667,1865-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [80.83333, 9.33333]}",16851,25.5,Mulletiwu,Valid,L,9.33333,80.83333,1795-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [90.21667, 24.5]}",16874,4703.0,Muraid,Valid,L6,24.5,90.21667,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [145.2, -36.61667]}",16875,100000.0,Murchison,Valid,CM2,-36.61667,145.2,1969-01-01T00:00:00.000 36.0,237.0,Fell,"{'type': 'Point', 'coordinates': [-88.1, 36.6]}",16882,12600.0,Murray,Valid,CM2,36.6,-88.1,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [85.53333, 26.13333]}",16885,1245.0,Muzaffarpur,Valid,"Iron, IAB-sHL",26.13333,85.53333,1964-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.63333, 23.05]}",16887,,Myhee Caunta,Valid,OC,23.05,72.63333,1842-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1, 12]}",16889,8165.0,Nadiabondi,Valid,H5,12.0,1.0,1956-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [140.06167, 38.12167]}",16890,1810.0,Nagai,Valid,L6,38.12167,140.06167,1922-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.21667, 26.98333]}",16892,20.0,Nagaria,Valid,Eucrite-cm,26.98333,78.21667,1875-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [19.5, 49.16667]}",16893,6100.0,Nagy-Borové,Valid,L5,49.16667,19.5,1895-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.35, 31.31667]}",16898,10000.0,Nakhla,Valid,Martian (nakhlite),31.31667,30.35,1911-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [100.08333, 13.73333]}",16899,23200.0,Nakhon Pathom,Valid,L6,13.73333,100.08333,1923-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79.2, 12.28333]}",16902,4500.0,Nammianthal,Valid,H5,12.28333,79.2,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [103.5, 35.66667]}",16903,52900.0,Nan Yang Pao,Valid,L6,35.66667,103.5,1917-01-01T00:00:00.000 45.0,419.0,Fell,"{'type': 'Point', 'coordinates': [-77.16667, 38.41667]}",16904,7500.0,Nanjemoy,Valid,H6,38.41667,-77.16667,1825-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [121.8, 32.11667]}",16907,529.0,Nantong,Valid,H6,32.11667,121.8,1984-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77, 19.25]}",16908,17000.0,Naoki,Valid,H6,19.25,77.0,1928-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [51.5, 33.75]}",16909,2700.0,Naragh,Valid,H6,33.75,51.5,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [150.68889, -34.05]}",16912,367.5,Narellan,Valid,L6,-34.05,150.68889,1928-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.51667, 42.51667]}",16914,,Narni,Valid,Stone-uncl,42.51667,12.51667,0921-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [165.9, -21.73333]}",16922,347.0,Nassirah,Valid,H4,-21.73333,165.9,1936-01-01T00:00:00.000 ,,Fell,,16923,1.4,Natal,Valid,Stone-uncl,,,1973-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.66667, 21.25]}",16927,105.0,Nawapali,Valid,CM2,21.25,83.66667,1890-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.46528, 36.44917]}",16934,420.0,Neagari,Valid,L6,36.44917,136.46528,1995-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [83.48333, 18.68333]}",16935,4500.0,Nedagolla,Valid,"Iron, ungrouped",18.68333,83.48333,1870-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.33333, 9.5]}",16941,2450.0,Nejo,Valid,L6,9.5,35.33333,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.5, 56.5]}",16945,10250.0,Nerft,Valid,L6,56.5,21.5,1864-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.80833, 47.525]}",16950,6189.0,Neuschwanstein,Valid,EL6,47.525,10.80833,2002-01-01T00:00:00.000 38.0,2615.0,Fell,"{'type': 'Point', 'coordinates': [-81.76667, 40]}",16953,230000.0,New Concord,Valid,L6,40.0,-81.76667,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.68333, 15.36667]}",16954,12000.0,New Halfa,Valid,L4,15.36667,35.68333,1994-01-01T00:00:00.000 22.0,1667.0,Fell,"{'type': 'Point', 'coordinates': [-90.10976, 29.94718]}",16960,19256.0,New Orleans,Valid,H5,29.94718,-90.10976,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.41667, -7.45]}",16966,1393.0,Ngawi,Valid,LL3.6,-7.45,111.41667,1883-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-4.38333, 13.85]}",16968,37500.0,N'Goureyma,Valid,"Iron, ungrouped",13.85,-4.38333,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.43333, 49.03333]}",16970,,Nicorps,Valid,Stone-uncl,49.03333,-1.43333,1750-01-01T00:00:00.000 ,,Fell,,16974,3.3,Niger (L6),Valid,L6,,,1967-01-01T00:00:00.000 ,,Fell,,16975,3.3,Niger (LL6),Valid,LL6,,,1967-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.63333, 52.45]}",16976,3996.0,Nikolaevka,Valid,H4,52.45,78.63333,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.33333, 56.11667]}",16977,6000.0,Nikolskoe,Valid,L4,56.11667,37.33333,1954-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [121.48333, 29.86667]}",16980,14250.0,Ningbo,Valid,"Iron, IVA",29.86667,121.48333,1975-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [105.90667, 32.925]}",16981,4610.0,Ningqiang,Valid,C3-ung,32.925,105.90667,1983-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [131.56667, 34.2]}",16982,467.0,Nio,Valid,H3-4,34.2,131.56667,1897-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [30.7, -28.56667]}",16983,17200.0,N'Kandhla,Valid,"Iron, IID",-28.56667,30.7,1912-01-01T00:00:00.000 49.0,1683.0,Fell,"{'type': 'Point', 'coordinates': [-69.48333, 44.08333]}",16984,2300.0,Nobleborough,Valid,Eucrite-pmict,44.08333,-69.48333,1823-01-01T00:00:00.000 35.0,2238.0,Fell,"{'type': 'Point', 'coordinates': [-86.055, 40.08528]}",16985,483.7,Noblesville,Valid,H4-6,40.08528,-86.055,1991-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [130.75, 33.725]}",16988,472.0,Nogata,Valid,L6,33.725,130.75,0861-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-59.83333, -32.36667]}",16989,4000.0,Nogoya,Valid,CM2,-32.36667,-59.83333,1879-01-01T00:00:00.000 15.0,10.0,Fell,"{'type': 'Point', 'coordinates': [-92.26667, 36.21667]}",16994,1050.0,Norfork,Valid,"Iron, IIIAB",36.21667,-92.26667,1918-01-01T00:00:00.000 17.0,1252.0,Fell,"{'type': 'Point', 'coordinates': [-99.86667, 39.68333]}",17922,1100000.0,Norton County,Valid,Aubrite,39.68333,-99.86667,1948-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.52722, 45.29167]}",17930,177.0,Noventa Vicentina,Valid,H4,45.29167,11.52722,1971-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [46, 54.81667]}",17933,1900.0,Novo-Urei,Valid,Ureilite,54.81667,46.0,1886-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [31.33333, 58.55]}",17934,,Novy-Ergi,Valid,Stone-uncl,58.55,31.33333,1662-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22, 56]}",17935,1001.0,Novy-Projekt,Valid,OC,56.0,22.0,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [102.46667, 42.91667]}",17936,250.0,Noyan-Bogdo,Valid,L6,42.91667,102.46667,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-102.13333, 24.3]}",17938,50000.0,Nuevo Mercurio,Valid,H5,24.3,-102.13333,1978-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.75, 41.63333]}",17959,5000.0,Nulles,Valid,H6,41.63333,0.75,1851-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [141.86667, 43.33333]}",17960,363.0,Numakai,Valid,H4,43.33333,141.86667,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [94.91667, 21.20833]}",17969,737.6,Nyaung,Valid,"Iron, IIIAB",21.20833,94.91667,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.025, 47.55]}",17970,1100.0,Nyirábrany,Valid,LL5,47.55,22.025,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [55.26667, 57.78333]}",17979,500000.0,Ochansk,Valid,H4,57.78333,55.26667,1887-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.05, 52.28333]}",17988,1400.0,Oesede,Valid,H5,52.28333,8.05,1927-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23, 58.5]}",17989,6000.0,Oesel,Valid,L6,58.5,23.0,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.03333, 47.88333]}",17990,3750.0,Ofehértó,Valid,L6,47.88333,22.03333,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [130.2, 33.28333]}",17994,14360.0,Ogi,Valid,H6,33.28333,130.2,1741-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23.58333, 46.06667]}",17995,16250.0,Ohaba,Valid,H5,46.06667,23.58333,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.5, 6.75]}",17996,7700.0,Ohuma,Valid,L5,6.75,8.5,1963-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.4, 38.18333]}",17997,5850.0,Ojuelos Altos,Valid,L6,38.18333,-5.4,1926-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.21667, 36.18333]}",17998,194.0,Okabe,Valid,H5,36.18333,139.21667,1958-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [135.2, 35.08333]}",18000,4742.0,Okano,Valid,"Iron, IIAB",35.08333,135.2,1904-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.5, 50.83333]}",18002,12000.0,Okniny,Valid,LL6,50.83333,25.5,1834-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8.16667, 52.95]}",18009,16570.0,Oldenburg (1930),Valid,L6,52.95,8.16667,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.033330000000000005, 39]}",18012,,Oliva-Gandia,Valid,Stone-uncl,39.0,-0.033330000000000005,1520-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.06667, 38.71667]}",18013,150000.0,Olivenza,Valid,LL5,38.71667,-7.06667,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.1, 39.56667]}",18015,40000.0,Olmedilla de Alarcón,Valid,H5,39.56667,-2.1,1929-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [161.80833, 64.02]}",18019,250000.0,Omolon,Valid,"Pallasite, PMG",64.02,161.80833,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.38333, 43.88333]}",18026,14000.0,Orgueil,Valid,CI1,43.88333,1.38333,1864-01-01T00:00:00.000 30.0,1078.0,Fell,"{'type': 'Point', 'coordinates': [-81.36222, 28.5475]}",34489,180.0,Orlando,Valid,Eucrite,28.5475,-81.36222,2004-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.15, 47.11667]}",18030,6000.0,Ornans,Valid,CO3.4,47.11667,6.15,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [8, 48.5]}",18033,4500.0,Ortenau,Valid,Stone-uncl,48.5,8.0,1671-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.93333, 42.13333]}",18034,3400.0,Orvinio,Valid,H6,42.13333,12.93333,1872-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.4, 58.88333]}",18042,246.0,Oterøy,Valid,L6,58.88333,9.4,1928-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [140.35, 38.4]}",18045,6510.0,Otomi,Valid,H,38.4,140.35,1867-01-01T00:00:00.000 17.0,1947.0,Fell,"{'type': 'Point', 'coordinates': [-95.21667, 38.6]}",18046,840.0,Ottawa,Valid,LL6,38.6,-95.21667,1896-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.08, 12.9]}",56729,4440.0,Ouadangou,Valid,L5,12.9,0.08,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.57717, 30.18]}",18050,1215.5,Oued el Hadjar,Valid,LL6,30.18,-6.57717,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-13.1, 24.3]}",31282,17000.0,Oum Dreyga,Valid,H3-5,24.3,-13.1,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8.28, 37.60833]}",18052,20000.0,Ourique,Valid,H4,37.60833,-8.28,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16, -18]}",18055,121.5,Ovambo,Valid,L6,-18.0,16.0,1900-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.86667, 43.4]}",18058,205.0,Oviedo,Valid,H5,43.4,-5.86667,1856-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.83333, 51.33333]}",18062,,Owrucz,Valid,OC,51.33333,28.83333,1775-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-99.3, 21.05]}",18068,3400.0,Pacula,Valid,L6,21.05,-99.3,1881-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25, 55.66667]}",18069,3858.0,Padvarninkai,Valid,Eucrite-mmict,55.66667,25.0,1929-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.45583, 17.74333]}",18072,515.0,Paitan,Valid,H6,17.74333,120.45583,1910-01-01T00:00:00.000 32.0,503.0,Fell,"{'type': 'Point', 'coordinates': [-89.71667, 32.31667]}",18073,,Palahatchie,Valid,OC,32.31667,-89.71667,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-65.1, -23.11667]}",18074,1430.0,Palca de Aparzo,Valid,L5,-23.11667,-65.1,1988-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.61667, 43.48333]}",18077,18000.0,Palinshih,Valid,Iron,43.48333,118.61667,1914-01-01T00:00:00.000 18.0,2122.0,Fell,"{'type': 'Point', 'coordinates': [-91.5, 39.8]}",18079,135.0,Palmyra,Valid,L3,39.8,-91.5,1926-01-01T00:00:00.000 4.0,1657.0,Fell,"{'type': 'Point', 'coordinates': [-157.78333, 21.3]}",18082,682.0,Palolo Valley,Valid,H5,21.3,-157.78333,1949-01-01T00:00:00.000 ,,Found,,32591,69.5,Dominion Range 03239,Valid,L6,,,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.7, 15.08333]}",18093,10500.0,Pampanga,Valid,L5,15.08333,120.7,1859-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [124.28333, 8.06667]}",18098,2130.0,Pantar,Valid,H5,8.06667,124.28333,1938-01-01T00:00:00.000 15.0,1023.0,Fell,"{'type': 'Point', 'coordinates': [-90.5, 36.06667]}",18101,408000.0,Paragould,Valid,LL5,36.06667,-90.5,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-40.7, -6.23333]}",18102,2000.0,Parambu,Valid,LL5,-6.23333,-40.7,1967-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-51.66667, -19.13333]}",18103,100000.0,Paranaiba,Valid,L6,-19.13333,-51.66667,1956-01-01T00:00:00.000 34.0,1863.0,Fell,"{'type': 'Point', 'coordinates': [-87.67917, 41.48472]}",18106,18000.0,Park Forest,Valid,L5,41.48472,-87.67917,2003-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.35, 9.23333]}",18108,77600.0,Parnallee,Valid,LL3.6,9.23333,78.35,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [85.4, 26.2]}",18109,800.0,Parsa,Valid,EH3,26.2,85.4,1942-01-01T00:00:00.000 11.0,1994.0,Fell,"{'type': 'Point', 'coordinates': [-103.4, 36.21667]}",18110,5100.0,Pasamonte,Valid,Eucrite-pmict,36.21667,-103.4,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.05, 20.93694]}",18112,4375.0,Patora,Valid,H6,20.93694,82.05,1969-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-48.56667, -19.53333]}",18116,2121.0,Patrimonio,Valid,L6,-19.53333,-48.56667,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.96667, 38.13333]}",18118,12.0,Patti,Valid,Iron,38.13333,14.96667,1922-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [91.18333, 23.15]}",18171,37350.0,Patwar,Valid,Mesosiderite-A1,23.15,91.18333,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.51667, 43.46667]}",18173,2968.0,Pavel,Valid,H5,43.46667,25.51667,1966-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [77.03333, 52.3]}",18175,142.5,Pavlodar (stone),Valid,H5,52.3,77.03333,1938-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.98333, 48.53333]}",18176,40000.0,Pavlograd,Valid,L6,48.53333,35.98333,1826-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [43, 52.03333]}",18177,2000.0,Pavlovka,Valid,Howardite,52.03333,43.0,1882-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.54217, 11.33367]}",18179,,Pê,Valid,L6,11.33367,-3.54217,1989-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-117.93333, 56.13333]}",18180,45760.0,Peace River,Valid,L6,56.13333,-117.93333,1963-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.25, 51.66667]}",18181,117.8,Peckelsheim,Valid,Diogenite-pm,51.66667,9.25,1953-01-01T00:00:00.000 47.0,2185.0,Fell,"{'type': 'Point', 'coordinates': [-73.91667, 41.28333]}",18782,12570.0,Peekskill,Valid,H6,41.28333,-73.91667,1992-01-01T00:00:00.000 23.0,3062.0,Fell,"{'type': 'Point', 'coordinates': [-103.11667, 30.125]}",18786,70000.0,Peña Blanca Spring,Valid,Aubrite,30.125,-103.11667,1946-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.5, -10.66667]}",18792,165.0,Peramiho,Valid,Eucrite-mmict,-10.66667,35.5,1899-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [91, 23.325]}",18793,23474.0,Perpeti,Valid,L6,23.325,91.0,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.43333, 56.4]}",18797,2.0,Perth,Valid,LL5,56.4,-3.43333,1830-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [39.43333, 56.63333]}",18798,66000.0,Pervomaisky,Valid,L6,56.63333,39.43333,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [66.08333, 55.5]}",18799,3393.0,Pesyanoe,Valid,Aubrite,55.5,66.08333,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.42, 14.052]}",18800,189.0,Pétèlkolé,Valid,H5,14.052,0.42,1995-01-01T00:00:00.000 39.0,2017.0,Fell,"{'type': 'Point', 'coordinates': [-86.63333, 35.3]}",18801,1800.0,Petersburg,Valid,Eucrite-pmict,35.3,-86.63333,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.33333, 53.53333]}",18804,,Pettiswood,Valid,Stone-uncl,53.53333,-7.33333,1779-01-01T00:00:00.000 17.0,1255.0,Fell,"{'type': 'Point', 'coordinates': [-99.25, 40]}",18808,57900.0,Phillips County (stone),Valid,L6,40.0,-99.25,1901-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [108.58333, 11.25]}",18809,500.0,Phu Hong,Valid,H4,11.25,108.58333,1887-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [105.48333, 12]}",18811,7800.0,Phum Sambo,Valid,H4,12.0,105.48333,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [108.1, 15.71667]}",18812,11000.0,Phuoc-Binh,Valid,L5,15.71667,108.1,1941-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.50222, 44.24417]}",18813,13.1,Piancaldoli,Valid,LL3.4,44.24417,11.50222,1968-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6.23333, 41.36667]}",18816,,Picote,Valid,Stone-uncl,41.36667,-6.23333,1843-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [25.73333, 58.66667]}",18822,23250.0,Pillistfer,Valid,EL6,58.66667,25.73333,1863-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [73.94167, 26.03472]}",18831,42000.0,Piplia Kalan,Valid,Eucrite-mmict,26.03472,73.94167,1996-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [18.71667, -32.86667]}",18832,37.0,Piquetberg,Valid,H,-32.86667,18.71667,1881-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [88.45, 25.8]}",18834,842.0,Pirgunje,Valid,L6,25.8,88.45,1882-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76, 29.58333]}",18835,1161.0,Pirthalla,Valid,H6,29.58333,76.0,1884-01-01T00:00:00.000 31.0,207.0,Fell,"{'type': 'Point', 'coordinates': [-83.51667, 31.95]}",18837,3760.0,Pitts,Valid,"Iron, IAB-ung",31.95,-83.51667,1921-01-01T00:00:00.000 23.0,2018.0,Fell,"{'type': 'Point', 'coordinates': [-96.11667, 30.7]}",18846,2085.0,Plantersville,Valid,H6,30.7,-96.11667,1930-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.70972, 45.275]}",51706,6913.0,Pleşcoi,Valid,L5-6,45.275,26.70972,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.11667, 50.53333]}",18849,39.0,Ploschkovitz,Valid,L5,50.53333,14.11667,1723-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [104.91667, 11.58333]}",18851,96.0,Pnompehn,Valid,L6,11.58333,104.91667,1868-01-01T00:00:00.000 ,,Found,,32592,290.9,Dominion Range 03240,Valid,LL5,,,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [12.13333, 50.93333]}",18853,3000.0,Pohlitz,Valid,L5,50.93333,12.13333,1819-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.66667, 26.71667]}",18858,350.0,Pokhra,Valid,H5,26.71667,82.66667,1866-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.015, 66.34833]}",18860,253.6,Pollen,Valid,CM2,66.34833,14.015,1942-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-4.31944, 53.03639]}",18865,157.0,Pontlyfni,Valid,Winonaite,53.03639,-4.31944,1931-01-01T00:00:00.000 11.0,1987.0,Fell,"{'type': 'Point', 'coordinates': [-103.295, 34.175]}",18874,71400.0,Portales Valley,Valid,H6,34.175,-103.295,1998-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-8, 38.5]}",18876,4500.0,Portugal,Valid,Stone-uncl,38.5,-8.0,1796-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.5, 31.41667]}",18879,665.0,Po-wang Chen,Valid,LL,31.41667,118.5,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13.94083, 48.3025]}",18883,2125.0,Prambachkirchen,Valid,L6,48.3025,13.94083,1932-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.03333, 49.66667]}",18887,5555.0,Pribram,Valid,H5,49.66667,14.03333,1959-01-01T00:00:00.000 38.0,2566.0,Fell,"{'type': 'Point', 'coordinates': [-83.85, 39.11667]}",18888,900.0,Pricetown,Valid,L6,39.11667,-83.85,1893-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.51667, 39.35]}",45984,500.0,Puerto Lápice,Valid,Eucrite-br,39.35,-3.51667,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [75.18333, 23.36667]}",18899,560.0,Pulsora,Valid,H5,23.36667,75.18333,1863-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.26667, 52.76667]}",18901,250000.0,Pultusk,Valid,H5,52.76667,21.26667,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.95, 13.33333]}",18902,100.0,Punganaru,Valid,Stone-uncl,13.33333,78.95,1811-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-53.05, -29.03333]}",18905,300000.0,Putinga,Valid,L6,-29.03333,-53.05,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [121.5, 32.08333]}",18907,1275.0,Qidong,Valid,L/LL5,32.08333,121.5,1982-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [106.46667, 26.53333]}",18908,2600.0,Qingzhen,Valid,EH3,26.53333,106.46667,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [28.7, -30.11667]}",22357,7000.0,Queen's Mercy,Valid,H6,-30.11667,28.7,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [95.18333, 17.76667]}",22358,6045.0,Quenggouk,Valid,H4,17.76667,95.18333,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.6666700000000001, 39]}",22360,10750.0,Quesa,Valid,"Iron, IAB-ung",39.0,-0.6666700000000001,1898-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [126.13333, 44.61667]}",22361,17450.0,Quija,Valid,H,44.61667,126.13333,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.25, 46.6]}",22363,65.0,Quincay,Valid,L6,46.6,0.25,1851-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-65.45, -26.66667]}",22368,5000.0,Raco,Valid,H5,-26.66667,-65.45,1957-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.465, 27.72528]}",22371,10200.0,Raghunathpura,Valid,"Iron, IIAB",27.72528,76.465,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [70.2, 28.225]}",31302,67225.0,Rahimyar Khan,Valid,L5,28.225,70.2,1983-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.03333, 52.98333]}",22376,9000.0,Rakovka,Valid,L6,52.98333,37.03333,1878-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.9, 26.45]}",22384,3766.0,Ramnagar,Valid,L6,26.45,82.9,1940-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [87.76667, 24.16667]}",22385,100.0,Rampurhat,Valid,LL,24.16667,87.76667,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [6.93333, 51.88333]}",22386,4682.0,Ramsdorf,Valid,L6,51.88333,6.93333,1958-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [87.08333, 23.98333]}",22387,290.4,Ranchapur,Valid,H4,23.98333,87.08333,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-100.81667, 19.86667]}",22390,300.0,Rancho de la Presa,Valid,H5,19.86667,-100.81667,1899-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [72.01667, 25.38333]}",22392,3224.5,Rangala,Valid,L6,25.38333,72.01667,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [115.7, 38.2]}",22394,4910.0,Raoyang,Valid,L6,38.2,115.7,1919-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [50.15, 26.66667]}",22395,6.1,Ras Tanura,Valid,H6,26.66667,50.15,1961-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.53333, 43.5]}",22396,24700.0,Rasgrad,Valid,Stone-uncl,43.5,26.53333,1740-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [17.98333, 52.2]}",22398,910.0,Ratyn,Valid,Stone-uncl,52.2,17.98333,1880-01-01T00:00:00.000 8.0,1391.0,Fell,"{'type': 'Point', 'coordinates': [-119.75812, 38.13742]}",53502,18.41,Red Canyon Lake,Valid,H5,38.13742,-119.75812,2007-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-5.33333, 42.475]}",22584,17300.0,Reliegos,Valid,L5,42.475,-5.33333,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.36667, -6.7333300000000005]}",22585,10000.0,Rembang,Valid,"Iron, IVA",-6.7333300000000005,111.36667,1919-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.28333, 44.76667]}",22586,1000.0,Renazzo,Valid,CR2,44.76667,11.28333,1824-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-65.28333, -32.75]}",22587,300.0,Renca,Valid,L5,-32.75,-65.28333,1925-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [116.13333, 38.66667]}",22589,355.0,Renqiu,Valid,L6,38.66667,116.13333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [45.66667, 48.6]}",22590,7000.0,Repeev Khutor,Valid,"Iron, IIF",48.6,45.66667,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-118.95, 51.33333]}",22592,1.0,Revelstoke,Valid,CI1,51.33333,-118.95,1965-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [76.66667, 28.2]}",22593,3332.0,Rewari,Valid,L6,28.2,76.66667,1929-01-01T00:00:00.000 37.0,2388.0,Fell,"{'type': 'Point', 'coordinates': [-83.03333, 35.03333]}",22597,668.0,Rich Mountain,Valid,L6,35.03333,-83.03333,1903-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-66.15, -44.11667]}",24140,20000.0,Uzcudun,Valid,L,-44.11667,-66.15,1948-01-01T00:00:00.000 3.0,569.0,Fell,"{'type': 'Point', 'coordinates': [-102.31667, 46.88333]}",22599,90000.0,Richardton,Valid,H5,46.88333,-102.31667,1918-01-01T00:00:00.000 23.0,2885.0,Fell,"{'type': 'Point', 'coordinates': [-99.03333, 31.25]}",22602,1900.0,Richland Springs,Valid,OC,31.25,-99.03333,1980-01-01T00:00:00.000 40.0,2764.0,Fell,"{'type': 'Point', 'coordinates': [-77.5, 37.46667]}",22603,1800.0,Richmond,Valid,LL5,37.46667,-77.5,1828-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-49.8, -26.1]}",22611,1310.0,Rio Negro,Valid,L4,-26.1,-49.8,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.51667, 45.48333]}",22614,103.3,Rivolta de Bassi,Valid,Stone-uncl,45.48333,9.51667,1491-01-01T00:00:00.000 35.0,150.0,Fell,"{'type': 'Point', 'coordinates': [-86.28333, 41.08333]}",22637,340.0,Rochester,Valid,H6,41.08333,-86.28333,1876-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [150.51667, -23.38333]}",22640,1641.0,Rockhampton,Valid,Stone-uncl,-23.38333,150.51667,1895-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.55, 42.3]}",22641,400.0,Roda,Valid,Diogenite,42.3,0.55,1871-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.8, 50.35]}",22642,2900.0,Rodach,Valid,Stone-uncl,50.35,10.8,1775-01-01T00:00:00.000 50.0,361.0,Fell,"{'type': 'Point', 'coordinates': [-83.95, 44.51667]}",22766,10600.0,Rose City,Valid,H5,44.51667,-83.95,1921-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-2.51667, 52.76667]}",22773,3500.0,Rowton,Valid,"Iron, IIIAB",52.76667,-2.51667,1876-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.83333, -1.45]}",22780,465.5,Ruhobobo,Valid,L6,-1.45,29.83333,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [36.53333, 0.26667]}",22782,67.0,Rumuruti,Valid,R3.8-6,0.26667,36.53333,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [38.76667, -10.26667]}",22783,6000.0,Rupota,Valid,L4-6,-10.26667,38.76667,1949-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [34.5, 51.13333]}",22791,13000.0,Ryechki,Valid,L5,51.13333,34.5,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.08333, 27.43333]}",22792,1250.0,Sabetmahet,Valid,H5,27.43333,82.08333,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [91.66667, 23.08333]}",22793,478.0,Sabrum,Valid,LL6,23.08333,91.66667,1999-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.88333, 51.53333]}",22796,,Sagan,Valid,Stone-uncl,51.53333,14.88333,1636-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.38333, 43.73333]}",23101,14000.0,Saint-Sauveur,Valid,EH5,43.73333,1.38333,1914-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.23333, 45.3]}",23102,271000.0,Saint-Séverin,Valid,LL6,45.3,0.23333,1966-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.3, 35.66667]}",23103,4180.0,Sakauchi,Valid,Iron,35.66667,136.3,1913-01-01T00:00:00.000 12.0,2409.0,Fell,"{'type': 'Point', 'coordinates': [-122.96944, 44.97917]}",23107,61.4,Salem,Valid,L6,44.97917,-122.96944,1981-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.63333, 46.05]}",23111,9000.0,Salles,Valid,L5,46.05,4.63333,1798-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.05, 52.75]}",23114,43.0,Salzwedel,Valid,LL5,52.75,11.05,1985-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [74.86667, 25.66667]}",23115,2462.0,Samelia,Valid,"Iron, IIIAB",25.66667,74.86667,1921-01-01T00:00:00.000 8.0,1174.0,Fell,"{'type': 'Point', 'coordinates': [-117.6625, 33.48472]}",23128,56.0,San Juan Capistrano,Valid,H6,33.48472,-117.6625,1973-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [13, 43.66667]}",31315,237.0,San Michele,Valid,L6,43.66667,13.0,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-71.4, -31.01667]}",23130,282.0,San Pedro de Quiles,Valid,L6,-31.01667,-71.4,1956-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-100.65, 19.76667]}",34063,460.0,San Pedro Jacuaro,Valid,LL6,19.76667,-100.65,1968-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-51.86667, -29.2]}",23161,400.0,Santa Barbara,Valid,L4,-29.2,-51.86667,1873-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-99.33333, 24.16667]}",23164,60.0,Santa Cruz,Valid,CM2,24.16667,-99.33333,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-61.7, -33.9]}",23165,5500.0,Santa Isabel,Valid,L6,-33.9,-61.7,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-68.489444, -31.535556]}",50909,4000.0,Santa Lucia (2008),Valid,L6,-31.535556,-68.489444,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-49.38056, -20.81]}",23171,927.0,São Jose do Rio Preto,Valid,H4,-20.81,-49.38056,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [46.55, 52.55]}",23176,200000.0,Saratov,Valid,L4,52.55,46.55,1918-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [137.78333, 34.71667]}",23187,695.0,Sasagase,Valid,H,34.71667,137.78333,1688-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.85, 43.15]}",23188,4000.0,Sauguis,Valid,L6,43.15,-0.85,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [29.86667, 47.21667]}",23190,2500.0,Savtschenskoje,Valid,LL4,47.21667,29.86667,1894-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [139.4, 35.86667]}",23192,430.0,Sayama,Valid,CM2,35.86667,139.4,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [17.56667, 49.23333]}",23455,412.0,Sazovice,Valid,L5,49.23333,17.56667,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.05, 53.35]}",23457,7000.0,Schellin,Valid,L,53.35,15.05,1715-01-01T00:00:00.000 47.0,2142.0,Fell,"{'type': 'Point', 'coordinates': [-73.95028, 42.86083]}",23458,283.3,Schenectady,Valid,H5,42.86083,-73.95028,1968-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.46667, 48.11667]}",23460,8000.0,Schönenberg,Valid,L6,48.11667,10.46667,1846-01-01T00:00:00.000 49.0,1727.0,Fell,"{'type': 'Point', 'coordinates': [-69.2, 44.36667]}",23472,5400.0,Searsmont,Valid,H5,44.36667,-69.2,1871-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.13333, 38.3]}",23473,240.0,Sediköy,Valid,L6,38.3,27.13333,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.78333, 26.75]}",23476,6930.0,Segowlie,Valid,LL6,26.75,84.78333,1853-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [107.33333, -7.23333]}",23481,1590.0,Selakopi,Valid,H5,-7.23333,107.33333,1939-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [4.9833300000000005, 22.83333]}",23483,150.0,Seldebourak,Valid,H5,22.83333,4.9833300000000005,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79, 22.25]}",23487,691.0,Semarkona,Valid,LL3.00,22.25,79.0,1940-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-0.05, 41.71667]}",23495,4000.0,Sena,Valid,H4,41.71667,-0.05,1773-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [140.51167, 39.43833]}",23496,866.0,Senboku,Valid,H6,39.43833,140.51167,1993-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79.50083, 21.68389]}",23500,20000.0,Seoni,Valid,H6,21.68389,79.50083,1966-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23.56667, 41.05]}",23501,8500.0,Seres,Valid,H4,41.05,23.56667,1818-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-36.76667, -8.38333]}",23502,1800.0,Serra de Magé,Valid,Eucrite-cm,-8.38333,-36.76667,1923-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-44.21667, -19.46667]}",23504,350.0,Sete Lagoas,Valid,H4,-19.46667,-44.21667,1908-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-6, 37.41667]}",23508,180.0,Sevilla,Valid,LL4,37.41667,-6.0,1862-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [36.6, 50.61667]}",23509,101000.0,Sevrukovo,Valid,L5,50.61667,36.6,1874-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.71667, 34.75]}",23512,7000.0,Sfax,Valid,L6,34.75,10.71667,1989-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [87.3, 23.1]}",23521,4000.0,Shalka,Valid,Diogenite,23.1,87.3,1850-01-01T00:00:00.000 40.0,921.0,Fell,"{'type': 'Point', 'coordinates': [-76.7, 37.83333]}",23525,1265.0,Sharps,Valid,H3.4,37.83333,-76.7,1921-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-80.16667, 44.05]}",23529,18600.0,Shelburne,Valid,L5,44.05,-80.16667,1904-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.83333, 24.55]}",23530,5000.0,Shergotty,Valid,Martian (shergottite),24.55,84.83333,1865-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [120.06667, 33.65]}",23531,605.0,Sheyang,Valid,L6,33.65,120.06667,1976-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [87.5775, 25.85]}",23534,3679.7,Shikarpur,Valid,L6,25.85,87.5775,1921-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [125.66667, 43.5]}",23582,3900.0,Shuangyang,Valid,H5,43.5,125.66667,1971-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [74.83333, 33.71667]}",23583,5000.0,Shupiyan,Valid,H6,33.71667,74.83333,1912-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [90.16667, 24.33333]}",23584,3200.0,Shytal,Valid,L6,24.33333,90.16667,1863-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [11.6, 43.11667]}",23586,3700.0,Siena,Valid,LL5,43.11667,11.6,1794-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [134.65333, 46.16]}",23593,23000000.0,Sikhote-Alin,Valid,"Iron, IIAB",46.16,134.65333,1947-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-101.38333, 20.93333]}",23594,1710.0,Silao,Valid,H5,20.93333,-101.38333,1995-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.26667, 44.11667]}",55584,0.15,Silistra,Valid,Achondrite-ung,44.11667,27.26667,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [7.53333, 49.98333]}",23603,1222.0,Simmern,Valid,H5,49.98333,7.53333,1920-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [32.48333, 30.9]}",23606,1455.0,Sinai,Valid,L6,30.9,32.48333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [69.55, 26.21667]}",23611,8400.0,Sindhri,Valid,H5,26.21667,69.55,1901-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.2, 39.3]}",23613,2000.0,Sinnai,Valid,H6,39.3,9.2,1956-01-01T00:00:00.000 19.0,2351.0,Fell,"{'type': 'Point', 'coordinates': [-103.66667, 42.58333]}",23614,4100.0,Sioux County,Valid,Eucrite-mmict,42.58333,-103.66667,1933-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [82.58333, 20.91667]}",23616,1600.0,Sitathali,Valid,H5,20.91667,82.58333,1875-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [36.13583, 39.82467]}",23617,40000.0,Sivas,Valid,H6,39.82467,36.13583,1989-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [119.86667, 32.43333]}",23619,630.0,Sixiangkou,Valid,L5,32.43333,119.86667,1989-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.86667, 59.73333]}",23621,850.0,Ski,Valid,L6,59.73333,10.86667,1848-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.6, 45.68333]}",23626,1708.0,Slavetic,Valid,H5,45.68333,15.6,1868-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35, 55]}",23645,2750.0,Slobodka,Valid,L4,55.0,35.0,1818-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.06667, 27.13333]}",23660,72.9,Soheria,Valid,OC,27.13333,84.06667,1960-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [21.86667, 43.66667]}",23661,80000.0,Soko-Banja,Valid,LL4,43.66667,21.86667,1877-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.73333, 47.36667]}",23663,54.0,Sologne,Valid,H5,47.36667,1.73333,1860-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [22.005, 54.00883]}",53829,1066.0,Sołtmany,Valid,L6,54.00883,22.005,2011-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [135.33333, 35.16667]}",23667,17100.0,Sone,Valid,H5,35.16667,135.33333,1866-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [125, 45.25]}",23668,36900.0,Songyuan,Valid,L6,45.25,125.0,1993-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23.5, 44.41667]}",23670,958.0,Sopot,Valid,OC,44.41667,23.5,1927-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [33.63333, 1.7000000000000002]}",23671,2050.0,Soroti,Valid,"Iron, ungrouped",1.7000000000000002,33.63333,1945-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [0.05, 44.75]}",23081,360.0,St. Caprais-de-Quinsac,Valid,L6,44.75,0.05,1883-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.5, 46.95]}",23082,5500.0,St. Christophe-la-Chartreuse,Valid,L6,46.95,-1.5,1841-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.75, 51.05]}",23083,700.0,St. Denis Westrem,Valid,L6,51.05,3.75,1855-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-1.15, 48.01667]}",23087,4000.0,St. Germain-du-Pinel,Valid,H6,48.01667,-1.15,1890-01-01T00:00:00.000 18.0,2223.0,Fell,"{'type': 'Point', 'coordinates': [-90.23333, 38.7]}",23089,1000.0,St. Louis,Valid,H4,38.7,-90.23333,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.41667, -32.01667]}",23090,13780.0,St. Mark's,Valid,EH5,-32.01667,27.41667,1903-01-01T00:00:00.000 45.0,424.0,Fell,"{'type': 'Point', 'coordinates': [-76.38333, 38.16667]}",23091,24.3,St. Mary's County,Valid,LL3.3,38.16667,-76.38333,1919-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3.93333, 48.45]}",23092,8300.0,St. Mesmin,Valid,LL6,48.45,3.93333,1866-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.2, 61.65]}",23093,17000.0,St. Michel,Valid,L6,61.65,27.2,1910-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [2.95, 43.43333]}",23097,134.3,St.-Chinian,Valid,L6,43.43333,2.95,1959-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.95, 59.93333]}",23712,34000.0,Ställdalen,Valid,H5,59.93333,14.95,1876-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [15.56667, 49.28333]}",23713,52000.0,Stannern,Valid,Eucrite-mmict,49.28333,15.56667,1808-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [41.98333, 45.05]}",23717,1500.0,Stavropol,Valid,L6,45.05,41.98333,1857-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [3, 50.76667]}",23099,4960.0,Ste. Marguerite,Valid,H4,50.76667,3.0,1962-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [55.98333, 53.66667]}",23724,325000.0,Sterlitamak,Valid,"Iron, IIIAB",53.66667,55.98333,1990-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [9.05, 52.53333]}",23726,,Stolzenau,Valid,Stone-uncl,52.53333,9.05,1647-01-01T00:00:00.000 24.0,1040.0,Fell,"{'type': 'Point', 'coordinates': [-73.13333, 41.2]}",23728,50.0,Stratford,Valid,L6,41.2,-73.13333,1974-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.25, 56.58333]}",23729,13400.0,Strathmore,Valid,L6,56.58333,-3.25,1917-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-3.95, 50.38333]}",23732,10400.0,Stretchleigh,Valid,Stone-uncl,50.38333,-3.95,1623-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-72.97806, 45.96861]}",23733,25400.0,St-Robert,Valid,H5,45.96861,-72.97806,1994-01-01T00:00:00.000 15.0,955.0,Fell,"{'type': 'Point', 'coordinates': [-90.66667, 36.48333]}",23736,3500.0,Success,Valid,L6,36.48333,-90.66667,1924-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [16.26333, 50.53806]}",23737,815.3,Suchy Dul,Valid,L6,50.53806,16.26333,1969-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [113.46667, 31.61667]}",23738,260000.0,Suizhou,Valid,L6,31.61667,113.46667,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [78.03333, 12.66667]}",48951,110000.0,Sulagiri,Valid,LL6,12.66667,78.03333,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.28333, 25.93333]}",23741,1710.5,Sultanpur,Valid,L/LL6,25.93333,84.28333,1916-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [133.16667, 44.86667]}",23745,637.0,Sungach,Valid,H5,44.86667,133.16667,1935-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [84.21667, 26.71667]}",23760,7235.0,Supuhee,Valid,H6,26.71667,84.21667,1865-01-01T00:00:00.000 8.0,1187.0,Fell,"{'type': 'Point', 'coordinates': [-120.90806, 38.80389]}",55529,992.5,Sutter's Mill,Valid,C,38.80389,-120.90806,2012-01-01T00:00:00.000 29.0,1637.0,Fell,"{'type': 'Point', 'coordinates': [-86.2945, 33.18836]}",23773,5560.0,Sylacauga,Valid,H4,33.18836,-86.2945,1954-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [14.65, 49.4]}",23776,7540.0,Tabor,Valid,H5,49.4,14.65,1753-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [5.41667, 36.18333]}",23778,9000.0,Tadjera,Valid,L5,36.18333,5.41667,1867-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-134.20139, 59.70444]}",23782,10000.0,Tagish Lake,Valid,C2-ung,59.70444,-134.20139,2000-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [137.305, 34.72]}",23784,1000.0,Tahara,Valid,H4/5,34.72,137.305,1991-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [134.9, 35.38333]}",23789,720.0,Takenouchi,Valid,H5,35.38333,134.9,1880-01-01T00:00:00.000 ,,Fell,,23791,1421.0,Talampaya,Valid,Eucrite-cm,,,1995-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [112.76667, -7.75]}",23795,10500.0,Tambakwatu,Valid,L6,-7.75,112.76667,1975-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.015, 31.16333]}",48691,100000.0,Tamdakht,Valid,H5,31.16333,-7.015,2008-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [136.23333, 35.43333]}",23801,905.0,Tané,Valid,L5,35.43333,136.23333,1918-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [122.9, 45.4]}",23873,3850.0,Taonan,Valid,L5,45.4,122.9,1965-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [10.41667, 32.95]}",23884,12000.0,Tatahouine,Valid,Diogenite,32.95,10.41667,1931-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [43.73333, 19.38333]}",23885,2500.0,Tathlith,Valid,L6,19.38333,43.73333,1967-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [44.45, 35.13333]}",23887,6000.0,Tauk,Valid,L6,35.13333,44.45,1929-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [23.5, 46.71667]}",23888,21000.0,Tauti,Valid,L6,46.71667,23.5,1937-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [142.95, -25.73333]}",23897,160000.0,Tenham,Valid,L6,-25.73333,142.95,1879-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [26.95, 58.03333]}",23898,28500.0,Tennasilm,Valid,L4,58.03333,26.95,1872-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [70.6, 33.4]}",23908,342.0,Thal,Valid,H6,33.4,70.6,1950-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [37.15028, -1.00278]}",54493,14200.0,Thika,Valid,L6,-1.00278,37.15028,2011-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [27.58333, -29.33333]}",23976,45300.0,Thuathe,Valid,H4/5,-29.33333,27.58333,2002-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [118.99, 32.94667]}",23984,2232.0,Tianzhang,Valid,H5,32.94667,118.99,1986-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [17.11667, 49.6]}",23989,28000.0,Tieschitz,Valid,H/L3.6,49.6,17.11667,1878-01-01T00:00:00.000 34.0,1762.0,Fell,"{'type': 'Point', 'coordinates': [-89.68333, 38.2]}",23998,74800.0,Tilden,Valid,L6,38.2,-89.68333,1927-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [1.53333, 14.25]}",23999,3000.0,Tillaberi,Valid,L6,14.25,1.53333,1970-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [35.2, 54.5]}",24004,65500.0,Timochin,Valid,H5,54.5,35.2,1807-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [79.41667, 13.63333]}",24009,230.0,Tirupati,Valid,H6,13.63333,79.41667,1934-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [-7.61123, 29.48195]}",54823,7000.0,Tissint,Valid,Martian (shergottite),29.48195,-7.61123,2011-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [111.53333, -7.08333]}",24011,20000.0,Tjabe,Valid,H6,-7.08333,111.53333,1869-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [106.58333, -6.66667]}",24012,16500.0,Tjerebon,Valid,L5,-6.66667,106.58333,1922-01-01T00:00:00.000 ,,Fell,"{'type': 'Point', 'coordinates': [34.76667, 47.85]}",24019,600.0,Tomakovka,Valid,LL6,47.85,34.76667,1905-01-01T00:00:00.000
edb68b6d11db70cc398b1be494b09758383d5e78
449d555969bfd7befe906877abab098c6e63a0e8
/1439/CH24/EX24.5/24_5.sce
675c4fbe731369230e024767112e4352f3a6b49a
[]
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
176
sce
24_5.sce
clc //initialisation of variables mr= 2.01474 //amu mH= 0.00237 //amu mD= 1.00814 //amu //CALCULATIONS mn= mr+mH-mD //RESULTS printf ('mass of neutron = %.5f amu',mn)
a182e1dd2a917a13b405884f6109fe0d0624630d
449d555969bfd7befe906877abab098c6e63a0e8
/67/CH8/EX8.12/example812.sce
c1c7f0d67e17197bf90916fbf1725510f60920a0
[]
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
131
sce
example812.sce
//Example 8.12 //For the given x[n] determine X[k] using FFT algorithm clc; x=[0,1,2,3,4,5,6,7]; X=fft(x,-1); disp(X,'X[k]=');
c6f1338c925c4ec5a555e2deb6bb07d44b0016cc
449d555969bfd7befe906877abab098c6e63a0e8
/1754/CH4/EX4.2/Exa4_2.sce
804440304ba9f5643ee2b398498bb019929ba75b
[]
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
294
sce
Exa4_2.sce
//Exa 4.2 clc; clear; close; //Given data Omega_P1=10^4;//in Radian/sec Omega_P2=2*10^4;//in Radian/sec Omega_Z1=10^5;//in Radian/sec omegaH=1/sqrt(1/Omega_P1^2+1/Omega_P2^2-2/Omega_Z1^2);//in radian/sec disp(round(omegaH),"Approximate value of lower 3dB Frequency in radian/sec : ");
bd007fc4da77c948996263ded2b02c97288693c0
0996858242fa0006525b2edd5d01faee1b3f8a03
/fatoracaoLU.sce
6dde1032e1949927aa0d81e5a6ffcea2b38820ba
[]
no_license
lucascmb/LAAlgorithms
575a4a11c1909bc413f913d76a53b1ad34b88d73
9234e625c8858a85338ef49de562a68545be41e4
refs/heads/master
2021-06-05T01:30:16.739042
2016-09-30T14:46:10
2016-09-30T14:46:10
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,444
sce
fatoracaoLU.sce
//Eliminação Gaussiana: //Implementação destinada à resolução de um sistema linear Ax=b. //Entrada: A (matriz mxn), b (vetor mx1) clear //limpa a memoria do scilab clc //limpa a tela do console //A = [1 0 -1; 0 3 7; 5 -2 1]; //linhas espaçadas por ponto e vírgula //A = [0 0 -2; 2 4 -10; 2 5 1]; //A = [0 3 1; 2 -2 1; 1 5 5/2]; A = [2, 5, 8 ; 5 11/2 6 ; 0 1 5/7] U = []; //A = input('Entre com a matriz A') //b = input('Entre com o vetor b') [m,n] = size(A); //m -> nº linhas; n -> nº colunas L = zeros(m,n); E = eye(m,n); saveA = A; lnn = m; //numero de linhas não nulas for p = 1:lnn //localizar o próximo pivo linhap = m colunap = n for r = p:lnn c=1 while (c <= n) & (A(r,c) == 0) c = c + 1 end //verificando se r é linha nula (trocar linha r por linha lnn em A e em b) if c == n+1 then for q = 1:n aux = A(r,q) A(r,q) = A(lnn,q) A(lnn,q) = aux auxLower = L(r,q) L(r,q) = L(lnn,q) L(lnn,q) = auxLower auxE = E(r,q) E(r,q) = E(lnn,q) E(lnn,q) = auxE end lnn = lnn - 1 end //atualizando caso o candidato a pivô da linha r seja o mais à esquerda if c < colunap then colunap = c linhap = r end end //trocar linha "p" com linha "linhap" if p ~= linhap then for r = 1:n aux = A(p,r) A(p,r) = A(linhap,r) A(linhap,r) = aux auxLower = L(p,r) L(p,r) = L(linhap,r) L(linhap,r) = auxLower auxE = E(p,r) E(p,r) = E(linhap,r) E(linhap,r) = auxE end end pivo = A(p,colunap) L(p,p) = pivo //dividir a linha do pivo pelo valor do pivo (transformar pivo em 1) for q = colunap:n if pivo ~= 0 then A(p,q) = A(p,q)/pivo end end //zerando os elementos abaixo do pivô (linhas p+1 até lnn) for r = (p+1):lnn mult = A(r,colunap) L(r, colunap) = A(r,colunap) for q = colunap:n A(r,q) = A(r,q) - mult*A(p,q) end end end U = A; matrizLU = L * U; Final = E * saveA; disp('Matriz L: ') disp([L]) disp('Matriz U: ') disp([U]) disp('MATRIZ LU: ') disp([matrizLU]) disp('P * A: ') disp([Final])
3c37501b630771d44ec6a6b330e67700bbd7d387
d167200e784b8019615f6b37b5a46b91ec43b98d
/macros/fillConvexPoly.sci
9a0f08e0a83cd4cf19c0f2adb2651a2a8f5db27f
[]
no_license
AshishMantosh/FOSSEE-Image-Processing-Toolbox
ee9c1a00f97627f372fae1d7d851c4905ac9d83e
e4fbe1891e13e4dc9b62513f0aef2b101638f084
refs/heads/master
2021-01-01T19:05:15.966438
2017-07-27T07:16:11
2017-07-27T07:16:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,968
sci
fillConvexPoly.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: Abhilasha Sancheti & Sukul Bagai // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in // function [out] = fillConvexPoly(img, pstData, npts, r_value, g_value, b_value, linetype, shift) // This function fills a convex polygon. // // Calling Sequence // [out] = fillConvexPoly(img, pstData, npts, r_value, g_value, b_value, linetype, shift) // // Parameters // img : The input source image. // pstData : The vector of polygon vertices. // npts : The number of polygon vertices. // r_value : The red value of RGB color for the polygon. // g_value : The green value of RGB color for the polygon. // b_value : The blue value of RGB color for the polygon. // linetype : This is the type of the polygon boundaries. It has only 3 valid types: 4, 8 and 16(CV_AA). Passing any other value as lineType is not legal. // shift : This is the number of fractional bits in the vertex coordinates. // // Description // The function fillConvexPoly draws a filled convex polygon. It can fill not only convex polygons but any monotonic polygon without self-intersections, that is, a polygon whose contour intersects every horizontal line (scan line) twice at the most (though, its top-most and/or the bottom edge could be horizontal). // // Examples // // a simple example // a = imread("/images/lena.jpeg"); // b = [ 0 10; 10 0; -10 0 ]; // c = fillConvexPoly(a, b, 3, 1, 1, 1, 8, 0); // // Authors // Abhilasha Sancheti // Sukul Bagai image = mattolist(img); a = raw_fillConvexPoly(image, pstData, npts, r_value, g_value, b_value, linetype, shift) d = size(a); for i=1:d out(:,:,i) = a(i); end endfunction
4732a2c748df2ea7ae40bd5b78739ca98de0b825
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH19/EX19.15/Ex19_15.sce
59e40797813b7e59929485e5227d28f101a74c0f
[]
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
633
sce
Ex19_15.sce
clc // Given that m = 1 // Mass flow rate in kg/s r = 2 // Prssure ratio of blower t1 = 70 // Inlet temperature in degree centigrade p1 = 1 // Inlet pressure in bar R = 0.29 // Gas constant in kJ/kgK x = 0.7 // Reduction in pressure ratio and intake volume gama = 1.4 printf("\n Example 19.15\n") T1 = t1+273 V = m*R*T1/(p1*100) P = V*(p1*r-p1)*100 p2 = p1*((1/x)^(gama)) V2 = x*V P_ = (gama/(gama-1))*(p1*100*V)*((p2/p1)^((gama-1)/gama)-1) + V2*(p1*r-p2)*100 printf("\n Power required to drive the blower = %f kW,\n Power required = %f kW",P,P_) // The answers given in the book vary due to round off error
ff91277e66db5eda608acebbdec25bf8c3120977
449d555969bfd7befe906877abab098c6e63a0e8
/2732/CH10/EX10.4/Ex10_4.sce
f2e97557be1b21baf2b93edcc76c18f99c86f6d3
[]
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
Ex10_4.sce
clc //initialization of variabes clear cA=10 //cm^2 wA=5 //cm^2 P=1 //tonne E=2*10^6 //kg/cm^2 P=P*1000 //kg // calculations U_up=P^2*200/(2*E*cA)*1/sqrt(3)*(2+4+6+8+10+12) U_do=P^2*200/(2*E*cA)*1/sqrt(3)*(1+3+5+7+9+11+13/2) U_web=P^2*200/(2*E*wA)*1/sqrt(3)*(2*13) U=U_up+U_do+U_web delta=U*2/(P) // results printf('deflection = %.3f cm',delta)
5050d80f6524f44f17ce504cd6092599b7b93614
449d555969bfd7befe906877abab098c6e63a0e8
/1478/CH2/EX2.18.32/2_18_32.sce
682fd34dc2c19fd98635be36340d59a82ec53804
[]
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
907
sce
2_18_32.sce
//water and its treatment// //example 2.18.32// clc Purity_Lime=.97 Purity_soda=.91 W1=24;//amount of Mg2+ in ppm// W2=20;//amount of Ca2+ in ppm// W3=30;//amount of CO2 in ppm// W4=150;//amount of HCO3- in ppm// W5=40;//amount of K+ in ppm// M1=100/24;//multiplication factor of Mg2+// M2=100/40;//multiplication factor of Ca2+// M3=100/44;//multiplication factor of CO2// M4=100/(61*2);//multiplication factor of HCO3-// P1=W1*M1;//in terms of CaCO3//L+S P2=W2*M2;//in terms of CaCO3//S P3=W3*M3;//in terms of CaCO3//L P4=W4*M4;//in terms of CaCO3//+L and -S printf ("We do not take K+ since it does not react with lime/soda"); V=1000000;//volume of water in litres// L=0.74*(P1+P3+P4)*V/Purity_Lime;//lime required in mg// L=L/10^6; printf("\nLime required is %.0fkg",L); S=1.06*(P1+P2-P4)*V/Purity_soda;//soda required in mg// S=S/10^6; printf("\nSoda required is %.1fkg",S)
94d6f4b43a1968366555e82811404e8a0f3f762b
449d555969bfd7befe906877abab098c6e63a0e8
/1049/CH12/EX12.32/ch12_32.sce
d853fedd492ed15cfa8de0f4b31f487003745197
[]
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
142
sce
ch12_32.sce
clear; clc; V=700; E2=V; N_s=1500; N=1200; s=(N_s-N)/N_s; V1=415; a_T=s*E2/V1; printf("voltage ratio of the transformer=%.4f",a_T);
f6cf9916265f7d7358474066af16b835d758c3dc
449d555969bfd7befe906877abab098c6e63a0e8
/243/CH4/EX4.13/4_13.sce
e1611ef8764dc1ab5536be6c2ed173a03c92d5a9
[]
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
99
sce
4_13.sce
//Example No. 4_13 //Pg No. 78 disp('Theoritical Problem') disp('For Details go to page no. 78')
ee74a84540cd55eca0304e701345d8c272f0cbe5
717ddeb7e700373742c617a95e25a2376565112c
/3411/CH10/EX2.2.u2/Ex2_2_u2.sce
da5cee9374bb82cf0f7ffc02e4b286c8643cf784
[]
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
697
sce
Ex2_2_u2.sce
//Example 2_2_u2 clc(); clear; //To corresponding mean free path and compare with experimental value row=6.87*10^7 m=9.11*10^-31 n=5.86*10^28 e=1.6*10^-19 t=(row*m)/(n*e^2) //units in s printf("The mean free path is t=") disp(t) printf("sec") kb=1.381*10^-23 T=300 m=9.11*10^-31 v=(sqrt(3*kb*T))/sqrt(m) //units in m/s printf("\nVelocity v=%.2f m/s\n",v) lamda=t*v //units in mts printf("Wavelength is lamda=") disp(lamda) printf("mts") printf("\nThe experimental value is ten times higher than predicted value") //In textbook the answer is printed wrong as t=2.84*10^-14S and lamda=3.28*10^-9mts but correct answer is t=4.172D-14sec and lamda=4.873D-09 mts
b8f2b03559f48a10290a4b9fa05342d94f24b0ef
449d555969bfd7befe906877abab098c6e63a0e8
/575/DEPENDENCIES/8_5_1.sci
366041a52f662efca1b926425b557f9c20bb7965
[]
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
89
sci
8_5_1.sci
M1=35.6 //g/mol M2=18 //g/mol x=0.2 mdot=1000 //kg/h T1=25 //C T2=100 //C T3=40 //C
bb48fae1daf0e7fa9626965d8532e3b66fd8d8b7
449d555969bfd7befe906877abab098c6e63a0e8
/2213/CH8/EX8.1/ex_8_1.sce
0987cdf0d67e25b30d6861daddec01b2d1340155
[]
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
459
sce
ex_8_1.sce
//Example 8.1: Motor speed clc; clear; close; v=230;//in volts rm=0.3;//in ohms Ia=[5;10;15;20;25;30;35;40];//in amperes T=[20;50;100;155;215;290;360;430];// for i=1:8 eb(i)= v-(Ia(i))*rm;// N(i)=(9.55*eb(i)*Ia(i))/(T(i));// disp("speed in rpm is for current "+string(Ia(i))+" amperes "+string(round(N(i)))+" RPM") end plot2d(Ia,N) xlabel("ARMATURE CURRENT ,Ia IN AMPS") ylabel("SPEED ,N IN RPM") xtitle("Spped-Armature current characteristic")
8aec4289b9fddd7bd89c5b61ea97bac0c7388abe
ce4dbe0e5cac31e35a009625bdcce8bad8ad8d44
/Программа для тестирования/C# тестирование.tst
369dc357c68ca6dedc3a1451c9054e9e0e335975
[]
no_license
VitalikMorozov/Testprogram
6fdb8b4679ba5563d5dbc51ec4d953ea08b83cd4
21e358f2c53576bd1547a9702fb5df02dd03b0ee
refs/heads/main
2023-07-20T03:54:24.850592
2021-08-31T21:39:07
2021-08-31T21:39:07
394,771,752
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,598
tst
C# тестирование.tst
9 Что делает оператор «%» Возвращает процент от суммы 0 Возвращает остаток от деления 1 Возвращает тригонометрическую функцию 0 Ничего из выше перечисленного 0 Что сделает программа выполнив следующий код: Console.WriteLine(«Hello, World!»); Напишет на новой строчке Hello, World! 1 Напишет Hello, World! 0 Удалит все значения с Hello, World! 0 Вырежет слово Hello, World! из всего текста 0 Как называется оператор «?:» Вопросительный 0 Прямой оператор 0 Тернарный оператор 1 Территориальный оператор 0 Как найти квадратный корень из числа x Sqrt(x) 0 Summ.Koren(x); 0 Arifmetic.sqrt(x); 0 Math.Sqrt(x); 1 Для чего нужны условные операторы Чтобы устанавливать условия пользователю 0 Для ветвления программы 1 Для оптимизации программы 0 Чтобы были 0 Какие бывают циклы? Большие и маленькие 0 Цикл, Форич, Двойной цикл, Многократный 0 for, while, do-while, foreach 1 ref, out, static, root 0 Какие бывают массивы? Разнообразные 0 Сложные и простые 0 Одномерные и многомерные 1 Резиновые и статичные 0 Что такое константа? Переменная типа string 0 Переменная которая может быть изменена в любое время 0 Глобальная переменная 0 Переменная значение которой нельзя изменить 1 Что обозначает ключевое слово var? Устраивает войну между программами 0 Обозначает что переменная без явного типа данных 1 Обозначает что переменная имеет явный тип данных 0 Такого слова нету в C# 0 Что такое Куча? Это структура данных 0 Именованная область памяти 0 Область динамической памяти 1 Куча переменных 0
5aa20e7fad7d5168c877726e3c22a36f194ee907
98074d67753fcd91680ba7e447cba54e710d6410
/topologias emulando ejemplos/EstiNet/linear5.results/linear5.sce
b01a29f344acb32b6c7242dbca64fe5ecc85c8ac
[]
no_license
elchobo5/licenciaturaSDN
82fd88740f131234fde2e3d965d8e69cc85a22d2
9868bbb16c26389eac7353f873aac08654a085d1
refs/heads/master
2020-04-06T07:00:01.266197
2016-09-03T15:13:12
2016-09-03T15:13:12
63,431,538
0
0
null
null
null
null
UTF-8
Scilab
false
false
422
sce
linear5.sce
#estinet scenario file $node_(1) set 362.000000 199.000000 0 0.0 0.0 0.0 $node_(2) set 235.000000 195.000000 0 0.0 0.0 0.0 $node_(3) set 541.000000 98.000000 0 0.0 0.0 0.0 $node_(4) set 558.000000 230.000000 0 0.0 0.0 0.0 $node_(5) set 541.000000 284.000000 0 0.0 0.0 0.0 $node_(6) set 503.000000 319.000000 0 0.0 0.0 0.0 $node_(7) set 552.000000 165.000000 0 0.0 0.0 0.0 $node_(8) set 106.000000 200.000000 0 0.0 0.0 0.0
a13e9dc05f1a2d02569cc71e47fc8b521bd89969
333d6160f9a6d9e23a6bea06cd03e5e8fa8785a9
/RobotLab2/SciLab/FindOmegaNls.sce
88dc3aa336130898461101a103f60f0f1832fb93
[ "MIT" ]
permissive
DmitryIo/ROBOTS
6f6bb12a8e08dd28024136ee1a8a84ea7254da60
777f0884a098c4f21d044985c25a8be276334116
refs/heads/master
2023-04-30T12:52:54.082977
2021-05-17T19:55:34
2021-05-17T19:55:34
294,091,170
3
0
null
null
null
null
UTF-8
Scilab
false
false
404
sce
FindOmegaNls.sce
Wnls = [] for i=1:10 data = read(get_absolute_file_path("FindOmegaNls.sce") + "..\Data\log" + string(-i * 10) + ".txt", -1, 2); angle = data(:, 1)*%pi/180; time = data(:, 2); aim = [time, angle]'; deff('e=curve(k, z)', 'e=z(2)-k(1)*(z(1) - k(2) * (1-exp(-z(1)/k(2))))'); att=[-15;0.06]; [koeffs, errs] = datafit(curve, aim, att); Wnls(i) = koeffs(1); end
39bc854cf62f8d4e23ab7c77a7088f3928463203
449f0d9106e35fc361bdb53d55d9563796f0d2c3
/week1/scilab1.sce
5714f72c5e2e65bb6ed96072e7ff7b3e513eee1e
[]
no_license
aleksey-sinos/OpenEdu
72eefffcc4ddbb45345a9bee61e534f9bf540390
6c3b4943a669b9398ad75e0fae44937cc6b04dc0
refs/heads/master
2020-06-30T13:29:27.839046
2019-12-04T07:47:12
2019-12-04T07:47:12
74,368,213
0
0
null
null
null
null
UTF-8
Scilab
false
false
906
sce
scilab1.sce
/////////////////////////////////////////////////////////////////////////////// //// Неделя 1.1 //// Случайные величины и методы их описания. /////////////////////////////////////////////////////////////////////////////// clear; deff('[numd] = roundd(num,n)','numd = round(num *10^n) / 10^n'); rand("seed",getdate("s")); //// Генерация параметров нормальной ф.п.р.в.//// mu = roundd(rand(1,1,"nor")*10,1); sigma = roundd(0.1+rand(1,1,"unf")*3,1); x = roundd(mu+rand(),2); // Расчет значения ф.п.р.в. // y = 1/(sigma*sqrt(2*%pi))*exp((-(x-mu)^2)/(2*sigma^2)); //// Запись данных //// deletefile('data.txt'); deletefile('fillings.txt'); deletefile('answer.txt'); answer = y; fillings = [mu; sigma; x]; write('answer.txt',answer); write('fillings.txt',fillings); write('data.txt',[]); //quit();
e5ec32d8e1dde4d0cef8f23af5150bd3d95a3e42
449d555969bfd7befe906877abab098c6e63a0e8
/2414/CH8/EX8.3/Ex8_3.sce
4335d5865a70e6ce7bae8f621e75eb992d8100a2
[]
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
180
sce
Ex8_3.sce
clc; close(); clear(); //page no 277 //prob no. 8.3 W=5000; //Hz fs=1.25*2*W; tp=30*60; //seconds N=fs*tp; //samples mprintf('Total number of samples is %i ',N);
6fae8b4f4fafe9683276a6604427b830304f45e3
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH21/EX21.6/Ex21_6.sce
014552ed48825b9440216bbd9e0c6aadd55beee5
[]
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
608
sce
Ex21_6.sce
//calculating regulation at full load at unity pf V=3300//line voltage Vph=V/sqrt(3) P=500D+3//output Ia=P/(sqrt(3)*V) Ra=.4//resistance per phase Xs=3.8//reactance per phase pf=1//power factor Ef=[(Vph*1+Ia*Ra)^2+(Vph*0+Ia*Xs)^2]^.5//open circuit voltage per phase VR=(Ef-Vph)/Vph*100 mprintf("Regulation at full load at unity pf=%f percent\n", VR) //calculating regulation at full load at .8 pf lagging Ef=[(Vph*.8+Ia*Ra)^2+(Vph*0.6+Ia*Xs)^2]^.5 VR=(Ef-Vph)/Vph*100 mprintf("Regulation full load at .8 pf lagging=%f percent\n", VR) //answers vary from the textbook due to round off error
cf1f1c9b481bb6c1d9c491876185e42b049c214e
44dccf35d0d05580e3fc20af3b7697b3c638d82d
/testcases/detectHarrisFeatures/1.sce
02074a6028d44a41657817d22e2469b8a307c148
[]
no_license
surirohit/Scilab-Image-Processing-Toolbox-Unclean
213caacd69badd81ec0f99a800f44a2cf8f79b5d
3a8057f8a8d05e7efd83704a0e732bdda23fa3a0
refs/heads/master
2020-04-09T07:31:20.042501
2016-06-28T09:33:57
2016-06-28T09:33:57
60,406,367
0
0
null
null
null
null
UTF-8
Scilab
false
false
75
sce
1.sce
i = imread('test1.jpg'); corners = detectHarrisFeatures(i); disp(corners);
32a9a33a14f58ba3d7e691bca7c79ef35c8d290b
449d555969bfd7befe906877abab098c6e63a0e8
/2126/CH1/EX1.37/37.sce
55434a18797a5127516df541d0eab1608eea924d
[]
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,199
sce
37.sce
clc clear //Input data mol=4 //Molecular weight of gas in kg/mol k=1.3 //Adiabatic constant C1=150 //Gas Velocity at section-1 in m/s P1=100 //Pressure of duct at section-1 in kPa T1=15+273 //Temperature at section-1 in K T2=-10+273 //Temperature at section-2 in K Ri=8314 //Ideal gas constant in J/mol-K //Calculation R=Ri/mol //Specific gas constant in J/kg-K a1=sqrt(k*R*T1) //Sound velocity at section-1 in m/s M1=C1/a1 //Mach number at section-1 t1=0.9955 //Static to Stagnation temperature ratio at entry from gas tables @M1,k=1.3 To=T1/t1 //Stagantion temperature in K p1=0.9815 //Static to Stagnation pressure ratio at entry from gas tables @M1,k=1.3 Po=P1/p1 //Stagnation pressure in kPa t2=T2/To //Static to Stagnation temperature ratio at exit M2=0.82 //Amch number at section-2 from gas tables @t2,k=1.3 p2=0.659 //Static to Stagnation pressure ratio at exit from gas tables @M2,k=1.3 P2=Po*p2 //Pressure at section-2 in kPa a2=sqrt(k*R*T2) //Sound velocity at section-2 in m/s C2=M2*a2 //Gas Velocity at section-2 in m/s //Output printf('At the second point:\n Mach number is %3.2f\n Pressure is %3.3f kPa\n Velocity is %3.2f m/s',M2,P2,C2)
e9612b6d904453907a3133e30a5660a038ba2d98
449d555969bfd7befe906877abab098c6e63a0e8
/1394/CH16/EX16.3.3/Ex16_3_3.sce
9e152b1306ec1a3bde771288b850a13ecc1ece2a
[]
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
795
sce
Ex16_3_3.sce
clc //initialization of variables D =2*10^-6 // cm^2/sec nu = 0.036 // cm^2/sec d1 = 1.59 // cm d2 = 1 // cm deltap = 1*10^-5 // g/cc ( change in density) p = 1 // g/cc Re = 11200 // Reynolds number g = 980 // cm/sec^2 dis = 5.37*10^-9 // g/cm^2-sec // Dissolution rate sol = 1.48*10^-3 // g/cc //Calculations k11 = 0.62*(D/d1)*(Re^(0.5))*((nu/D)^(1/3))// cm/sec K1 = dis/sol// the overall mass transfer co efficient in cm/sec k2 = (1/((1/K1)-(1/k11)))/// cm/sec /// the rate constant in cm/sec k12 = (D/d2)*(2+(((0.6*((d2^3)*(deltap)*g/(p*nu^2)))^0.25)*((nu/D)^(1/3)))) // cm/sec K2 = 1/((1/k12)+(1/k2))// cm/sec (the overall mtc) //Results printf("the rate of surface reaction is %.7f cm/sec",k2) printf("\nThe dissolution rate for 1 cm gallstone is %.7f cm/sec",K2)
9f7ed7f709727c70cde4c93ef5bfcab174b11901
6813325b126713766d9778d7665c10b5ba67227b
/Chapter6/Ch_6_Eg_6.31.sci
cea07a8024da9d3d5994e23e6b92cd7f06e08190
[]
no_license
arvindrachna/Introduction_to_Scilab
955b2063b3faa33a855d18ac41ed7e0e3ab6bd1f
9ca5d6be99e0536ba1c08a7a1bf4ba64620ec140
refs/heads/master
2020-03-15T19:26:52.964755
2018-05-31T04:49:57
2018-05-31T04:49:57
132,308,878
1
0
null
null
null
null
UTF-8
Scilab
false
false
725
sci
Ch_6_Eg_6.31.sci
//A program to illustrate the use of Nested functions. function y=outer_fun(x) a=x+1; disp ("executing outer_fun"); function y=inner_fun1(x) z=x+2; whereami (); // a library function to return the current line of the program function y=inner_fun2(x), y=x^2, disp ("Executing inner_fun2"), endfunction; y=inner_fun2(z); endfunction y=inner_fun1(a)+1 disp (msprintf ('is function inner_fun1 exist? %s', string(isdef("inner_fun1")))); disp (msprintf ('is function inner_fun1 exist? %s', string(isdef("inner_fun2")))); endfunction // Main program disp (outer_fun (2)); disp (msprintf ('is function inner_fun1 exist? %s', string(isdef("inner_fun1"))));
b75933f8fc96d72a863a6c2647e35b2affe0acef
449d555969bfd7befe906877abab098c6e63a0e8
/1388/CH4/EX4.4/4_4.sce
3d400acec026a55ba80bd0d6896794714641569c
[]
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
261
sce
4_4.sce
clc //initialisation of variables Hv= 9720 //cal mole^-1 Hv1= 30900 //cal mole^-1 Tb= 373 //K Tb1= 1029 //K //CALCULATIONS Sv= Hv/Tb Sv1= Hv1/Tb1 //RESULTS printf (' Entropy= %.f cal mole deg^-1',Sv) printf (' \n Entropy = %.f cal mole deg^-1',Sv1)
ad5c08312c930c038b00eebdc3c0ca7a8768f160
c2249f1089957357481c4bc88e17047fb96af0fd
/TestCases/projp2.tst
44a4ecbc129d35235281e1ba5a50d3ffef73dd90
[]
no_license
FikriAnuar/LaTeXParser
9bf5d0f1ea85d26ae4cb4cb72ef0cd95a7e358d6
97a872d3903aafea98045050f1782b0ff7840ed7
refs/heads/master
2022-12-12T04:17:47.702201
2020-09-09T16:38:05
2020-09-09T16:38:05
294,170,332
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,053
tst
projp2.tst
\begin{document} The second part of the semester project focuses on gaining experience with lex (flex) and yacc (bison), coupled with continued design (and redesign) skills for context free grammars (CFGs). The second part of the project is divided into two major tasks, and is worth a total of 50 points: \begin{enumerate} \item Revising the common grammar to remove the shift or reduce and rule-not-reduced conflicts. These corrections are made to the yacc or bison file, and the result must be tested extensively for different input latex documents. This task is worth 35 points. \item Using your result grammar of the first task, redesign the common grammar to support the recognition of verbatim blocks and also nested blocks. That is, recall that the different blocks (itemize, enumerate, single, etc.) can also be nested to yield different combinations of formatted text. Again, test your result using yacc.bison to demonstrate that the grammar revisions for these two changes work correctly. This task is worth 15 points. \end{enumerate} To serve as a common base for the project, there is a directory that contains a number of important files: \begin{verbatim} latex.in : A sample input file. latex.l : A sample latex lex file. latexp2.y : A yacc specification with fprintf's for debugging. latexp2clean.y: Equivalent specification without the fprintfs. y2conflicts : The shift.reduce conflicts generated by YACC. b2conflicts : The shift.reduce conflicts generated by BISON. \end{verbatim} Note that intentional errors have been placed in the files. Note also that the grammar files contain numerous shift reduce errors and other problems, as will be discussed in class. The second part of the project is due on April 6, 1994. Please hand in the following: \begin{enumerate} \item The revised yacc.bison specification for task 1. DO NOT HAND IN C files! \item A log file that documents the changes made to the grammar to eliminate the shift.reduce errors and other problems for task 1. Make sure that you provide both the original and revised grammar segments for each change that you make! Also include any remaining shift.reduce or reduce.reduce errors, but NOT the entire output file. \item The revised yacc.bison specification for task 2. DO NOT HAND IN C files! \item A log file that documents the changes made to your grammar of task 1 in support of verbatim and nested blocks. These changes may occur in both the lex (flex) and yacc (bison) files! Again, provide original.revised segments for each change, and remaining S.R or R.R errors. \item Test cases and test results for both tasks, clearly marked and organized. \item The directory location for your files and detailed compilation instructions. \end{enumerate} {\it IMPORTANT:} Do not open your directory for access by the world until 7:00 p.m. on April 6. \end{document}
29c7bb1845e07b918751c98c27a3c687e72e771a
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH2/EX2.67/ex2_67.sci
75cb975c76e8d518352a9e8aa6f98f879f82f5dc
[]
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
469
sci
ex2_67.sci
//Chapter 2,Ex2.67,Pg2.84 clc; disp("Refer to the diagram shown in the question") A=[1 0;5 -10] B=[50;0] I=A\B printf("\n I1=%.0f A \n",I(1)) printf("\n I2=%.0f A \n",I(2)) Vth=3*I(2) printf("\n Vth=%.0f V \n",Vth) //Calculation of Rth Rth=(7*3/(7+3)) printf("\n Rth=%.1f \n",Rth) //For maximum power transfer the value of the load resistance should be equal to the value of the Thevenin resistance Pmax=(Vth*Vth)/(4*Rth) printf("\n Pmax=%.2f W \n",Pmax)
209e235a94dd31fc4e8053812212fad5da8d085e
449d555969bfd7befe906877abab098c6e63a0e8
/539/CH4/EX4.1/Example_4_1.sce
079fe67e62441b0ce81548f4012f736a682827af
[]
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
552
sce
Example_4_1.sce
//Number of Vacancies Computation at a Specified temperature clear; clc; printf("\tExample 4.1\n"); Na=6.023*10^23; //Avogadro No. den=8.4D+06; //Density of Copper A=63.5; //Atomic weight of Copper //No. of atomic site per cubic meter N=Na*den/A; //No. of vacancies at 1000 C Qv=0.9; //Activation energy in eV k=8.62*10^-5; //Boltzmann Constatnt in eV/K T=1000+273; //Temperature in K Nv=N*exp(-Qv/(k*T)); printf("\nNo.of vacancies are %.1f * 10^25 /m^3",Nv/10^25); //End
62f3e4f3ddc1eac8ad4bc15ea23e2cc60eeb24fd
449d555969bfd7befe906877abab098c6e63a0e8
/2837/CH14/EX14.1/Ex14_1.sce
3c0c5aaeba357c85d396656806ebca5c323cbeaa
[]
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
Ex14_1.sce
clc clear //Initalization of variables lhs=8.5 //moles of reactants rhs=6 //moles of CO2 n=3 //moles of H2O R=1545 //Universal gas constant R2=18.016 //molar mass of water J=778 //Work conversion constant T=537 //R T2=1050.4 //R T3=991.3 //R Qhp=1417041 //Btu/mol //calculations Qhpv=(lhs-rhs)*R*T/J Qhv=Qhp-Qhpv hfg=(rhs-n)*R2*T2 Qlp=Qhp-hfg Qlpv=(lhs-rhs-n)*R/J *T Qlv=Qlp-Qlpv Qhlv=(rhs-n)*R2*T3 Qlv3=Qhv-Qhlv //results printf("Higher heating value at constant volume = %d Btu/mol",Qhv) printf("\n Lower heating value at constant pressure = %d Btu/mol",Qlp) printf("\n In case 1,Lower heating value at constant volume = %d Btu/mol",Qlv) printf("\n In case 2,Lower heating value at constant volume = %d Btu/mol",Qlv3) disp("The answers might differ a bit from textbook due to rounding off error.")
6ef8ba27295457f662a020016cd6fa5802fde1ce
449d555969bfd7befe906877abab098c6e63a0e8
/2789/CH8/EX8.1/Ex8_1.sce
c3f8b44d730ec84229cdab65f1c6c5d11ebbb202
[]
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
277
sce
Ex8_1.sce
clear; clc; //page no. 266 Tw = 32;// degreeF d1 = 3;// in v = 10;//fps delp = 2;//psi h1 = 30;// ft Tb = 68;//degreeF d2 = 1;//in h2 = 10;//ft V = v*(d1/12)*0.0000137/((d2/12)*0.88*0.0000375); del_p = delp/h2^2 *0.88*V^2; printf('V = %.2f fps\n del_p = %.2f psi',V,del_p);
266cb8c531a46116e37afa315e6249d3de692e51
449d555969bfd7befe906877abab098c6e63a0e8
/371/CH8/EX8.6/8_6.sci
d547dc6739de1293bcfc96e6bf8c58066de934b7
[]
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
643
sci
8_6.sci
//Harmonic and Powerfactor with the Converter system// //Example 8.6// printf('For six pulse converter most effective harmonic is 6th and for worst case a=90 degree\n'); h=6; Wv=24.1;//voltage ripple in percentage// printf('voltage ripple=Wv=%fpercent',Wv); Edc=460;//dc voltage in volts// W=2*3.14*50; Ldc=6;//total dc circuit inductance in milliHenry// I6=Wv*Edc*10/(Ldc*h*W);//Harmonic current for 6th harmonic in amp// printf('\nHarmonic current for 6th harmonic=I6=%famp',I6); Id=300; Wi=100*I6/Id;//maximum value of current ripple in percentage// printf('\nmax. value of current ripple=Wi=%fpercent',Wi);//end of program//
29cbe8e63f82c1e87f1da259609d38cad654a491
449d555969bfd7befe906877abab098c6e63a0e8
/3685/CH5/EX5.8/Ex5_8.sce
08c9d1c099be67cac39e4fcf29e05524f135ed07
[]
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
548
sce
Ex5_8.sce
clc // Given that V = 0.12 // Volume of tank in m^3 p = 1 // Pressure in MPa T = 150 // Temperature in degree centigrade P = 0.1 // Power to peddle wheel in kW printf("\n Example 5.8") u0 = 0.718*273 // Internal energy at 0 degree Celsius // Function for internal energy of gas t=poly(0,"t") u = u0+(0.718*t) pv = 0.287*(273+t) U=horner(u,T) PV = horner(pv,T) hp = U+PV // At 150 degree centigrade m_a = P/hp printf("\n The rate at which air flows out of the tank is %f kg/h",m_a*3600) //The answers vary due to round off error
014c58e98d0e9e7ecb113d928681846e20c69b43
ed5e7aeae2745973cd8038caec7b1fce3cab8914
/analyze/loadData.sce
b037dad17a4a1acc90cc30bd2b1a6ce16a41184b
[]
no_license
cmmurray/soccer
ff246d1a61cb6f6a43e7edd3f7b92802a48cb155
0a7b709e244db8d7cc56a5ee1361ecef7ae5da8b
refs/heads/master
2020-05-09T18:09:04.531264
2015-01-05T23:13:52
2015-01-05T23:13:52
13,311,958
0
0
null
null
null
null
UTF-8
Scilab
false
false
670
sce
loadData.sce
clear; clc; stacksize('max'); data = read_csv('../getdata/Data/master.csv'); //split headers and data headers = data(1,:); data = data(2:$,:); hg = round(strtod(data(:,5))); ag = round(strtod(data(:,6))); hgh = round(strtod(data(:,8))); agh = round(strtod(data(:,9))); tg = hg + ag; tgh = hgh + agh; //Fix some things that should be draws but arent (assume score correct) data(ag > hg,7) = "A";data(agh > hgh,10) = "A"; data(ag < hg,7) = "H";data(agh < hgh,10) = "H"; data(ag == hg,7) = "D";data(agh == hgh,10) = "D"; res = data(:,7);resh = data(:,10); gmat = zeros(max(hg)+1,max(ag)+1); for i = 1:size(hg,1) gmat(hg(i)+1,ag(i)+1) = gmat(hg(i)+1,ag(i)+1)+1; end
02e4fbbe5ed07393dadf96c5998f6ce1144a2157
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH3/EX3.3/example3_3.sce
2666d7e136daa39d73fb8c07a23b322ad0e9e502
[]
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
434
sce
example3_3.sce
//Chapter3 //Example 3_3 //PAge 50 clear;clc; max_dem =100; p1=100; t1=2; p2=50; t2=6; no_operation =45; //Annual load factor e_per_day=(p1*t1)+(p2*t2); printf("Energy per day = %.2f MWh \n\n", e_per_day) operation_days=365-no_operation; e_per_year = e_per_day*operation_days; printf("energy per year = %.2f MWh\n\n", e_per_year) alf= e_per_year/max_dem/(operation_days*24); printf("Annual load factor = %.2f %% \n\n", alf*100);
1cbccf3f0afd2d364da6f11264b644f81aa1b7d7
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set14/s_Linear_Integrated_Circuit_M._S._Sivakumar_1757.zip/Linear_Integrated_Circuit_M._S._Sivakumar_1757/CH5/EX5.9/EX5_9.sce
cf8092fad9c1c39146c7d5a24607bcb4ccc25dfa
[]
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
229
sce
EX5_9.sce
errcatch(-1,"stop");mode(2);//Example5.9 //to determine open loop gain ; ; beta = 0.0120 ; // Feedback transfer function Af = 80 ; //d loop gain A = (Af)/(1-beta*Af) ; disp('open loop gain is = '+string(A)+''); exit();
427fe0a6a0c5171f06b2fc1766f676b0b1e7ca13
449d555969bfd7befe906877abab098c6e63a0e8
/3864/CH9/EX9.7/Ex9_7.sce
1793b5f173cdd6f3b3d2b78604648686605c6d13
[]
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,266
sce
Ex9_7.sce
clear // // //Initilization of Variables //Let X=(P*A**-1) //Average Stress at Failure Lamda_1=70 //Slenderness Ratio Lamda_2=170 //Slenderness Ratio X1=200 //N/mm**2 X2=69 //N/mm**2 //Rectangular section b=60 //mm //width t=20 //mm //Thickness L=1250 //mm //Length of strut FOS=4 //Factor of safety //Calculations //Slenderness ratio //Lamda=L*k**-1 //The Rankine's Formula for strut //P=sigma*A*(1+a*(L*k**-1)**-1 //From test result 1, //After sub values in above equation we get and further simplifying we get //sigma_1=200+980000*a ...................(1) //From test result 2, //After sub values in above equation we get and further simplifying we get //sigma_2=69+1994100*a ...................(2) //Substituting it in equation (1) we get a=131*1014100**-1 //Substituting a in equation 1 sigma_1=200+980000*a //N/mm**2 //Effective Length l=1*2**-1*L //mm //Least of M.I I=1*12**-1*b*t**3 //mm**4 //Area A=b*t //mm**2 k=(I*A**-1)**0.5 //Slenderness ratio Lamda=l*k**-1 //From Rankine's Ratio P=sigma_1*A*(1+a*(Lamda)**2)**-1 //Safe Load S=P*(FOS)**-1*10**-3 //N //Result printf("\n Constant in the Formula is:a %0.6f ",a) printf("\n :sigma_1 %0.2f ",sigma_1) printf("\n Safe Load is %0.2f KN",S)
46c8454bc141cf06d90dc72006c9e6f678efc8de
28a8d47c4d79b231f8bebc28925792a290f67e9f
/bk/others/create_scheme/create_scheme.tst
0abbe28fbacc5e7ca1a89599b1286a6a170cb10a
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,441
tst
create_scheme.tst
PL/SQL Developer Test script 3.0 161 --select lower(name), body from xxdoo.xxdoo_db_scripts_t order by id /*declare l_result clob; cursor l_scripts_cur is select lower(name) name from xxdoo.xxdoo_db_scripts_t order by id; begin dbms_lob.createtemporary(l_result, true); -- for s in l_scripts_cur loop dbms_lob.append(l_result, 'prompt *********************************************************************************************' || chr(10) || 'prompt * Create '|| lower(s.name) || chr(10) || 'prompt *********************************************************************************************' || chr(10) || '@@'|| lower(s.name) || chr(10) || 'show errors' || chr(10)||chr(10) ); end loop; -- dbms_output.put_line(l_result); dbms_lob.freetemporary(l_result); end;*/ -- Created on 11.07.2014 by ZHURAVOV_VB declare b xxdoo.xxdoo_db_scheme_typ := xxdoo.xxdoo_db_scheme_typ(p_name => 'Books', p_dev_code => 'xxdoo_bk', p_owner => 'xxdoo'); -- function get_xml(s xxdoo.xxdoo_db_scheme_typ) return xmltype is l_result xmltype; begin select xmlroot(xmltype.createxml(s), version 1.0) into l_result from dual; -- return l_result; end; -- begin --dbms_session.reset_package; return; xxdoo.xxdoo_db_utils_pkg.init_exceptions; -- --xxdoo.xxdoo_db_engine_pkg.drop_objects(b); return; --b.generate; return; --b.generate_scripts('ZHURAVOV_VB'); xxdoo.xxdoo_db_utils_pkg.show_errors; commit; return; -- b.ctable('statesBook/stateBook', 'Create Complete Error Cancel'); b.ctable('statesObject/stateObject', 'DDL Compile Error'); -- b.ctable('methods', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('name', b.cvarchar(30).notNull().indexed), b.f('spc', b.cclob), b.f('body', b.cclob) ) ); -- b.ctable('services', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('name', b.cvarchar(20).notNull().indexed), b.f('package_name', b.cvarchar(30)), b.f('method_id', b.tables('methods')) ) ); -- b.ctable('layouts', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('name', b.cvarchar(20).notNull().indexed), b.f('package_name', b.cvarchar(30)), b.f('method_id', b.tables('methods')) ) ); -- b.ctable('books', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('name', b.cvarchar(15).notNull().indexed), b.f('owner', b.cvarchar(15)), b.f('dev_code', b.cvarchar(10)), b.f('dao', b.cvarchar(100)), b.f('title', b.cvarchar(200)), b.f('search', b.cvarchar(200)), b.f('content_id', b.cnumber), b.f('layout', b.tables('layouts')), b.f('service', b.tables('services')), b.f('state', b.tables('statesBook').fk), b.f('created_date', b.cdate().notNull().cdefault('SYSDATE')), b.f('package', b.tables('methods')), b.f('entity_id', b.cnumber) ) ); -- b.ctable('objects', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('book_id', b.tables('books').referenced('objects')), b.f('owner', b.cvarchar(15).notNull), b.f('name', b.cvarchar(32).notNull), b.f('type', b.cvarchar(106).notNull), b.f('state', b.tables('statesObject').fk), b.f('script', b.cclob) ) ); -- b.ctable('roles', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('book_id', b.tables('books').referenced('roles').deleted('CASCADE')), b.f('name', b.cvarchar(45).notNull), b.f('method_id', b.tables('methods')) ) ); -- b.ctable('pages', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('book_id', b.tables('books').referenced('pages').deleted('CASCADE')), b.f('name', b.cvarchar(45).notNull), b.f('context', b.cvarchar(32)), b.f('content', b.tables('methods')) ) ); -- -- b.ctable('role_pages', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('role_id', b.tables('roles').referenced('pages').deleted('CASCADE')), b.f('page_id', b.tables('pages')), b.f('filter', b.tables('methods')) ) ); -- b.ctable('callbacks', xxdoo.xxdoo_db_fields_typ( b.f('id', b.cint().pk().csequence().notNull), b.f('book_id', b.tables('books').fk().deleted('CASCADE').deleted('CASCADE')), b.f('page_id', b.tables('pages').referenced('callbacks').deleted('CASCADE')), b.f('name', b.cvarchar(45).notNull), b.f('package_name', b.cvarchar(32)), b.f('method_id', b.tables('methods')) ) ); -- b.put; -- b.generate_scripts('ZHURAVOV_VB'); b.generate; return; xxdoo.xxdoo_db_utils_pkg.show_errors; commit; return; -- exception when others then -- xxdoo.xxdoo_db_utils_pkg.fix_exception; xxdoo.xxdoo_db_utils_pkg.show_errors; end; --*/ 0 1 e
f6872677a8769e4b4810a4a4623bf3c2050ab597
8b2aa0460ec6250a29ed3fb32790e0211478b29a
/src/5minVar2.sce
7bf0dad72df3ff0bb3026da34403323550ea95a0
[]
no_license
samverneck/RealTimeMonitor
41f37735570aa91cab7765f0800547987f0eb72c
f2ea3d70df9fbeed651b0f0b367b09b9fa84b6fa
refs/heads/master
2020-12-02T18:09:27.752225
2017-06-21T19:52:00
2017-06-21T19:52:00
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
876
sce
5minVar2.sce
subplot(224); a = gca(); a.axes_bounds = bottom_axes_bounds; a.tight_limits="on"; a.axes_reverse = ['on', 'off', 'off']; a.grid=[-1, color("darkgrey")] a.tag = "sensor2Axes"; plot2d(0:timeBuffer2, zeros(1,timeBuffer2 + 1)-50, color("red")); a.title.text="Temperature variations of the sensor 2"; a.data_bounds = [0, minTempDisplay2; timeBuffer2, maxTempDisplay2]; e = gce(); e = e.children(1); e.tag = "Sensor2"; // a = newaxes(); a.y_location = "right"; a.filled = "off" a.grid=[-1, color("lightblue")] a.tag = "sensor2NewAxes"; a.tight_limits="on" a.axes_bounds = bottom_axes_bounds; plot2d(0:timeBuffer2, zeros(1,timeBuffer2 + 1)-50, color("blue")); a.data_bounds = [0, minRegulationDisplay2; timeBuffer2, maxRegulationDisplay2]; a.axes_visible(1) = "off"; a.foreground=color("blue"); a.font_color=color("blue"); e = gce(); e = e.children(1); e.tag = "minute2Regulation";
b92f883ddd5cb76e4bb45e527030b83c52a63679
449d555969bfd7befe906877abab098c6e63a0e8
/1739/CH1/EX1.4/Exa1_4.sce
140ccca1c054c1236b9afd34a0252583563e12f7
[]
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
266
sce
Exa1_4.sce
//Exa 1.4 clc; clear; close; //Given data : format('v',9); n=1.33;//refractive index //Formula : velocity_of_light_in_medium=velocity_of_light_in_free_space/Refractive_Index; c=3*10^8;//in m/s v=c/n;//in m/s disp(v,"velocity of light in medium in m/s : ");
c8d06204bd59444ac2ae98f5b5e878642e1564ee
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4/demos/flat/car.sci
7c9c29f3593ab91c41603e246c17dc8a99018e9e
[ "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
16,617
sci
car.sci
function []=mvcr(x,y,theta,phi) ///////////////%% BEGIN OF SCRIPT-FILE mvcr %%%%%%%%%%%%%%% // // CAR PACKING VIA FLATNESS AND FRENET FORMULAS // // explicit computation and visualisation of the motions. // // February 1993 // // ............................................................ // : pierre ROUCHON <rouchon@cas.ensmp.fr> : // : Centre Automatique et Systemes, Ecole des Mines de Paris : // : 60, bd Saint Michel -- 75272 PARIS CEDEX 06, France : // : Telephone: (1) 40 51 91 15 --- Fax: (1) 43 54 18 93 : // :..........................................................: // // // bigL: car length (m) // bigT: basic time interval for one smooth motion (s) // a0, a1, p(3): intermediate variables for polynomial // curves definition // // // Copyright INRIA xbasc() ; bigT = 1 ; bigL = 1 ; a0 =0 ; a1 = 0 ; p= [0 0 0 ] ; // // initial configuration of the car x1 = x ; y1 = y ; theta1 = theta ; phi1 = phi ; // final configuration of the car x2 = 0 ; y2 = 0 ; theta2 =0; phi2 = 0 ; // Constraints: y1 > y2 and -%pi/2 < theta1,2, phi1,2 < %pi/2 // // sampling of motion 1 --> 0 and 0 --> 2 nbpt = 40 ; // computation of intermediate configuration x0 = maxi(x1,x2) .... + bigL*abs(tan(theta1)) ..... + bigL*abs(tan(theta2)) ..... + bigL*(abs(y1-y2)/bigL)^(1/2) ; y0 = (y1+y2)/2 ; // // // first polynomial curve a0 = x0 ; b0 = y0 ; a1 = x1 ; b1 = y1 ; M = [ (a1-a0)^3 (a1-a0)^4 (a1-a0)^5 3*(a1-a0)^2 4*(a1-a0)^3 5*(a1-a0)^4 6*(a1-a0) 12*(a1-a0)^2 20*(a1-a0)^3 ] ; q = [ b1-b0 tan(theta1) tan(phi1)/(bigL*(cos(theta1)^3)) ] ; p = inv(M)*q ; // // computation the first motion, time: 1 -> 0 state=[ x1 y1 theta1 phi1 ] ; for i=1:(nbpt+1) tau = (i-1)/nbpt ; phi=tau*tau*(3-2*tau) ; a = (1-phi)*a1 + phi*a0 ; f= b0+ p(1).*(a-a0)^3 + p(2).*(a-a0)^4 + p(3).*(a-a0)^5 ; df = 3*p(1).*(a-a0)^2 + 4*p(2).*(a-a0)^3 + 5*p(3).*(a-a0)^4 ; ddf = 6*p(1).*(a-a0) + 12*p(2).*(a-a0)^2 + 20*p(3).*(a-a0)^3 ; k = ddf / ((1+df*df)^(3/2)) ; state = [ state; a f atan(df) atan(k*bigL)] ; end // // // second polynomial curve a0 = x0 ; b0 = y0 ; a1 = x2 ; b1 = y2 ; M = [ (a1-a0)^3 (a1-a0)^4 (a1-a0)^5 3*(a1-a0)^2 4*(a1-a0)^3 5*(a1-a0)^4 6*(a1-a0) 12*(a1-a0)^2 20*(a1-a0)^3 ] ; q = [ b1-b0 tan(theta2) tan(phi2)/(bigL*(cos(theta2)^3)) ] ; p = inv(M)*q ; // // computation of the second motion 0 --> 2 for i=1:(nbpt+1) tau = (i-1)/nbpt ; phi=tau*tau*(3-2*tau) ; a = (1-phi)*a0 + phi*a1 ; f= b0+ p(1).*(a-a0)^3 + p(2).*(a-a0)^4 + p(3).*(a-a0)^5 ; df = 3*p(1).*(a-a0)^2 + 4*p(2).*(a-a0)^3 + 5*p(3).*(a-a0)^4 ; ddf = 6*p(1).*(a-a0) + 12*p(2).*(a-a0)^2 + 20*p(3).*(a-a0)^3 ; k = ddf / ((1+df*df)^(3/2)) ; state = [ state; a f atan(df) atan(k*bigL)] ; end // // // Graphics // // window size xmini = mini(state(:,1))-0.5*bigL ; xmaxi = maxi(state(:,1))+1.5*bigL ; ymini = mini(state(:,2))-1.5*bigL ; ymaxi = maxi(state(:,2))+1.5*bigL ; //xsetech([0,0,1,1],[xmini,ymini,xmaxi,ymaxi]); pixb=xget("pixmap");xset("pixmap",1);xset("wwpc"); isoview(xmini,xmaxi,ymini,ymaxi) rect=[xmini ymini xmaxi ymaxi] xpoly(rect([1 3 3 1]),rect([2,2,4,4]),'lines',1) // starting configuration ptcr([x1,y1,theta1,phi1]) ; // end configuration ptcr([x2,y2,theta2,phi2]) ; // intermediate configuration (inversion of velocity) ptcr([x0,y0,0,0]) ; // trajectory of the linearizing output xpoly(state(:,1),state(:,2),'lines') ; if xget('pixmap')==1 then xset("wshow");end // movies [n m] = size(state) ; if driver()<>'Pos' then if xget('pixmap')==0 then xset('alufunction',6);... for i=1:n, ptcr( state(i,:)) ; ptcr( state(i,:)) ; end ; xset('alufunction',3); else xset('alufunction',6); for i=1:n, ptcr( state(i,:)) ; xset("wshow"); ptcr( state(i,:)) end ; xset('alufunction',3) ptcr( state(n,:)) ; xset("wshow"); end else //used for gif animation generation for i=1:2:n, xpoly(rect([1 3 3 1]),rect([2,2,4,4]),'lines',1) ptcr([x1,y1,theta1,phi1]) ; ptcr([x2,y2,theta2,phi2]) ; ptcr([x0,y0,0,0]) xpoly(state(:,1),state(:,2),'lines') ; ptcr( state(i,:)) ; xset("wshow"); end ; end xset("pixmap",pixb) function []=mvcr2T(x,y,theta1,theta2,theta3,phi) xbasc(); // // CAR WITH 2 TRAILERS PACKING VIA FLATNESS AND FRENET FORMULAS // // explicit computation and visualisation of the motions. // // February 1993 // // ............................................................ // : pierre ROUCHON <rouchon@cas.ensmp.fr> : // : Centre Automatique et Systemes, Ecole des Mines de Paris : // : 60, bd Saint Michel -- 75272 PARIS CEDEX 06, France : // : Telephone: (1) 40 51 91 15 --- Fax: (1) 43 54 18 93 : // :..........................................................: // // lengths // bigL: car length (m) // d1: trailer 1 length (m) // d2: trailer 2 length (m) // bigT: basic time interval for one smooth motion (s) // a0, a1, b0, p(5): intermediate variables for polynomial // curves definition // bigT = 1 ; bigL = 1 ; d1 = 1.5 ; d2 = 1 ; a0 =0 ; a1 = 0 ; b0 = 0 ; p= [0 0 0 0 0 ] ; // // initial configuration // the system is described via the coordinates of last trailer // x2_1 = x ; y2_1 = y ; theta2_1= theta1; theta12_1 = theta2 ; theta01_1= theta3 ; phi_1 = phi ; // // final configuration of the car x2_2 = 0 ; y2_2 = 0 ; theta2_2= 0 ; theta12_2 = 0 ; theta01_2= 0 ; phi_2 = 0 ; // // sampling of motion 1 --> 0 and of motion 0 --> 2 nbpt1 = 40 ; nbpt2 = 40 ; // // Constraints: y2_1 > y2_2 and // the 4 angles theta2_1,2 // theta12_1,2 // theta01_1,2 // phi_1,2 // must belong to ] -%pi/2 , + %pi/2 [ // // // conputation of intermediate configuration LL=bigL+d1+d2 x2_0 = maxi(x2_1,x2_2) .... + LL*abs(tan(theta2_1)) .... + LL*abs(tan(theta12_1)) .... + LL*abs(tan(theta01_1)) .... + LL*( abs(y2_1-y2_2)/(d1+d2+bigL) )^(1/2) ; y2_0 = (y2_1+y2_2)/2 ; // // // first polynomial curve a0 = x2_0 ; b0 = y2_0 ; a1 = x2_1 ; b1 = y2_1 ; p=cr2Tkf((b1-b0),theta2_1,theta12_1,theta01_1,phi_1) ; // // computation the first motion 1 -> 0 theta2 = theta2_1 ; theta1 = theta12_1+theta2 ; theta0 = theta01_1+theta1 ; phi = phi_1 ; x0=x2_1+d2*cos(theta2)+d1*cos(theta1) ; y0=y2_1+d2*sin(theta2)+d1*sin(theta1) ; state_1 = [x0 y0 theta0 theta1 theta2 phi] ; for i=1:(nbpt1+1) tau = (i-1)/nbpt1 ; phi=tau*tau*(3-2*tau) ; aa = (1-phi)*a1 + phi*a0 ; [bb df d2f d3f d4f d5f] = cr2Tfjt(aa) ; [k2 k1 k0 dk0]=cr2Tfk(df,d2f,d3f,d4f,d5f) ; theta2 = atan(df); theta1 = atan(k2*d2)+theta2; theta0 = atan(k1*d1) + theta1 ; phi = atan(k0*bigL) ; x0=aa+d2*cos(theta2)+d1*cos(theta1) ; y0=bb+d2*sin(theta2)+d1*sin(theta1) ; state_1 = [ state_1 ; x0 y0 theta0 theta1 theta2 phi] ; end ; // // second polynomial curve a0 = x2_0 ; b0 = y2_0 ; a1 = x2_2 ; b1 = y2_2 ; p=cr2Tkf((b1-b0),theta2_2,theta12_2,theta01_2,phi_2) ; // // computation of the second motion 0 -> 2 theta2 = 0 ; theta1 = 0 ; theta0 = 0 ; phi = 0 ; x0=x2_0+d2*cos(theta2)+d1*cos(theta1) ; y0=y2_0+d2*sin(theta2)+d1*sin(theta1) ; state_2 = [x0 y0 theta0 theta1 theta2 phi] ; for i=1:(nbpt2+1) tau = (i-1)/nbpt2 ; phi=tau*tau*(3-2*tau) ; aa = (1-phi)*a0 + phi*a1 ; [bb df d2f d3f d4f d5f] = cr2Tfjt(aa) ; [k2 k1 k0 dk0]=cr2Tfk(df,d2f,d3f,d4f,d5f) ; theta2 = atan(df); theta1 = atan(k2*d2)+theta2; theta0 = atan(k1*d1) + theta1 ; phi = atan(k0*bigL) ; x0=aa+d2*cos(theta2)+d1*cos(theta1) ; y0=bb+d2*sin(theta2)+d1*sin(theta1) ; state_2 = [ state_2 ; x0 y0 theta0 theta1 theta2 phi] ; end ; // // Graphics // // window size xmini = mini([mini(state_1(:,1)) mini(state_2(:,1))]) -1.5*(d1+d2) ; xmaxi = maxi([maxi(state_1(:,1)) maxi(state_1(:,1))]) +1.5*bigL ; ymini = mini([mini(state_1(:,2)) mini(state_2(:,2))])-bigL; ymaxi = maxi([maxi(state_1(:,2)) maxi(state_1(:,2))])+bigL; rect=[xmini ymini xmaxi ymaxi] pixb=xget("pixmap");xset("pixmap",1);xset("wwpc"); xsetech([0,0,1,1],rect); isoview(xmini,xmaxi,ymini,ymaxi) xpoly(rect([1 3 3 1]),rect([2,2,4,4]),'lines',1) // xy_T1 = [ [-bigL/3 bigL/3 bigL/3 -bigL/3 -bigL/3 -bigL/3 -bigL/3 bigL/3 bigL/3 -bigL/3 ], ..... [ bigL/3 d1; 0 0], ..... [-bigL/8 bigL/8 bigL/6 bigL/6 ], .... [-bigL/8 bigL/8 -bigL/6 -bigL/6 ] ] ; xy_T2 = [[-bigL/3 bigL/3 bigL/3 -bigL/3 -bigL/3 -bigL/3 -bigL/3 bigL/3 bigL/3 -bigL/3 ],... [bigL/3 d2 0 0 ],[ -bigL/8 bigL/8 bigL/6 bigL/6 ],[ -bigL/8 bigL/8 -bigL/6 -bigL/6 ] ] ; // starting configuration x2=x2_1 ; y2=y2_1 ; theta2 = theta2_1 ; theta1 = theta12_1+theta2 ; theta0 = theta01_1+theta1 ; phi = phi_1 ; x1=x2+d2*cos(theta2) ; y1=y2+d2*sin(theta2) ; x0=x1+d1*cos(theta1) ; y0=y1+d1*sin(theta1) ; ptsts=[x0,y0,theta0,theta1,theta2,phi] ; ptcr2T(ptsts) ; // end configuration x2=x2_2 ; y2=y2_2 ; theta2 = theta2_2 ; theta1 = theta12_2+theta2 ; theta0 = theta01_2+theta1 ; phi = phi_2 ; x1=x2+d2*cos(theta2) ; y1=y2+d2*sin(theta2) ; x0=x1+d1*cos(theta1) ; y0=y1+d1*sin(theta1) ; ptste=[x0,y0,theta0,theta1,theta2,phi] ptcr2T(ptste) ; // intermediate configuration (inversion of velocity) x2=x2_0 ; y2=y2_0 ; theta2 = 0 ; theta1 = 0; theta0 = 0 ; phi = 0; x1=x2+d2*cos(theta2) ; y1=y2+d2*sin(theta2) ; x0=x1+d1*cos(theta1) ; y0=y1+d1*sin(theta1) ; ptsti=[x0,y0,theta0,theta1,theta2,phi] ptcr2T(ptsti) ; state_1 =[state_1;state_2] ; x_lin = state_1(:,1)-d1*cos(state_1(:,4))-d2*cos(state_1(:,5)) ; y_lin = state_1(:,2)-d1*sin(state_1(:,4))-d2*sin(state_1(:,5)) ; // motion // // trajectory of the linearizing output xpoly(x_lin,y_lin,'lines') if xget('pixmap')==1 then xset("wshow");end // movies [n,m] = size(state_1) ; if driver()<>'Pos' then if xget('pixmap')==0 then xset('alufunction',6); for j=1:n ptcr2T(state_1(j,:));ptcr2T(state_1(j,:)); end ; xset('alufunction',3); else xset('alufunction',6); for j=1:n ptcr2T(state_1(j,:)); xset("wshow"); ptcr2T(state_1(j,:)); end xset('alufunction',3); ptcr2T(state_1(n,:)); xset("wshow"); end else //only use for gif animation generation for j=1:4:n xpoly(rect([1 3 3 1]),rect([2,2,4,4]),'lines',1) ptcr2T(ptsts) ; ptcr2T(ptsti) ; ptcr2T(ptste) ; xpoly(x_lin,y_lin,'lines') ptcr2T(state_1(j,:)) xset("wshow"); end end xset("pixmap",pixb) ////%%%%%%%%%%%% END OF SCRIPT-FILE mvcr2T %%%%%%%%%%%%% function []=dbcr() // // CAR PACKING VIA FLATNESS AND FRENET FORMULAS // // debugg and verification via integration // of the non holonomic system // // February 1993 // // ............................................................ // : pierre ROUCHON <rouchon@cas.ensmp.fr> : // : Centre Automatique et Systemes, Ecole des Mines de Paris : // : 60, bd Saint Michel -- 75272 PARIS CEDEX 06, France : // : Telephone: (1) 40 51 91 15 --- Fax: (1) 43 54 18 93 : // :..........................................................: // // // bigL: car length (m) // bigT: basic time interval for one smooth motion (s) // a0, a1, p(3): intermediate variables for polynomial // curves definition // // bigT = 1 ; bigL = 1 ; a0 =0 ; a1 = 0 ; p= [0 0 0 ] ; // // initial configuration of the car x1 = 0 ; y1 = 4 ; theta1 = %pi/2.5 ; phi1 = 0 ; // final configuration of the car x2 = 0 ; y2 = 0 ; theta2 =0; phi2 = 0 ; // Constraints: y1 > y2 and -%pi/2 < theta1,2, phi1,2 < %pi/2 // // conputation of intermediate configuration x0 = maxi(x1,x2) .... + bigL*abs(tan(theta1)) ..... + bigL*abs(tan(theta2)) ..... + bigL*(abs(y1-y2)/bigL)^(1/2) ; y0 = (y1+y2)/2 ; // // // first polynomial curve a0 = x0 ; b0 = y0 ; a1 = x1 ; b1 = y1 ; M = [ (a1-a0)^3 (a1-a0)^4 (a1-a0)^5 3*(a1-a0)^2 4*(a1-a0)^3 5*(a1-a0)^4 6*(a1-a0) 12*(a1-a0)^2 20*(a1-a0)^3 ] ; q = [ b1-b0 tan(theta1) tan(phi1)/(bigL*(cos(theta1)^3)) ] ; p = inv(M)*q ; // // simulation of the first motion, time: 0 -> bigT [t_1,state_1]=ode23('car',0,bigT, [ x1 y1 theta1 phi1 ]); // // // second polynomial curve a0 = x0 ; b0 = y0 ; a1 = x2 ; b1 = y2 ; M = [ (a1-a0)^3 (a1-a0)^4 (a1-a0)^5 3*(a1-a0)^2 4*(a1-a0)^3 5*(a1-a0)^4 6*(a1-a0) 12*(a1-a0)^2 20*(a1-a0)^3 ] ; q = [ b1-b0 tan(theta2) tan(phi2)/(bigL*(cos(theta2)^3)) ] ; p = inv(M)*q ; // // simulation of the second motion, time: bigT -> 2bigT [n m]=size(t_1); [t_2,state_2]=ode23('car',bigT,2*bigT, state_1(n,:) ); // // // result array merging t_1=t_1(2:n) ; state_1=state_1(2:n,:); t=[ t_1 t_2 ]; state = [ state_1 state_2 ]; // // plot(t,state) ; // xlabel('time (s)') ; // ylabel('x y theta phi ') ; //%%%%%%%%%//%%%% END OF SCRIPT-FILE dbcr %%%%%%%%%%%% function []=dbcr2T() // // CAR WITH 2 TRAILERS PACKING VIA FLATNESS AND FRENET FORMULAS // // debugg and verification via the integration // of the non holonomic system. // // February 1993 // // ............................................................ // : pierre ROUCHON <rouchon@cas.ensmp.fr> : // : Centre Automatique et Systemes, Ecole des Mines de Paris : // : 60, bd Saint Michel -- 75272 PARIS CEDEX 06, France : // : Telephone: (1) 40 51 91 15 --- Fax: (1) 43 54 18 93 : // :..........................................................: // // lengths // bigL: car length (m) // d1: trailer 1 length (m) // d2: trailer 2 length (m) // bigT: basic time interval for one smooth motion (s) // a0, a1, p(5): intermediate variables for polynomial // curves definition // bigT = 1 ; bigL = 1 ; d1 = 1.5 ; d2 = 1 ; a0 =0 ; a1 = 0 ; b0 = 0 ; p= [0 0 0 0 0 ] ; // // initial configuration // the system is described via the coordinates of last trailer x2_1 = 0 ; y2_1 = 6 ; theta2_1= %pi/8; theta12_1 = %pi/8 ; theta01_1= %pi/8 ; phi_1 = %pi/8 ; // // final configuration of the car x2_2 = 0 ; y2_2 = 0 ; theta2_2= 0 ; theta12_2 = 0 ; theta01_2= 0 ; phi_2 = 0 ; // // Constraints: y2_1 > y2_2 and // the 4 angles theta2_1,2 // theta12_1,2 // theta01_1,2 // phi_1,2 // must belong to ] -%pi/2 , + %pi/2 [ // // // conputation of intermediate configuration LL=bigL+d1+d2 ; x2_0 = maxi(x2_1,x2_2) .... + LL*abs(tan(theta2_1)) .... + LL*abs(tan(theta12_1)) .... + LL*abs(tan(theta01_1)) .... + LL*( abs(y2_1-y2_2)/(d1+d2+bigL) )^(1/2) ; y2_0 = (y2_1+y2_2)/2 ; // // // // first polynomial curve a0 = x2_0 ; b0 = y2_0 ; a1 = x2_1 ; b1 = y2_1 ; p=cr2Tkf((b1-b0),theta2_1,theta12_1,theta01_1,phi_1) ; // // simulation of the first motion 0 -> T // time t between 0 and bigT theta2 = theta2_1 ; theta1 = theta12_1+theta2 ; theta0 = theta01_1+theta1 ; phi = phi_1 ; x0=x2_1+d2*cos(theta2)+d1*cos(theta1) ; y0=y2_1+d2*sin(theta2)+d1*sin(theta1) ; [t_1,state_1]=ode45('car2T',0,bigT, .... [ x0 y0 theta0 theta1 theta2 phi ]); // graphics subplot(121); plot(t_1,state_1(:,1:2)) ; xlabel('time (s)') ; ylabel('x_car y_car (m)') ; subplot(122); plot(t_1,state_1(:,3:6)) ; xlabel('time (s)') ; ylabel('theta0 theta1 theta2 phi (rd)') ; // // // second polynomial curve a0 = x2_0 ; b0 = y2_0 ; a1 = x2_2 ; b1 = y2_2 ; p=cr2Tkf((b1-b0),theta2_2,theta12_2,theta01_2,phi_2) ; // // simulation of the second motion bigT -> 2*bigT // // important remark: due to numerical instability of the // integration during inverse motion, we integrate // from the final position 2 to the intermediate position 0. // theta2 = theta2_2 ; theta1 = theta12_2+theta2 ; theta0 = theta01_2+theta1 ; phi = phi_2 ; x0=x2_2+d2*cos(theta2)+d1*cos(theta1) ; y0=y2_2+d2*sin(theta2)+d1*sin(theta1) ; [t_2,state_2]=ode45('car2T',0,bigT, .... [ x0 y0 theta0 theta1 theta2 phi ]); // // // // graphics t_2 = 2*bigT - t_2 ; subplot(121); plot(t_2,state_2(:,1:2)) ; xlabel('time (s)') ; ylabel('x_car y_car (m)') ; subplot(122); plot(t_2,state_2(:,3:6)) ; xlabel('time (s)') ; ylabel('theta0 theta1 theta2 phi (rd)') ; //%%%%%%%%%%%%%% END OF SCRIPT-FILE dbcr2T %%%%%%%%%%%%
a6bf8f546bd3fbc86ce66223dc68f3076d8b782e
36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd
/Stairmaster 2.sce
7edbb024c18a85f9395bde1146e4853e8dbdcb16
[]
no_license
Ahmad6543/Scenarios
cef76bf19d46e86249a6099c01928e4e33db5f20
6a4563d241e61a62020f76796762df5ae8817cc8
refs/heads/master
2023-03-18T23:30:49.653812
2020-09-23T06:26:05
2020-09-23T06:26:05
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
143,320
sce
Stairmaster 2.sce
Name=Stairmaster 2 PlayerCharacters=Tony Hawk BotCharacters=Nyjah Huston.bot IsChallenge=true Timelimit=120.0 PlayerProfile=Tony Hawk AddedBots=Nyjah Huston.bot PlayerMaxLives=0 BotMaxLives=0 PlayerTeam=1 BotTeams=2 MapName=rightstair.map MapScale=2.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=0.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=0.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Tracking WeaponHeroTag=Laser Beam DifficultyTag=2 AuthorsTag=faiNt` BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=false Description=*HEADSHOTS ONLY* GameVersion=1.0.7.2 ScorePerDistance=0.0 [Aim Profile] Name=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 [Bot Profile] Name=Nyjah Huston DodgeProfileNames=Long Strafe FB DodgeProfileWeights=1.0 DodgeProfileMaxChangeTime=2.0 DodgeProfileMinChangeTime=1.5 WeaponProfileWeights=1.0;1.0;2.0;1.0;0.0;0.0;0.0;0.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=false CharacterProfile=Watcher SeeThroughWalls=false NoDodging=false NoAiming=false [Character Profile] Name=Tony Hawk MaxHealth=300.0 WeaponProfileNames=steezy shooter;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=700.0 MaxCrouchSpeed=500.0 Acceleration=5000.0 AirAcceleration=16000.0 Friction=4.0 BrakingFrictionFactor=2.0 JumpVelocity=800.0 Gravity=3.0 AirControl=0.25 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=320.0 MainBBRadius=58.0 MainBBHasHead=false MainBBHeadRadius=45.0 MainBBHeadOffset=0.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=320.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 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.5 AllowBufferedJumps=true 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=2048.0 VerticalSpawnOffset=0.0 [Character Profile] Name=Watcher MaxHealth=2000.0 WeaponProfileNames=;;;;;;; MinRespawnDelay=0.1 MaxRespawnDelay=5.0 StepUpHeight=45.0 CrouchHeightModifier=0.69 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=20.000 HeadshotOnly=true DamageKnockbackFactor=3.0 MovementType=Base MaxSpeed=250.0 MaxCrouchSpeed=270.0 Acceleration=10000.0 AirAcceleration=16000.0 Friction=100.0 BrakingFrictionFactor=0.0 JumpVelocity=300.0 Gravity=1.0 AirControl=0.16 CanCrouch=true CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.000 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=0.888 Z=0.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cylindrical MainBBHeight=100.0 MainBBRadius=20.0 MainBBHasHead=true MainBBHeadRadius=15.0 MainBBHeadOffset=40.0 MainBBHide=false ProjBBType=Cylindrical ProjBBHeight=160.0 ProjBBRadius=5.0 ProjBBHasHead=false ProjBBHeadRadius=20.0 ProjBBHeadOffset=15.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.1 AllowBufferedJumps=true 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=2048.0 VerticalSpawnOffset=0.0 [Dodge Profile] Name=Long Strafe FB MaxTargetDistance=100000.0 MinTargetDistance=0.0 ToggleLeftRight=true ToggleForwardBack=false MinLRTimeChange=0.6 MaxLRTimeChange=3.0 MinFBTimeChange=0.25 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.15 DamageReactionMaximumDelay=0.18 DamageReactionCooldown=1.0 DamageReactionThreshold=0.0 DamageReactionResetTimer=0.1 JumpFrequency=0.0 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.3 MaxJumpTime=0.6 LeftStrafeTimeMult=1.0 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.8 BlockedMovementReactionMin=0.05 BlockedMovementReactionMax=0.1 [Weapon Profile] Name=steezy shooter Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.046 Pierces=false Category=FullyAuto 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=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=1.0 MagazineMax=0 AmmoPerShot=1 ReloadTimeFromEmpty=0.5 ReloadTimeFromPartial=0.5 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=7.0 DelayBeforeShot=0.0 HitscanVisualEffect=Tracer ProjectileGraphic=Ball VisualLifetime=0.05 WallParticleEffect=None HitParticleEffect=None BounceOffWorld=false BounceFactor=0.0 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=false ADSZoomDelay=0.0 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=30.0 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=1.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=true AimPunchAmount=0.0 AimPunchResetTime=0.1 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=true MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=72.099998 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true 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=0.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,0.0 SpreadSCA=1.0,1.0,-1.0,0.0 SpreadMSA=1.0,1.0,-1.0,0.0 SpreadMCA=1.0,1.0,-1.0,0.0 SpreadSSH=1.0,1.0,-1.0,0.0 SpreadSCH=1.0,1.0,-1.0,0.0 SpreadMSH=1.0,1.0,-1.0,0.0 SpreadMCH=1.0,1.0,-1.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=false AAAlpha=0.05 AAMaxSpeed=1.0 AADeadZone=0.0 AAFOV=30.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.095 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end UInt8 playersMin 1 UInt8 playersMax 16 brush vertices -144.000000 -2.000000 1088.000000 -48.000000 -2.000000 1088.000000 -48.000000 -2.000000 1072.000000 -144.000000 -2.000000 1072.000000 -144.000000 -8.000000 1088.000000 -48.000000 -8.000000 1088.000000 -48.000000 -8.000000 1072.000000 -144.000000 -8.000000 1072.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 -144.000000 4.000000 1072.000000 -48.000000 4.000000 1072.000000 -48.000000 4.000000 1056.000000 -144.000000 4.000000 1056.000000 -144.000000 -2.000000 1072.000000 -48.000000 -2.000000 1072.000000 -48.000000 -2.000000 1056.000000 -144.000000 -2.000000 1056.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 -144.000000 10.000000 1056.000000 -48.000000 10.000000 1056.000000 -48.000000 10.000000 1040.000000 -144.000000 10.000000 1040.000000 -144.000000 4.000000 1056.000000 -48.000000 4.000000 1056.000000 -48.000000 4.000000 1040.000000 -144.000000 4.000000 1040.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 -144.000000 16.000000 1040.000000 -48.000000 16.000000 1040.000000 -48.000000 16.000000 1024.000000 -144.000000 16.000000 1024.000000 -144.000000 10.000000 1040.000000 -48.000000 10.000000 1040.000000 -48.000000 10.000000 1024.000000 -144.000000 10.000000 1024.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 -142.000000 22.000000 1024.000000 -46.000000 22.000000 1024.000000 -46.000000 22.000000 1008.000000 -142.000000 22.000000 1008.000000 -142.000000 16.000000 1024.000000 -46.000000 16.000000 1024.000000 -46.000000 16.000000 1008.000000 -142.000000 16.000000 1008.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 -142.000000 46.000000 960.000000 -46.000000 46.000000 960.000000 -46.000000 46.000000 944.000000 -142.000000 46.000000 944.000000 -142.000000 40.000000 960.000000 -46.000000 40.000000 960.000000 -46.000000 40.000000 944.000000 -142.000000 40.000000 944.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 -142.000000 40.000000 976.000000 -46.000000 40.000000 976.000000 -46.000000 40.000000 960.000000 -142.000000 40.000000 960.000000 -142.000000 34.000000 976.000000 -46.000000 34.000000 976.000000 -46.000000 34.000000 960.000000 -142.000000 34.000000 960.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 -142.000000 34.000000 992.000000 -46.000000 34.000000 992.000000 -46.000000 34.000000 976.000000 -142.000000 34.000000 976.000000 -142.000000 28.000000 992.000000 -46.000000 28.000000 992.000000 -46.000000 28.000000 976.000000 -142.000000 28.000000 976.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 -142.000000 28.000000 1008.000000 -46.000000 28.000000 1008.000000 -46.000000 28.000000 992.000000 -142.000000 28.000000 992.000000 -142.000000 22.000000 1008.000000 -46.000000 22.000000 1008.000000 -46.000000 22.000000 992.000000 -142.000000 22.000000 992.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 -142.000000 98.000000 816.000000 -46.000000 98.000000 816.000000 -46.000000 98.000000 800.000000 -142.000000 98.000000 800.000000 -142.000000 92.000000 816.000000 -46.000000 92.000000 816.000000 -46.000000 92.000000 800.000000 -142.000000 92.000000 800.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 -142.000000 92.000000 832.000000 -46.000000 92.000000 832.000000 -46.000000 92.000000 816.000000 -142.000000 92.000000 816.000000 -142.000000 86.000000 832.000000 -46.000000 86.000000 832.000000 -46.000000 86.000000 816.000000 -142.000000 86.000000 816.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 -142.000000 86.000000 848.000000 -46.000000 86.000000 848.000000 -46.000000 86.000000 832.000000 -142.000000 86.000000 832.000000 -142.000000 80.000000 848.000000 -46.000000 80.000000 848.000000 -46.000000 80.000000 832.000000 -142.000000 80.000000 832.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 -142.000000 80.000000 864.000000 -46.000000 80.000000 864.000000 -46.000000 80.000000 848.000000 -142.000000 80.000000 848.000000 -142.000000 74.000000 864.000000 -46.000000 74.000000 864.000000 -46.000000 74.000000 848.000000 -142.000000 74.000000 848.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 -142.000000 74.000000 880.000000 -46.000000 74.000000 880.000000 -46.000000 74.000000 864.000000 -142.000000 74.000000 864.000000 -142.000000 68.000000 880.000000 -46.000000 68.000000 880.000000 -46.000000 68.000000 864.000000 -142.000000 68.000000 864.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 -144.000000 68.000000 896.000000 -48.000000 68.000000 896.000000 -48.000000 68.000000 880.000000 -144.000000 68.000000 880.000000 -144.000000 62.000000 896.000000 -48.000000 62.000000 896.000000 -48.000000 62.000000 880.000000 -144.000000 62.000000 880.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 -144.000000 62.000000 912.000000 -48.000000 62.000000 912.000000 -48.000000 62.000000 896.000000 -144.000000 62.000000 896.000000 -144.000000 56.000000 912.000000 -48.000000 56.000000 912.000000 -48.000000 56.000000 896.000000 -144.000000 56.000000 896.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 -144.000000 56.000000 928.000000 -48.000000 56.000000 928.000000 -48.000000 56.000000 912.000000 -144.000000 56.000000 912.000000 -144.000000 50.000000 928.000000 -48.000000 50.000000 928.000000 -48.000000 50.000000 912.000000 -144.000000 50.000000 912.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 -144.000000 50.000000 944.000000 -48.000000 50.000000 944.000000 -48.000000 50.000000 928.000000 -144.000000 50.000000 928.000000 -144.000000 44.000000 944.000000 -48.000000 44.000000 944.000000 -48.000000 44.000000 928.000000 -144.000000 44.000000 928.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 -142.000183 104.000000 806.000183 -45.999878 104.000000 806.000122 -46.000061 104.000000 790.000183 -142.000122 104.000000 790.000244 -142.000183 98.000000 806.000183 -45.999878 98.000000 806.000122 -46.000061 98.000000 790.000183 -142.000122 98.000000 790.000244 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 -46.000122 110.000000 782.000122 -142.000122 110.000000 782.000244 -142.000122 110.000000 798.000244 -46.000183 110.000000 798.000183 -46.000122 104.000000 782.000122 -142.000122 104.000000 782.000244 -142.000122 104.000000 798.000244 -46.000183 104.000000 798.000183 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 -46.000122 116.000000 774.000122 -142.000122 116.000000 774.000122 -142.000122 116.000000 790.000244 -46.000122 116.000000 790.000122 -46.000122 110.000000 774.000122 -142.000122 110.000000 774.000122 -142.000122 110.000000 790.000244 -46.000122 110.000000 790.000122 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 -46.000122 122.000000 766.000122 -142.000122 122.000000 766.000122 -142.000122 122.000000 782.000244 -46.000122 122.000000 782.000122 -46.000122 116.000000 766.000122 -142.000122 116.000000 766.000122 -142.000122 116.000000 782.000244 -46.000122 116.000000 782.000122 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 -46.000122 128.000000 758.000122 -142.000122 128.000000 758.000122 -142.000122 128.000000 774.000122 -46.000122 128.000000 774.000122 -46.000122 122.000000 758.000122 -142.000122 122.000000 758.000122 -142.000122 122.000000 774.000122 -46.000122 122.000000 774.000122 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 -46.000122 134.000000 750.000122 -142.000122 134.000000 750.000122 -142.000122 134.000000 766.000122 -46.000122 134.000000 766.000122 -46.000122 128.000000 750.000122 -142.000122 128.000000 750.000122 -142.000122 128.000000 766.000122 -46.000122 128.000000 766.000122 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 -46.000122 140.000000 742.000244 -142.000183 140.000000 742.000183 -142.000122 140.000000 758.000122 -46.000122 140.000000 758.000122 -46.000122 134.000000 742.000244 -142.000183 134.000000 742.000183 -142.000122 134.000000 758.000122 -46.000122 134.000000 758.000122 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 -46.000122 146.000000 734.000244 -142.000183 146.000000 734.000183 -142.000122 146.000000 750.000122 -46.000122 146.000000 750.000122 -46.000122 140.000000 734.000244 -142.000183 140.000000 734.000183 -142.000122 140.000000 750.000122 -46.000122 140.000000 750.000122 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 -46.000122 152.000000 726.000244 -142.000183 152.000000 726.000183 -142.000183 152.000000 742.000183 -46.000122 152.000000 742.000244 -46.000122 146.000000 726.000244 -142.000183 146.000000 726.000183 -142.000183 146.000000 742.000183 -46.000122 146.000000 742.000244 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 -46.000122 158.000000 718.000244 -142.000122 158.000000 718.000244 -142.000183 158.000000 734.000183 -46.000122 158.000000 734.000244 -46.000122 152.000000 718.000244 -142.000122 152.000000 718.000244 -142.000183 152.000000 734.000183 -46.000122 152.000000 734.000244 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 -45.999817 164.000000 710.000061 -141.999817 164.000000 710.000061 -141.999817 164.000000 726.000061 -45.999817 164.000000 726.000061 -45.999817 158.000000 710.000061 -141.999817 158.000000 710.000061 -141.999817 158.000000 726.000061 -45.999817 158.000000 726.000061 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 -46.000122 170.000000 702.000122 -142.000122 170.000000 702.000244 -142.000122 170.000000 718.000244 -46.000122 170.000000 718.000244 -46.000122 164.000000 702.000122 -142.000122 164.000000 702.000244 -142.000122 164.000000 718.000244 -46.000122 164.000000 718.000244 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 -46.000122 176.000000 694.000122 -142.000183 176.000000 694.000183 -142.000122 176.000000 710.000244 -46.000122 176.000000 710.000122 -46.000122 170.000000 694.000122 -142.000183 170.000000 694.000183 -142.000122 170.000000 710.000244 -46.000122 170.000000 710.000122 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 -46.000122 182.000000 686.000122 -142.000183 182.000000 686.000183 -142.000122 182.000000 702.000244 -46.000122 182.000000 702.000122 -46.000122 176.000000 686.000122 -142.000183 176.000000 686.000183 -142.000122 176.000000 702.000244 -46.000122 176.000000 702.000122 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 -46.000122 188.000000 678.000122 -142.000183 188.000000 678.000183 -142.000183 188.000000 694.000183 -46.000122 188.000000 694.000122 -46.000122 182.000000 678.000122 -142.000183 182.000000 678.000183 -142.000183 182.000000 694.000183 -46.000122 182.000000 694.000122 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 -46.000122 194.000000 670.000122 -142.000183 194.000000 670.000183 -142.000183 194.000000 686.000183 -46.000122 194.000000 686.000122 -46.000122 188.000000 670.000122 -142.000183 188.000000 670.000183 -142.000183 188.000000 686.000183 -46.000122 188.000000 686.000122 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 -46.000183 200.000000 662.000183 -142.000183 200.000000 662.000305 -142.000183 200.000000 678.000183 -46.000122 200.000000 678.000122 -46.000183 194.000000 662.000183 -142.000183 194.000000 662.000305 -142.000183 194.000000 678.000183 -46.000122 194.000000 678.000122 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 -46.000183 206.000000 654.000183 -142.000183 206.000000 654.000305 -142.000183 206.000000 670.000183 -46.000122 206.000000 670.000122 -46.000183 200.000000 654.000183 -142.000183 200.000000 654.000305 -142.000183 200.000000 670.000183 -46.000122 200.000000 670.000122 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 -46.000183 218.000000 638.000183 -142.000122 218.000000 638.000244 -142.000183 218.000000 654.000305 -46.000183 218.000000 654.000183 -46.000183 212.000000 638.000183 -142.000122 212.000000 638.000244 -142.000183 212.000000 654.000305 -46.000183 212.000000 654.000183 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 -46.000000 212.000000 646.000122 -141.999817 212.000000 646.000061 -141.999756 212.000000 662.000000 -45.999817 212.000000 662.000061 -46.000000 206.000000 646.000122 -141.999817 206.000000 646.000061 -141.999756 206.000000 662.000000 -45.999817 206.000000 662.000061 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 -46.000122 224.000000 630.000122 -142.000122 224.000000 630.000244 -142.000183 224.000000 646.000183 -46.000122 224.000000 646.000244 -46.000122 218.000000 630.000122 -142.000122 218.000000 630.000244 -142.000183 218.000000 646.000183 -46.000122 218.000000 646.000244 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 -144.000000 230.000000 638.000000 -48.000000 230.000000 638.000000 -48.000000 230.000000 622.000000 -144.000000 230.000000 622.000000 -144.000000 224.000000 638.000000 -48.000000 224.000000 638.000000 -48.000000 224.000000 622.000000 -144.000000 224.000000 622.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 -48.000000 236.000000 614.000000 -143.999847 236.000000 614.000122 -143.999817 236.000000 630.000000 -48.000000 236.000000 630.000000 -48.000000 230.000000 614.000000 -143.999847 230.000000 614.000122 -143.999817 230.000000 630.000000 -48.000000 230.000000 630.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 -48.000000 242.000000 606.000000 -143.999847 242.000000 606.000122 -143.999817 242.000000 622.000000 -48.000000 242.000000 622.000000 -48.000000 236.000000 606.000000 -143.999847 236.000000 606.000122 -143.999817 236.000000 622.000000 -48.000000 236.000000 622.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 -48.000122 488.000000 368.000122 -144.000122 488.000000 368.000244 -144.000122 488.000000 384.000244 -48.000122 488.000000 384.000244 -48.000122 482.000000 368.000122 -144.000122 482.000000 368.000244 -144.000122 482.000000 384.000244 -48.000122 482.000000 384.000244 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 -48.000122 482.000000 372.000122 -144.000122 482.000000 372.000244 -144.000122 482.000000 388.000244 -48.000122 482.000000 388.000244 -48.000122 476.000000 372.000122 -144.000122 476.000000 372.000244 -144.000122 476.000000 388.000244 -48.000122 476.000000 388.000244 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 -48.000122 476.000000 376.000122 -144.000122 476.000000 376.000244 -144.000122 476.000000 392.000244 -48.000122 476.000000 392.000244 -48.000122 470.000000 376.000122 -144.000122 470.000000 376.000244 -144.000122 470.000000 392.000244 -48.000122 470.000000 392.000244 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 -48.000122 470.000000 380.000122 -144.000122 470.000000 380.000244 -144.000122 470.000000 396.000244 -48.000122 470.000000 396.000244 -48.000122 464.000000 380.000122 -144.000122 464.000000 380.000244 -144.000122 464.000000 396.000244 -48.000122 464.000000 396.000244 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 -48.000122 464.000000 384.000122 -144.000122 464.000000 384.000244 -144.000122 464.000000 400.000244 -48.000122 464.000000 400.000244 -48.000122 458.000000 384.000122 -144.000122 458.000000 384.000244 -144.000122 458.000000 400.000244 -48.000122 458.000000 400.000244 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 -48.000122 458.000000 388.000122 -144.000122 458.000000 388.000244 -144.000122 458.000000 404.000244 -48.000122 458.000000 404.000244 -48.000122 452.000000 388.000122 -144.000122 452.000000 388.000244 -144.000122 452.000000 404.000244 -48.000122 452.000000 404.000244 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 -48.000122 452.000000 392.000122 -144.000122 452.000000 392.000244 -144.000122 452.000000 408.000244 -48.000122 452.000000 408.000244 -48.000122 446.000000 392.000122 -144.000122 446.000000 392.000244 -144.000122 446.000000 408.000244 -48.000122 446.000000 408.000244 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 -48.000122 446.000000 396.000122 -144.000122 446.000000 396.000244 -144.000122 446.000000 412.000244 -48.000122 446.000000 412.000244 -48.000122 440.000000 396.000122 -144.000122 440.000000 396.000244 -144.000122 440.000000 412.000244 -48.000122 440.000000 412.000244 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 -48.000122 440.000000 400.000122 -144.000122 440.000000 400.000244 -144.000122 440.000000 416.000244 -48.000122 440.000000 416.000244 -48.000122 434.000000 400.000122 -144.000122 434.000000 400.000244 -144.000122 434.000000 416.000244 -48.000122 434.000000 416.000244 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 -48.000122 434.000000 404.000122 -144.000122 434.000000 404.000244 -144.000122 434.000000 420.000244 -48.000122 434.000000 420.000244 -48.000122 428.000000 404.000122 -144.000122 428.000000 404.000244 -144.000122 428.000000 420.000244 -48.000122 428.000000 420.000244 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 -48.000122 428.000000 408.000122 -144.000122 428.000000 408.000244 -144.000122 428.000000 424.000244 -48.000122 428.000000 424.000244 -48.000122 422.000000 408.000122 -144.000122 422.000000 408.000244 -144.000122 422.000000 424.000244 -48.000122 422.000000 424.000244 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 -48.000122 422.000000 412.000122 -144.000122 422.000000 412.000244 -144.000122 422.000000 428.000244 -48.000122 422.000000 428.000244 -48.000122 416.000000 412.000122 -144.000122 416.000000 412.000244 -144.000122 416.000000 428.000244 -48.000122 416.000000 428.000244 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 -48.000122 416.000000 416.000122 -144.000122 416.000000 416.000244 -144.000122 416.000000 432.000244 -48.000122 416.000000 432.000244 -48.000122 410.000000 416.000122 -144.000122 410.000000 416.000244 -144.000122 410.000000 432.000244 -48.000122 410.000000 432.000244 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 -48.000122 410.000000 420.000122 -144.000122 410.000000 420.000244 -144.000122 410.000000 436.000244 -48.000122 410.000000 436.000244 -48.000122 404.000000 420.000122 -144.000122 404.000000 420.000244 -144.000122 404.000000 436.000244 -48.000122 404.000000 436.000244 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 -48.000122 404.000000 424.000122 -144.000122 404.000000 424.000244 -144.000122 404.000000 440.000244 -48.000122 404.000000 440.000244 -48.000122 398.000000 424.000122 -144.000122 398.000000 424.000244 -144.000122 398.000000 440.000244 -48.000122 398.000000 440.000244 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 -48.000122 398.000000 428.000122 -144.000122 398.000000 428.000244 -144.000122 398.000000 444.000244 -48.000122 398.000000 444.000244 -48.000122 392.000000 428.000122 -144.000122 392.000000 428.000244 -144.000122 392.000000 444.000244 -48.000122 392.000000 444.000244 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 -48.000122 392.000000 432.000122 -144.000122 392.000000 432.000244 -144.000122 392.000000 448.000244 -48.000122 392.000000 448.000244 -48.000122 386.000000 432.000122 -144.000122 386.000000 432.000244 -144.000122 386.000000 448.000244 -48.000122 386.000000 448.000244 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 -48.000122 386.000000 436.000122 -144.000122 386.000000 436.000244 -144.000122 386.000000 452.000244 -48.000122 386.000000 452.000244 -48.000122 380.000000 436.000122 -144.000122 380.000000 436.000244 -144.000122 380.000000 452.000244 -48.000122 380.000000 452.000244 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 -48.000122 380.000000 440.000122 -144.000122 380.000000 440.000244 -144.000122 380.000000 456.000244 -48.000122 380.000000 456.000244 -48.000122 374.000000 440.000122 -144.000122 374.000000 440.000244 -144.000122 374.000000 456.000244 -48.000122 374.000000 456.000244 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 -48.000122 374.000000 444.000122 -144.000122 374.000000 444.000244 -144.000122 374.000000 460.000244 -48.000122 374.000000 460.000244 -48.000122 368.000000 444.000122 -144.000122 368.000000 444.000244 -144.000122 368.000000 460.000244 -48.000122 368.000000 460.000244 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 -48.000122 368.000000 448.000122 -144.000122 368.000000 448.000244 -144.000122 368.000000 464.000244 -48.000122 368.000000 464.000244 -48.000122 362.000000 448.000122 -144.000122 362.000000 448.000244 -144.000122 362.000000 464.000244 -48.000122 362.000000 464.000244 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 -48.000122 362.000000 452.000122 -144.000122 362.000000 452.000244 -144.000122 362.000000 468.000244 -48.000122 362.000000 468.000244 -48.000122 356.000000 452.000122 -144.000122 356.000000 452.000244 -144.000122 356.000000 468.000244 -48.000122 356.000000 468.000244 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 -48.000122 356.000000 456.000122 -144.000122 356.000000 456.000244 -144.000122 356.000000 472.000244 -48.000122 356.000000 472.000244 -48.000122 350.000000 456.000122 -144.000122 350.000000 456.000244 -144.000122 350.000000 472.000244 -48.000122 350.000000 472.000244 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 -48.000000 350.000000 462.000000 -143.999817 350.000000 462.000061 -143.999817 350.000000 478.000061 -48.000000 350.000000 478.000122 -48.000000 344.000000 462.000000 -143.999817 344.000000 462.000061 -143.999817 344.000000 478.000061 -48.000000 344.000000 478.000122 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 -48.000000 344.000000 470.000122 -143.999817 344.000000 470.000061 -143.999939 344.000000 486.000183 -47.999817 344.000000 486.000061 -48.000000 338.000000 470.000122 -143.999817 338.000000 470.000061 -143.999939 338.000000 486.000183 -47.999817 338.000000 486.000061 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 -48.000122 338.000000 478.000244 -144.000183 338.000000 478.000183 -144.000183 338.000000 494.000305 -48.000183 338.000000 494.000183 -48.000122 332.000000 478.000244 -144.000183 332.000000 478.000183 -144.000183 332.000000 494.000305 -48.000183 332.000000 494.000183 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 -47.999817 332.000000 486.000061 -143.999939 332.000000 486.000183 -143.999939 332.000000 502.000061 -47.999878 332.000000 502.000122 -47.999817 326.000000 486.000061 -143.999939 326.000000 486.000183 -143.999939 326.000000 502.000061 -47.999878 326.000000 502.000122 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 -47.999817 326.000000 494.000061 -143.999756 326.000000 494.000000 -143.999756 326.000000 510.000000 -47.999878 326.000000 510.000122 -47.999817 320.000000 494.000061 -143.999756 320.000000 494.000000 -143.999756 320.000000 510.000000 -47.999878 320.000000 510.000122 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 -47.999878 320.000000 502.000122 -143.999939 320.000000 502.000061 -143.999969 320.000000 518.000122 -47.999878 320.000000 518.000122 -47.999878 314.000000 502.000122 -143.999939 314.000000 502.000061 -143.999969 314.000000 518.000122 -47.999878 314.000000 518.000122 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 -47.999878 314.000000 510.000122 -143.999756 314.000000 510.000000 -143.999786 314.000000 526.000000 -47.999878 314.000000 526.000122 -47.999878 308.000000 510.000122 -143.999756 308.000000 510.000000 -143.999786 308.000000 526.000000 -47.999878 308.000000 526.000122 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 -47.999878 308.000000 518.000122 -143.999969 308.000000 518.000122 -143.999969 308.000000 534.000122 -47.999878 308.000000 534.000122 -47.999878 302.000000 518.000122 -143.999969 302.000000 518.000122 -143.999969 302.000000 534.000122 -47.999878 302.000000 534.000122 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 -47.999878 302.000000 526.000122 -143.999786 302.000000 526.000000 -143.999817 302.000000 542.000061 -47.999817 302.000000 542.000061 -47.999878 296.000000 526.000122 -143.999786 296.000000 526.000000 -143.999817 296.000000 542.000061 -47.999817 296.000000 542.000061 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 -47.999878 296.000000 534.000122 -143.999969 296.000000 534.000122 -143.999939 296.000000 550.000183 -47.999817 296.000000 550.000061 -47.999878 290.000000 534.000122 -143.999969 290.000000 534.000122 -143.999939 290.000000 550.000183 -47.999817 290.000000 550.000061 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 -48.000122 290.000000 542.000122 -144.000122 290.000000 542.000244 -144.000183 290.000000 558.000183 -48.000122 290.000000 558.000244 -48.000122 284.000000 542.000122 -144.000122 284.000000 542.000244 -144.000183 284.000000 558.000183 -48.000122 284.000000 558.000244 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 -47.999817 284.000000 550.000061 -143.999939 284.000000 550.000183 -143.999847 284.000000 566.000122 -48.000000 284.000000 566.000000 -47.999817 278.000000 550.000061 -143.999939 278.000000 550.000183 -143.999847 278.000000 566.000122 -48.000000 278.000000 566.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 -47.999817 278.000000 558.000061 -143.999817 278.000000 558.000061 -143.999847 278.000000 574.000122 -48.000000 278.000000 574.000000 -47.999817 272.000000 558.000061 -143.999817 272.000000 558.000061 -143.999847 272.000000 574.000122 -48.000000 272.000000 574.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 -48.000000 272.000000 566.000000 -143.999847 272.000000 566.000122 -143.999847 272.000000 582.000122 -48.000061 272.000000 582.000061 -48.000000 266.000000 566.000000 -143.999847 266.000000 566.000122 -143.999847 266.000000 582.000122 -48.000061 266.000000 582.000061 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 -48.000000 266.000000 574.000000 -143.999847 266.000000 574.000122 -143.999878 266.000000 590.000122 -48.000000 266.000000 590.000122 -48.000000 260.000000 574.000000 -143.999847 260.000000 574.000122 -143.999878 260.000000 590.000122 -48.000000 260.000000 590.000122 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 -48.000061 260.000000 582.000061 -143.999847 260.000000 582.000122 -143.999878 260.000000 598.000122 -48.000061 260.000000 598.000000 -48.000061 254.000000 582.000061 -143.999847 254.000000 582.000122 -143.999878 254.000000 598.000122 -48.000061 254.000000 598.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 -48.000000 254.000000 590.000122 -143.999878 254.000000 590.000122 -143.999847 254.000000 606.000122 -48.000000 254.000000 606.000000 -48.000000 248.000000 590.000122 -143.999878 248.000000 590.000122 -143.999847 248.000000 606.000122 -48.000000 248.000000 606.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 -48.000061 248.000000 598.000000 -143.999878 248.000000 598.000122 -143.999847 248.000000 614.000122 -48.000000 248.000000 614.000000 -48.000061 242.000000 598.000000 -143.999878 242.000000 598.000122 -143.999847 242.000000 614.000122 -48.000000 242.000000 614.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 -50.000244 104.000000 1498.000244 -146.000549 104.000000 1498.000244 -146.000427 104.000000 1514.000244 -50.000427 104.000000 1514.000244 -50.000244 98.000000 1498.000244 -146.000549 98.000000 1498.000244 -146.000427 98.000000 1514.000244 -50.000427 98.000000 1514.000244 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 -146.000305 110.000000 1522.000244 -50.000397 110.000000 1522.000122 -50.000336 110.000000 1506.000000 -146.000244 110.000000 1506.000244 -146.000305 104.000000 1522.000244 -50.000397 104.000000 1522.000122 -50.000336 104.000000 1506.000000 -146.000244 104.000000 1506.000244 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 -146.000336 116.000000 1530.000244 -50.000336 116.000000 1530.000244 -50.000427 116.000000 1514.000244 -146.000305 116.000000 1514.000244 -146.000336 110.000000 1530.000244 -50.000336 110.000000 1530.000244 -50.000427 110.000000 1514.000244 -146.000305 110.000000 1514.000244 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 -146.000336 122.000000 1538.000244 -50.000336 122.000000 1538.000244 -50.000397 122.000000 1522.000244 -146.000305 122.000000 1522.000244 -146.000336 116.000000 1538.000244 -50.000336 116.000000 1538.000244 -50.000397 116.000000 1522.000244 -146.000305 116.000000 1522.000244 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 -146.000336 128.000000 1546.000244 -50.000427 128.000000 1546.000244 -50.000336 128.000000 1530.000244 -146.000336 128.000000 1530.000244 -146.000336 122.000000 1546.000244 -50.000427 122.000000 1546.000244 -50.000336 122.000000 1530.000244 -146.000336 122.000000 1530.000244 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 -146.000305 134.000000 1554.000244 -50.000427 134.000000 1554.000244 -50.000336 134.000000 1538.000122 -146.000336 134.000000 1538.000244 -146.000305 128.000000 1554.000244 -50.000427 128.000000 1554.000244 -50.000336 128.000000 1538.000122 -146.000336 128.000000 1538.000244 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 -146.000305 140.000000 1562.000122 -50.000244 140.000000 1562.000244 -50.000427 140.000000 1546.000244 -146.000336 140.000000 1546.000244 -146.000305 134.000000 1562.000122 -50.000244 134.000000 1562.000244 -50.000427 134.000000 1546.000244 -146.000336 134.000000 1546.000244 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 -146.000305 146.000000 1570.000122 -50.000244 146.000000 1570.000244 -50.000427 146.000000 1554.000244 -146.000305 146.000000 1554.000244 -146.000305 140.000000 1570.000122 -50.000244 140.000000 1570.000244 -50.000427 140.000000 1554.000244 -146.000305 140.000000 1554.000244 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 -146.000336 152.000000 1578.000000 -50.000244 152.000000 1578.000122 -50.000244 152.000000 1562.000122 -146.000305 152.000000 1562.000000 -146.000336 146.000000 1578.000000 -50.000244 146.000000 1578.000122 -50.000244 146.000000 1562.000122 -146.000305 146.000000 1562.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 -146.000427 158.000000 1586.000122 -50.000305 158.000000 1586.000122 -50.000244 158.000000 1570.000244 -146.000305 158.000000 1570.000122 -146.000427 152.000000 1586.000122 -50.000305 152.000000 1586.000122 -50.000244 152.000000 1570.000244 -146.000305 152.000000 1570.000122 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 -146.000610 164.000000 1594.000244 -50.000610 164.000000 1594.000244 -50.000610 164.000000 1578.000244 -146.000641 164.000000 1578.000244 -146.000610 158.000000 1594.000244 -50.000610 158.000000 1594.000244 -50.000610 158.000000 1578.000244 -146.000641 158.000000 1578.000244 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 -146.000305 170.000000 1602.000244 -50.000427 170.000000 1602.000122 -50.000305 170.000000 1586.000122 -146.000427 170.000000 1586.000122 -146.000305 164.000000 1602.000244 -50.000427 164.000000 1602.000122 -50.000305 164.000000 1586.000122 -146.000427 164.000000 1586.000122 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 -146.000305 176.000000 1610.000244 -50.000275 176.000000 1610.000000 -50.000427 176.000000 1594.000122 -146.000305 176.000000 1594.000244 -146.000305 170.000000 1610.000244 -50.000275 170.000000 1610.000000 -50.000427 170.000000 1594.000122 -146.000305 170.000000 1594.000244 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 -146.000427 182.000000 1618.000244 -50.000305 182.000000 1618.000122 -50.000427 182.000000 1602.000122 -146.000305 182.000000 1602.000244 -146.000427 176.000000 1618.000244 -50.000305 176.000000 1618.000122 -50.000427 176.000000 1602.000122 -146.000305 176.000000 1602.000244 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 -146.000336 188.000000 1626.000244 -50.000244 188.000000 1626.000244 -50.000275 188.000000 1610.000122 -146.000305 188.000000 1610.000244 -146.000336 182.000000 1626.000244 -50.000244 182.000000 1626.000244 -50.000275 182.000000 1610.000122 -146.000305 182.000000 1610.000244 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 -146.000305 194.000000 1634.000244 -50.000244 194.000000 1634.000244 -50.000305 194.000000 1618.000122 -146.000427 194.000000 1618.000244 -146.000305 188.000000 1634.000244 -50.000244 188.000000 1634.000244 -50.000305 188.000000 1618.000122 -146.000427 188.000000 1618.000244 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 -146.000244 200.000000 1642.000244 -50.000366 200.000000 1642.000122 -50.000244 200.000000 1626.000244 -146.000336 200.000000 1626.000244 -146.000244 194.000000 1642.000244 -50.000366 194.000000 1642.000122 -50.000244 194.000000 1626.000244 -146.000336 194.000000 1626.000244 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 -146.000244 206.000000 1650.000244 -50.000244 206.000000 1650.000122 -50.000244 206.000000 1634.000244 -146.000305 206.000000 1634.000244 -146.000244 200.000000 1650.000244 -50.000244 200.000000 1650.000122 -50.000244 200.000000 1634.000244 -146.000305 200.000000 1634.000244 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 -146.000336 218.000000 1666.000244 -50.000366 218.000000 1666.000122 -50.000244 218.000000 1650.000122 -146.000244 218.000000 1650.000244 -146.000336 212.000000 1666.000244 -50.000366 212.000000 1666.000122 -50.000244 212.000000 1650.000122 -146.000244 212.000000 1650.000244 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 -146.000458 212.000000 1658.000244 -50.000580 212.000000 1658.000366 -50.000671 212.000000 1642.000488 -146.000641 212.000000 1642.000244 -146.000458 206.000000 1658.000244 -50.000580 206.000000 1658.000366 -50.000671 206.000000 1642.000488 -146.000641 206.000000 1642.000244 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 -146.000305 224.000000 1674.000122 -50.000305 224.000000 1674.000122 -50.000244 224.000000 1658.000244 -146.000305 224.000000 1658.000122 -146.000305 218.000000 1674.000122 -50.000305 218.000000 1674.000122 -50.000244 218.000000 1658.000244 -146.000305 218.000000 1658.000122 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 -48.000458 230.000000 1666.000244 -144.000427 230.000000 1666.000244 -144.000427 230.000000 1682.000244 -48.000458 230.000000 1682.000366 -48.000458 224.000000 1666.000244 -144.000427 224.000000 1666.000244 -144.000427 224.000000 1682.000244 -48.000458 224.000000 1682.000366 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 -144.000427 236.000000 1690.000366 -48.000641 236.000000 1690.000244 -48.000610 236.000000 1674.000244 -144.000427 236.000000 1674.000366 -144.000427 230.000000 1690.000366 -48.000641 230.000000 1690.000244 -48.000610 230.000000 1674.000244 -144.000427 230.000000 1674.000366 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 -144.000458 242.000000 1698.000244 -48.000641 242.000000 1698.000122 -48.000610 242.000000 1682.000244 -144.000427 242.000000 1682.000244 -144.000458 236.000000 1698.000244 -48.000641 236.000000 1698.000122 -48.000610 236.000000 1682.000244 -144.000427 236.000000 1682.000244 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 -144.000366 488.000000 1936.000244 -48.000427 488.000000 1936.000000 -48.000427 488.000000 1920.000000 -144.000275 488.000000 1920.000000 -144.000366 482.000000 1936.000244 -48.000427 482.000000 1936.000000 -48.000427 482.000000 1920.000000 -144.000275 482.000000 1920.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 -144.000366 482.000000 1932.000244 -48.000366 482.000000 1932.000000 -48.000366 482.000000 1916.000000 -144.000336 482.000000 1916.000000 -144.000366 476.000000 1932.000244 -48.000366 476.000000 1932.000000 -48.000366 476.000000 1916.000000 -144.000336 476.000000 1916.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 -144.000427 476.000000 1928.000000 -48.000305 476.000000 1928.000000 -48.000275 476.000000 1912.000000 -144.000336 476.000000 1912.000000 -144.000427 470.000000 1928.000000 -48.000305 470.000000 1928.000000 -48.000275 470.000000 1912.000000 -144.000336 470.000000 1912.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 -144.000366 470.000000 1924.000244 -48.000427 470.000000 1924.000000 -48.000366 470.000000 1908.000000 -144.000336 470.000000 1908.000000 -144.000366 464.000000 1924.000244 -48.000427 464.000000 1924.000000 -48.000366 464.000000 1908.000000 -144.000336 464.000000 1908.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 -144.000336 464.000000 1920.000244 -48.000427 464.000000 1920.000000 -48.000427 464.000000 1904.000000 -144.000366 464.000000 1904.000000 -144.000336 458.000000 1920.000244 -48.000427 458.000000 1920.000000 -48.000427 458.000000 1904.000000 -144.000366 458.000000 1904.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 -144.000275 458.000000 1916.000244 -48.000366 458.000000 1916.000000 -48.000366 458.000000 1900.000000 -144.000427 458.000000 1900.000000 -144.000275 452.000000 1916.000244 -48.000366 452.000000 1916.000000 -48.000366 452.000000 1900.000000 -144.000427 452.000000 1900.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 -144.000214 452.000000 1912.000244 -48.000275 452.000000 1912.000000 -48.000366 452.000000 1896.000000 -144.000305 452.000000 1896.000000 -144.000214 446.000000 1912.000244 -48.000275 446.000000 1912.000000 -48.000366 446.000000 1896.000000 -144.000305 446.000000 1896.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 -144.000397 446.000000 1908.000000 -48.000366 446.000000 1908.000000 -48.000366 446.000000 1892.000000 -144.000305 446.000000 1892.000000 -144.000397 440.000000 1908.000000 -48.000366 440.000000 1908.000000 -48.000366 440.000000 1892.000000 -144.000305 440.000000 1892.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 -144.000336 440.000000 1904.000244 -48.000427 440.000000 1904.000000 -48.000427 440.000000 1888.000000 -144.000336 440.000000 1888.000000 -144.000336 434.000000 1904.000244 -48.000427 434.000000 1904.000000 -48.000427 434.000000 1888.000000 -144.000336 434.000000 1888.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 -144.000275 434.000000 1900.000244 -48.000366 434.000000 1900.000000 -48.000366 434.000000 1884.000000 -144.000336 434.000000 1884.000000 -144.000275 428.000000 1900.000244 -48.000366 428.000000 1900.000000 -48.000366 428.000000 1884.000000 -144.000336 428.000000 1884.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 -144.000305 428.000000 1896.000244 -48.000366 428.000000 1896.000000 -48.000366 428.000000 1880.000000 -144.000336 428.000000 1880.000000 -144.000305 422.000000 1896.000244 -48.000366 422.000000 1896.000000 -48.000366 422.000000 1880.000000 -144.000336 422.000000 1880.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 -144.000305 422.000000 1892.000244 -48.000366 422.000000 1892.000000 -48.000305 422.000000 1876.000000 -144.000275 422.000000 1876.000000 -144.000305 416.000000 1892.000244 -48.000366 416.000000 1892.000000 -48.000305 416.000000 1876.000000 -144.000275 416.000000 1876.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 -144.000305 416.000000 1888.000244 -48.000427 416.000000 1888.000000 -48.000427 416.000000 1872.000000 -144.000336 416.000000 1872.000000 -144.000305 410.000000 1888.000244 -48.000427 410.000000 1888.000000 -48.000427 410.000000 1872.000000 -144.000336 410.000000 1872.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 -144.000305 410.000000 1884.000244 -48.000366 410.000000 1884.000000 -48.000458 410.000000 1868.000000 -144.000275 410.000000 1868.000000 -144.000305 404.000000 1884.000244 -48.000366 404.000000 1884.000000 -48.000458 404.000000 1868.000000 -144.000275 404.000000 1868.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 -144.000275 404.000000 1880.000244 -48.000366 404.000000 1880.000000 -48.000397 404.000000 1864.000000 -144.000305 404.000000 1864.000000 -144.000275 398.000000 1880.000244 -48.000366 398.000000 1880.000000 -48.000397 398.000000 1864.000000 -144.000305 398.000000 1864.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 -144.000275 398.000000 1876.000244 -48.000305 398.000000 1876.000000 -48.000275 398.000000 1860.000000 -144.000305 398.000000 1860.000000 -144.000275 392.000000 1876.000244 -48.000305 392.000000 1876.000000 -48.000275 392.000000 1860.000000 -144.000305 392.000000 1860.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 -144.000336 392.000000 1872.000244 -48.000427 392.000000 1872.000000 -48.000336 392.000000 1856.000244 -144.000305 392.000000 1856.000000 -144.000336 386.000000 1872.000244 -48.000427 386.000000 1872.000000 -48.000336 386.000000 1856.000244 -144.000305 386.000000 1856.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 -144.000336 386.000000 1868.000244 -48.000458 386.000000 1868.000000 -48.000366 386.000000 1852.000000 -144.000305 386.000000 1852.000000 -144.000336 380.000000 1868.000244 -48.000458 380.000000 1868.000000 -48.000366 380.000000 1852.000000 -144.000305 380.000000 1852.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 -144.000336 380.000000 1864.000244 -48.000397 380.000000 1864.000000 -48.000397 380.000000 1848.000000 -144.000305 380.000000 1848.000122 -144.000336 374.000000 1864.000244 -48.000397 374.000000 1864.000000 -48.000397 374.000000 1848.000000 -144.000305 374.000000 1848.000122 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 -144.000336 374.000000 1860.000244 -48.000275 374.000000 1860.000000 -48.000244 374.000000 1844.000000 -144.000275 374.000000 1844.000000 -144.000336 368.000000 1860.000244 -48.000275 368.000000 1860.000000 -48.000244 368.000000 1844.000000 -144.000275 368.000000 1844.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 -144.000366 368.000000 1856.000244 -48.000336 368.000000 1856.000244 -48.000336 368.000000 1840.000244 -144.000336 368.000000 1840.000000 -144.000366 362.000000 1856.000244 -48.000336 362.000000 1856.000244 -48.000336 362.000000 1840.000244 -144.000336 362.000000 1840.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 -144.000305 362.000000 1852.000244 -48.000366 362.000000 1852.000000 -48.000275 362.000000 1836.000000 -144.000336 362.000000 1836.000000 -144.000305 356.000000 1852.000244 -48.000366 356.000000 1852.000000 -48.000275 356.000000 1836.000000 -144.000336 356.000000 1836.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 -144.000305 356.000000 1848.000244 -48.000397 356.000000 1848.000000 -48.000397 356.000000 1832.000000 -144.000336 356.000000 1832.000000 -144.000305 350.000000 1848.000244 -48.000397 350.000000 1848.000000 -48.000397 350.000000 1832.000000 -144.000336 350.000000 1832.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 -144.000427 350.000000 1842.000366 -48.000580 350.000000 1842.000244 -48.000671 350.000000 1826.000244 -144.000397 350.000000 1826.000244 -144.000427 344.000000 1842.000366 -48.000580 344.000000 1842.000244 -48.000671 344.000000 1826.000244 -144.000397 344.000000 1826.000244 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 -144.000580 344.000000 1834.000244 -48.000671 344.000000 1834.000244 -48.000397 344.000000 1818.000244 -144.000641 344.000000 1818.000244 -144.000580 338.000000 1834.000244 -48.000671 338.000000 1834.000244 -48.000397 338.000000 1818.000244 -144.000641 338.000000 1818.000244 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 -144.000305 338.000000 1826.000122 -48.000244 338.000000 1826.000244 -48.000366 338.000000 1810.000000 -144.000275 338.000000 1810.000000 -144.000305 332.000000 1826.000122 -48.000244 332.000000 1826.000244 -48.000366 332.000000 1810.000000 -144.000275 332.000000 1810.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 -144.000641 332.000000 1818.000244 -48.000397 332.000000 1818.000244 -48.000427 332.000000 1802.000244 -144.000549 332.000000 1802.000244 -144.000641 326.000000 1818.000244 -48.000397 326.000000 1818.000244 -48.000427 326.000000 1802.000244 -144.000549 326.000000 1802.000244 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 -144.000641 326.000000 1810.000244 -48.000732 326.000000 1810.000244 -48.000702 326.000000 1794.000488 -144.000610 326.000000 1794.000244 -144.000641 320.000000 1810.000244 -48.000732 320.000000 1810.000244 -48.000702 320.000000 1794.000488 -144.000610 320.000000 1794.000244 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 -144.000549 320.000000 1802.000244 -48.000427 320.000000 1802.000244 -48.000488 320.000000 1786.000244 -144.000610 320.000000 1786.000244 -144.000549 314.000000 1802.000244 -48.000427 314.000000 1802.000244 -48.000488 314.000000 1786.000244 -144.000610 314.000000 1786.000244 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 -144.000610 314.000000 1794.000244 -48.000702 314.000000 1794.000488 -48.000641 314.000000 1778.000244 -144.000549 314.000000 1778.000244 -144.000610 308.000000 1794.000244 -48.000702 308.000000 1794.000488 -48.000641 308.000000 1778.000244 -144.000549 308.000000 1778.000244 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 -144.000610 308.000000 1786.000244 -48.000488 308.000000 1786.000244 -48.000488 308.000000 1770.000244 -144.000549 308.000000 1770.000244 -144.000610 302.000000 1786.000244 -48.000488 302.000000 1786.000244 -48.000488 302.000000 1770.000244 -144.000549 302.000000 1770.000244 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 -144.000549 302.000000 1778.000244 -48.000641 302.000000 1778.000244 -48.000610 302.000000 1762.000244 -144.000641 302.000000 1762.000244 -144.000549 296.000000 1778.000244 -48.000641 296.000000 1778.000244 -48.000610 296.000000 1762.000244 -144.000641 296.000000 1762.000244 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 -144.000549 296.000000 1770.000244 -48.000488 296.000000 1770.000244 -48.000488 296.000000 1754.000244 -144.000610 296.000000 1754.000244 -144.000549 290.000000 1770.000244 -48.000488 290.000000 1770.000244 -48.000488 290.000000 1754.000244 -144.000610 290.000000 1754.000244 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 -144.000305 290.000000 1762.000244 -48.000366 290.000000 1762.000000 -48.000275 290.000000 1746.000244 -144.000305 290.000000 1746.000122 -144.000305 284.000000 1762.000244 -48.000366 284.000000 1762.000000 -48.000275 284.000000 1746.000244 -144.000305 284.000000 1746.000122 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 -144.000610 284.000000 1754.000244 -48.000488 284.000000 1754.000244 -48.000641 284.000000 1738.000244 -144.000458 284.000000 1738.000244 -144.000610 278.000000 1754.000244 -48.000488 278.000000 1754.000244 -48.000641 278.000000 1738.000244 -144.000458 278.000000 1738.000244 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 -144.000610 278.000000 1746.000244 -48.000671 278.000000 1746.000244 -48.000641 278.000000 1730.000244 -144.000458 278.000000 1730.000244 -144.000610 272.000000 1746.000244 -48.000671 272.000000 1746.000244 -48.000641 272.000000 1730.000244 -144.000458 272.000000 1730.000244 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 -144.000458 272.000000 1738.000244 -48.000641 272.000000 1738.000244 -48.000641 272.000000 1722.000244 -144.000427 272.000000 1722.000244 -144.000458 266.000000 1738.000244 -48.000641 266.000000 1738.000244 -48.000641 266.000000 1722.000244 -144.000427 266.000000 1722.000244 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 -144.000458 266.000000 1730.000244 -48.000641 266.000000 1730.000244 -48.000671 266.000000 1714.000122 -144.000427 266.000000 1714.000244 -144.000458 260.000000 1730.000244 -48.000641 260.000000 1730.000244 -48.000671 260.000000 1714.000122 -144.000427 260.000000 1714.000244 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 -144.000427 260.000000 1722.000244 -48.000641 260.000000 1722.000244 -48.000610 260.000000 1706.000244 -144.000366 260.000000 1706.000244 -144.000427 254.000000 1722.000244 -48.000641 254.000000 1722.000244 -48.000610 254.000000 1706.000244 -144.000366 254.000000 1706.000244 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 -144.000427 254.000000 1714.000244 -48.000671 254.000000 1714.000122 -48.000641 254.000000 1698.000244 -144.000458 254.000000 1698.000244 -144.000427 248.000000 1714.000244 -48.000671 248.000000 1714.000122 -48.000641 248.000000 1698.000244 -144.000458 248.000000 1698.000244 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 -144.000366 248.000000 1706.000244 -48.000610 248.000000 1706.000122 -48.000641 248.000000 1690.000122 -144.000427 248.000000 1690.000244 -144.000366 242.000000 1706.000244 -48.000610 242.000000 1706.000122 -48.000641 242.000000 1690.000122 -144.000427 242.000000 1690.000244 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 -50.000427 98.000000 1488.000366 -146.000488 98.000000 1488.000244 -146.000488 98.000000 1504.000244 -50.000427 98.000000 1504.000366 -50.000427 92.000000 1488.000366 -146.000488 92.000000 1488.000244 -146.000488 92.000000 1504.000244 -50.000427 92.000000 1504.000366 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 -50.000519 92.000000 1472.000244 -146.000488 92.000000 1472.000244 -146.000488 92.000000 1488.000244 -50.000427 92.000000 1488.000244 -50.000519 86.000000 1472.000244 -146.000488 86.000000 1472.000244 -146.000488 86.000000 1488.000244 -50.000427 86.000000 1488.000244 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 -50.000549 86.000000 1456.000244 -146.000488 86.000000 1456.000244 -146.000488 86.000000 1472.000244 -50.000519 86.000000 1472.000244 -50.000549 80.000000 1456.000244 -146.000488 80.000000 1456.000244 -146.000488 80.000000 1472.000244 -50.000519 80.000000 1472.000244 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 -50.000519 80.000000 1440.000244 -146.000488 80.000000 1440.000244 -146.000488 80.000000 1456.000244 -50.000549 80.000000 1456.000244 -50.000519 74.000000 1440.000244 -146.000488 74.000000 1440.000244 -146.000488 74.000000 1456.000244 -50.000549 74.000000 1456.000244 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 -50.000458 74.000000 1424.000366 -146.000488 74.000000 1424.000488 -146.000488 74.000000 1440.000244 -50.000519 74.000000 1440.000244 -50.000458 68.000000 1424.000366 -146.000488 68.000000 1424.000488 -146.000488 68.000000 1440.000244 -50.000519 68.000000 1440.000244 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 -48.000458 68.000000 1408.000488 -144.000488 68.000000 1408.000488 -144.000427 68.000000 1424.000488 -48.000458 68.000000 1424.000488 -48.000458 62.000000 1408.000488 -144.000488 62.000000 1408.000488 -144.000427 62.000000 1424.000488 -48.000458 62.000000 1424.000488 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 -48.000458 62.000000 1392.000366 -144.000427 62.000000 1392.000366 -144.000488 62.000000 1408.000366 -48.000458 62.000000 1408.000488 -48.000458 56.000000 1392.000366 -144.000427 56.000000 1392.000366 -144.000488 56.000000 1408.000366 -48.000458 56.000000 1408.000488 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 -48.000458 56.000000 1376.000366 -144.000427 56.000000 1376.000366 -144.000427 56.000000 1392.000366 -48.000458 56.000000 1392.000366 -48.000458 50.000000 1376.000366 -144.000427 50.000000 1376.000366 -144.000427 50.000000 1392.000366 -48.000458 50.000000 1392.000366 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 -48.000458 50.000000 1360.000366 -144.000427 50.000000 1360.000366 -144.000427 50.000000 1376.000366 -48.000458 50.000000 1376.000366 -48.000458 44.000000 1360.000366 -144.000427 44.000000 1360.000366 -144.000427 44.000000 1376.000366 -48.000458 44.000000 1376.000366 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 -50.000427 46.000000 1344.000488 -146.000488 46.000000 1344.000488 -146.000458 46.000000 1360.000488 -50.000519 46.000000 1360.000488 -50.000427 40.000000 1344.000488 -146.000488 40.000000 1344.000488 -146.000458 40.000000 1360.000488 -50.000519 40.000000 1360.000488 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 -50.000427 40.000000 1328.000366 -146.000549 40.000000 1328.000244 -146.000488 40.000000 1344.000488 -50.000427 40.000000 1344.000488 -50.000427 34.000000 1328.000366 -146.000549 34.000000 1328.000244 -146.000488 34.000000 1344.000488 -50.000427 34.000000 1344.000488 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 -50.000519 34.000000 1312.000244 -146.000488 34.000000 1312.000244 -146.000549 34.000000 1328.000244 -50.000427 34.000000 1328.000366 -50.000519 28.000000 1312.000244 -146.000488 28.000000 1312.000244 -146.000549 28.000000 1328.000244 -50.000427 28.000000 1328.000366 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 -50.000519 28.000000 1296.000244 -146.000488 28.000000 1296.000244 -146.000488 28.000000 1312.000244 -50.000519 28.000000 1312.000244 -50.000519 22.000000 1296.000244 -146.000488 22.000000 1296.000244 -146.000488 22.000000 1312.000244 -50.000519 22.000000 1312.000244 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 -50.000519 22.000000 1280.000366 -146.000549 22.000000 1280.000488 -146.000488 22.000000 1296.000244 -50.000519 22.000000 1296.000244 -50.000519 16.000000 1280.000366 -146.000549 16.000000 1280.000488 -146.000488 16.000000 1296.000244 -50.000519 16.000000 1296.000244 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 -48.000458 16.000000 1264.000366 -144.000427 16.000000 1264.000366 -144.000427 16.000000 1280.000366 -48.000458 16.000000 1280.000366 -48.000458 10.000000 1264.000366 -144.000427 10.000000 1264.000366 -144.000427 10.000000 1280.000366 -48.000458 10.000000 1280.000366 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 -48.000458 10.000000 1248.000366 -144.000397 10.000000 1248.000366 -144.000427 10.000000 1264.000366 -48.000458 10.000000 1264.000366 -48.000458 4.000000 1248.000366 -144.000397 4.000000 1248.000366 -144.000427 4.000000 1264.000366 -48.000458 4.000000 1264.000366 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 -48.000488 4.000000 1232.000366 -144.000427 4.000000 1232.000488 -144.000397 4.000000 1248.000366 -48.000458 4.000000 1248.000366 -48.000488 -2.000000 1232.000366 -144.000427 -2.000000 1232.000488 -144.000397 -2.000000 1248.000366 -48.000458 -2.000000 1248.000366 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 -48.000488 -2.000000 1216.000366 -144.000458 -2.000000 1216.000366 -144.000427 -2.000000 1232.000488 -48.000488 -2.000000 1232.000366 -48.000488 -8.000000 1216.000366 -144.000458 -8.000000 1216.000366 -144.000427 -8.000000 1232.000488 -48.000488 -8.000000 1232.000366 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 -48.000122 538.000000 364.000122 -144.000122 538.000000 364.000244 -144.000122 538.000000 380.000244 -48.000122 538.000000 380.000244 -48.000122 488.000000 364.000122 -144.000122 488.000000 364.000244 -144.000122 488.000000 380.000244 -48.000122 488.000000 380.000244 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 -144.000336 538.000000 1940.000244 -48.000427 538.000000 1940.000000 -48.000427 538.000000 1924.000000 -144.000275 538.000000 1924.000000 -144.000336 488.000000 1940.000244 -48.000427 488.000000 1940.000000 -48.000427 488.000000 1924.000000 -144.000275 488.000000 1924.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 -152.000000 538.000000 1940.000000 -126.000000 538.000000 1940.000000 -126.000000 538.000000 338.000000 -152.000000 538.000000 338.000000 -152.000000 -8.000000 1940.000000 -126.000000 -8.000000 1940.000000 -126.000000 -8.000000 338.000000 -152.000000 -8.000000 338.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -72.000000 538.000000 1932.000000 -46.000000 538.000000 1932.000000 -46.000000 538.000000 330.000000 -72.000000 538.000000 330.000000 -72.000000 -8.000000 1932.000000 -46.000000 -8.000000 1932.000000 -46.000000 -8.000000 330.000000 -72.000000 -8.000000 330.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -128.000000 554.000000 336.000000 1278.000000 554.000000 336.000000 1278.000000 554.000000 288.000000 -128.000000 554.000000 288.000000 -128.000000 -8.000000 336.000000 1278.000000 -8.000000 336.000000 1278.000000 -8.000000 288.000000 -128.000000 -8.000000 288.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 -126.000000 554.000000 1168.000000 1280.000000 554.000000 1168.000000 1280.000000 554.000000 1120.000000 -126.000000 554.000000 1120.000000 -126.000000 -8.000000 1168.000000 1280.000000 -8.000000 1168.000000 1280.000000 -8.000000 1120.000000 -126.000000 -8.000000 1120.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 -204.000000 554.000000 1988.000000 1202.000000 554.000000 1988.000000 1202.000000 554.000000 1940.000000 -204.000000 554.000000 1940.000000 -204.000000 -8.000000 1988.000000 1202.000000 -8.000000 1988.000000 1202.000000 -8.000000 1940.000000 -204.000000 -8.000000 1940.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 -152.000000 554.000000 1986.000000 -152.000061 554.000000 290.000122 -156.000031 554.000000 290.000000 -156.000000 554.000000 1986.000000 -152.000000 -8.000000 1986.000000 -152.000061 -8.000000 290.000122 -156.000031 -8.000000 290.000000 -156.000000 -8.000000 1986.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 -174.000000 -8.000000 1990.000000 1278.000000 -8.000000 1990.000000 1278.000000 -8.000000 318.000000 1278.000000 -16.000000 1990.000000 -174.000000 -8.000000 318.000000 -174.000000 -16.000000 318.000000 -174.000000 -16.000000 1990.000000 1278.000000 -16.000000 318.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 brush vertices 1182.000000 140.000000 1512.000000 1278.000000 140.000000 1512.000000 1278.000000 140.000000 1506.000000 1182.000000 140.000000 1506.000000 1182.000000 -8.000000 1512.000000 1278.000000 -8.000000 1512.000000 1278.000000 -8.000000 1506.000000 1182.000000 -8.000000 1506.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 1272.000000 140.000000 1512.000000 1271.999878 140.000000 1607.999878 1277.999878 140.000000 1608.000000 1277.999878 140.000000 1512.000000 1272.000000 -8.000000 1512.000000 1271.999878 -8.000000 1607.999878 1277.999878 -8.000000 1608.000000 1277.999878 -8.000000 1512.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 1182.000000 140.000000 1614.000000 1277.999878 140.000000 1614.000244 1277.999878 140.000000 1608.000244 1182.000000 140.000000 1608.000122 1182.000000 -8.000000 1614.000000 1277.999878 -8.000000 1614.000244 1277.999878 -8.000000 1608.000244 1182.000000 -8.000000 1608.000122 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 1156.000000 140.000000 1614.000000 1182.000000 140.000000 1614.000000 1182.000000 140.000000 1506.000000 1156.000000 140.000000 1506.000000 1156.000000 -8.000000 1614.000000 1182.000000 -8.000000 1614.000000 1182.000000 -8.000000 1506.000000 1156.000000 -8.000000 1506.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip entity type CameraPath UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position 1240.000000 -6.000000 1562.000000 Vector3 angles 630.000000 0.000000 0.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -100.000000 188.000000 1588.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
9efa1eef702b4a8bbc19fba5cea45c4f3edba65f
717ddeb7e700373742c617a95e25a2376565112c
/3044/CH10/EX10.6/Ex10_6.sce
d45a319c63f87ce36dd69b300c6898518d90cadf
[]
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
1,704
sce
Ex10_6.sce
// Variable declaration alpha = 0.05 // level of significance semi = [] failures = [] // Calculation // null hypothesis: if p1=p2=p3=p4 , Alternative hypothesis if p1,p2,p3,p4 all are not equal chi_sq_thr = 7.815 // theoritical value of chi square at alpha = 0.05 with v = 3 l = [31 42 22 25; 19 8 28 25] semi = l(1,1:4) // list of semiconductors failures = l(2,1:4) // list of failures e11 = sum(semi)*sum(l(1:2,1)) / (sum(semi)+sum(failures)) e12 = sum(semi)*sum(l(1:2,2)) / (sum(semi)+sum(failures)) e13 = sum(semi)*sum(l(1:2,3)) / (sum(semi)+sum(failures)) e14 = sum(semi)*sum(l(1:2,4)) / (sum(semi)+sum(failures)) e21 = sum(failures)*sum(l(1:2,1)) / (sum(semi)+sum(failures)) e22 = sum(failures)*sum(l(1:2,2)) / (sum(semi)+sum(failures)) e23 = sum(failures)*sum(l(1:2,3)) / (sum(semi)+sum(failures)) e24 = sum(failures)*sum(l(1:2,4)) / (sum(semi)+sum(failures)) q = [e11,e12,e13,e14,e21,e22,e23,e24] // list of expected frequency p = [31,42,22,25,19,8,28,25] // list of entries chi_sq_prt = 0 for i = 1:8 chi_sq_prt = chi_sq_prt + (p(i)-q(i))^2 / q(i) end // Result printf ( "Practical chi square value: %.3f",chi_sq_prt) if(chi_sq_thr > chi_sq_prt) then printf ( "null hypothesis can not be rejected") printf ( "data dont refute to hypothesis") else printf ( "null hypothesis must be rejected") printf ( "data refute to hypothesis") end a1 = [0.62,0.84,0.44,0.50] a2 = [1.0,1.1,1.2,1.3] err1 = [0.13,0.10,0.14,0.14] err2 = [0,0,0,0] //ylim(0.9,1.5) errbar(a1,a2,err1,err2) title("Confidence intervals") // Note : chart may be differ because scilab has errbar function which plots vertically.
86c5d61e7c48cdcf06e184a16b3b972266e2fa55
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH2/EX2.38/example2_38.sce
aa310aa0d37a282949c2a2c757137ec05067617b
[]
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
444
sce
example2_38.sce
clc // Given that n = 1 // no. of order lambda1 = 5.89e-7 // wavelength of light in first case in meter lambda2 = 5.896e-7 // wavelength of light in second case in meter // Sample Problem 38 on page no. 2.53 printf("\n # PROBLEM 38 # \n") N = lambda1 / (n * (lambda2 - lambda1)) // calculation for minimum no. of lines in grating printf("Standard formula used \n lambda/d(lambda)=n*N. \n") printf("\n Minimum no. of lines in grating = %f,",N)
a48ed39c33cccc96c1ddc3d327287746eb8d8a7d
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH4/EX4.10/4_10.sce
7c4f63429d884169053923e1adcd39c099b19a68
[]
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
377
sce
4_10.sce
clc(); clear; // To calculate the flux density at centre and dipole moment r=6.1*10^-11; //radius of H atom in m new=8.8*10^15; //frequency in rev/sec e=1.6*10^-19; mew0=4*%pi*10^-7; i=e*new; B=(mew0*i)/(2*r); mew=i*%pi*(r^2); printf("current is %f amp",i); printf("magnetic induction is %f weber/m^2",B); printf("dipole moment in amp m^2 is"); disp(mew);
9d0e1e2dea2220ae664d8ec95d04a00e2467ea7e
449d555969bfd7befe906877abab098c6e63a0e8
/1301/CH12/EX12.14/ex12_14.sce
55f8432ff960848ecbc6eac6d60deb7400d1a26e
[]
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
431
sce
ex12_14.sce
clc; e=1.6*10^-19; //charge on an electron in coulomb E=5*10^3; //electric field in V/m m=3.3*10^-26; //mass of neon ion in kg F=E*e; //calculating foece in Newton using F=Q*E a=F/m; //calculating accelaration in m/sec square using Newton's Law(F=m*a) disp(F,"Force on neon Ion in Newton = "); //displaying result disp(a,"Accelaration of the ion in m/sec square"); //displaying result
75905171d654b92c46f3571d2c7132408c4cb707
449d555969bfd7befe906877abab098c6e63a0e8
/3821/CH7/EX7.14/Example7_14.sce
78cf3c686b690390af187f8feb88b59bb2ed33bd
[]
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
476
sce
Example7_14.sce
///Chapter No 7 Fluid Mechanics ////Example 7.14 Page No:126 ////Find Total energy per unit weight //Input data clc; clear; V=13; //Velocity of water flowing throgh pipe in m/s P=200*10^3; //Pressure of water in Kpa Z=25; //Height above the datum in m g=9.81; rho=1000; ///Calculation E=(P/(rho*g))+((V^2)/(2*g))+(Z); //Total energy per unit weight in m ///Output printf('Total energy per unit weight= %f m \n',E);
8233c53a28a75529665c37d7a8441065feb7321d
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/GF38CPK/ATWM1_Working_Memory_MEG_GF38CPK_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce
632f439ee49be52a3be84444ad4268f4067887e1
[]
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
49,596
sce
ATWM1_Working_Memory_MEG_Nonsalient_Cued_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; 43 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_061 gabor_120 gabor_015 gabor_043 gabor_061_alt gabor_120_alt gabor_015 gabor_043 "2_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_061_120_015_043_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_151_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_147 gabor_041 gabor_070 gabor_110 gabor_147_alt gabor_041_alt gabor_070 gabor_110 "2_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_147_041_070_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_020_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 2492 fixation_cross gabor_156 gabor_091 gabor_134 gabor_011 gabor_156_alt gabor_091 gabor_134 gabor_011_alt "2_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2500_gabor_patch_orientation_156_091_134_011_target_position_2_3_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 1942 fixation_cross gabor_057 gabor_168 gabor_037 gabor_009 gabor_057_alt gabor_168 gabor_037 gabor_009_alt "2_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_057_168_037_009_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_064 gabor_039 gabor_124 gabor_086 gabor_064_alt gabor_039_alt gabor_124 gabor_086 "2_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_064_039_124_086_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 2342 fixation_cross gabor_026 gabor_139 gabor_116 gabor_063 gabor_026_alt gabor_139 gabor_116 gabor_063_alt "2_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_026_139_116_063_target_position_2_3_retrieval_position_2" gabor_circ gabor_139_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2142 2992 2442 fixation_cross gabor_022 gabor_065 gabor_148 gabor_041 gabor_022 gabor_065_alt gabor_148 gabor_041_alt "2_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2450_gabor_patch_orientation_022_065_148_041_target_position_1_3_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_112_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_117 gabor_011 gabor_144 gabor_079 gabor_117 gabor_011_alt gabor_144_alt gabor_079 "2_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_117_011_144_079_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_target_position_1_4 "2_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1892 2992 1892 fixation_cross gabor_106 gabor_127 gabor_048 gabor_086 gabor_106_alt gabor_127_alt gabor_048 gabor_086 "2_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_106_127_048_086_target_position_3_4_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_113 gabor_091 gabor_034 gabor_141 gabor_113_alt gabor_091_alt gabor_034 gabor_141 "2_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_113_091_034_141_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_141_framed blank blank blank blank fixation_cross_target_position_3_4 "2_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_043 gabor_112 gabor_127 gabor_061 gabor_043 gabor_112_alt gabor_127 gabor_061_alt "2_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_043_112_127_061_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_127_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_059 gabor_088 gabor_144 gabor_112 gabor_059 gabor_088 gabor_144_alt gabor_112_alt "2_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_059_088_144_112_target_position_1_2_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_097 gabor_032 gabor_154 gabor_007 gabor_097 gabor_032_alt gabor_154_alt gabor_007 "2_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_097_032_154_007_target_position_1_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_089 gabor_110 gabor_047 gabor_177 gabor_089_alt gabor_110_alt gabor_047 gabor_177 "2_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_089_110_047_177_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_177_framed blank blank blank blank fixation_cross_target_position_3_4 "2_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_043 gabor_008 gabor_148 gabor_025 gabor_043_alt gabor_008 gabor_148 gabor_025_alt "2_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_043_008_148_025_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_098_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_098_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 2142 2992 2242 fixation_cross gabor_177 gabor_155 gabor_071 gabor_047 gabor_177_alt gabor_155_alt gabor_071 gabor_047 "2_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2250_gabor_patch_orientation_177_155_071_047_target_position_3_4_retrieval_position_1" gabor_177_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_177_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_136 gabor_026 gabor_048 gabor_089 gabor_136 gabor_026_alt gabor_048_alt gabor_089 "2_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_136_026_048_089_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_047 gabor_003 gabor_064 gabor_128 gabor_047_alt gabor_003 gabor_064 gabor_128_alt "2_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_047_003_064_128_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_112_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_139 gabor_011 gabor_095 gabor_074 gabor_139 gabor_011 gabor_095_alt gabor_074_alt "2_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_139_011_095_074_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_135 gabor_093 gabor_049 gabor_027 gabor_135 gabor_093_alt gabor_049 gabor_027_alt "2_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_135_093_049_027_target_position_1_3_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_097 gabor_081 gabor_164 gabor_025 gabor_097 gabor_081 gabor_164_alt gabor_025_alt "2_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_097_081_164_025_target_position_1_2_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1792 2992 2092 fixation_cross gabor_006 gabor_036 gabor_152 gabor_115 gabor_006 gabor_036 gabor_152_alt gabor_115_alt "2_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_006_036_152_115_target_position_1_2_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_113 gabor_001 gabor_059 gabor_174 gabor_113_alt gabor_001 gabor_059 gabor_174_alt "2_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_113_001_059_174_target_position_2_3_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1942 2992 2592 fixation_cross gabor_144 gabor_068 gabor_124 gabor_001 gabor_144 gabor_068 gabor_124_alt gabor_001_alt "2_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_144_068_124_001_target_position_1_2_retrieval_position_2" gabor_circ gabor_068_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1742 2992 2292 fixation_cross gabor_048 gabor_116 gabor_003 gabor_172 gabor_048_alt gabor_116 gabor_003_alt gabor_172 "2_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1750_3000_2300_gabor_patch_orientation_048_116_003_172_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_003_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_003_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_098 gabor_177 gabor_062 gabor_047 gabor_098_alt gabor_177 gabor_062 gabor_047_alt "2_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_098_177_062_047_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2142 2992 2342 fixation_cross gabor_008 gabor_137 gabor_156 gabor_068 gabor_008_alt gabor_137 gabor_156_alt gabor_068 "2_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_008_137_156_068_target_position_2_4_retrieval_position_2" gabor_circ gabor_092_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_099 gabor_157 gabor_027 gabor_067 gabor_099_alt gabor_157_alt gabor_027 gabor_067 "2_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_099_157_027_067_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_target_position_3_4 "2_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 1992 fixation_cross gabor_031 gabor_173 gabor_118 gabor_144 gabor_031_alt gabor_173_alt gabor_118 gabor_144 "2_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2000_gabor_patch_orientation_031_173_118_144_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_target_position_3_4 "2_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 1942 2992 1942 fixation_cross gabor_144 gabor_116 gabor_088 gabor_172 gabor_144 gabor_116_alt gabor_088 gabor_172_alt "2_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_144_116_088_172_target_position_1_3_retrieval_position_2" gabor_circ gabor_116_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_116_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1992 2992 2242 fixation_cross gabor_019 gabor_142 gabor_081 gabor_052 gabor_019 gabor_142 gabor_081_alt gabor_052_alt "2_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_019_142_081_052_target_position_1_2_retrieval_position_2" gabor_circ gabor_002_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_172 gabor_116 gabor_002 gabor_043 gabor_172_alt gabor_116 gabor_002 gabor_043_alt "2_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_172_116_002_043_target_position_2_3_retrieval_position_2" gabor_circ gabor_066_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_051 gabor_027 gabor_139 gabor_113 gabor_051 gabor_027_alt gabor_139 gabor_113_alt "2_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_051_027_139_113_target_position_1_3_retrieval_position_1" gabor_005_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_098 gabor_072 gabor_145 gabor_115 gabor_098_alt gabor_072 gabor_145_alt gabor_115 "2_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_098_072_145_115_target_position_2_4_retrieval_position_2" gabor_circ gabor_025_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 1942 fixation_cross gabor_150 gabor_026 gabor_066 gabor_084 gabor_150_alt gabor_026_alt gabor_066 gabor_084 "2_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_150_026_066_084_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_3_4 "2_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_156 gabor_087 gabor_129 gabor_111 gabor_156_alt gabor_087 gabor_129_alt gabor_111 "2_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_156_087_129_111_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_111_framed blank blank blank blank fixation_cross_target_position_2_4 "2_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_034 gabor_147 gabor_099 gabor_121 gabor_034 gabor_147_alt gabor_099_alt gabor_121 "2_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_034_147_099_121_target_position_1_4_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_078 gabor_049 gabor_136 gabor_162 gabor_078 gabor_049 gabor_136_alt gabor_162_alt "2_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_078_049_136_162_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_001_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_129 gabor_085 gabor_047 gabor_172 gabor_129 gabor_085_alt gabor_047 gabor_172_alt "2_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_129_085_047_172_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_140 gabor_001 gabor_170 gabor_059 gabor_140 gabor_001_alt gabor_170 gabor_059_alt "2_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_140_001_170_059_target_position_1_3_retrieval_position_1" gabor_091_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_40_Retrieval_Working_Memory_MEG_P4_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; 43 63 292 292 399 125 2192 2992 2292 fixation_cross gabor_004 gabor_048 gabor_029 gabor_065 gabor_004_alt gabor_048_alt gabor_029 gabor_065 "2_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2300_gabor_patch_orientation_004_048_029_065_target_position_3_4_retrieval_position_2" gabor_circ gabor_094_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_094_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_024 gabor_133 gabor_152 gabor_072 gabor_024_alt gabor_133 gabor_152 gabor_072_alt "2_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_024_133_152_072_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2092 2992 1892 fixation_cross gabor_117 gabor_072 gabor_137 gabor_089 gabor_117 gabor_072_alt gabor_137 gabor_089_alt "2_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_117_072_137_089_target_position_1_3_retrieval_position_1" gabor_117_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_118 gabor_168 gabor_093 gabor_142 gabor_118 gabor_168 gabor_093_alt gabor_142_alt "2_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_118_168_093_142_target_position_1_2_retrieval_position_2" gabor_circ gabor_029_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1742 2992 2492 fixation_cross gabor_118 gabor_029 gabor_091 gabor_161 gabor_118 gabor_029_alt gabor_091 gabor_161_alt "2_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_118_029_091_161_target_position_1_3_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_45_Retrieval_Working_Memory_MEG_P4_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; 43 64 292 292 399 125 1942 2992 2342 fixation_cross gabor_110 gabor_086 gabor_161 gabor_125 gabor_110 gabor_086_alt gabor_161 gabor_125_alt "2_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2350_gabor_patch_orientation_110_086_161_125_target_position_1_3_retrieval_position_2" gabor_circ gabor_086_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_086_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_145 gabor_064 gabor_030 gabor_117 gabor_145_alt gabor_064_alt gabor_030 gabor_117 "2_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_145_064_030_117_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_098 gabor_059 gabor_031 gabor_074 gabor_098 gabor_059_alt gabor_031_alt gabor_074 "2_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_098_059_031_074_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_074_framed blank blank blank blank fixation_cross_target_position_1_4 "2_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_041 gabor_001 gabor_109 gabor_064 gabor_041 gabor_001 gabor_109_alt gabor_064_alt "2_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_041_001_109_064_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_157 gabor_002 gabor_082 gabor_113 gabor_157 gabor_002 gabor_082_alt gabor_113_alt "2_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_157_002_082_113_target_position_1_2_retrieval_position_2" gabor_circ gabor_137_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_163 gabor_130 gabor_077 gabor_045 gabor_163 gabor_130_alt gabor_077 gabor_045_alt "2_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_163_130_077_045_target_position_1_3_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2192 2992 2142 fixation_cross gabor_155 gabor_033 gabor_085 gabor_101 gabor_155_alt gabor_033_alt gabor_085 gabor_101 "2_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2150_gabor_patch_orientation_155_033_085_101_target_position_3_4_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_097 gabor_119 gabor_143 gabor_031 gabor_097 gabor_119_alt gabor_143 gabor_031_alt "2_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_097_119_143_031_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_143_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_130 gabor_157 gabor_051 gabor_109 gabor_130 gabor_157_alt gabor_051 gabor_109_alt "2_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_130_157_051_109_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_051_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2442 fixation_cross gabor_166 gabor_031 gabor_084 gabor_100 gabor_166 gabor_031_alt gabor_084_alt gabor_100 "2_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_166_031_084_100_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_1_4 "2_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_106 gabor_082 gabor_158 gabor_049 gabor_106_alt gabor_082 gabor_158 gabor_049_alt "2_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_106_082_158_049_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_078 gabor_016 gabor_100 gabor_032 gabor_078_alt gabor_016_alt gabor_100 gabor_032 "2_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_078_016_100_032_target_position_3_4_retrieval_position_2" gabor_circ gabor_061_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_061_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 2392 fixation_cross gabor_067 gabor_101 gabor_173 gabor_131 gabor_067 gabor_101 gabor_173_alt gabor_131_alt "2_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_067_101_173_131_target_position_1_2_retrieval_position_2" gabor_circ gabor_101_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_101_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_009 gabor_025 gabor_178 gabor_163 gabor_009 gabor_025_alt gabor_178 gabor_163_alt "2_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_009_025_178_163_target_position_1_3_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_130 gabor_024 gabor_041 gabor_078 gabor_130_alt gabor_024 gabor_041_alt gabor_078 "2_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_130_024_041_078_target_position_2_4_retrieval_position_2" gabor_circ gabor_024_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2142 2992 2242 fixation_cross gabor_123 gabor_072 gabor_159 gabor_139 gabor_123_alt gabor_072 gabor_159 gabor_139_alt "2_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2250_gabor_patch_orientation_123_072_159_139_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_target_position_2_3 "2_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_126 gabor_056 gabor_162 gabor_089 gabor_126_alt gabor_056_alt gabor_162 gabor_089 "2_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_126_056_162_089_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_131 gabor_020 gabor_090 gabor_002 gabor_131_alt gabor_020 gabor_090 gabor_002_alt "2_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_131_020_090_002_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_167 gabor_100 gabor_150 gabor_045 gabor_167 gabor_100_alt gabor_150_alt gabor_045 "2_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_167_100_150_045_target_position_1_4_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_64_Retrieval_Working_Memory_MEG_P4_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; 43 61 292 292 399 125 1842 2992 2292 fixation_cross gabor_152 gabor_066 gabor_177 gabor_036 gabor_152_alt gabor_066 gabor_177_alt gabor_036 "2_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_152_066_177_036_target_position_2_4_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2042 2992 2392 fixation_cross gabor_050 gabor_066 gabor_029 gabor_092 gabor_050_alt gabor_066 gabor_029 gabor_092_alt "2_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_050_066_029_092_target_position_2_3_retrieval_position_2" gabor_circ gabor_066_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 62 292 292 399 125 2092 2992 2042 fixation_cross gabor_031 gabor_139 gabor_066 gabor_003 gabor_031_alt gabor_139 gabor_066 gabor_003_alt "2_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_031_139_066_003_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_066_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 63 292 292 399 125 2092 2992 2592 fixation_cross gabor_015 gabor_064 gabor_047 gabor_130 gabor_015_alt gabor_064 gabor_047 gabor_130_alt "2_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2600_gabor_patch_orientation_015_064_047_130_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_085_framed blank blank blank blank fixation_cross_target_position_2_3 "2_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_046 gabor_021 gabor_005 gabor_091 gabor_046 gabor_021 gabor_005_alt gabor_091_alt "2_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_046_021_005_091_target_position_1_2_retrieval_position_2" gabor_circ gabor_157_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69; 43 64 292 292 399 125 2242 2992 2192 fixation_cross gabor_045 gabor_016 gabor_105 gabor_090 gabor_045_alt gabor_016 gabor_105_alt gabor_090 "2_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2200_gabor_patch_orientation_045_016_105_090_target_position_2_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_1" 2 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; };
385677ae7ee6a9f4b3c6bc33f72875695693edd5
449d555969bfd7befe906877abab098c6e63a0e8
/611/CH9/EX9.12/Chap9_Ex12_R1.sce
fd383d6c1bfb3ba6bcd2b3e0d795adf7adafe4bd
[]
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
3,122
sce
Chap9_Ex12_R1.sce
// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India. //Chapter-9,Example 12,Page 335 //Title: Molar volume of mixture using van der Waals equation of state //================================================================================================================ clear clc //INPUT T=600;//temperature of the equimolar n-butane and n-octane mixture in K P=16;//pressure of the equimolar n-butane and n-octane mixture in bar a_m=2.4405;//van der Waals constant for the mixture as determined in Example 9.8 in Pa(m^3/mol)^2 b_m=0.1767*10^-3;//van der Waals constant for the mixture as determined in Example 9.8 in m^3/mol R=8.314;//universal gas constant in J/molK //CALCULATION //The problem is solved by using the Cardan's method A=(a_m*P*10^5)/(R*T)^2;//calculation of A to determine alpha,beeta and gaamma by using Eq.(3.25) B=(b_m*P*10^5)/(R*T);//calculation of B to determine alpha,beeta and gaamma by using Eq.(3.26) alpha=-1-B;//calculation of alpha for van der Waals equation of state using Table (3.2) beeta=A;//calculation of beeta for van der Waals equation of state using Table (3.2) gaamma=-(A*B);//calculation of gaamma for van der Waals equation of state using Table (3.2) p=beeta-((alpha^2)/3);//calculation of p to determine the roots of the cubic equaton using Eq.(3.29) q=((2*alpha^3)/27)-((alpha*beeta)/3)+gaamma;//calculation of q to determine the roots of the cubic equaton using Eq.(3.30) D=(((q)^2)/4)+(((p)^3)/27);//calculation of D to determine the nature of roots using Eq.(3.31) if D>0 then Z=(((-(q)/2)+(sqrt(D)))^(1/3))+(((-(q)/2)-(sqrt(D)))^(1/3))-(alpha/3);//One real root given by Eq.(3.32) else if D==0 then Z1=((-2*(q/2))^(1/3))-(alpha/3);//Three real roots and two equal given by Eq.(3.33) Z2=((q/2)^(1/3))-(alpha/3); Z3=((q/2)^(1/3))-(alpha/3); Za=[Z1 Z2 Z3]; Z=max(Za); else r=sqrt((-(p^3)/27));//calculation of r using Eq.(3.38) theta=acos((-(q)/2)*(1/r));//calculation of theta in radians using Eq.(3.37) Z1=(2*(r^(1/3))*cos(theta/3))-(alpha/3); Z2=(2*(r^(1/3))*cos(((2*%pi)+theta)/3))-(alpha/3);//Three unequal real roots given by Eqs.(3.34,3.35 and 3.36) Z3=(2*(r^(1/3))*cos(((4*%pi)+theta)/3))-(alpha/3); Za=[Z1 Z2 Z3]; Z=max(Za); end end vm=(Z*R*T)/(P*10^5);//calculation of the molar volume of the equimolar mixture in m^3/mol //OUTPUT mprintf("\n The molar volume of an equimolar mixture of n-butane and n-octane at 600K and 16bar found using the van der Waals equation of state = %e m^3/mol\n",vm); //===============================================END OF PROGRAM=================================================== // DISCLAIMER: VALUE OF Z COMPUTED IN PROGRAM IS NOT AS THAT REPORTED IN THE TEXTBOOK. HOWEVER, VALUES OF ALL OTHER PERTINENT VARIABLES A, B, alpha, beeta, p, q etc. AGREE WELL WITH THE TEXTBOOK ANSWER. COMPUTATION WAS ALSO VERIFIED MANUALLY AND GAVE THE ANSWER AS COMPUTED IN PROGRAM. ONE POSSIBLE REASON FOR DEVIATION COULD BE ROUND OFF ERROR.
7691d57e5b81419d08641f63269fe3b297038454
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ee_hrz_col_d/~BivLCM-SR-bfas_ee_hrz_col_d-PLin-VLin.tst
32be12dc605adac120d137db2b597be0723d39ce
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_ee_hrz_col_d-PLin-VLin.tst
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM. ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.378518D+00 2 -0.138271D-02 0.319556D-02 3 0.168953D+00 -0.120130D-02 0.289961D+00 4 -0.128862D-02 0.145592D-02 -0.456078D-02 0.236446D-02 5 0.252277D-02 0.141001D-03 0.455560D-03 0.214336D-03 0.280357D-02 6 -0.856300D-03 0.113871D-03 -0.257996D-03 0.103705D-03 -0.197108D-03 7 0.178806D-02 0.230251D-03 0.108134D-02 0.244524D-03 0.764453D-03 8 0.391094D-03 0.183801D-05 0.506449D-03 0.697439D-04 0.171194D-03 9 -0.272767D+00 0.372436D-01 -0.259544D+00 0.119224D-01 0.975413D-01 10 0.855348D-01 0.129565D-01 -0.264112D-02 0.275998D-01 0.135319D+00 11 -0.437988D-01 0.214208D-01 -0.203556D+00 0.161214D-01 0.359351D-01 12 -0.353233D+00 0.603861D-02 -0.680547D+00 0.290395D-01 0.604178D-01 13 0.311081D-01 0.121747D-01 0.149285D-01 0.162585D-01 0.338624D-01 14 -0.338358D+00 -0.149888D-02 -0.482211D+00 0.175036D-01 0.486185D-02 15 -0.841253D+00 -0.858481D-01 -0.533722D+00 -0.140087D-01 -0.166305D+00 16 -0.450466D-01 -0.954493D-02 -0.677934D-02 -0.731452D-02 -0.299995D-02 17 -0.610134D-02 -0.690081D-03 -0.468661D-02 -0.512871D-03 -0.451588D-03 18 -0.682399D+00 -0.135814D-01 -0.823624D+00 -0.179641D-01 -0.427610D-02 19 -0.630962D-02 -0.457788D-02 0.160852D+00 -0.752868D-02 -0.165210D-02 20 -0.112557D+01 0.276398D-02 -0.237638D+01 0.348013D-01 0.231867D-01 21 -0.769803D-03 -0.743535D-02 -0.158199D+00 -0.791720D-02 0.246686D-03 22 -0.401605D-02 -0.502644D-03 -0.449694D-02 -0.230501D-03 -0.574752D-03 23 0.336884D-02 -0.710503D-02 0.417172D-01 -0.135013D-01 -0.290404D-04 24 -0.107282D-02 -0.827645D-04 -0.386082D-02 0.376398D-04 -0.605871D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.136053D-02 7 0.122492D-02 0.419006D-02 8 0.446056D-03 -0.250556D-03 0.326750D-02 9 0.132973D-01 0.795874D-01 0.140710D-01 0.585623D+02 10 0.336692D-02 0.540698D-01 0.118374D-01 0.254839D+01 0.194021D+02 11 0.224747D-01 0.659422D-01 -0.331435D-01 0.198192D+02 0.152446D+01 12 -0.554306D-01 0.385090D-03 -0.206472D-01 0.472148D+01 0.341261D+01 13 0.855590D-01 0.127420D+00 0.514046D-01 0.115846D+01 0.676095D+01 14 0.515936D-01 0.340673D-01 0.236178D+00 0.147282D+01 0.641688D+01 15 0.175869D-01 -0.723215D-01 -0.302670D-01 -0.157135D+02 -0.131181D+02 16 0.289053D-03 -0.116288D-02 0.791358D-03 0.793622D+00 -0.378622D+00 17 -0.909409D-04 -0.529090D-03 0.269189D-03 -0.994241D-01 -0.409136D-01 18 -0.680397D-01 -0.136408D+00 -0.468571D-01 -0.935651D+01 -0.151852D+01 19 -0.116540D-01 0.953245D-02 -0.128538D-01 -0.203123D+01 -0.280203D-01 20 -0.293371D-01 0.204274D-01 -0.265909D+00 -0.352528D+01 0.124359D+01 21 0.837022D-02 -0.138294D-01 0.834435D-02 0.252741D+01 -0.409938D+00 22 0.393932D-04 -0.520945D-03 0.587563D-03 -0.101285D-01 -0.489921D-01 23 -0.712953D-03 0.859573D-05 -0.617038D-02 0.684293D-01 -0.250510D+00 24 -0.140043D-03 -0.937932D-03 0.116823D-02 -0.710168D-02 -0.334296D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.285199D+02 12 0.129027D+02 0.119012D+03 13 0.127577D+00 -0.237669D+01 0.157898D+02 14 -0.163784D+01 0.890734D+00 0.120004D+02 0.531563D+02 15 -0.879440D+01 -0.779052D+01 -0.333846D+01 -0.580051D+01 0.338739D+03 16 0.121907D-01 -0.130275D+00 -0.132549D+00 0.321989D+00 0.306654D+01 17 -0.210696D-01 0.446935D-02 -0.213560D-01 0.394567D-02 -0.136551D+01 18 -0.365429D+01 -0.965977D+01 -0.616300D+01 -0.224594D+01 0.168342D+03 19 0.597337D+00 0.120326D+01 -0.832964D+00 -0.557053D+00 0.340395D+01 20 0.632017D+01 -0.209338D+02 -0.520058D+01 -0.225881D+02 0.899427D+02 21 -0.345466D+00 -0.136565D+01 0.358953D+00 0.539747D+00 -0.110870D+01 22 -0.607791D-01 0.840235D-02 -0.121477D-01 0.122217D-01 -0.628486D+00 23 0.287983D+00 0.945173D+00 -0.201660D+00 -0.500876D+00 0.289192D+00 24 -0.930858D-01 -0.122019D+00 -0.680720D-02 0.103067D+00 -0.267542D+00 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.568110D+00 17 -0.248270D-01 0.156425D-01 18 0.138020D+01 -0.704560D+00 0.205184D+03 19 0.108991D+00 -0.240549D-01 0.547382D+01 0.371134D+01 20 0.349247D+00 -0.422397D+00 0.160587D+03 0.471954D+01 0.287856D+03 21 0.443462D+00 0.406230D-02 -0.229141D+01 -0.317556D+01 -0.263556D+01 22 -0.937638D-02 0.760075D-02 -0.850508D+00 -0.625811D-01 -0.740186D+00 23 0.181487D+00 -0.608084D-02 0.687528D+00 0.257652D+00 0.148285D+01 24 -0.333972D-02 0.480245D-02 -0.603788D+00 -0.582050D-01 -0.113918D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.425313D+01 22 0.163961D-01 0.105109D-01 23 0.385652D+00 -0.228192D-01 0.623048D+00 24 0.144841D-01 0.832436D-02 -0.535251D-01 0.140984D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.040 1.000 3 0.510 -0.039 1.000 4 -0.043 0.530 -0.174 1.000 5 0.077 0.047 0.016 0.083 1.000 6 -0.038 0.055 -0.013 0.058 -0.101 7 0.045 0.063 0.031 0.078 0.223 8 0.011 0.001 0.016 0.025 0.057 9 -0.058 0.086 -0.063 0.032 0.241 10 0.032 0.052 -0.001 0.129 0.580 11 -0.013 0.071 -0.071 0.062 0.127 12 -0.053 0.010 -0.116 0.055 0.105 13 0.013 0.054 0.007 0.084 0.161 14 -0.075 -0.004 -0.123 0.049 0.013 15 -0.074 -0.083 -0.054 -0.016 -0.171 16 -0.097 -0.224 -0.017 -0.200 -0.075 17 -0.079 -0.098 -0.070 -0.084 -0.068 18 -0.077 -0.017 -0.107 -0.026 -0.006 19 -0.005 -0.042 0.155 -0.080 -0.016 20 -0.108 0.003 -0.260 0.042 0.026 21 -0.001 -0.064 -0.142 -0.079 0.002 22 -0.064 -0.087 -0.081 -0.046 -0.106 23 0.007 -0.159 0.098 -0.352 -0.001 24 -0.015 -0.012 -0.060 0.007 -0.096 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.513 1.000 8 0.212 -0.068 1.000 9 0.047 0.161 0.032 1.000 10 0.021 0.190 0.047 0.076 1.000 11 0.114 0.191 -0.109 0.485 0.065 12 -0.138 0.001 -0.033 0.057 0.071 13 0.584 0.495 0.226 0.038 0.386 14 0.192 0.072 0.567 0.026 0.200 15 0.026 -0.061 -0.029 -0.112 -0.162 16 0.010 -0.024 0.018 0.138 -0.114 17 -0.020 -0.065 0.038 -0.104 -0.074 18 -0.129 -0.147 -0.057 -0.085 -0.024 19 -0.164 0.076 -0.117 -0.138 -0.003 20 -0.047 0.019 -0.274 -0.027 0.017 21 0.110 -0.104 0.071 0.160 -0.045 22 0.010 -0.078 0.100 -0.013 -0.108 23 -0.024 0.000 -0.137 0.011 -0.072 24 -0.032 -0.122 0.172 -0.008 -0.064 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.221 1.000 13 0.006 -0.055 1.000 14 -0.042 0.011 0.414 1.000 15 -0.089 -0.039 -0.046 -0.043 1.000 16 0.003 -0.016 -0.044 0.059 0.221 17 -0.032 0.003 -0.043 0.004 -0.593 18 -0.048 -0.062 -0.108 -0.022 0.639 19 0.058 0.057 -0.109 -0.040 0.096 20 0.070 -0.113 -0.077 -0.183 0.288 21 -0.031 -0.061 0.044 0.036 -0.029 22 -0.111 0.008 -0.030 0.016 -0.333 23 0.068 0.110 -0.064 -0.087 0.020 24 -0.147 -0.094 -0.014 0.119 -0.122 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.263 1.000 18 0.128 -0.393 1.000 19 0.075 -0.100 0.198 1.000 20 0.027 -0.199 0.661 0.144 1.000 21 0.285 0.016 -0.078 -0.799 -0.075 22 -0.121 0.593 -0.579 -0.317 -0.426 23 0.305 -0.062 0.061 0.169 0.111 24 -0.037 0.323 -0.355 -0.254 -0.565 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 0.078 1.000 23 0.237 -0.282 1.000 24 0.059 0.684 -0.571 1.000
58af519495862e883449c6dc83c1e9e6109e5c3f
449d555969bfd7befe906877abab098c6e63a0e8
/1694/CH2/EX2.34/EX2_34.sce
358d81cb422a3d3ade012ff5a3d1336d7a991bf3
[]
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
340
sce
EX2_34.sce
clear; clc; printf("\nEx2.34\n"); //page no.-73 //given h=6.63*10^-34;............//planck's constant in J-sec t=2.5*10^-14;.............//time required in sec //By Heisenberg's uncertainty principle, E*t=h del_E=h/(2*%pi*t).............//error in energy in joule printf("\nminimum error in energy is 4.22*10^-21 joule\n");
8e5be2e9884f1c652fee67be95897194ba5519c5
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH17/EX17.5/example5_sce.sce
8d44ba0afab8aafbb0fafe688bb5f4f8798fc602
[]
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
275
sce
example5_sce.sce
//chapter 17 //example 17.5 //page 7 printf("\n") printf("given") f=12*10^3;C1=1000*10^-12; disp("butterworth second order filter") C2=C1; R2=(sqrt(2))/(2*3.14*f*C1) R1=.5*R2 R3=R2; fc=1/(2*3.14*(sqrt(R1*R2*C1*C2))); printf("actual cutoff frequency is %dHz\n",fc)
399ff78e53f800342fcdb124d2fd00e4b3cc7f47
cb412970af67cd342235f1ad29668c7ac9a2dfed
/mt_tutorial41/mt_1.sci
87671acb0de875daa3a1b7418e492fc8ddd5a1c1
[]
no_license
dowaiko/mt_tutorial41
cdab43af761897afc940ae64deb7df423bdd5776
d21788c424e2c1df2ecc46ca6ae270e393433e85
refs/heads/master
2020-04-10T13:25:27.584350
2019-05-31T13:37:08
2019-05-31T13:37:08
161,050,504
0
1
null
null
null
null
UTF-8
Scilab
false
false
3,302
sci
mt_1.sci
clear; printf('\n'); printf('************** mt_1.sci Start! ****************'); printf('\n'); printf('Enter a File Name of UNIT SPACE Material'); UnitSpaceFile = input('File Name(.xls)?: ',"string"); printf('./' +UnitSpaceFile+'.xls\n'); MT_Mat_Sheets = readxls('./' + UnitSpaceFile + '.xls'); // EXELファイルの読み出し Sheet = MT_Mat_Sheets(1); // Sheetの抜き出し MTMate = Sheet.value; // 数値の取り出し SampleCount = size( MTMate, 1); ItemCount = size( MTMate, 2); printf('SampleCount ='); disp(string(SampleCount)); printf('ItemCount ='); disp(string(ItemCount)); printf('\n'); // 予備計算 for j = 1: ItemCount, x1( 1, j) = 0, //行列の初期化 x2( 1, j) = 0, //行列の初期化 for i = 1: SampleCount, x1( 1, j) = x1( 1, j) + MTMate( i, j), // 1乗の総和を求める x2( 1, j) = x2( 1, j) + MTMate( i, j)^2; // 2乗の総和を求める end, end // 算術平均 for j = 1: ItemCount, Ave( 1, j) = x1( 1, j) / SampleCount; end // 標準偏差(MT法) for j = 1: ItemCount, StDevM( 1, j) = (( x2( 1, j) - (x1( 1, j)^2)/SampleCount) /SampleCount)^0.5; end // 基準化 for j = 1: ItemCount, for i = 1: SampleCount, u( i, j) = (MTMate( i, j) - Ave( 1, j)) / StDevM( 1, j); end; end // for k= 1: ItemCount for j = 1: ItemCount, for i = 1: SampleCount, uxu( i, j, k) = u( i, j) * u( i, k); end; end end // 単位空間生成 for j = 1: ItemCount, for i = 1: ItemCount, R ( i, j) = 0; // 初期化 end; end for k= 1: ItemCount, for j = 1: ItemCount, for i = 1: SampleCount, R ( j, k) = R ( j, k) + uxu( i, j, k); end, R ( j, k) = R ( j, k) / SampleCount; end; end // 単位空間をprint //disp("R ="); printf("R ="); disp(R); printf("\n"); // 単位空間の検証 for i=1:SampleCount, Ut = u( i, :), U = Ut', D2(i,1) = Ut * inv(R) * U / ItemCount; end AveD = 0; for i=1:SampleCount, AveD = AveD + D2(i,1); end AveD = AveD / SampleCount; // 単位空間の検証結果 AveD==1ならGood printf("AveD = "); disp(string(AveD)); printf("\n"); /* 信号空間の検証 */ printf('Enter a File Name of MT Signal Material'); MTSigFile = input('File Name(.xls)?: ',"string"); printf('./' +MTSigFile+'.xls\n'); MTSig_Sheets = readxls('./' + MTSigFile + '.xls'); // EXELファイルの読み出し SigSheet = MTSig_Sheets(1); // Sheetの抜き出し MTSig = SigSheet.value; // 数値の取り出し SampleCount = size( MTSig, 1); ItemCount = size( MTSig, 2); printf('SampleCount ='); disp(string(SampleCount)); printf('ItemCount ='); disp(string(ItemCount)); printf('\n'); // 基準化 for j = 1: ItemCount, for i = 1: SampleCount, v( i, j) = (MTSig( i, j) - Ave( 1, j)) / StDevM( 1, j); end; end for i=1:SampleCount, Vt = v( i, :), V = Vt', SD2(i,1) = Vt * inv(R) * V / ItemCount; end clf; // clear //scf; // add subplot(2,2,1); plot2d(D2); subplot(2,2,2); //histplot( 0:1:30, D2(:,1)'); histplot( 30, D2(:,1)'); subplot(2,2,3); plot2d(SD2); subplot(2,2,4); //histplot( 0:1:30, SD2(:,1)'); histplot( 30, SD2(:,1)');
66b7c8fe0dca14b060d311a9d2a33168849b9e75
717ddeb7e700373742c617a95e25a2376565112c
/1766/CH1/EX1.4/EX1_4.sce
4427fa2fa019645e08cf7ee8873abed0ad33775b
[]
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
433
sce
EX1_4.sce
clc;funcprot(0);//Example 1.4 //Initilisation of Variables T1=500;.........//tempatarure of plate 1 in K T2=350;.........//tempatarure of plate 2 in K d=0.15;.........//diameter of the rod in m L=1.5;.........//Length of the rod in m K=0.4;.........//thermal conductivity in W/(m*K) //Calculations A=(%pi/4)*d^2;.......//Area of the rod in m^2 Q=(K*A*(T1-T2))/L;.....//heat transfer in kW disp(Q,"heat transfer in kW:")
a51442c199295c5667b90e87bc93715da726ed8a
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH6/EX6.5/Ex6_5.sce
ae8a58134462adb1c17ba8bdfb0d4d11f5690275
[]
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,076
sce
Ex6_5.sce
//Ex6_5 // For class-AB BJT amplifier clc VCC=(10) disp("VCC= "+string(VCC)+" volts") // Collector voltage supply VEE=VCC disp("VEE=VCC= "+string(VEE)+" volts") // Emitter supply voltage ICQ_0=10*10^(-3) disp("ICQ_0 = "+string(ICQ_0)+" ampere") // Zero signal collector current RL=5 disp("RL= "+string(RL)+ " ohm") //Load resistance disp("part(i)") Po=0// Since Output power at Zero signal condition is Zero disp("Po="+string(Po)+" W") // Output power at Zero signal condition PDC=2*VCC*ICQ_0 disp("PDC=2*VCC*ICQ_0= "+string(PDC)+" W") // Total D.C power supply for Zero signal condition disp("part(ii)") Vcm=VCC//For Full output voltage swing Vcm=VCC disp("Vcm=VCC =" +string(Vcm)+" volts") // common mode voltage for full swing condition Icm=VCC/RL disp("Icm = VCC/RL="+string(Icm)+" ampere") // common mode current Po=(1/2)*(Icm*Vcm) disp("Po=(1/2)*(Icm*Vcm)="+string(Po)+" W") // Output power at full swing condition ICavg=(Icm)/(%pi) disp("ICavg=(Icm)/(%pi)="+string(ICavg)+" ampere") // Average value of common mode current PDC=2*(ICavg*VCC) disp("PDC=2*VCC*ICavg= "+string(PDC)+" W") // Total D.C power supply for full swing condition Etta=(Po/PDC)*100 disp("Efficiency,Etta=(Po/PDC)*100= "+string(Etta)+" %") // power amplifier conversion efficiency disp("part(iii)") Vcm1=(5)//given value disp("Vcm1= "+string(Vcm1)+" volts") // common mode voltage for output swing Vcm=5 V ICavg1=(Vcm1)/(%pi*RL) disp("ICavg1=(Vcm1)/(%pi*RL)="+string(ICavg1)+" ampere") // Average value of common mode current Po1=(Vcm1^2)/(2*RL) disp("Po1=(Vcm1^2)/(2*RL)="+string(Po1)+" W") // Output power for output swing Vcm=5 V PDC1=2*(ICavg1*VCC) disp("PDC1=2*VCC*ICavg1= "+string(PDC1)+" W") // Total D.C power supply for output swing Vcm=5 V Etta=(Po1/PDC1)*100 disp("Efficiency,Etta=(Po1/PDC1)*100= "+string(Etta)+" %") // power amplifier conversion efficiency for output swing Vcm=5 V // NOTE:Correct value of Efficiency,Etta=(Po1/PDC1)*100= 39.269908 % for part(iii) but book ans is 39.31%(because of approximation used during calculation)
3f655e34e0f37ac5507a720d2a363c7222462948
449d555969bfd7befe906877abab098c6e63a0e8
/409/CH21/EX21.6/Example21_6.sce
8e3b9ae180ce8d5dcedb4831bba8ee7271e0fa41
[]
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
338
sce
Example21_6.sce
clear ; clc; // Example 21.6 printf('Example 21.6\n\n'); //page no. 632 // Solution printf('\n As we know that enthalpy(H) is state variable , therefore change in enthalpy(del_H) depends only on initial and final state , independent of the path taken for process.\n Hence, change in enthalpy for both paths A-B-D and A-C-D are same. ');
a94f597ee260bfd887f73aebedbd3229813710ab
449d555969bfd7befe906877abab098c6e63a0e8
/881/CH12/EX12.5/exa12_5.sce
523493127b2c945df52e869083c8264b9676a5ec
[]
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
316
sce
exa12_5.sce
clc; //Example 12.5 //Page No 514 //solution Ei=5; Er=3; disp("Substituting into equation 12-33 yield"); r=Er/Ei; disp(r,"r = "); disp("Substituting into equation 12-37 yield"); swr=(Ei+Er)/(Ei-Er); disp(swr,"SWR = "); disp("Substituting into equation 12-45 yield"); r1=(swr-1)/(swr+1); disp(r1,"r = ");
1292f43e55d05bfd6f7c3f52385ef6870486c8ed
449d555969bfd7befe906877abab098c6e63a0e8
/2783/CH8/EX8.23/Ex8_23.sce
831166b9412e6b9d90cd5533b9347edf2fb4071d
[]
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
458
sce
Ex8_23.sce
clc //initialization of new variables clear m=250 //tonne Weight b=64.4 //m wing span S=541 //m^2 Wing area c=8.4 //m Wing chord r=1.1 //kg/m^3 Air density u=600 //km/h air speed g=9.8 //m/s^2 Acceleration due to gravity //calculations u=u/3.6 Cl=m*g*1000/(0.5*r*u^2*S) AR=b^2/S Cla=2*%pi/(1+2/AR) aa=Cl/Cla aa=aa*180/%pi //results printf('Airplane angle of attack is %.1f degrees',aa) printf('\n Lift slope is %.2f ',Cla)
ef783419048c95a13008ea87aba30165807d6970
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH8/EX8.2/Ex8_2.sce
dea278ded808a17093a172acd4a8b1fe7a2e7b8d
[]
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
900
sce
Ex8_2.sce
// Example 8.2 R=0.8; // Resistance L=1.6; // Inductor t1=L/R; // Time // Instantaneous current is ( it= Io*e(-t/2) ) Io=20/exp (0.5); // The current ( at t= -1 & i= 20A ) disp(' The value of current at t=0 i(0) = '+string(Io)+' Amp'); i1=Io*exp (-0.5); // Current through inductor at t= 1S i=7.36; // i1=7.357 we have taken as ( i=7.36 ) p1=i*i*R; // Power absorbed by Resistor disp(' Power absorbed by inductor at t= 1S P(1) = '+string(-p1)+' Watt'); // We know that w=0.5*L*it^2; w= 100 J it=sqrt(200/1.6); // Flow of current t=log (Io/it)*2; // Time required to store Energy 100J disp(' Time required to store Energy 100J = '+string(t)+' Second'); // p 277 8.2
af5be6198082492e33d4d1ae2bcee2cc74ef4a5d
449d555969bfd7befe906877abab098c6e63a0e8
/557/CH14/EX14.5/5.sce
d98ab0a7c11a4d91085f24442c9a79876998b7d8
[]
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
626
sce
5.sce
clc; funcprot(0); //Example 14.5 //Initializing the variables D = 0.3; Q = 0.8; rho = 1.2; f = 0.008; L_entry = 10; L_exit = 30; Lt = 20*D;//Transition may be represented by a separation loss equivalent length of 20 × the approach duct diameter K_entry = 4; K_exit = 10 l = 0.4; // length of cross section b = 0.2; // width of cross section //Calculations A = %pi*D^2/4; Dp1 = 0.5*rho*Q^2/A^2*(K_entry + 4*f*(L_entry+Lt)/D); area = l*b; perimeter =2*(l+b); m = area/perimeter; Dp2 = 0.5*rho*Q^2/area^2*(K_exit + f*L_exit/m); Dfan = Dp1+Dp2; disp(Dfan,"fan Pressure input (N/m2) :");
edc54c3e3ec29a267edf04f943cf103c08b3892c
449d555969bfd7befe906877abab098c6e63a0e8
/569/CH4/EX4.5/4_5.sci
ec3685f0d869b032c26131eb427be12da637d422
[]
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
165
sci
4_5.sci
// Calculate the value of resistance after 15s clc; R0=29.44; Rs=100; t=15; tc=5.5; R_15=Rs+R0*[1-exp(-t/tc)]; disp(R_15,'value of resistance after 15s(ohm)')
a0656a321922fb875b16a0caf4cf127834695652
c467ffcfa06f9033a1d1d4e4fe4ec455bfeac36d
/Busqueda_secuencial.sce
0e6f0bc2fc7cf980fd17804f5971a333f8d2c730
[]
no_license
Juliansrami99/reporte
81265fee25990625493b5fc06712b1ec0c89a225
fa0d45aa95296e041c9389375c91db3752c2743f
refs/heads/master
2022-12-05T00:42:10.923889
2020-08-14T03:58:30
2020-08-14T03:58:30
287,424,904
0
0
null
2020-08-14T03:58:31
2020-08-14T02:27:46
R
UTF-8
Scilab
false
false
531
sce
Busqueda_secuencial.sce
function y = f(x) y = 2* x(1)**4 + (x(1) + x(2) - 1)**2 endfunction function Optimo = minSol(a,b,e,m,f,x,d) dif = b - a while(dif >= e) h = dif/(m+1) u = [a:h:b] mini = a + h for i = a:h:m t_i = a + i *h if f(x + mini*d) > f(x + t_i* d) then mini = a + i*h end end a = mini-h b = mini+h dif = b - a end Optimo = mini endfunction x = [3;4] d = [-5;-1] t = minSol(0,1,0.01,2,f,x,d) disp(t,"t")
e09f1a518029f88c6d3b8c7e2adc56881a313df7
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH10/EX10.5/Chapter10_example5.sce
15d505a6e6a07e4567b500d30215002ea0aa6c57
[]
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
676
sce
Chapter10_example5.sce
clc clear //Input data n=30//Efficiency of the reactor in percent Ef=200//Energy released per fission in MeV E=200//Energy needed to the city in MW e=1.6*10^-19//Charge of electron in Coulumb A=6.023*10^23//Avagadros number a=235//U235 //Calculations E1=E*10^6//Energy required to the city in J/s E2=E1*24*60*60//Energy required to the city for one day in J I=(E2/n)*100//Useful input in J Ef2=(Ef*10^6*e)//Energy released per fission in J n=(I/Ef2)//Number of nucei required to produce 'I' J of energy m=((a*n)/(A*1000))//Mass of 'n' atoms of U235 in kg //Output printf('The amount of fuel required for one day operation of he reactor is %3.4f kg',m)
6ff7cba567e773674840647e7bd90dbe52349234
449d555969bfd7befe906877abab098c6e63a0e8
/343/CH2/EX2.10/ex2_10.sce
b9270a2ee637b5528ad443e7834f26a7e136dfd8
[]
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
195
sce
ex2_10.sce
Vm=1; //Assuming Vm=1 function y=f(t),y=Vm*Vm*sin(t)*sin(t),endfunction //Defining Voltage Equation T=2*%pi; Res=sqrt(intg(0,%pi,f)/(T)); disp("Volts",Res,"Rms value of voltage");
d143bdc980fa7138c7a50448a6f0725f940f66ad
1485852dd59aafc286600126cf832a32e10f117f
/macros/sampletry.sci
159016c9392c1618b45e5cdbb7704d511d36b2ae
[]
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
175
sci
sampletry.sci
function sampletry() // unix('wish /home/codestation/sample_im.tcl'); //exec('/home/codestation/sc.sh'); TCL_EvalFile('/home/codestation/sample_im.tcl'); endfunction
1262a30015435f252c19f6531859d4921707a363
e46eeada1bd3e461d9e4c2913bb12e406391f603
/Labdig/P12019-1.sce
e994bd59c363bb67110ff18402855b5675227ec3
[]
no_license
JoseColombini/Poli
fcc73dcf863256055ff0eb5202617ebb3434fcf3
c913de4597496164646b262fe2a66f1fdebc05b7
refs/heads/master
2023-03-11T21:49:04.619768
2023-03-04T20:41:46
2023-03-04T20:41:46
203,501,300
0
0
null
null
null
null
UTF-8
Scilab
false
false
362
sce
P12019-1.sce
Vl = 380 Vf = Vl/sqrt(3) Zc1 = 36+%i*32.5 I = Vf/Zc1 S = 3*Vf*I' modS = polar(S) Fp = real(S)/modS Qc = imag(S) -real(S)/0.92*sqrt(1-0.92^2) S = S - Qc*%i I = (S/(3*Vf))' //W1 = Vf*I*expm((acosd(0.92) + 30)*%pi/180) W1 = (Vl*expm(30*%pi/180*%i))*I' W2 = (Vl*expm(-30*%pi/180*%i))*I' Zcap = - abs(Vf)^2/(2*%pi*60*Qc/(3))*%i Icc = Vl*expm(30*%pi/180*%i)/Zcap
3bd4754494a17016e15bb1ab1090c4bd4453422b
449d555969bfd7befe906877abab098c6e63a0e8
/2489/CH4/EX4.1/4_1.sce
bf643cc0578977a75b4f290c8ee41a0819dfa2ee
[]
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
233
sce
4_1.sce
clc //Intitalisation of variables clear v= 240 //ml p= 1.25 //atm p1= 0.75 //atm n= 2 //CALCULATIONS v1= v*p/p1 dv= v1-v V= n*v1 //RESULTS printf ('Increase in volume = %.f ml',dv) printf ('\n Final volume = %.f ml',V)
682a8dc8a9c4496f1962da3e7d63e5b093043df2
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH16/EX16.6/Ex16_6.sce
0c4f47f3ed058071a1d5f6ce069cc887ba7535fe
[]
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,006
sce
Ex16_6.sce
//Variable declaration: T1 = 400.0 //Temperature of fluid entering the shell ( F) T2 = 250.0 //Temperature of fluid leaving the shell ( F) t1 = 100.0 //Temperature of fluid entering the tube ( F) t2 = 175.0 //Temperature of fluid leaving the tube ( F) //Calculation: DT1 = T1 - T2 //Temperature driving force 1 ( F) DT2 = t2 - t1 //Temperature driving force 1 ( F) DTlm1 = ((DT1-DT2)/log(DT1/DT2)) //Log mean temperature driving force for ideal countercurrent heat exchanger ( F) P = (t2-t1)/(T1 - t1) //Dimensionless ratio P R = (T1-T2)/(t2-t1) //Dimensionless ratio R //From figure 16.8: F = 0.985 //Correction factor DTlm2 = F*DTlm1 //Log mean temperature driving force for shell and tube exchanger ( F) //Result: printf("The log mean temperature difference between the hot fluid and the cold fluid is : %.1f F.",DTlm2)
52d5dabda112a8cf5b77387ba2a2e0be5774a06b
449d555969bfd7befe906877abab098c6e63a0e8
/374/CH5/EX5.1.b/51b.sci
149c1f005e6d37577635713251357b31695a3529
[]
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
245
sci
51b.sci
//chapter 5 example 1// clc clear //band gap energy=Eg,voltage applied=V,total effeciency of an injection laser=nT// Eg=1.43;//in ev// V=2.5;//in volts// nT=0.18; ne=((nT*Eg)/V)*100; printf("\n external power efficiency=%f percent\n",ne)
627960158fb8807edc5f7fd2ca43eacce90c0eac
449d555969bfd7befe906877abab098c6e63a0e8
/1670/CH6/EX6.3/6_3.sce
5d481318576b42dd34ccbb67aac0baa198904450
[]
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
744
sce
6_3.sce
//Example 6.3 //Least Square Method //Page no. 217 clc;close;clear; x=[1,2,3,4,5,6,7,8]; y=[3,3,4,5,5,6,6,7];n=1; printf('\t 2\t\t 2\n n\tx\tx\ty\txy\ty\n--------------------------------------------\n') x1=0;x2=0;x3=0;x4=0;x5=0;x6=0; for i=1:8 printf(' %i\t%i\t%i\t%i\t%i\t%i\n',n,x(i),x(i)^2,y(i),x(i)*y(i),y(i)^2) x1=x1+n; x2=x2+x(i); x3=x3+x(i)^2; x4=x4+y(i); x5=x5+x(i)*y(i); x6=x6+y(i)^2; end printf('--------------------------------------------\n %i\t%i\t%i\t%i\t%i\t%i\n',x1,x2,x3,x4,x5,x6) x0=x2/x1; y0=x4/x1; A=x3-x1*x0^2; B=x5-x1*x0*y0; C=x6-x1*y0^2; x7=poly(0,'b') y=x7^2+(A-C)*x7/B-1 b=roots(y) a=y0-b(2)*x0 x7=poly(0,'x') disp('is the required least line',a+b(2)*x7,'y = ')
ed4f642cfc05caab6869a7983eb9476664131d47
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electric_Machines_-_I_M._Verma_And_V._Ahuja_695.zip/Electric_Machines_-_I_M._Verma_And_V._Ahuja_695/CH2/EX2.44/Ex2_44.sce
9a77a9d08fd499ec60afcc45490a4fc7124011cb
[]
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
233
sce
Ex2_44.sce
errcatch(-1,"stop");mode(2);//Caption:Find the armature voltage drop //Exa:2.44 ; ; V=440;//in volts N_1=1000;//in rpm N_2=1050;//in rpm r=N_1/N_2; V_drop=2*(V-V*r) disp(V_drop,'Armature voltage drop (in volts)=') exit();
f93c19773ca5a57b9fbba1f501ceae244315d133
449d555969bfd7befe906877abab098c6e63a0e8
/1373/CH8/EX8.6/Chapter8_Example6.sce
28adb04bc72aa5249983e17d296d7c9cc380e870
[]
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,234
sce
Chapter8_Example6.sce
//Chapter-8, Example 8.6, Page 346 //============================================================================= clc clear //INPUT DATA L=0.3;//Height of the duct in m W=0.6;//Width of the duct in m Ts=15;//Surface temperature in degree C Ta=25;//Temeprature of air in degree C //CALCULATIONS Tb=(Ts+Ta)/2;//Film temperature in degree C p=1.205;//Density in kg/m^3 k=0.02593;//Thermal conductivity in W/m.K v1=(15.06*10^-6);//Kinematic viscosity in m^2/s b=0.00341;//Coefficient of thermal expansion in 1/K Cp=1005;//Specific heat in J/kg.K Pr=0.705;//Prantl number Ra=((9.81*b*L^3*(Ta-Ts)*Pr)/(v1^2));//Rayleigh number Nux=(0.59*Ra^(0.25));//Nusselts number hx=(Nux*k)/L;//Heat transfer coefficient in W/m^2.K Lc=(W/2);//Characteristic length in m Nu1=(0.15*Ra^(1/3));//Nussults number h1=(Nu1*k)/Lc;//Heat transfer coefficient at top surface in W/m^2.K Nu2=0.27*(Ra)^(0.25);//Nusselts number h2=(Nu2*k)/Lc;//Heat transfer coefficient at bottom surface in W/m^2.K Q=((2*hx*L)+(W*(h1+h2)))*(Ta-Ts);//Rate of heat gained per unit length in W/m //OUTPUT mprintf('Rate of heat gained per unit length is %3.2f W/m',Q) //=================================END OF PROGRAM==============================
12a24e1b90c0845c18c038852c8d711d0d008105
449d555969bfd7befe906877abab098c6e63a0e8
/38/CH4/EX4.1/1.sce
1b30797fd2869f16c07315ca87da6d4305144135
[]
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
371
sce
1.sce
// Caption: Finding peak mmf and flux clear; close; clc; function [F_peak]=mmf(k,N,p,I) F_peak=(4*k*N*I)/(%pi*p); endfunction f=mmf(.9,46,2,1500);//peaf fundamental mmf B_peak=(4*%pi*10^-7*f)/(7.5*10^-2);//peak flux density phy=2*B_peak*4*0.5;//flux per pole E_rms=sqrt(2)*%pi*60*.833*24*2.64;//rms voltage disp(E_rms,'RMS value of voltage generated=')
83f33394a776dbb874fc4e4f7ba700cddce49377
99b88a8b86c9ba133f1838fdb89798ab0121134a
/app/pid_calculate.sci
ca33bde738c53ba8b903af28e91a3d548aa1d186
[]
no_license
feng42/Interface_scilab_mbdyn
aae1dd4d7ad13c4440be8ac4e6cb9d5d42cea512
604c543f8033fd5e0eed175dc66e5d0e44f5197e
refs/heads/master
2020-04-26T21:35:30.077586
2019-04-27T05:32:31
2019-04-27T05:32:31
173,845,932
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,469
sci
pid_calculate.sci
function [yout,last] = pid_calculate(pid_cfg, pre, cur, trg)//,u_last) _dt = pid_cfg(1); _max = pid_cfg(2); _min = pid_cfg(3); _Kp = pid_cfg(4); _Ki = pid_cfg(5); _Kd = pid_cfg(6); _pre_error = pre(1,:); _integral = pre(2,:); size(_integral) input_size = size(trg); nums = input_size(1,2); _error = zeros(1,nums); yout = zeros(1,nums); for j = 1:nums _error(1,j) = trg(1,j); Pout = _Kp * _error(1,j); _integral(1,j) = _integral(1,j) + _error(1,j) * _dt; Iout = _Ki * _integral(1,j); derivate = (_error(1,j) - _pre_error(1,j)) / _dt; Dout = _Kd * derivate; out = Pout + Iout + Dout; if out>_max then out = _max; elseif out<_min then out = _min; end //if out==0.000000 then // if u_last(1,nums)>0 then // out = -0.000001 // else // out = 0.000001 // end //end yout(1,j) = out; end //_error = trg - cur; //Pout = _Kp * _error; //_integral = _integral + _error * _dt; //Iout = _Ki * _integral; //derivate = (_error - _pre_error) / _dt; //Dout = _Kd * derivate; //out = Pout + Iout + Dout; //if out>_max then // out = _max; //elseif out<_min then // out = _min; //end //yout = out; last = [_error;_integral]; endfunction
7890cd917e8771b3fc085b02ab26b69fd4e9dd2d
449d555969bfd7befe906877abab098c6e63a0e8
/3731/CH6/EX6.2/Ex6_2.sce
9944263ea24b94d618f96209bf381da4d12da0c0
[]
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,859
sce
Ex6_2.sce
//Chapter 6:Induction Motor Drives //Example 2 clc; //Variable Initialization //Ratings of the Delta connected Induction motor f=50 //frequency in HZ Vl=2200 //line voltage in V P=8 //number of poles N=735 //rated speed in rpm //Parameters referred to the stator Xr_=0.55 // rotor winding reactance in ohm Xs=0.45 // stator winding reactance in ohm Rr_=0.1 // resistance of the rotor windings in ohm Rs=0.075 // resistance of the stator windings in ohm //Solution Ns=120*f/P //synchronous speed in rpm s=(Ns-N)/Ns //full load slip x=sqrt((Rs+Rr_/s)**2+(Xs+Xr_)**2) //total impedance Ip=(Vl)/x //full load phase current Il=sqrt(3)*Ip //full load line current Wms=2*%pi*Ns/60 Tl=(1/Wms)*(3*Ip**2*Rr_/s) //full load torque //(i)if the motor is started by star-delta switching y=sqrt((Rs+Rr_)**2+(Xs+Xr_)**2) Ist=(Vl/sqrt(3))/y //Maximum line current during starting Tst=(1/Wms)*(3*Ist**2*Rr_) //Starting torque ratio1=Tst/Tl //ratio of starting torque to full load torque z=Rs+sqrt(Rs**2+(Xs+Xr_)**2) Tmax=3/(2*Wms)*(Vl/sqrt(3))**2/z //maximum torque ratio2=Tmax/Tl //ratio of maximum torque to full load torque //(ii) If the motor is started using auto transformer y=sqrt((Rs+Rr_)**2+(Xs+Xr_)**2) Ist1=Vl*sqrt(3)/y //starting current direct online aT=sqrt(2*Il/Ist1) //transofrmation ratio Ilst=2*Il/aT //starting motor line current Ipst=Ilst/sqrt(3) //starting motor phase current Tst1=(1/Wms)*(3*Ipst**2*Rr_) //starting torque //(iii) If motor is started using part winding method Rs_=2*Rs Xs_=2*Xs y=sqrt((Rs_+Rr_)**2+(Xs_+Xr_)**2) Ist2=(Vl*sqrt(3))/y //starting line current Ip=Ist2/sqrt(3) //starting phase current Tst2=(1/Wms)*(3*Ip**2*Rr_) //starting torque //(iv) motor is started using series reactors in line Rs_=Rs/3 ; Rr_=Rr_/3 Xs_=Xs/3 ; Xr_=Xr_/3 Il=2*Il //line current at start x=(Vl/sqrt(3))**2/(Il**2) //x=(Rs_+Rr_)**2+(Xs_+Xr_+Xe)**2 y=x-(Rs_+Rr_)**2 //y=(Xs_+Xr_+Xe)**2 z=sqrt(y) //z=(Xs_+Xr_+Xe) Xe=z-Xs_-Xr_ //Results mprintf("(i)Maximum value of line current during starting Ist:%d A",Ist) mprintf("\nRatio of starting torque to full load torque :%.3f",ratio1) mprintf("\nRatio of maximum torque to full load torque :%.2f\n",ratio2) mprintf("\n(ii)Transformation ratio aT:%.3f",aT) mprintf("\nStarting torque :%d N-m\n",Tst1) //Answer for the starting torque in the book is wrong due to accuracy mprintf("\n(iii)Maximum line current during starting :%d A",Ist2) mprintf("\nStarting torque :%d N-m\n",Tst2) //Answer for the starting torque in the book is wrong due to accuracy mprintf("\n(iv)Value of the reactor Xe:%.3f ohm",Xe)
80e13222d73429529c61429e3d7969111201aa94
449d555969bfd7befe906877abab098c6e63a0e8
/1793/CH14/EX14.2/14Q2.sce
79001ee8cfb8e9a146383e5d99b81b33219a9e85
[]
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
297
sce
14Q2.sce
clc G=16 H=7 c=30 Ta=0.65*G*H*(tand(45-c/2))^2 A=Ta*3*3/4 B1=Ta*3-54.61 C=Ta*4*4/4 B2=Ta*4-97.08 s=2 As=A*s Bs=(B1+B2)*s Cs=C*s printf( 'The strut loads at level A = %f kN\n',As) printf( ' The strut loads at level B = %f kN\n',Bs) printf( ' The strut loads at level C = %f kN',Cs)
1bd821df939a818ae93c12b7882ade29f0f783d1
449d555969bfd7befe906877abab098c6e63a0e8
/1319/CH2/EX2.16/2_16.sce
7a21c59c091b90302ab163c31ce87537ec114eed
[]
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
478
sce
2_16.sce
// To determine the current in the 2 ohm resistor using superposition theorem clc; clear; // Voltage Sources V1=5; V2=10; // Since both Voltage sources are connected in parallel and are unequal R1=%inf; // As seen by 5V Source R2=%inf; // As seen by 10V Source I1=V1/R1; // Current Drawn from 5V supply I2=V2/R2; // Current Drawn from 10V supply I=I1+I2; // Current through 2 ohms resistor printf('The Current flowing in the 2 ohm resistor = %g A\n',I)
18d7205877d37e94726e90cbb9f8d70219a1fad4
786995be3311f963d1005b87d1f1f84548cce97e
/Ec.Lineales.sce
9a47c5b25186d5d989bea51af3f4539045c3e479
[]
no_license
paez74/NumericMethods
914473a1aac1fee26c11f45b222c6250c15d90ad
d051a926931996d338d3df7b035e494a45c1d3e0
refs/heads/master
2020-05-18T18:34:08.886882
2019-05-06T14:07:56
2019-05-06T14:07:56
184,589,853
0
0
null
null
null
null
UTF-8
Scilab
false
false
5,512
sce
Ec.Lineales.sce
function dX = Montante(MAT) //Inicializar el pivote en 1 dPivAnt = 1 //Recorrido por renglones for i = 1: size(MAT, 1) //Recorrido por columnas for k = 1: size(MAT, 1) if i <> k //Recorrido por columnas (Las que no son del pivote) for j = i + 1 : size(MAT, 2) //Actualizar cada valor de esas columnas usando determinantes 2x2 entre el pivote anterior MAT(k,j) = (MAT(i,i) * MAT(k,j) - MAT(k,i) * MAT(i,j)) / dPivAnt end end end //Actualizar pivote dPivAnt = MAT(i,i) //Desplegar Matriz disp(MAT) end //Recorrido por renglones para encontrar el vector X for i = 1 : size(MAT, 1) //Encontrar valores del vector X (Vector B / pivote anterior) dX(i) = MAT(i, size(MAT, 1) + 1) / dPivAnt end endfunction // This GUI file is generated by guibuilder version 4.2.1 ////////// f=figure('figure_position',[400,50],'figure_size',[640,480],'auto_resize','on','background',[33],'figure_name','Graphic window number %d','dockable','off','infobar_visible','off','toolbar_visible','off','menubar_visible','off','default_axes','on','visible','off'); ////////// handles.dummy = 0; handles.Encabezado=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.1987179,0.9,0.5064103,0.0909091],'Relief','default','SliderStep',[0.01,0.1],'String','METODO EC.LINEALES','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Encabezado','Callback','') handles.IngresaMat=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.099359,0.7,0.6025641,0.1],'Relief','default','SliderStep',[0.01,0.1],'String','Ingresa la Matiz ','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','IngresaMat','Callback','') sMatriz = x_matrix("Teclea la matriz", zeros(3,4)) matriz=evstr( sMatriz ); handles.CampoParaMat=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.099359,0.5022727,0.6025641,0.1022727],'Relief','default','SliderStep',[0.01,0.1],'String'," datos ",'Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','CampoParaMat','Callback','') handles.Respuesta=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.2980769,0.1,0.3028846,0.2068182],'Relief','default','SliderStep',[0.01,0.1],'String','.','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','Respuesta','Callback','') //handles.CalcResp=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Tahoma','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.3012821,0.3136364,0.2900641,0.0863636],'Relief','default','SliderStep',[0.01,0.1],'String','GenerarRespuesta','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','CalcResp','Callback','CalcResp_callback(handles)') X = Montante(matriz) //Desplegar el vector X for i = 1 : length(X) handles.Respuesta.string = handles.Respuesta.string + " X " + string(i) + " = " + string(X(i)) end for i = 1 : size(matriz,1) for j = 1 : size(matriz,2) handles.CampoParaMat.string = handles.CampoParaMat.string + " " + string(matriz(i, j)) + " , " end handles.CampoParaMat.string = handles.CampoParaMat.string + " / " end f.visible = "on"; ////////// // Callbacks are defined as below. Please do not delete the comments as it will be used in coming version ////////// function CalcResp_callback(handles) //Write your callback for CalcResp here //<<<<<<< HEAD //=handles.CalcResp.string; //handles.CalcResp.string; //Obtiene Valor del Campo Donde Se Obtiene la Matriz //answer = strtod(handles.CalcResp.string); //disp(answer); //======= //sAnswer = handles.CampoParaMat.string; //Obtiene Valor del Campo Donde Se Obtiene la Matriz //answer = eval(sAnswer); //>>>>>>> c9e9b9839336788b27bad433aaf3d19c987ee77d //an= eval(answer); //Hace la operacion (Aqui iria el metodo) //handles.CalcResp.string= string(answer); //Regresa valor /// /////PROGRAMA PRINCIPAL //Usar la funcion Montante para encontrar el vector X de la matriz tecleada por el usuario X = Montante(matriz) //Desplegar el vector X for i = 1 : length(X) handles.Respuesta.string = handles.Respuesta.string + " X " + string(i) + " = " + string(X(i)) end endfunction
0b2ef2f23836473a177ef58b420f7e59e6b6e9bc
449d555969bfd7befe906877abab098c6e63a0e8
/260/CH4/EX4.11/4_11.sce
740616998b5388c4d534e46397d28ea7f7ba0d04
[]
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
542
sce
4_11.sce
//Eg-4.11 //pg-163 clear clc // Secant Method clear ; close ; clc ; deff('[z]=f(x)','z=1.55*x^(-0.5)-7.2*x+8.1*x^2-4*x^3-1.3'); iter=1; eps=10^(-10); x1=0.5; x2=1; imax=20; Abserr=100; while Abserr>eps&iter<imax //printf('iteration number %i\n',iter); xnew1=x2-feval(x2,f)*(x2-x1)/(feval(x2,f)-feval(x1,f)); //printf('xnew1 = %f \n',xnew1); Abserr=abs(xnew1-x1)/abs(xnew1); x1=x2; x2=xnew1; iter=iter+1; end printf('The result of %f has been found after %d iterations',x2,iter-1)
d361f8db50ee735e7021c0a5909f8415d32e19d4
449d555969bfd7befe906877abab098c6e63a0e8
/2699/CH6/EX6.4/Ex6_4.sce
784243f68f3e9f665491462cd7f593122f1b0b8d
[]
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
445
sce
Ex6_4.sce
//EX6_4 PG-6.34 clc Vbb=20; Ct=0.1e-6;//capacitance Rt=10e3;//resistance Vv=1.5;//valley potential Vd=0.7;//cut in voltage of diode n=0.6;//stand off ratio Vp=n*Vbb+Vd; disp("We know that Vp=Vbb(1-exp(-T/(Rt*Ct)))") x=(Vp-Vv)/Vbb;//x=(1-exp(-T/(Rt*Ct)) y=1-x;//y=exp(-T/(Rt*Ct) z=Rt*Ct; T=-log(y)*z;//time period fo=1/T;//frequency of oscillations fo=fo*1e-3; printf("\n Therefore frequency of oscillation is %.3f kHz \n",fo)
3d954d5c826082dc24d71d5c61984c822566d3ae
449d555969bfd7befe906877abab098c6e63a0e8
/3116/CH9/EX9.1/Ex9_1.sce
c579c715af79dc749e27343c881c46fd9cf0b2d3
[]
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
264
sce
Ex9_1.sce
clc // given that E=110*10^3 //Young's modulus of Copper in MPa sigma=276 //Applied stress in MPa l_o=305 //Original length in mm printf("Example 9.1\n") del_l=sigma*l_o/E //Deformation printf("\n Elongation obtained is %.2f mm \n",del_l)
d7c4d0b58febfc7f34e5b8a7e0c1bf20f591bb50
fdc5047b7bf8122bad1e621df236b0481226c36e
/exemplos/xls-link-0.5.0-src/demos/xls_link.dem.gateway.sce
5e1d56b2138564e713fea0c4865b44b1d9e85dbb
[]
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
632
sce
xls_link.dem.gateway.sce
// ==================================================================== // Copyright DIGITEO 2010 // Allan CORNET // ==================================================================== demopath = get_absolute_file_path("xls_link.dem.gateway.sce"); subdemolist = ["demo xls_link set/get datas" ,"xls_link_setget_datas.dem.sce"; "demo xls_link Set Picture" ,"xls_link_xls_SetPic.dem.sce"; "List opened Excel files" ,"xls_link_list_opened_files.dem.sce"; ]; subdemolist(:,2) = demopath + subdemolist(:,2); // ====================================================================
12c7a3f3815593bc78133fd2ec9e24b96decb975
449d555969bfd7befe906877abab098c6e63a0e8
/746/DEPENDENCIES/3_07.sci
0a44b164ac84d55f9bf6ef3b92ee6a90141e1202
[]
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
218
sci
3_07.sci
//Width of gate(in m): w=5; //Depth of water(in m): D=4; //Density of water(in kg/m^3); d=999; //Accelration deto gravity(in m/sec^2): g=9.81; //Value of a (in m): a=4; //Point where force acts(in m): l=5;
bd135b58fbaff2b3f984a97f1d95b1e73fb54389
59b742e36fbe9d77cb51ec949c6625f665133d2b
/Resultados/results_LocGlo_29/results/29/g20-4/result4s0.tst
a930d6df8349d7df805b4c5b708a4e5b813a2236
[]
no_license
Tiburtzio/TFG
3132fd045de3a0e911e2c9e23e9c46e1075a3274
864ce4dd00b7f8fe90eafa65b11d799c5907177e
refs/heads/master
2023-01-03T12:44:56.269655
2020-10-24T18:37:02
2020-10-24T18:37:02
275,638,403
0
0
null
null
null
null
UTF-8
Scilab
false
false
779
tst
result4s0.tst
@relation unknow @attribute left-weight real[1.0,5.0] @attribute left-distance real[1.0,5.0] @attribute right-weight real[1.0,5.0] @attribute right-distance real[1.0,5.0] @attribute class{L,B,R} @inputs left-weight,left-distance,right-weight,right-distance @outputs class @data R R R R R R R R R R R R R R L L B L R R R R R R R R B L R R R R R L R R L L L L R R B R L L L L R L R L B L R R R R R R R R R R R R R R L L L L L L R R L L L L L R L L L L L L L L L L L L B L R R R R R R L L R R L L R R L L L L L L L L R R R R R R L L L L L L R L R R R R R R R R B R R R L L R R L L L L R R L L L L L L L L L L L L L L L L L L L L L L R R R R L L L R L R R R R R R R R R L L B L L L B L R R L L L L L L L L L L R R R R R R R R B L R R R R L L L L L L B R R R R R L L R R L L L L L L
3e24cb3272f97197f47fa98b825ed6d633c34919
59ea89f1162f8048d9f7f10f6e6a3a1567c56607
/expe/eyes/_old/presentation-v2019 final/spatial_attention_eyes_block.sce
3e9ee4d0b0070656ccade304a3f7612606662008
[]
no_license
elshafeh/own
a9b8199efb3511aa1b30b53755be9337d572b116
ef3c4e1a444b1231e3357c4b25b0ba1ba85267d6
refs/heads/master
2023-09-03T01:23:35.888318
2021-11-03T09:56:33
2021-11-03T09:56:33
314,668,569
1
1
null
null
null
null
UTF-8
Scilab
false
false
2,591
sce
spatial_attention_eyes_block.sce
# header scenario = "spatial attention block"; write_codes = true; # send codes to output port active_buttons = 2; button_codes = 4, 8; default_font_size = 30; default_text_color = 255,255,255; # white default_background_color = 0,0,0; # black $set_comb = 4; $eye_cond = eye_close; # SDL code begin; ######################################## ### define auditory cues/isntruct ### ######################################## TEMPLATE "sound.tem"; TEMPLATE "audio_instruct.tem"; ######################################## ### define all the required pictures ### ######################################## TEMPLATE "picture.tem" { name colour content; default "255,255,255" "+"; # default picture: fixation cross }; ###################################### ### define all the required trials ### ###################################### # instruction trials, use template TEMPLATE "trial.tem" { name trlcode content; instruction "instruct" "Instruction:\nIndicate as fast as possible whether the stimulus frequency was low or high.\n Low = blue button\n High = yellow button\n\nPush a button to continue."; example "example" "Here follows an example of the stimuli.\n\nPush a button to start."; }; # trial: feedback correct trial { sound feedback_correct; duration = 200; code = "correct"; port_code = 16; }correct; # trial: feedback incorrect trial { sound feedback_incorrect; duration = 200; code = "incorrect"; port_code = 48; }incorrect; # trial: feedback no response (=incorrect) trial { sound feedback_incorrect; duration = 200; code = "noresp"; port_code = 80; }noresp; trial example; TEMPLATE "audcue_tactstimEX.tem" { cue cue_code stim resp comb; cue_left 64 2 1 $set_comb; cue_left 64 2 2 $set_comb; cue_right 128 1 1 $set_comb; cue_right 128 1 2 $set_comb; }; ################### # practice # # condition: 100% # ################### trial instruction; trial $eye_cond; # block - NO DISTRACTOR TEMPLATE "audcue_tactstimPR.tem" randomize { cue cue_code stim resp comb; LOOP $i 19; # 19*4 = 76 trials (4 blocks) cue_left 64 2 1 $set_comb; # cue left stim left low cue_left 64 2 2 $set_comb; # cue left stim left high cue_right 128 1 1 $set_comb; # cue right stim right low cue_right 128 1 2 $set_comb; # cue right stim right high ENDLOOP; }; # the end # trial end;
8f3003c7909e29b89cf11d574c2ea4b51262c9fa
449d555969bfd7befe906877abab098c6e63a0e8
/2087/CH4/EX4.64/example4_64.sce
7debd4aff7ac595fdc07635acfe35a41423b0bc6
[]
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
473
sce
example4_64.sce
//example 4.64 //calculate flood magnitude with return period of 500 years clc;funcprot(0); //given T1=50;T2=100; //Return period F1=20600;F2=22150; //Peak flood y100=-(2.303*log10(2.303*log10(T2/(T2-1)))); y50=-(2.303*log10(2.303*log10(T1/(T1-1)))); y=(F2-F1)/(y100-y50); T=500; y500=-(2.303*log10(2.303*log10(T/(T-1)))); x500=F2+(y500-y100)*y; x500=round(x500); mprintf("flood magnitude with return period of 240 years=%f cumec.",x500);