blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
214
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1df9a5c1e184d8b248de4c145625fd97011f3195 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/ac2rc/ac2rc7.sce | 3e0c41dea1717767f2ea1c9e39fd51e2cc8ae821 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 123 | sce | ac2rc7.sce |
//check o/p when as zero vector is passed to the function
t=[0];
z=[5];
[k,R0] = ac2rc(t);
disp(k);
//output
//[]
|
4a9b3e8cb48e6a5bd7b6da6c8f9c0aa6668b02c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2201/CH3/EX3.11/ex3_11.sce | 0cceae906e85c9bcfbc6d7e2fd28a041887e2f1c | [] | 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 | ex3_11.sce | // Exa 3.11
clc;
clear;
close;
// Given data
n_i = 1.5*10^10;// in /cm^3
n_n = 2.25*10^15;//in /cm^3
p_n = ((n_i)^2)/n_n;// in /cm^3
disp(p_n,"The concentration of holes per cm^3 is");
disp(n_n,"Donor impurity per cm^3 is");
|
bbb164b163940f2274c71bf972460dba559a5cb3 | 7cc96234594adc8fa42f30740d8d313d5246d90a | /data/motorparams/format.sce | e20ad277c9c684da7868005f4c488a7e70eaac67 | [] | no_license | ku3i/evolution | 3d5a8585d2b99dc65525455d894884fd0c03cd83 | 7e93655f812f7f93498f9393f140774865a34901 | refs/heads/master | 2021-01-12T11:49:58.684976 | 2020-12-30T23:40:44 | 2020-12-30T23:40:44 | 70,154,387 | 1 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sce | format.sce | mode(-1)
R = csvRead("./input_data.log"," ")
[T,N] = size(R)
T = min(7000, T)
t = [1:T]'
position = 0.617 * (R(t,3) - 512) / 1024
voltage = R(t,2)
clf
plot2d(t, voltage , style=2)
plot2d(t, position, style=5)
D = [t,voltage,position]
csvWrite(D, "./input_data_formatted.log", " ")
|
a0680ce3f035c41b600ad45a63dcff2940ad9bf7 | ef7da921e1289d3deaaf9727db2b6f025656e8d9 | /Parabola&Hyperbola.sce | db467bfee912c8ccf8cffea37769c3a15890667e | [] | no_license | PrayagS/SciLab_Exercises | ea88438207f2dc5d3f211c9abfe137a4bd43f68f | 0495ba76e693750980fefb386c28209a6fd6563e | refs/heads/master | 2020-09-08T01:52:22.914681 | 2019-11-16T05:39:29 | 2019-11-16T05:39:29 | 220,977,317 | 2 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 346 | sce | Parabola&Hyperbola.sce | clear;
clf;
dt = 1;
t = -5 : dt : 5;
x = t.*t;
subplot(211);
plot(t, x);
xgrid(1);
xlabel("t", "fontsize", 4);
ylabel("x", "fontsize", 4);
title("Parabola x = t^2", "fontsize", 4);
// x = sqrt(t^2 - 1);
x = 1./t;
subplot(212);
plot(t, x);
xgrid(1);
xlabel("t", "fontsize", 4);
ylabel("x", "fontsize", 4);
title("Hyperbola xt = 1", "fontsize", 4); |
26b6460d3dd7da4bb29756acdcfe90842533f35c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1472/CH21/EX21.3/21_3.sce | 6e12126cb0c9f9535d43fe13430883261b9edeaa | [] | 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 | 342 | sce | 21_3.sce | clc
//initialization of variables
R=53.34
T1=540 //R
n=1.4
g=n
n2=1.3
P2=90 //psia
P1=15 //psia
cv=0.171
cp=0.24;
eta=0.95
//calculations
pv=R*T1
Wk=n*R*T1*((P2/P1)^((g-1)/g) -1) /(n-1)
Wn=n2*R*T1*((P2/P1)^((n2-1)/n2) -1) /(n2-1)
Wt=R*T1*log(P2/P1)
Wx=-Wk/eta
dh=cp*T1*(1.52 - 1)
Q=dh+Wx/778
//results
printf("Heat transferred = %.1f B/lb",Q) |
83a8be25d59e69dbf29831b0914a70b59f4fed5a | 449d555969bfd7befe906877abab098c6e63a0e8 | /45/CH7/EX7.6/example_7_6.sce | 228e91db6d3888049cb76b7e27ffbe1d2e901b77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 518 | sce | example_7_6.sce | //example 7.6
clc
clear
//rb=input('Enter the value of the resistance RB in Kohms :');
//dc =input('Enter required duty cycle in % :');
//clk = input('Enter the provided clock frequency in MHz:');
rb=0.75//taking the given values for input
dc=25
clk=1
ra = (rb*100/dc) - 2*rb;//mking neccesary calculations
format('v',18);
t2 = dc/(clk*10^8);
C = t2/(693*rb)
C=C*10^12;
//C=round(C);
printf('The value of RA is %f Kohms\n',ra);//displaying the output
printf('The value of C is %f pico farads',C);
|
f9fa0a14d0710572cd1c99a9c9e068e2bffc8633 | 717ddeb7e700373742c617a95e25a2376565112c | /1340/CH6/EX6.1/6_1.sce | a430983d7f037104bb85a628418c03b885082586 | [] | 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 | 740 | sce | 6_1.sce | //routh hurwitz criterion for system transfer function given by:
// g(s)=1000/(s^3+10*s^2+31*s+1030)
s = poly(0,'s');
po = syslin('c',1000/(s^3+10*s^2+31*s+1030));//creates LTI system
m = denom(po);//extracts the denominator of the transfer function
co = coeff(m);//extracts the coefficients of the denominator
routh=[co([4,2]); co([3,1])] ;
D = det(routh)/routh(2,1);
routh =[routh ;-D 0];
t=routh (2:3 ,1:2) ;
M = det(t)/t(2,1);
routh =[routh ;-M 0];
c=0;
disp(routh);
n = length(co);
for i =1:n
if(routh(i,1)<0) then
c= c+1;
end
end
if (c>=1) then
printf("system is unstable because there is sign change in the 1st row");
else printf("system is stable");
end |
d2fc76c1f2f014c7609e6017b1c6320d35167514 | 0812f3bb6f3cc038b570df68ccee4275da04b11f | /models/complexity_1000/Applied_Thermodynamics_and_Engineering/CH9/EX9.3/9_3.sce | 5856962bef04bb5b65b46b10035f166dcebcf905 | [] | no_license | apelttom/20-semester_PhD_thesis | edc0b55580bae9d364599932cd73cf32509f4b7a | ff28b115fcf5e121525e08021fa0c02b54a8e143 | refs/heads/master | 2018-12-26T22:03:38.510422 | 2018-12-14T20:04:11 | 2018-12-14T20:04:11 | 106,552,276 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 607 | sce | 9_3.sce | clc;
p2!p1=8;
T1=290;
y=1.4;
T2s=T1*({p2!p1}^[(y-1)/y]);
nc=0.8;
T2=[(T2s-T1)/nc]+T1;
cps=1.005;
T3=923;
Wi=cps*(T2-T1);
Wo=Wi;
cps2=1.15;
T4=T3-[Wo/cps2]
nt=0.85;
T4s=T3-[(T3-T4)/nt];
p3=8*1.01;
y2=1.333;
p4=p3/[(T3/T4s)^{y2/(y2-1)}];
disp("bar",p4,"pressure at entry of the LP.");
disp("K",T4,"temperature at the entry of LP.");
p4!p5=p2!p1*(p4/p3);
T5s=T4/[(p4!p5)^{(y2-1)/y2}];
nT=0.83;
T5=T4-[nT*(T4-T5s)]
WoLP=cps2*(T4-T5);
N=WoLP*1;
Wr=WoLP/(WoLP+Wo);
disp("kW",Wr,"Work ratio is :");
Q=cps2*(T3-T2);
disp("kJ/kg",Q,"Heat supplied is:");
Ceff=N/Q;
disp("%",Ceff*100,"cycle efficiency is:");
|
c0b900a70ca6591a2cf5b5e2cff0a1a5133b9bae | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH8/EX8.8/ex8.sce | d5a5dbad801d205ab11c261294daa9cc4c5effbc | [] | 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 | 525 | sce | ex8.sce | //example 3
//calculating increase in entropy
clear
clc
m=1 //mass of saturated water vapour
sfg=6.0480 //in kJ/K
T=25 //temperature of surrounding air in celsius
dScm=-m*sfg //change in entropy of control mass in kJ/K
hfg=2257.0 //in kJ/kg
Qtosurroundings=m*hfg //heat transferred to surroundings in kJ
dSsurroundings=Qtosurroundings/(T+273.15) //in kJ/K
dSnet=dScm+dSsurroundings //net increase in entropy in kJ/K
printf(" hence,net increase in entropy of water plus surroundings is dSnet=%.4f kJ/K.\n",dSnet) |
af53c0b038e845f6f76abe48cca8d701e368ad55 | 4b3c8d2302d37ad5981adb6f68fae3db1d9820c8 | /addBlocks.sce | ae2457309840f41adcb73725666bc7926e23d705 | [] | no_license | mayank1513/littleBird_RD_ResourceManagementSystem | 002d19579b3b55a314450ec75d2874131741564b | 090d016248164580defc9b4629ba54c9dc362949 | refs/heads/master | 2020-03-15T04:48:31.637752 | 2018-05-03T09:46:53 | 2018-05-03T09:46:53 | 131,970,842 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,635 | sce | addBlocks.sce | f_addNewBlock = figure("dockable", "off", "infobar_visible", "off", "toolbar_visible", "off", ...
"toolbar", "none", "menubar_visible", "on", "menubar", "none", "default_axes", "off", ...
"layout", "border", "figure_name", gettext(prodName),...
"visible", "on",'closerequestfcn','save(baseDir+''\meta.dat'',''blocks''); exec(''launcher.sce'',-1);');
frame_top = uicontrol(f_addNewBlock, "tag", "topFrame", "style", "frame", "constraints", createConstraints("border", "top", [0, 30]), ...
"border", createBorder("titled", createBorder("line", "lightGray", 1), gettext(trustName), "center", "below_top", createBorderFont("", 16, "normal"), "black"), ...
"backgroundcolor", [.95 .95 .95]);
frame_addNewBlock = uicontrol(f_addNewBlock, "style", "frame", "constraints", createConstraints("border", "center", [0, 250]),"String", "addNewBlock", ...
"border", createBorder("line", "lightGray", 1), ...//"layout_options", createLayoutOptions("grid", [2, 3]), ...
"backgroundcolor", [1 1 1],"layout", "grid");
t_addBlock = ["Blocks", "Villages", "Hemlets"];
tag_listBlock = ["blockList", "villageList", "hemletList"];
listboxCallbacks = ['set(get(''villageList''),''String'',blocks(2)(get(''blockList'',''Value''))(1)); set(get(''hemletList''),''String'','''');', ...
'set(get(''hemletList''),''String'',blocks(2)(get(''blockList'',''Value''))(2)(get(''villageList'',''Value'')));', ''];
listboxStr = list(blocks(1), '', '');
if isempty(listboxStr(1)) then
listboxStr(1) = '';
end
// listboxStr = list(blocks(1), blocks(2)(1)(1), blocks(2)(1)(2)(1));
for i = 3:-1:1
frameBlock = uicontrol(frame_addNewBlock, "tag", "blockFrame", "style", "frame", ...
"border", createBorder("titled", createBorder("line", "lightGray", 1), gettext(t_addBlock(i)), "center", "below_top", createBorderFont("", 16, "normal"), "black"), ...
"backgroundcolor", [.95 .95 .95],"layout", "border");
uicontrol(frameBlock,"tag", tag_listBlock(i),"Style", "listbox","String", gettext(listboxStr(i)),"Callback",listboxCallbacks(i));
frameAddBlockEdit = uicontrol(frameBlock, "style", "frame", "constraints", createConstraints("border", "bottom", [0, 60]), "border", createBorder("empty", 5, 3, 3, 3),...
"backgroundcolor", [.95 .95 .95],"layout", "border");
uicontrol(frameAddBlockEdit, "style", "edit", "backgroundcolor", [1 1 1],"TooltipString", "Enter New " + t_addBlock(i),"Max",10,"Min",1,...
"tag", "edit_"+tag_listBlock(i));
frameBlockEdit = uicontrol(frameAddBlockEdit, "style", "frame", "constraints", createConstraints("border", "right", [45, 0]), "border", createBorder("empty", 5, 3, 3, 3),...
"backgroundcolor", [.95 .95 .95],"layout", "border");
uicontrol(frameBlockEdit, "backgroundcolor", [.95 .95 .95],"String", "Add", "constraints", createConstraints("border", "top"),...
"relief", "raised","Callback", ['exec(''add_'+t_addBlock(i)+'.sce'');']);
uicontrol(frameBlockEdit, "backgroundcolor", [.95 .95 .95],"String", "delete", "constraints", createConstraints("border", "bottom"),...
"relief", "raised","Callback", ['exec(''del_'+t_addBlock(i)+'.sce'');']);
end
Footer = uicontrol(f_addNewBlock, "style", "frame", "constraints", createConstraints("border", "bottom", [0, 30]), ...
"backgroundcolor", [1 1 1]);
|
44e1f2d7a9a6fbb35b524c220639c7d8f3ec6baa | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH31/EX31.9/Example31_9.sce | 6ced3bffed78c643c65eb6330a335f63dfbd145d | [] | 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 | 337 | sce | Example31_9.sce | //Given that
N1 = 1200 //turns
N2 = N1
R2 = 1.1*10^-2 //in meter
R1 = 15*10^-2 //in meter
uo = 4*%pi*10^-7
//Sample Problem 31-9
printf("**Sample Problem 31-9**\n")
//let's assume
i = 1 //in amp
B1 = uo*N1*i/(2*R1)
phi2 = B1*%pi*R2^2*N2
M = phi2/i
printf("The mutual inductance of the two coil is equal to %1.2eH", M) |
62c4da1ff8642978f001439c694f9d5e9e611caf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1370/CH3/EX3.20/example3_20.sce | f8659085d28932d25204a0e99236e830d6d7a51a | [] | 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 | 723 | sce | example3_20.sce | //example3.20
clc
disp("150 kVA, P_i=1.4 kW, P_cu(FL)=1.6 kW")
k=150*sqrt(1.4/1.6)
format(9)
disp(k,"a) kVA for eta_max = kVA*sqrt(P_i/P_cu(FL))= ")
disp("For maximum efficieny, P_cu=P_i=1.4kW and cos(phi)=1")
disp("Therefore, %eta_max=(VA for eta_max *cos(phi))/(VA for eta_max*cos(phi)+2P_i *100")
n=(140.3121*1000*100)/(140312.1+(2*1.4*1000))
format(7)
disp(n,"= (140.3121*1000*100)/(140312.1+(2*1.4*1000)) = ")
disp("b) At half load, n=0.5, cos(phi)=0.8")
disp("Therefore, %eta_HL = (n*VA*cos(phi)*100)/(n*VA*cos(phi)+P_i+[n^2 *P_cu(FL)])")
n=(0.5*150*1000*0.8*100)/((0.5*150*1000*0.8)+(1.4*10^3)+(1.6*1000*0.5^2))
disp(n,"= (0.5*150*1000*0.8*100)/((0.5*150*1000*0.8)+(1.4*10^3)+(1.6*1000*0.5^2))) = ")
|
9103d847aa14fb37e425a00a02c9c539e74295ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /2384/CH9/EX9.15/ex9_15.sce | aaea45d62bcb6035cc909e1c9bfbfd9337240d56 | [] | 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 | 378 | sce | ex9_15.sce | // Exa 9.15
clc;
clear;
close;
format('v',6)
// Given data
Rating = 8*10^3;// in VA
phi= acosd(0.8);// in °
V1 = 400;// in V
V2 = 100;// in V
f = 50;// in Hz
Pi = 60;// in W
Wo = Pi;// in W
Pcu = 100;// in W
// The full load efficiency
Eta_f1 = ((Rating*cosd(phi))/((Rating*cosd(phi)) + Pi + Pcu))*100;// in %
disp(Eta_f1,"The full load efficiency in % is");
|
d6258cf4107db01390f0e242609cf93626f41391 | 449d555969bfd7befe906877abab098c6e63a0e8 | /331/CH3/EX3.1/Example_3_1.sce | e866b59ff494a55f92b3bcbfb6b8a47184dbe365 | [] | 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 | 376 | sce | Example_3_1.sce | //Caption: Program to determine the Arithmetic Mean
//Example 3.1
//Page 40
clc;
x = input('Monthly Salaries of Employees');
n = length(x); //Number of Observations
X = sum(x)/n;
disp(X,'Arithmetic mean of salaries of the employees =')
//Result
//Monthly Salaries of Employees [12000,14500,8500,13500,13500,17500,11500];
//Arithmetic mean of salaries of the employees = 13000 |
40beef1466eb08c6a2f7a721af43ea3beb0c0589 | 449d555969bfd7befe906877abab098c6e63a0e8 | /371/CH7/EX7.2/7_2.sci | 1479df6241196a677c9a7376d4373677bca321b0 | [] | 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 | 295 | sci | 7_2.sci | //Inverter Circuits//
//Example 7.2//
C=1*10^-6;//Capacitance of series inverter circuit in Farads//
f=5*10^3;//operating Frequency of series Inverter in Hertz//
L=1/(C*(f^2));//value of Inductance under Resonance condition in Henry//
printf('value of Inductance at resonance=L=%fHenry',L); |
9912eb246b7b0263422aba7e55b72274085159de | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH5/EX5.11/Ex5_11.sce | 42acb405c6630354c15d19d34ed4f46a32326d02 | [] | 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,137 | sce | Ex5_11.sce | clear;
clc;
disp('Example 5.11');
// aim : To determine the
// (a) original and final volume of the gas
// (b) final pressure of the gas
// (c) final temperature of the gas
// Given values
m = .675;// mass of the gas,[kg]
P1 = 1.4;// original pressure,[MN/m^2]
T1 = 273+280;// original temperature,[K]
R = .287;//gas constant,[kJ/kg K]
// solution
// (a)
// using characteristic equation, P1*V1=m*R*T1
V1 = m*R*T1*10^-3/P1;// [m^3]
// also Given
V2 = 4*V1;// [m^3]
mprintf('\n (a) The original volume of the gas is = %f m^3\n',V1);
mprintf('\n and The final volume of the gas is = %f m^3\n',V2);
// (b)
// Given that gas is following the law P*V^1.3=constant
// hence process is polytropic with
n = 1.3; // polytropic index
P2 = P1*(V1/V2)^n;// formula for polytropic process,[MN/m^2]
mprintf('\n (b) The final pressure of the gas is = %f kN/m^2\n',P2*10^3);
// (c)
// since mass is constant so,using P*V/T=constant
// hence
T2 = P2*V2*T1/(P1*V1);// [K]
t2 = T2-273;// [C]
mprintf('\n (c) The final temperature of the gas is = %f C\n',t2);
// End
|
96f03f73067583f84b1602a1cbb5471e24efc406 | 449d555969bfd7befe906877abab098c6e63a0e8 | /506/CH9/EX9.1/Example9_1.sce | 1739215658d011d65b47b5034a88ced562d51f2f | [] | 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 | 796 | sce | Example9_1.sce | clear;
clc;
//Caption:To find Q point
//Given Data
Vcc=22.5//in V
Rc=5.6;//in K
Re=1;//in K
R2=10;//in K
R1=90;//in K
B=55;//beta
V=(R2*Vcc)/(R2+R1);//Thevenin Equivallent Voltage
Rb=(R2*R1)/(R2+R1);//Thevenin Equivallent Resistance
disp('Volts',V,'The equivallent Vbb =');
disp('ohm',Rb,'The equivallent Rb is');
//For base current large compared to reverse saturation current ie Ib>>Ico it follows that Ic=B*Ib
//Applying KVL to the base circuit
//0.65-2.25+Ic+10*Ib=0
disp('As B=55 we have Ic=55*Ib');
//We have -1.60+Ic+(10/55)*Ic=0
Ic=1.60/(65/55);
Ib=Ic/55;
disp('milli amp',Ic,'Ic=');
disp('micro amp',Ib,'Ib=');
//Applying KVL to the collector circuit yields
//-22.5+6.6*Ic+Ib+Vce
Vce = 22.5-(6.6*1.36)-0.025;
disp('Volts',Vce,'Vce=');
//end |
8d0df112bb21a031208776fafc37e68521a11a2d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3774/CH3/EX3.12/Ex3_12.sce | 7b94e8c0134cc0bc15ece53932a3aabdac5c95a6 | [] | 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 | 687 | sce | Ex3_12.sce | // exa 3.12 Pg 72
clc;clear;close;
// Given Data
sigma_w=60;// MPa
F=10;// kN
alfa=30;// degree
FH=F*sind(alfa);// kN
FV=F*cosd(alfa);// kN
t=poly(0,'t');// mm
A=t*t;// mm.sq.
sigma_d=FV*10**3/A
M=FV*10**3*120+FH*10**3*150;// N.mm
I=t*(2*t)**3/12;// mm^4
sigma_t=M*t/I;// N/mm.sq.
// Tensile stress at A=sigma_d+sigma_t=sigma_w ...eqn(1)
expr = sigma_d+sigma_t-sigma_w;// polynomial from above eqn.
t=roots(numer(expr));// roots of the polynomial
t=t(1);// mm // discarding -ve roots
printf('\n value of t = %.1f mm',t)
A=2*t**2;// mm.sq.
printf('\n Area of cross-section of Hanger, A = %.f mm.sq.',A)
// Note-Answer in the textbook is slighly wrong and cross section not calculated.
|
b82ca2e7f6baf778b6f630abf81a474f9e2c6660 | 567cea2cb660fcde8ef1be76f83726e67ebb0c23 | /homework5/TestSortedCollection.tst | c07d686eb1e8166f8e0233f834fee7f1065fd854 | [] | no_license | vw0389/cs351 | 3fdd0c276c851a0854e47eecb26470e7034b7b02 | c5655dc713d0f8a6f325d106e602729662fbfda6 | refs/heads/main | 2023-08-16T18:41:17.515448 | 2021-09-27T20:13:39 | 2021-09-27T20:13:39 | 408,193,869 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 302 | tst | TestSortedCollection.tst | 2127135785=0
978402736="Jingyuan"
1180449268="Omar"
27322186="The Harrowing of Hell"
319044975="The Desperate Man"
105019561=true
1866459795="Jingyuan"
988370360="Omar"
1076862205="Potsdamer Platz"
29737522="Fitz"
570352297=2
353461707="Jingyuan"
840018027=true
1300594462="Jingyuan"
948989387="Bobby"
|
d9fbddc224e21b30e27ec886063fe8a6cbd4581c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2165/CH6/EX6.6/6_6.sce | 7fbc750c1fe850f7ba6dd5c4bf671a04b02c4fcb | [] | 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 | 442 | sce | 6_6.sce | clc
//initialisation of variables
p=9.5//lb
p1=120//lb
e=0.88//in
p2=80//lb/in^2
d=25//in
d1=0.125//in
t=14//degree C
T=e*19//C.H.U/lb
D=0.975//in
V=sqrt(2*32.2*1400*T)//ft/sec
S=5.467//ft^3
//CALCULATIONS
V1=p*S*D//ft^3
T1=(V1*144/V)//in^2
C=25*%pi//in
N=C/2.5//in
P=C/31//in
W=d1/sind(t)//in
L=P-W//in
W1=L*sind(t)//in
T2=(T1)/(31*W1)//in
//RESULTS
printf('The number of nozzles their breadth and heigh=% f in',T2)
|
0d9c876e24b494ca85c4012a8830829a6a7835e3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1322/CH15/EX15.7/116ex2.sce | 69fc889841cc8c7ebce7c6bb044c58ab0884e465 | [] | 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 | 196 | sce | 116ex2.sce |
//3/(a-b)-(2a+b)/(a^2-b^2)
clear;
clc;
close;
mprintf("\n on factorizing, the expression becomes \n");
//3/(a-b)-(2a+b)/(a+b)(a-b) => (3a+3b-2a-b)/(a+b)(a-b)
string('(a+2b)/((a+b)(a-b))')
|
a74b68eb80b98834b3385c4b6e4a7d9c78794804 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3776/CH2/EX2.4/Ex2_4.sce | 2a8f3fa43bf838158670892692175ce2a0ad5dd6 | [] | 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 | 767 | sce | Ex2_4.sce | clear
p_app = 3 //kips - applied force
P_A = 2.23 //kips
p_B = -2.83 //kips - compressive force
l_ab = 6.71 //inch
l_bc = 8.29 //inch
s_ab = 17.8 //ksi - tensile stress
s_bc = -12.9 //ksi - compressive stress
E = 10.6 * (10**3) //ksi -youngs modulus
e_ab = s_ab*l_ab/E //elongation
e_bc = s_bc*l_bc/E //contraction
x = -e_bc/e_ab //the Ratio of cosines of the deflected angles
// t_1 and t_2 be deflected angles
//t_2 = 180-45-26.6-t_1 the sum of angles is 360
//applying cos on both sides
t_1=atand(1.29)
e = e_ab/cosd((t_1)) //inch
e_t = e*cosd(11.2)
k = p_app/e_t // kips/in vertical stiffness of the combination
printf("\n The vertical stiffness of the combination is %0.3f kips/inch",k) //answer in textbook is 167
// answer varies due to rounding off errors
|
d967cce7ac403a4173cc24ef7dffd1c9de548ded | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Zaey_Wingman_Short.sce | b279fd7bc7820a136dfa716b7b5f8e1c93930627 | [] | 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 | 11,061 | sce | Zaey_Wingman_Short.sce | Name=Zaey_Wingman_Short
PlayerCharacters=Training Apex Zaey
BotCharacters=Apex 200hp dodge hard.bot
IsChallenge=false
Timelimit=60.0
PlayerProfile=Training Apex Zaey
AddedBots=Apex 200hp dodge hard.bot;Apex 200hp dodge hard.bot;Apex 200hp dodge hard.bot;Apex 200hp dodge hard.bot
PlayerMaxLives=0
BotMaxLives=0;0;0;0
PlayerTeam=0
BotTeams=0;0;0;0
MapName=aimbotz.map
MapScale=1.3
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=5.0
ScoreToWin=1000.0
ScorePerDamage=2.0
ScorePerKill=150.0
ScorePerMidairDirect=10.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=true
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Apex Legends, Short range
WeaponHeroTag=wingman
DifficultyTag=4
AuthorsTag=Zaey
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=short range training for Wingman
GameVersion=1.0.7.2
ScorePerDistance=0.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=Apex 200hp dodge hard
DodgeProfileNames=Apex Strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Apex 200
SeeThroughWalls=false
NoDodging=false
NoAiming=true
[Character Profile]
Name=Training Apex Zaey
MaxHealth=200.0
WeaponProfileNames=Wingman;;;;;;;
MinRespawnDelay=3.0
MaxRespawnDelay=9.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=300.0
MaxCrouchSpeed=400.0
Acceleration=2000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=400.0
Gravity=1.6
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.366 Y=0.067 Z=0.371
EnemyHeadColor=X=0.847 Y=0.012 Z=0.018
TeamBodyColor=X=0.366 Y=0.067 Z=0.371
TeamHeadColor=X=0.863 Y=0.776 Z=0.434
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=270.0
MainBBType=Cylindrical
MainBBHeight=83.0
MainBBRadius=13.0
MainBBHasHead=true
MainBBHeadRadius=7.0
MainBBHeadOffset=1.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=65.0
ProjBBRadius=10.0
ProjBBHasHead=true
ProjBBHeadRadius=6.0
ProjBBHeadOffset=-8.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=Run.abilsprint;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=200.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=140.0
TPSOffset=X=0.000 Y=20.000 Z=0.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Character Profile]
Name=Apex 200
MaxHealth=200.0
WeaponProfileNames=Pump;Wingman;R-99;Spitfire;;;;
MinRespawnDelay=3.0
MaxRespawnDelay=9.0
StepUpHeight=16.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=0.0
MovementType=Base
MaxSpeed=300.0
MaxCrouchSpeed=400.0
Acceleration=2000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=400.0
Gravity=1.6
AirControl=0.1
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=0.366 Y=0.067 Z=0.371
EnemyHeadColor=X=0.863 Y=0.776 Z=0.434
TeamBodyColor=X=0.366 Y=0.067 Z=0.371
TeamHeadColor=X=0.863 Y=0.776 Z=0.434
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=270.0
MainBBType=Cylindrical
MainBBHeight=83.0
MainBBRadius=13.0
MainBBHasHead=true
MainBBHeadRadius=7.0
MainBBHeadOffset=1.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=65.0
ProjBBRadius=10.0
ProjBBHasHead=true
ProjBBHeadRadius=6.0
ProjBBHeadOffset=-8.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=Run.abilsprint;Melee.abilmelee;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.1
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=1.0
ForwardSpeedBias=1.0
HealthRegainedonkill=200.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=140.0
TPSOffset=X=0.000 Y=20.000 Z=0.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
[Dodge Profile]
Name=Apex Strafe
MaxTargetDistance=2000.0
MinTargetDistance=200.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.1
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.2
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.5
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.1
[Weapon Profile]
Name=Wingman
Type=Projectile
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.0
TimeBetweenShots=0.2923
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=18000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=18000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=2.0
MaxHitscanRange=100000.0
GravityScale=0.7
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=12
AmmoPerShot=1
ReloadTimeFromEmpty=2.1
ReloadTimeFromPartial=2.1
DamageFalloffStartDistance=5000.0
DamageFalloffStopDistance=5000.0
DamageAtMaxRange=45.0
DelayBeforeShot=0.0
HitscanVisualEffect=None
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Gunshot
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=0.2
CanAimDownSight=true
ADSZoomDelay=0.2
ADSZoomSensFactor=1.0
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.0
RecoilNegatable=false
DecalType=1
DecalSize=2.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=Smoke
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=90.75
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
Explosive=false
Radius=0.1
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.0,0.1,0.0,0.0
SpreadSCA=0.0,0.1,0.0,0.0
SpreadMSA=0.0,0.1,0.0,0.0
SpreadMCA=0.0,0.1,0.0,0.0
SpreadSSH=2.0,2.0,3.0,6.0
SpreadSCH=2.0,2.0,3.0,6.0
SpreadMSH=2.0,2.0,3.0,6.0
SpreadMCH=2.0,2.0,3.0,6.0
MaxRecoilUp=1.3
MinRecoilUp=1.0
MinRecoilHoriz=2.0
MaxRecoilHoriz=2.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=1.0
AAMaxSpeed=360.0
AADeadZone=0.0
AAFOV=360.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Sprint Ability Profile]
Name=Run
MaxCharges=1.0
ChargeTimer=0.0001
ChargesRefundedOnKill=0.0
DelayAfterUse=0.0
FullyAuto=false
AbilityDuration=0.0
BlockAttackWhileSprinting=false
AbilityBlockedWhenAttacking=false
SpeedModifier=1.8
45DegreeSprint=true
90DegreeSprint=true
135DegreeSprint=true
180DegreeSprint=false
TapToSprint=true
Block45DegreesWhenSprinting=false
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
|
c2367594f93e7ef39ddbb896a74d986acfe0fae2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH13/EX13.2/example13_2.sce | 2240042696102f42ad3f6805c0080b4d8a8908db | [] | 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 | 442 | sce | example13_2.sce | clear;
clc;
//Example13.2[Fraction of Radiation Leaving through an Opening]
//Given:-
r1=0.1;//Radius of enclosure[m]
L=0.1;//Length of Enclosure[m]
r2=0.05,r3=0.08;//Inner and outer radii of the ring[m]
//Solution:-
//Using Chart in Fig 13.7
F12=0.11;
F13=0.28;
F1_ring=F13-F12;
disp(F1_ring,"The fraction of the radiation leaving the base cyllinder enclosure that escapes through coaxial ring opening at its top surface is")
|
6399a70dfddf2ed918762a0cb619c7d8f7047e52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH1/EX1.7/Ex1_7.sce | 2c8a1f3b982822afc086ed8e266caff0980bd067 | [] | 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 | 829 | sce | Ex1_7.sce | clc;
clear;
R=8 //resistance in ohm
L=0.03 //inductance in H
V=240 //voltage in Volts
f=50 //frequency in Hz
reactance_RLC=9.42 //reactance of total RLC circuit in ohm in case(2)
//calculation
//for (1)
X_L=2*%pi*f*L // inductive reactance in ohm
Z=sqrt(R^2+X_L^2) //in ohm
I=V/Z
P=I^2*R
pf=R/Z
//for (2)
reactance_C=2*reactance_RLC //capacitive reactance in ohm
omega=2*%pi*f
C=1/(omega*reactance_C)
mprintf("(i)Impedance = %2.1f ohm\n",Z) //The answer varies due to round off error
mprintf("(ii)Current = %1.2f A\n",I) //The answers varies due to round off error
mprintf("(iii)Power Factor = %1.2f (lag)\n",pf)
mprintf("(iv)Power Consumed = %d W\n",P) //The provided in the textbook is wrong.
mprintf("(v)The value of capacitance is = %d mF\n",C/10^-6)//The answers varies due to round off error
|
2b83b8c183c0e9175745e45bf405b42298cf615e | ec117c3067c517791d2aa16938bdbe68ccc4222f | /Reconstruction_surface/Tp2/crust.sce | b3ef979916c3a29c277613416e79434288736edf | [] | no_license | Mric26/M2-S1 | e870849816b2a7945b4017bb2defaf4d772835f6 | bf9acf69e3a2a8abb3fbbe140021c8971cace9b9 | refs/heads/master | 2016-08-12T16:29:55.570039 | 2016-03-31T10:28:47 | 2016-03-31T10:28:47 | 43,129,610 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,067 | sce | crust.sce | function Crust(S)
// **** A MODIFIER/COMPLETER ****
// R should contain a list of pair of indices connecting the initial points in S
// for instance:
// R = [R ; [1,2]] adds the edge connecting points 1 and 2 in the array R
R = [];
// Triangle de Delaunay sur les sommets initiaux
[T,C,r] = delaunay(S);
// Trianglulation de Delaunay sur les sommets + les centres des cercles
SP = cat(1,S,C);
[T,C,r] = delaunay(SP);
nbS = size(S,1);
// Parcours des triangles
for i = 1:size(T,1);
i1 = T(i,1);
i2 = T(i,2);
i3 = T(i,3);
// Construction de R si les segments appartiennent aux points d'origines
if (i1 <= nbS & i2 <= nbS) then
R = [R ; [i1 i2]];
elseif (i1 <= nbS & i3 <= nbS) then
R = [R ; [i1 i3]];
elseif (i2 <= nbS & i3 <= nbS) then
R = [R ; [i2 i3]];
end
end
// ******************************
// nouvelle figure
scf();
// affichage des points en entrée
plot(S(:,1),S(:,2),'ro');
// affichage des connections
for i=1:size(R,1)
plot([S(R(i,1),1);S(R(i,2),1)],[S(R(i,1),2);S(R(i,2),2)],'b-');
end
for i=1:size(T,1)
plot([S(T(i,1),1);S(T(i,2),1)],[S(T(i,1),2);S(T(i,2),2)],'b-');
end
set(gca(),"auto_clear","off")
set(gca(),"margins",[0.05 , 0.05 , 0.05 , 0.05])
set(gca(),"box","off")
set(gca(),"isoview","on")
set(gca(),"auto_scale","on")
endfunction
function test_crust(num_test)
exec("qdelaunay.sce",-1);
if argn(2)<1
num_test=0;
end
select num_test
case 1
// // test 1
// les donnees
S = [0 0; 2 0; 4 0; 0 2; 1 2; 3 2; 2 3];
Crust(S);
case 2 then
// // test 2 − points aleatoires
S = rand(100,2);
Crust(S);
case 3 then
// // test 3 − points suivant une grille reguliere
S = zeros(100,2);
for i =0:9
for j =1:10
S(i*10+j,:) = [2*j+i 2*i];
end
end
Crust(S);
case 4 then
// // test 4 − points entres à la souris
S = inputpoints()';
Crust(S);
end // select
endfunction
|
a27a0e804aab4abebe91296d78d7697c6f4c7ec5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2561/CH1/EX1.4/Ex1_4.sce | 6c2d8da467d63de3178b346ce41ba34ad2a6a7df | [] | 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 | 733 | sce | Ex1_4.sce | //Ex-1.4
clc
q=1.6*10^(-19)
disp("q = "+string(q)+"coulomb") //charge on an electron
I=10
disp("I = "+string(I)+"Ampere") //initializing value of current
r=64.25
disp("radius,r = "+string(r)+" mils")//initializing value of radius of wire
function[metres]=mils2metres(mils)
metres=(mils*2.54)/(1000*100)
endfunction
[r1]=mils2metres(r)
disp("r1 = "+string(r1)+" metre")
n=5*10^(28)
disp("n = "+string(n)+" electrons/m^3") // electrons concentration in copper
A=(%pi*r1^2) //formulae
disp("cross sectional area,A =(%pi*r1^2)= "+string(A)+" square metre")//calculation
v=(I)/(A*q*n)//formulae(I=A*q*n*v)
disp("drift velocity,v=(I)/(A*q*n)="+string(v)+" metre/second")//calculation
|
8b16e97352cb0165d29a601a3d5f79022a82fd52 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3161/CH3/EX3.7/Ex3_7.sce | 3672376faf4457a5b761fc7834cce1a49b6ceb9a | [] | 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 | 947 | sce | Ex3_7.sce | clc;
//page 185
//problem 3.7
//Given input inmedance of matching networkis R1 = 10 ohm & output impedance of matching networ is R2 = 50 ohm & carrier frequency is fc = 500 KHz
R1 = 10
R2 = 50
fc = 500000
//Wc = 2*pi*fc
Wc = 2*%pi*fc
//AS R1 = R2*(X2^2)/[(R2^2)+(X2^2)], X2 = 25ohm
X2 = 25
//AS X1 = (R2^2)*X2/[(R2^2)+(X2^2)] & R1>R2, X1 = -20ohm
X1 = -20
//|X1| = |jwL| = wL = 20 & |X2| = |1/jwC| = 1/wC = 25, so |X1*X2| = L/C = 500 denotes as LC_div
LC_div = 500
//Wc^2 = 1/(L*C). LC is denoted as LC_prod
LC_prod = 1/(Wc^2)
//In the textbook the calculated LC = 10^-3, in reality the value of LC = 1.013D-13
L = sqrt(LC_div*LC_prod)
//In the textbook the calculated L^2 = 50*10^-14, in reality the value of L^2 = 5.066D-11
C = L/500
//In the textbook the calculated C = 1.4*10^-9, in reality the value of C = 1.424D-08
disp('Inductance '+string(L)+' H')
disp('Capacitance '+string(C)+' F')
|
d582331bc9a8f4faf662327d9dfa850f4f5ba344 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3869/CH2/EX2.14/Ex2_14.sce | 22c221a9b9474b92a9fad19e80a03aaa3820b029 | [] | 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 | 509 | sce | Ex2_14.sce | clear
//
//
//
//Variable declaration
N=6000*10**2 //number of lines/m
m=3 //order
lamda1=500*10**-9 //wavelength(m)
lamda2=510*10**-9 //wavelength(m)
//Calculation
sintheta1=m*N*lamda1
theta1=asin(sintheta1)*180/%pi //angle(degrees)
sintheta2=m*N*lamda2
theta2=asin(sintheta2)*180/%pi //angle(degrees)
theta=theta2-theta1 //angular separation(degrees)
//Result
printf("\n angular separation is %0.2f degrees",theta)
|
991adaf84be1fb98830db2226e077c3955821e3d | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.15_3.tst | 4c99734153d445594326ce16fd6ddf1a4bb7a4e7 | [] | no_license | mandar15/NLP_Project | 3142cda82d49ba0ea30b580c46bdd0e0348fe3ec | 1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2 | refs/heads/master | 2020-05-20T13:36:05.842840 | 2013-07-31T06:53:59 | 2013-07-31T06:53:59 | 6,534,406 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,620 | tst | bow.15_3.tst | 15 4:1.0 14:0.07547169811320754 20:1.0 31:1.0 39:1.0 50:2.0 64:0.2857142857142857 125:1.0 126:1.0 230:1.0 450:1.0 553:1.0
15 4:1.0 13:0.058823529411764705 16:0.25 119:1.0 133:1.0 169:0.5 369:1.0 1220:1.0 1316:1.0 1319:1.0 1371:1.0
15 4:3.0 5:0.2857142857142857 13:0.058823529411764705 17:0.09523809523809523 20:4.0 22:0.5 33:2.0 36:0.1 85:0.08333333333333333 96:0.5 127:1.0 133:1.0 146:0.3333333333333333 177:1.0 230:1.0 234:1.0 271:1.0 364:0.25 369:1.0 421:1.0 470:1.0 500:1.0 513:1.0 566:4.0 610:1.0 1080:2.0 1319:1.0 1371:1.0
15 4:1.0 610:1.0 1080:1.0
15 22:0.5 43:0.1111111111111111 85:0.08333333333333333 119:1.0 123:1.0 146:0.3333333333333333 180:1.0 186:1.0
15 5:0.14285714285714285 35:1.0 156:0.3333333333333333 169:0.5 242:1.0 289:0.6666666666666666 537:1.0 1263:1.0 1616:1.0
15 5:0.14285714285714285 97:1.0 156:0.6666666666666666 205:1.0 274:1.0 599:1.0 964:1.0
15 13:0.058823529411764705 17:0.047619047619047616 20:2.0 55:0.3333333333333333 79:0.18181818181818182 180:1.0 289:0.3333333333333333 333:1.0 358:1.0 369:1.0 948:1.0 1184:1.0 1489:0.3333333333333333 1763:1.0
15 20:1.0 500:1.0 821:1.0 976:1.0
15 4:1.0 20:1.0 32:0.2 821:1.0 1089:1.0 1540:1.0
15 32:0.2 1540:1.0
15 17:0.047619047619047616 177:0.3333333333333333 193:1.0 603:1.0 1049:1.0
15 4:1.0 5:0.14285714285714285 11:1.0 13:0.11764705882352941 17:0.047619047619047616 32:0.4 41:1.0 133:2.0 170:1.0 177:1.0 205:1.0 214:0.25 344:1.0 408:1.0 451:0.3333333333333333 500:1.0 558:1.0 739:1.0 1076:1.0 1080:1.0 1371:1.0 1560:1.0
15 43:0.1111111111111111 500:1.0 976:1.0 1076:1.0
15 13:0.058823529411764705 17:0.047619047619047616 22:0.5 32:0.2 43:0.1111111111111111 177:0.3333333333333333 242:1.0 431:1.0 1076:1.0
15 14:0.018867924528301886 15:0.5 1125:1.0
15 4:2.0 8:0.25 14:0.09433962264150944 16:0.25 17:0.14285714285714285 20:1.0 30:1.0 32:0.2 50:1.0 53:1.0 64:0.42857142857142855 70:1.0 96:0.5 119:2.0 127:1.0 177:0.3333333333333333 189:0.25 230:0.5 234:2.0 241:1.0 298:0.5 513:2.0 566:1.0 737:1.0 778:1.0 1361:1.0 1371:2.0 1444:1.0 1672:1.0
15 5:0.14285714285714285 14:0.03773584905660377 17:0.047619047619047616 24:0.5 29:0.16666666666666666 53:1.0 108:0.14285714285714285 214:0.25 245:1.0 463:1.0 1484:1.0
15 8:0.25 10:1.0 14:0.03773584905660377 17:0.047619047619047616 20:1.0 214:0.25 230:0.5 396:1.0 463:1.0 771:1.0 1484:1.0
15 4:1.0 5:0.14285714285714285 13:0.058823529411764705 14:0.05660377358490566 20:2.0 24:0.5 33:1.0 41:1.0 50:1.0 85:0.08333333333333333 87:1.0 130:1.0 146:0.3333333333333333 231:1.0 364:0.25 451:0.3333333333333333 470:1.0 748:1.0 1080:1.0 1489:0.3333333333333333 1519:1.0
15 16:0.25 22:0.5 70:0.5 364:0.25 471:1.0 1461:1.0 1561:1.0
15 5:0.14285714285714285 10:1.0 32:0.2 177:0.6666666666666666 214:0.25 369:1.0 463:1.0 469:0.5 1371:1.0 1445:1.0
15 5:0.14285714285714285 17:0.047619047619047616 20:1.0 50:1.0 53:1.0 177:0.3333333333333333 207:1.0 214:0.25 230:0.5 290:1.0 369:1.0 567:1.0 768:1.0 943:1.0
15 14:0.018867924528301886 20:1.0 41:1.0 43:0.1111111111111111 57:1.0 145:0.3333333333333333 1444:1.0
15 5:0.14285714285714285 13:0.058823529411764705 20:1.0 31:1.0 364:0.25 500:1.0 666:1.0 1310:1.0
15 4:1.0 17:0.047619047619047616 177:0.3333333333333333 214:0.25 369:1.0 513:1.0 1125:1.0
15 5:0.14285714285714285 13:0.058823529411764705 1353:1.0
15 13:0.11764705882352941 14:0.018867924528301886 17:0.09523809523809523 20:1.0 32:0.2 64:0.14285714285714285 208:1.0 288:1.0 424:1.0 538:1.0 997:1.0 1072:1.0 1155:1.0 1163:1.0 1190:1.0 1288:1.0
15 337:1.0
15 5:0.14285714285714285 20:1.0 43:0.2222222222222222 79:0.09090909090909091 213:0.5 1605:1.0 1763:1.0
15 4:1.0 17:0.047619047619047616 32:0.2 41:1.0 43:0.2222222222222222 58:0.14285714285714285 79:0.18181818181818182 85:0.08333333333333333 108:0.14285714285714285 119:2.0 193:1.0 230:0.5 292:0.5 358:1.0 537:1.0 581:1.0 741:1.0 788:0.3333333333333333 933:1.0 1155:1.0 1215:1.0
15 13:0.058823529411764705 14:0.018867924528301886 17:0.047619047619047616 42:1.0 208:1.0 234:1.0 369:1.0 1472:1.0
15 3:1.0 4:1.0 13:0.058823529411764705 85:0.08333333333333333 119:2.0 123:1.0 292:0.5 311:1.0
15 5:0.14285714285714285 14:0.018867924528301886 17:0.047619047619047616 108:0.2857142857142857 133:1.0 352:1.0
15 2:1.0 19:0.5 20:1.0 24:0.5 42:1.0 58:0.2857142857142857 64:0.14285714285714285 119:1.0 128:1.0 245:1.0 1442:1.0 1585:1.0
15 5:0.14285714285714285 133:1.0 145:0.3333333333333333 208:1.0 1158:1.0 1627:1.0
15 17:0.09523809523809523 19:0.5 20:3.0 133:1.0 146:0.3333333333333333 1144:1.0 1158:1.0 1159:1.0 1288:1.0
15 3:1.0 39:1.0 97:1.0 126:1.0 288:2.0 324:1.0 527:1.0 847:1.0 1049:1.0
15 3:1.0 5:0.2857142857142857 41:1.0 44:1.0 344:1.0 364:0.25 948:1.0 1150:1.0
|
03e644e17d57f8d4ddac0c2a8adddeafded8f0e1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH11/EX11.12/11_12.sce | 06cd452c3ef63d78c0757cc42c0e260cdf24911c | [] | 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 | 741 | sce | 11_12.sce | clear;
clc;
close;
disp("Example 11.12")
Tg=2750 //in K
Ttg=Tg
Tc=300 // coolant bulk temp. in K
tw=0.002 //Wall thickness in m
kw=43 //thermal conductivity of the wall in W/m.C
hg=657 //Gas side film coefficient in W/m^2K
hc=26000 //Coolant side film coefficient in W/m^2K
eg=0.05 //emissivity of the gas
sigma=5.67*10^(-8)//in W/m^2K
Taw=Ttg
rhf=eg*sigma*Tg^4/1000
disp(rhf,"(a)The radiation heat flux in kW/m^2 :")
qw=(Ttg-Tc+(rhf*1000/hg))/((1/hg)+(tw/kw)+(1/hc))/1000
disp(qw,"(b)The total heat flux in kW/m^2:")
qc=qw-rhf
disp(qc,"(c)The convection heat in kW/m^2:")
Twg=Taw-qc*1000/hg
disp(Twg,"(d)Wall temp. on the gas side in K:")
Twc=Tc+(qw*1000/hc)
disp(Twc,"(e)Wall temp. on the coolant side in K:")
|
0d08ad5db9d3e1a99552b0678f555e0f3e58a4b9 | 42fdf741bf64ea2e63d1546bb08356286f994505 | /test_20160304_mismatchmap/data_20160513/graph.sce | 10250b4c352a8e1eee575b2dd1d1200365236470 | [] | no_license | skim819/RASP_Workspace_sihwan | 7e3cd403dc3965b8306ec203007490e3ea911e3b | 0799e146586595577c8efa05c647b8cb92b962f4 | refs/heads/master | 2020-12-24T05:22:25.775823 | 2017-04-01T22:15:18 | 2017-04-01T22:15:18 | 41,511,563 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,574 | sce | graph.sce | Vto_mismatch_data1=csvRead('Vto_mismatch_data_CAB_10_1_row0_27_vdd_in12_before');
Vto_mismatch_data2=csvRead('Vto_mismatch_data_CAB_10_1_row0_27_vdd_in12_after');
histogram_edges = -0.05:0.0005:0.05;
scf(1);clf(1);
histo(Vto_mismatch_data1(:,3),histogram_edges);p = get("hdl"); p.children.thickness = 3; p.children.line_mode="on"; p.children.line_style = 1;p.children.foreground=1;
a=gca();a.data_bounds=[-0.04 0; 0.04 40];
xtitle("","Vth mismatch [V]","# of Vfg");
scf(2);clf(2);
histo(Vto_mismatch_data2(:,3),histogram_edges);p = get("hdl"); p.children.thickness = 3; p.children.line_mode="on"; p.children.line_style = 1;p.children.foreground=2;
a=gca();a.data_bounds=[-0.04 0; 0.04 40];
xtitle("","Vth mismatch [V]","# of Vfg");
//-------- Mismatch map with colar -----//
Vto_mismatch_data1=csvRead('Vto_mismatch_data_CAB_10_1_row0_27_vdd_in12_before');
row_addr=1:1:28;
size_row_addr=size(row_addr);
row_addr_offset=311;
Vto_mismatch_data1(:,1)=Vto_mismatch_data1(:,1)-row_addr_offset;
col_addr=1:1:14;
size_col_addr=size(col_addr);
Vto_mismatch_data1(:,2)=(Vto_mismatch_data1(:,2)-1)/16;
size_Vto_mismatch_data1=size(Vto_mismatch_data1);
clear Vto_mismatch_values; //Vto_mismatch_values=[0 0];
for i=1:size_row_addr(2)
for j=1:size_col_addr(2)
for k=1:size_Vto_mismatch_data1(1)
if (Vto_mismatch_data1(k,1) == row_addr(i)) & (Vto_mismatch_data1(k,2) == col_addr(j)) then
Vto_mismatch_values(i,j)=Vto_mismatch_data1(k,3);
end
end
end
end
//max(abs(Vto_mismatch_values))
scf(4);clf(4);
Vto_mismatch_values=max(128+Vto_mismatch_values*20*128,0);
Matplot(Vto_mismatch_values);
h = gcf();h.color_map = graycolormap(256);
Vto_mismatch_data2=csvRead('Vto_mismatch_data_CAB_10_1_row0_27_vdd_in12_after');
row_addr=1:1:28;
size_row_addr=size(row_addr);
row_addr_offset=311;
Vto_mismatch_data2(:,1)=Vto_mismatch_data2(:,1)-row_addr_offset;
col_addr=1:1:14;
size_col_addr=size(col_addr);
Vto_mismatch_data2(:,2)=(Vto_mismatch_data2(:,2)-1)/16;
size_Vto_mismatch_data2=size(Vto_mismatch_data2);
clear Vto_mismatch_values; //Vto_mismatch_values=[0 0];
for i=1:size_row_addr(2)
for j=1:size_col_addr(2)
for k=1:size_Vto_mismatch_data2(1)
if (Vto_mismatch_data2(k,1) == row_addr(i)) & (Vto_mismatch_data2(k,2) == col_addr(j)) then
Vto_mismatch_values(i,j)=Vto_mismatch_data2(k,3);
end
end
end
end
scf(5);clf(5);
Vto_mismatch_values=max(128+Vto_mismatch_values*20*128,0);
Matplot(Vto_mismatch_values);
h = gcf();h.color_map = graycolormap(256);
|
6acf7ee0fb3e4ae823934098a2b03e6932ebf521 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH6/EX6.21/6_21.sce | 56258948c0bb8ca5d186b4aa184f1285694db9a6 | [] | 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 | 652 | sce | 6_21.sce | clear;
clc;
Ymin=18*(10^-2);S=2.5;dmin=20*(10^-2);l=52*(10^-2);Zo=300;
//dmin=distance betweeen adjacent voltage minimas
ampK=round(((S-1)/(S+1))*100)/100;
ZR=fix(Zo*(1+ampK)/(1-ampK));
printf("Input impedance = %f ohms\n",ZR);
lo=2*dmin; //lo=wavelength
b=(2*%pi)/lo;
phi=(2*b*Ymin)-%pi;
theta=-fix((phi-(2*b*l)));
Zm=Zo*(round((1+(ampK*exp(%i*theta)))*100)/100)/(round((1-(ampK*exp(%i*theta)))*100)/100);
printf("Load impedance = %f + j(%f) ohms",round(real(Zm*100))/100,round(imag(Zm*100))/100);
//the difference in result is due to erroneous value in textbook.
disp("The difference in result is due to erroneous value in textbook")
|
e34d9e3f279077ee4bcc2ebe03f3e1c741b5cd71 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH12/EX12.17/12_17.sce | 1f5cc99d922be34911f3bc90f12c5e5221314a9f | [] | 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 | 267 | sce | 12_17.sce | clear;
clc;
f=5*(10^6);C=400*(10^-12);R=10*(10^3);
w=2*%pi*f;
L=2/(w*w*C);
r=1/(w*w*C*C*R);
printf("-Effective resistance of the coil = %f ohms\n",round(r*100)/100);
printf("-Inductance of effective resistance of the coil = %f mH",round(L*(10^3)*1000)/1000);
|
800abef1a719e9ae91df050270aef41d04deeccd | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH2/EX2.48/ex48.sce | 9b67239b2359add6f636f8350f94d89dc695292c | [] | 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 | 119 | sce | ex48.sce | clear
clc
A=[-1 2 -2;1 2 1;-1 -1 0]
disp("R is matrix of transformation and D is a diagonal matrix ")
[R D]=spec(A) |
a0d138b7b52bc54cf5cbae57e0327da3d5d70cb8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH4/EX4.26/Chapter4_Example26.sce | 6fdb743553400cdacdfda44f78b7bc8f57e11b68 | [] | 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,013 | sce | Chapter4_Example26.sce | clc
clear
//INPUT
a1=0*10^-4;//first horizontal displacement in cm
a2=5.6*10^-4;//second horizontal displacement in cm
a3=-4.7*10^-4;//third horzontal displacement in cm
a4=-10.8*10^-4;//fourth horizontal displacement in cm
a5=6.6*10^-4;//fifth horizontal displacement displacement in cm
a6=-9.8*10^-4;//sixth horizontal displacement in cm
a7=-11.2*10^-4;//7th horizontal displacement in cm
a8=-4.0*10^-4;//8th horizontal displacement in cm
a9=15.0*10^-4;//9thhorizontal displacement in cm
a10=19.1*10^-4;//10th horizontal displacement in cm
a11=16.0*10^-4;//11ht horizontal displacement in cm
T=293;//temperature of the particle in K
v=0.01;//viscosity in cgs
r=1.15*10^-5;//radius of the particle in cm
R=8.32*10^7;//universal gas constant in kj/kg mole
t=30;//time for observation of each in sec
//CALCULATIONS
x=(a1^2+a2^2+a3^2+a4^2+a5^2+a6^2+a7^2+a8^2+a9^2+a10^2+a11^2)/11
n=R*T*t/(x*3*3.14*v*r);//no.of molecules in the observation
//OUTPUT
mprintf('the value of n is %3f',n)
|
8a66da0c28ceba9cca7639a78b9d2592d29efbbe | 76b8c4ba0a69d3281b658f0fcf0ec56a96e27581 | /Scripts/erosionBinaire.sci | b83bfe5de265f2acea3c0740840958e4f8d957e2 | [] | no_license | RomainJunca/ExoLife | 0824fa566b38c5061f77592df6c38c3614dd8619 | 8da1524432d0ef1137d5e73e80cec339e6ec1c33 | refs/heads/master | 2020-05-25T14:08:07.353617 | 2017-03-20T08:31:32 | 2017-03-20T08:31:32 | 84,937,995 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 969 | sci | erosionBinaire.sci | //Dilatation
function image_out=erosionBinaire(image, calque, centerX, centerY)
image1 = inversionCouleurs(image);
SizeCalcX = size(calque, 1);
SizeCalcY = size(calque, 2);
calque2 = zeros(SizeCalcX, SizeCalcY);
//Application de l'effet Miroir à l'aide de boucle for
for X = 1 : SizeCalcX
for Y = 1 : SizeCalcY
if calque(X, Y) == 255 then
calque2(SizeCalcX+1-X, Y) = 255;
end,
end
end
calque3 = zeros(SizeCalcX, SizeCalcY);
for X = 1 : SizeCalcX
for Y = 1 : SizeCalcY
if calque2(X, Y) == 255 then
calque3(X, SizeCalcY+1-Y) = 255;
end,
end
end
disp(calque3, calque);
//On applique la dilatation et l'inversion des couleurs binaires
image2 = dilatationBinaire(image1, calque3, centerX, centerY);
image_out = inversionCouleurs(image2);
endfunction
|
eead1c91bb5b9e0cb7ccb95858ed2ceb546ba742 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH4/EX4.7/4_7.sce | 6956c8edee833c67d9f8229fb475aeb34dda2ef5 | [] | 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 | 514 | sce | 4_7.sce | clear//
//Variables
R2 = 100 //Resistance R2 (in ohm)
I = 0.3 //Current (in Ampere)
VT = 120 //Voltage (in volts)
//Calculation
RT = VT / I //Total Resistance (in ohm)
R1 = RT - R2 //Resistance R1 (in ohm)
P1 = I**2 * R1 //Power dissipated by R1 (in watt)
P2 = I**2 * R2 //Power dissipated by R2 (in watt)
//Result
printf("\n The power dissipated by R1 is %0.3f W.\nThe power dissipated by R2 is %0.3f W.",P1,P2)
|
fbf0c77f27fa33d05c1ed37b89b16258cb72a71a | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/percent/%lsslr.sci | a0f54a49b99a0d6bf5f7f72999a5da1c6aaef9f3 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 66 | sci | %lsslr.sci | //<s>=%lsslr(s1,s2)
//
//!
[s1,s2]=sysconv(s1,s2)
s=s1\s2
//end
|
00a3e14ace8229b70e090aa184bc86e00433400d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2330/CH4/EX4.6/ex4_6.sce | 5162227f2388ff6b5e1cb630029acbe45c9398c4 | [] | 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 | 413 | sce | ex4_6.sce | // Example 4.6
format('v',5)
clc;
clear;
close;
// given data
Vdc= 56.6;// in V
R_L= 100;// in Ω
f=120;// in Hz
C= 1000;// in µF
C= C*10^-6;// in F
V2peak= Vdc;// in V
Idc= Vdc/R_L;// in A
// The peak-to-peak ripple
Vrip= Idc/(f*C);// in V
// The dc load voltage
Vdc= V2peak-Vrip/2;// in V
disp(Vrip,"The peak-to-peak ripple in volts is : ");
disp(Vdc,"The dc load voltage in volts is : ")
|
06dedd5e566d5972a0db30356f0db6ee6a7bd905 | a044468ecc65367fef49fcb9aa60f126406da134 | /Planetory.sce | 95fff13b381dac554328263c18d71498f437957b | [] | no_license | Altreon/Planetory | 0680b9570e3d48bb64342ca3671ed569d062b32b | 034a39415bd12b65ac018eff4df65396cfd4fdd7 | refs/heads/master | 2020-04-17T15:16:06.832782 | 2019-01-22T13:57:16 | 2019-01-22T13:57:16 | 166,691,949 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,569 | sce | Planetory.sce | clear()
// Le but de ce script est de simuler le sysTtème solaire (et dans un premier
// temps, la rotation de la terre autour du soleil). La structure initiale
// est la même que le projet précédent avec le billard.
//Définition des variables utilisé dans tout le programme
G = 6.67408e-11 // La constante de gravitTation universelle (en S.I.)
NB_CORPS = 9
global cMass
global cRadius
global cVit
global cPos
cMass = zeros(NB_CORPS, 1)
cRadius = zeros(NB_CORPS, 1)
cVit = zeros(NB_CORPS, 3)
cPos = zeros(NB_CORPS, 3)
//Couleur des planètes
cColor = ["yellow","magenta","yellow","blue","red","green","yellow","green","cyan"]
function loadPlanets()
//Charge les données des astres
global cMass
global cRadius
global cVit
global cPos
global xsTs
global ysTs
global zsTs
//Bien que le code de cette fonction soit très redondant, elle permet une lecture
//clair des information, et de les modifier au besoin
i=1
//SOLEIL
cMass(i) = 1.989e30
cRadius(i) = 695000e3
cVit(i, 1) = 0
cVit(i, 2) = 0
cVit(i, 3) = 0
cPos(i, 1) = 0
cPos(i, 2) = 0
cPos(i, 3) = 0
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=2
//Mercure
cMass(i) = 3.301e23
cRadius(i) = 2440e3
cVit(i, 1) = 0
cVit(i, 2) = 47870
cVit(i, 3) = 0
cPos(i, 1) = 5795e7*cosd(7.005)
cPos(i, 2) = 0
cPos(i, 3) = 5795e7*sind(7.005)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=3
//Venus
cMass(i) = 4.867e24
cRadius(i) = 6052e3
cVit(i, 1) = -35020
cVit(i, 2) = 0
cVit(i, 3) = 0
cPos(i, 1) = 0
cPos(i, 2) = 10811e7*cosd(3.39)
cPos(i, 3) = -10811e7*sind(3.39)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=4
//TERRE
cMass(i) = 5.972e24
cRadius(i) = 6378e3
cVit(i, 1) = 0
cVit(i, 2) = -29790
cVit(i, 3) = 0
cPos(i, 1) = -149e9
cPos(i, 2) = 0
cPos(i, 3) = 0
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=5
//Mars
cMass(i) = 6.417e23
cRadius(i) = 3397e3
cVit(i, 1) = 24077
cVit(i, 2) = 0
cVit(i, 3) = 0
cPos(i, 1) = 0
cPos(i, 2) = -22784e7*cosd(1.8506)
cPos(i, 3) = 22784e7*sind(1.8506)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=6
//Jupiter
cMass(i) = 1.899e27
cRadius(i) = 71492e3
cVit(i, 1) = 0
cVit(i, 2) = 13070
cVit(i, 3) = 0
cPos(i, 1) = 77814e7*cosd(1.304)
cPos(i, 2) = 0
cPos(i, 3) = -77814e7*sind(1.304)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=7
//Saturne
cMass(i) = 5.685e26
cRadius(i) = 60268e3
cVit(i, 1) = -9690
cVit(i, 2) = 0
cVit(i, 3) = 0
cPos(i, 1) = 0
cPos(i, 2) = 1427e9*cosd(2.4845)
cPos(i, 3) = 1427e9*sind(2.4845)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=8
//Uranus
cMass(i) = 8.682e25
cRadius(i) = 25559e3
cVit(i, 1) = 0
cVit(i, 2) = -6810
cVit(i, 3) = 0
cPos(i, 1) = -28703e8*cosd(0.7725)
cPos(i, 2) = 0
cPos(i, 3) = -28703e8*sind(0.7725)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
i=9
//Neptune
cMass(i) = 1.024e26
cRadius(i) = 24766e3
cVit(i, 1) = 5430
cVit(i, 2) = 0
cVit(i, 3) = 0
cPos(i, 1) = 0
cPos(i, 2) = -44999e8*cosd(1.7692)
cPos(i, 3) = 44999e8*sind(1.7692)
xsTs(i, 1) = cPos(i, 1)
ysTs(i, 1) = cPos(i, 2)
zsTs(i, 1) = cPos(i, 3)
endfunction
function calculeTrajectoire()
global cVit
global cPos
global xsTs
global ysTs
global zsTs
tic()
progression = 0
i = 1
planetDestroy = %f
while ~planetDestroy & i <= NB_PAS
for k=1:NB_CORPS
//récupération des variables à utiliser
posT = cPos(k,:)
vitT = cVit(k,:)
posT = posT + dt * vitT
AT = 0
for y=1:NB_CORPS
if y <> k
//récupération des variables à utiliser
posS = cPos(y,:)
MS = cMass(y)
TS = posS-posT
nTS = norm(TS)
if nTS < cRadius(k) + cRadius(y)
planetDestroy = %t
disp("Deux planètes sont entrés en collision!")
disp("Arrêt du calcul et afichage des trajectoires jusqu''au moment de la collision")
end
AT = AT + (((G*MS)/nTS^3)*TS)
end
end
vitT = vitT + dt * AT
// On mémorise les coordonnées
xsTs(k, i) = posT(1)
ysTs(k, i) = posT(2)
zsTs(k, i) = posT(3)
//On enregistre dans les tableaux
cVit(k,:) = vitT
cPos(k,:) = posT
end
if toc() >= 1
//Affichage du pourcentage de progression des calculs
disp(string(round(100 * (i/NB_PAS))) + "%")
tic()
end
i = i + 1
end
endfunction
function afficheAstre3D(n)
comet3d(xsTs(n,:), ysTs(n,:), zsTs(n,:), "colors", color(cColor(n)))
endfunction
function afficheAstre2D(n)
comet(xsTs(n,:), ysTs(n,:), "colors", color(cColor(n)))
endfunction
function afficheTrajectoire()
clf()
if repres == 2
for i=1:NB_CORPS
afficheAstre2D(i)
end
else
for i=1:NB_CORPS
afficheAstre3D(i)
end
end
endfunction
function afficheTitre()
printf("#########################################################################################\n")
printf("## _______ _ _______ _ _______ _________ _______ _______ ##\n")
printf("## ( ____ )( \\ ( ___ )( ( /|( ____ \\\\__ __/( ___ )( ____ )|\\ /| ##\n")
printf("## | ( )|| ( | ( ) || \\ ( || ( \\/ ) ( | ( ) || ( )|( \\ / ) ##\n")
printf("## | (____)|| | | (___) || \\ | || (__ | | | | | || (____)| \\ (_) / ##\n")
printf("## | _____)| | | ___ || (\\ \\) || __) | | | | | || __) \\ / ##\n")
printf("## | ( | | | ( ) || | \\ || ( | | | | | || (\\ ( ) ( ##\n")
printf("## | ) | (____/\\| ) ( || ) \\ || (____/\\ | | | (___) || ) \\ \\__ | | ##\n")
printf("## |/ (_______/|/ \\||/ )_)(_______/ )_( (_______)|/ \\__/ \\_/ ##\n")
printf("#########################################################################################\n")
endfunction
function affichePresentation()
disp("Bienvenue dans une simulation du sytème solaire en scilab.")
disp("Ce programme vous permet de visualiser les mouvements des 8 planetes du système solaire")
disp("Sur un intervalle de temps donné.")
disp("ATTENTION! Il s''agit d''une pseudo représentation du système solaire, cela signifie")
disp("que les positions initiales des astres ne sont pas tout à fait réels.")
disp("Bien que les distances astre-soleil, vitesses orbitals et inclinaisons des orbites soit respectées,")
disp("les positions de départ des planetes sur leur orbites ont été choisie arbitrairement, et ne")
disp("représente pas l''état réel du système solaire à un temps donné")
disp("De plus, en raison des approximation de calcul et du manque de complexité du programme, les trajectoires")
disp("peuvent êtres altérées.")
endfunction
function bool=est_entier(var)
//Prend une variable en argument et indique s'il s'agit d'un nombre entier
if type(var) == 1 & var == round(var)
bool = %t;
else
bool = %f;
end
//Ici j'utilise la fonction type qui me permet de déterminer s'il s'agit bien d'un nombre,
//et la fonction round qui permet d'obtenir l'entier arrondi d'un nombre.
//Si la valeur retournée par round est différent de l'argument d'entrée, il ne peut pas s'agir d'un entier.
endfunction
function rep = choixRepresentation()
disp("ce programme est capable de vous afficher une répresentation du système solaire en 2D ou en 3D.")
rep = 0
while ~est_entier(rep) | rep < 2 | rep > 3
rep = input("Choissier votre modèle (2 = 2D / 3 = 3D) : ")
end
endfunction
function rep = confirmationDuree()
conf = 0
while ~est_entier(conf) | conf < 1 | conf > 2
conf = input("Confirmer vous cette durée? (1 = Oui / 2 = Non) : ")
end
rep = %f
if conf == 1 then
rep = %t
end
endfunction
function rep = choixDuree()
dureeWarning = 100
disp("Veulliez choisir la durée de la simulation en années ")
rep = 0
while ~est_entier(rep) | rep <= 0
rep = input("Entrer le nombre d''années : ")
if est_entier(rep) & rep > dureeWarning
disp("ATTENTION, vous vous aprétez à faire tourner la simulation au-delà de " + string(dureeWarning) + " ans.")
disp("Cela risque de prendre pas mal de temps pour calculer les trajectoires.")
if ~confirmationDuree()
rep = 0
end
end
end
endfunction
function fixeVue()
if repres == 2
a = get("current_axes")
a.data_bounds = [-6e12 6e12 -6e12 6e12] // x_min x_max y_min y_max
a.isoview = "on"
else
a = get("current_axes")
a.data_bounds = [-6e12 6e12 -6e12 6e12 -6e12 6e12] // x_min x_max y_min y_max z_min z_max
a.isoview = "on"
end
endfunction
//////////////////////
//DEBUT DU PROGRAMME//
//////////////////////
afficheTitre()
affichePresentation()
repres = choixRepresentation()
duree = choixDuree()
disp("Calcul en cours...")
// "NB_PAS" est le nombre de pas qui vont être réalisés.
NB_PAS = 365.25*duree
dt = 3600*24
//Création des tableau
global xsTs
global ysTs
global zsTs
xsTs = zeros(NB_CORPS, NB_PAS)
ysTs = zeros(NB_CORPS, NB_PAS)
zsTs = zeros(NB_CORPS, NB_PAS)
loadPlanets()
calculeTrajectoire()
afficheTrajectoire()
fixeVue()
disp("Fin de la simulation")
//////////////////////
//FIN DU PROGRAMME//
//////////////////////
|
5302625924f2f1533961e2f4a6cc20bef5f44f65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH7/EX7.4/Ex7_4.sce | cf0c5872d34b2523789aba27247015a60dfa08fe | [] | 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 | 229 | sce | Ex7_4.sce | //Caption:Calculate the value of reflected power
//Exa:7.4
clc;
clear;
close;
//Given:
P_i=4.5;//in mW
S=2;//VSWR
C=30;//in dB
p=(S-1)/(S+1);
P_f=P_i/(10^(C/10));
P_r=p^2*P_i;
disp(P_r,'Reflected power (in watts) ='); |
79603d30589399c3c3fce4f33a2a09a52b1b8920 | 449d555969bfd7befe906877abab098c6e63a0e8 | /683/CH19/EX19.1/F_1.sce | e68dbad7aa8e5a3387766ae6251e4321da6a36c0 | [] | 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 | 845 | sce | F_1.sce | // sum 19-1
clc;
clear;
R=1200;
b=300;
t=150;
N=500;
m=7100*10^-9*b*t;
Ar=b*t;
Aa=Ar/4;
C=(20280/t^2)+0.957+(Ar/Aa);
w=2*%pi*N/60;
V=w*R*10^-3;
siga=2*10^3*m*V^2/(C*Aa*3);
theta=30*%pi/180;
alpha=30*%pi/180;
x1=10^3*m*(V^2)/(b*t);
y1=cos(theta)/(3*C*sin(alpha));
z1=2000*R*10^-3/(C*t)*((1/alpha)-(cos(theta)/sin(alpha)));
sigrr1=x1*(1-y1+z1);
theta=0*%pi/180;
x2=10^3*m*(V^2)/(b*t);
y2=cos(theta)/(3*C*sin(alpha));
z2=2000*R*10^-3/(C*t)*((1/alpha)-(cos(theta)/sin(alpha)));
sigrr2=x2*(1-y2-z2);
// printing data in scilab o/p window
printf("axial stress is %0.2f MPa ",siga);
printf("\n tensile stress for theta=30deg is %0.1f MPa ",sigrr1);
printf("\n tensile stress for theta=0deg is %0.2f MPa ",sigrr2);
//The difference in the value of sigrr1 and sigrr2 is due to rounding-off of values. |
d6352569f8bd344d2e73695d74468932b53b5928 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Electrical_And_Electronic_Engineering_U._A._Bakshi_And_V._U._Bakshi_1370.zip/Electrical_And_Electronic_Engineering_U._A._Bakshi_And_V._U._Bakshi_1370/CH1/EX1.18/chapter1_18.sce | 19a1942e93b2ef96d05a2623f5097af6e3e43f3f | [] | 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 | 260 | sce | chapter1_18.sce | errcatch(-1,"stop");mode(2);//example1.18
disp("Rearrange the circuit as shown below.")
disp("The 3.333ohm and 3.6ohm resistors are in series in fig 1.87(c).")
r=3.333+3.6
format(8)
disp(r,"Therefore, the equivalent resistance R_yz(in ohm)=")
exit();
|
9b5668a741d296eb1467da1393a10835102c88a8 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1/macros/calpol/r2l.sci | c0e0eaf0ffcd3648a721fe37e10ec6c4b2cc3ad2 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 2,095 | sci | r2l.sci | function [Es] = r2l(Fs)
//Kwakernaak's r2l : a left kernel to Fs
[F,degF]=pol2mat(Fs);
[rF,cF] = size(Fs);
if cF > rF then
error('r2l: Input has more columns than rows');
end
[roF,coF] = size(F);
to = 1e-6; // tolerance
// INITIALIZE
rs = coF;
SS = [];
rowsS = 0;
normF = norm(F,'inf');
j = 0; // row number of S
jj = 0; // row number within block
k = 0; // block number
// COMPUTATION OF E
E = [];
rows = (degF*cF+1)*rF; // upper bound number of rows of S
rowsE = 0;
rE = rF-cF; cE = rF;
sel = 1:rows;
i = 2;
while rowsE < rE
// ADD ROWS TO S
while j < sel(1,i)
j = j+1; jj = jj+1;
if jj > rF then
jj = jj-rF; k = k+1;
rs = rs + cF;
SS = [SS 0*ones(rowsS,cF)];
end
s = 0*ones(1,rs);
s(1,k*cF+1:k*cF+coF) = F(jj,:);
SS = [SS; s];
rowsS = rowsS+1;
end
// FIND THE NEXT PRIMARY DEPENDENT ROW OF S
b = SS(sel(1,i),:); BB = SS(sel(1,1:i-1),:);
c = b/BB;
err = b-c*BB;
if norm(err,2) <= to*normF then
// FORM THE NEW MATRIX E
c = [-c 1]; c = c/norm(c,2); // normalize c
[rc,cc] = size(c);
C1 = 0*ones(1:cc);
C1(1,sel(1:i)) = c;
[rrE,ccE] = size(E); [rC,cC] = size(C1);
czeros = cC-ccE;
E = [E 0*ones(rrE,czeros); C1];
rowsE = rowsE+1;
// DELETE THE DEPENDENT ROWS OF S
ii = i; idel = sel(1,i);
while ii <= rows
if sel(1,ii) = idel then
sel = [sel(1,1:ii-1) sel(1,ii+1:rows)];
rows = rows-1;
idel = idel+rF;
end
ii = ii+1;
end
i = i-1;
end
i = i+1;
end
// SUPPLEMENT E WITH ZERO COLUMNS
sizeE = size(E)
degE = round(sizeE(1,2)/cE-1)
supE = (degE+1)*cE-sizeE(1,2);
E = [E 0*ones(rE,supE)];
Es=clean(mat2pol(E,degE));
function [As]=mat2pol(A,degA)
[na,ma]=size(a);long=ma/(degA+1);
nb=degA+1;debut=1;fin=long;As=0*ones(na,fin);
s=poly(0,'s');
for k=1:nb ,As=As+s^(k-1)*A(:,debut:fin),debut=fin+1,fin=fin+long,end
function [F,degF]=pol2mat(Fs)
degf=maxi(degree(Fs));
F=coeff(Fs);
|
3d26087950ed70e7a66ba2aaefdf35dd6900d1dc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH14/EX14.20/example14_20.sce | 040ad535e96b63678d2584f46f216a9ee72c4497 | [] | 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 | 696 | sce | example14_20.sce | clc
// Given that
k = 4 // maximum kinetic energy of electron in eV
w = 2.2 // work function of sodium in eV
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
e = 1.6e-19 // charge on an electron in C
// Sample Problem 20 on page no. 14.27
printf("\n # PROBLEM 20 # \n")
printf("Standard formula used \n ")
printf(" E = (h * c) * (1 / lambda1 - 1 / lambda2) \n E = (h * c)/ lambda \n")
lambda_ = ((h * c) / (w * e))
lambda = (1 / ((((k * e) / (h * c))) + (1 / lambda_)))
printf("\n Threshold wavelength is %d Angstrom.\n Incident electromagnetic wavelength is %f Angstrom",lambda_ * 1e10,lambda * 1e10)
|
3e4100fda8b5d6a59df5aa41a8d975a8d61268d2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2144/CH3/EX3.2/ex3_2.sce | e1d02d78e37a8576bd25d76742d12c418ad2a34a | [] | 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 | 867 | sce | ex3_2.sce | // Exa 3.2
clc;
clear;
close;
// Given data
P = 350;// in kN/m^2
P = P * 10^3;// in N/m^2
m = 1;// in kg
m = m * 10^3;// in gram
V = 0.35;// in m^3
C_p = 1.005;// in kJ/kg-K
C_v = 0.710;// in kJ/kg-K
R = C_p - C_v;// in kJ/kg-K
T = (P*V)/(m*R);// in K
T = T - 273;// in degree C
disp(T,"The intial temperature in degree C is");
T = T + 273;// in K
T1 = 316;// in degree C
T1 = T1 + 273;// in K
P2 = P * (T1/T);// in N/m^2
P2 = P2 * 10^-3;// in kN/m^2
disp(P2,"The final pressure of air in kN/m^2 is");
T = T - 273;// in degree C
T1 = T1 - 273;// in degree C
m = m * 10^-3;// in kg
Q = m * C_v * (T1-T);// in kJ
disp(Q,"Heat added in kJ is");
G = m*C_v * (T1-T);// Gain of internal energy in kJ
disp(G,"Gain of internal energy in kJ is");
G_enthalpy = m*C_p*(T1-T);// Gain of enthalpy in kJ
disp(G_enthalpy,"Gain of enthalpy in kJ is");
|
4c6be5ca79e4bfe30201ce40d00fe86840b8ffc1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3869/CH2/EX2.22/Ex2_22.sce | b8f4fbf77f9ad555d06cc3ad3377099ca270be78 | [] | 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 | 317 | sce | Ex2_22.sce | clear
//
//
//
//Variable declaration
x=4.2*10**-3 //distance(m)
D=60*10**-2 //screen slit distance(m)
lamda=6000*10**-10 //wavelength(m)
//Calculation
d=D*lamda/x //slit width(m)
//Result
printf("\n slit width is %0.3f *10**-4 m",d*10**4)
|
c3dd70b1f35bf569beb1df66dfaa1ca783f7df87 | 717ddeb7e700373742c617a95e25a2376565112c | /1445/CH8/EX8.18/Ex8_18.sce | 10b37b947dca4cb07716dda29a7dd6945e1f416a | [] | 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 | 948 | sce | Ex8_18.sce | //CHAPTER 8- DIRECT CURRENT MACHINES
//Example 18
disp("CHAPTER 8");
disp("EXAMPLE 18");
//460 V 10 HP motor
//VARIABLE INITIALIZATION
v_t=460; //in Volts
p_o=10*736; //in Watts (1 metric H.P=735.5 W)
ratio=85/100; //as given in the question
eff=84/100; // efficiency
I_f=1.1; //in Amperes
r_a=0.2; //in Ohms
//SOLUTION
p_i=p_o/eff; //power input
I_l=p_i/v_t; //line current
I_a=I_l-I_f; // armature current
E1=v_t-(I_a*r_a); //back emf
E2=E1*ratio; //E2:E1=N2:N1=ratio
v=v_t-E2; //voltage drop across r_a and r_s (r_s is the series resistance to be inserted)
r_s=(v/I_a)-r_a; // series resistance
disp(sprintf("The resistance required is %.2f Ω",r_s));
//The answer is different because ratio equals 85/100 and not 75/100
//END
|
ccc825e00815dc05b01ed981ffd967920394408e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH4/EX4.10/Example4_10.sce | 7565c4c71db20acd40b82ef6020e2fde904d80e3 | [] | 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 | 550 | sce | Example4_10.sce | //Example 4.10
clc
fs=(1/(2*%pi*sqrt(0.4*0.085*10^-12)))*10^-6 // in MHz
format(6)
disp(fs,"(i) f_s(in MHz) = 1 / 2*pi*sqrt(L*C) =")
ceq=0.085/1.085 // in pF
disp(ceq,"(ii) C_eq(in pF) = C*C_M / C+C_M =")
fp=(1/(2*%pi*sqrt(0.4*0.078*10^-12)))*10^-6 // in MHz (the answer in textbook is wrong)
disp(fp,"Therefore, f_p(in MHz) = 1 / 2*pi*sqrt(L*C_eq) =")
inc=((0.899-0.856)/0.856)*100 // in percentage
disp(inc,"(iii) %increase =")
q=(2*%pi*0.4*0.856*10^6)/(5*10^3)
format(8)
disp(q,"(iv) Q = omega_s*L / R = 2*pi*f_s*L / R =")
|
e3d408a8e9a8df69f9b4c1dbb44b2be32efb403e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH4/EX4.20/Ex4_20.sce | 5d462a526dcc2913162eb8710e64723dd8adce0f | [] | 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 | 406 | sce | Ex4_20.sce | clc;
clear;
R=100 //radius of curvature in cm
D_5=0.3 //diameter of the 5th dark ring in cm
D_25=0.8 //diameter of the 25th dark ring in cm
n5=5 //fifth dark ring
n25=25 //twenty fifth ring
//calculation
p = n25 - n5 //difference in no of fringes
lambda=((D_25^2)-(D_5^2))/(4*p*R)
mprintf("The wavelength of light used is = %1.2e cm",lambda)
//The answer provided in the textbook is wrong.
|
93e49568f7045b0ad7259743758db94f7e374242 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH7/EX7.20.a/data7_20.sci | 104c281667974ca92953e5f09ceb71b96ac557fa | [] | 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 | 949 | sci | data7_20.sci |
//(Threaded Joints) Example 7.20
//Number of bolts N
N = 2
//Engine speed n (rpm)
n = 2000
//Length of stroke l (mm)
l = 100
//Length of connecting rod c (mm)
c = 200
//Mass of reciprocating parts m (kg)
m = 5
//Overload percentage load (%)
load = 50
//Assume the stiffness of the bolts to be 1N/mm kb
kb = 1
//Calculate the stiffness of the parts kc
kc = 4 * kb
//Yield tensile strength of chromium-molybdenum steel Syt (N/mm2)
Syt = 450
//Ultimate tensile strength of chromium-molybdenum steel Sut (N/mm2)
Sut = 600
//Fatigue stress concentration factor Kf
Kf = 3.0
//Expected reliability (%)
reliability = 90
//Factor of safety fs
fs = 2
//Assume diameter of the bolt to be less than 7.5mm for Kb to be 1
d = 1
//As Ka is incorporated into Kf, assume the assembly to be ground
//This is just to obtain a random value of Ka
op = 1
//Inclination of connecting rod to the line of stroke theta (degree)
theta = 0
|
24d5021347f457868e5e2a886b73001229acb04d | 6227c5ef4e1c5d72cdebd6eac81f82161dda7e17 | /digi_dc_dc/Scilab/AnalogRegulators/typeII.sci | 164f3c877fb5a629490488497261205e184e62d0 | [] | no_license | maxsimmonds1337/Scilab | b4e8a03a9fbeda4d8f6e51e07d205bcf51addce8 | b413659e2b697565c24ad440d158f5bd28203570 | refs/heads/master | 2022-11-04T23:17:50.045864 | 2020-06-13T20:35:24 | 2020-06-13T20:35:24 | 272,081,285 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,190 | sci | typeII.sci | function [regulator,fz1,fp1,fp0]= typeII(plant,fc,pm)
//Function to calculate the Type II (Integrator, zero, pole) that can provide the phase margin (pm) at the desired crossover frequecncy(fc))
//Definition of the Laplace variable
s=poly(0,'s');
//Get the plant mag and phase response at fc
[frqc,response]=repfreq(plant,fc)
[magDb,phiplant]=dbphi(response)
magfc=abs(response)
//Calculate the phase boost
phaseboost=pm-phiplant-90;
if(phaseboost>90)
disp('Phase boost not enough go to Type III')
break;
end
/*
//Move phase boost to radians
phaseboost=phaseboost*%pi/180
//position of the pole
fp1=(tan(phaseboost) + sqrt(((tan(phaseboost))^2+1)))*fc
//position of the zero
fz1=fc^2/fp1
//calculate the gain (position of the cross over frequency for the integrator)
fp0=1/magfc*fz1
//Transfer function regulator
num=(1+s/(2*%pi*fz1))
den=s/(2*%pi*fp0)*(1+s/(2*%pi*fp1))
regulator=syslin('c',num,den)
if(fp1<fz1)
disp('No phase boost needed');
end
*/
[regulator,fz1,fp1,fp0]= calctypeII(magfc,fc,phaseboost)
endfunction
|
275ea4dfc0ef80b4f007a1b221fdaff1d065c8d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH10/EX10.14/Ex10_14.sce | d3a431797f035d26e7686edfca9eed704d6eb13a | [] | 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 | 472 | sce | Ex10_14.sce | // Example 10_14
clc;funcprot(0);
// Given data
T_L=20+273.15;// K
T_0=T_L;// K
T_H=35.0+273.15;// K
COP_act=8.92;// Actual Coefficient of Performance
// Calculation
COP_Carnot=T_L/(T_H-T_L);// The coefficient of performance of a Carnot refrigerator or air conditioner
epsilon_RAC=(COP_act/COP_Carnot)*100;// The second law efficiency in %
printf("\nThe second law availability efficiency of this air conditioner,epsilon_R/AC=%2.1f percentage",epsilon_RAC);
|
81ef727ffd12085e6902e8cd615f6350e9e2316a | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/cummin/cummin15.sce | 995f6bef4dd52d773cc33519726f10296d2782e6 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 283 | sce | cummin15.sce | A = cat(3,[1 2; 3 4],[9 10; 11 12],[5 6; 7 8]);
M = cummin(A,3,'reverse');
//output
//-->M(:,:,1)
// ans =
//
// 1. 2.
// 3. 4.
//
//-->M(:,:,2)
// ans =
//
// 5. 6.
// 7. 8.
//
//-->M(:,:,3)
// ans =
//
// 5. 6.
// 7. 8.
//
|
67637c721b79787f59d0f78b37d0e42fbe1161bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH2/EX2.31/Ex2_31.sce | 6ebcda8feebc1443888004b44754f3f1a6818585 | [] | 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 | 187 | sce | Ex2_31.sce | //Ex:2.31
clc;
clear;
close;
L1=60;//in mH
L2=60;//in mH
L_a=L1+L2;
L3=120;//in mH
L_b=L_a*L3/(L_a+L3);
L4=50;//in mH
L_eq=L4+L_b;
printf("Equivalent Inductance = %d mH",L_eq); |
069db3b258a29d5ded8d897b53f8ea170a633594 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1100/CH6/EX6.1/6_1.sce | bb99d1a93bd31c7bc340790378a3358677dec16f | [] | 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 | 544 | sce | 6_1.sce | clc
//initialisation of variables
u1= 1111.9 //Btu/lb
p= 170 //psia
v1= 2.675 //cu ft/lb
V1= 6000 //ft/min
g0= 32.2 //ft/sec^2
g= 32.2 //ft/sec^2
z= 10 //ft
Q= 1000//Btu/hr
u2= 914.6 //Btu/lb
p1= 3 //psia
v2= 100.9 //cu ft/lb
V2= 300 //ft/sec
g0= 32.2 //ft/sec^2
g= 32.2 //ft/sec^2
z1= 0 //ft
//CALCULATIONS
Wx= (u1+(p*v1*144/778)+((V1/60)^2/(2*g*778))+(z/778)-(Q/2500)-u2-(p1*v2*144/778)-((V2^2)/(2*g*778)))*2500
//RESULTS
printf ('Poweroutput = %.f hp',Wx*0.000393014779)
//It is the conversion factor from btu/hr to hp
|
4ab48d6512be9ee20694740a8604d40d61c4e7f6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1964/CH5/EX5.2/ex5_2.sce | 07c33c6af383fb4a9ca5460ded1abaf3332c77a5 | [] | 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,195 | sce | ex5_2.sce | //Chapter-5, Example 5.2, Page 157
//=============================================================================
clc
clear
function [polar] = r2p(x,y)//function to convert rectangular to polar
polar = ones(1,2)
polar(1) = sqrt ((x ^2) +(y^2))
polar(2) = atan (y/x)
polar(2) =(polar (2)*180)/%pi
endfunction
function [ rect ] = p2r(r,theta)//function to convert polar to rectangular
rect = ones(1,2)
theta =( theta *%pi) /180
rect (1)=r* cos(theta)
rect (2)=r* sin(theta)
endfunction
//CALCULATIONS
//for subdivision 1
I1=p2r(10,60);
I2=p2r(8,-45);
I3=I1+I2;
disp(I3);
I4=r2p(I3(1),I3(2));
disp(I4)
//for subdivision 2
I5=r2p(5,4);
I6=r2p(-4,-6);
I7(1)=(I5(1))*(I6(1));
I7(2)=(I5(2)+I6(2));
I7(2)=I7(2)-180;
disp(I7);
//for subdivision 3
I8=r2p(-2,-5);
I9=r2p(5,7);
I10(1)=I8(1)/I9(1);
I10(2)=I8(2)-I9(2);
I10(2)=I10(2)-180
disp(I10);
//note:here direct functions for converson are not available and hence we defined user defined functions for polar to rect and rect to polar conversions
//=================================END OF PROGRAM======================================================================================================
|
eed2efad8767e6636dbfa3b5f69c3c3d02aa414e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH4/EX4.22/Ex_4_22.sce | 1b96d1092c60a64583c6c47c156528f55b595fae | [] | 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 | 572 | sce | Ex_4_22.sce | // Example 4.22;//TOTAL RMS Pulse broadning
clc;
clear;
close;
M=30;//dispersion parametr picosecond per nano meter per kilometer
Sa=25;//spectral width in nm
NA=0.4;//nUMERICAL aPERTURE
n1=1.48;// Core refractibve index
n2=1.47;//cleadding refrative index
C=2.998*10^8;//Speed of light in m/s
d=n1-n2;
L=1;//length in Km
Sm=M*L*Sa;//rms pulse broadning due to material dispersion
Sg=(L*10^3*n1*d^2)/(20*sqrt(3)*C)*10^12;//Pulse broadning due to intermodal dispersion in Ps/Km
St=sqrt(Sm^2+Sg^2);// Total broadning
disp(St,"Total broadning Ps per Km is")
|
036ea7456e13eed1560da57bf1752895d1dd863b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3363/CH4/EX4.2/Ex4_2.sce | d36c68c631fa938d677207aa34ebb1d750d155bf | [] | 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 | 154 | sce | Ex4_2.sce | //Example 4.2, page 107
clc
disp('Part a')
N=10^4//in rad, Number of atoms tarversed
theta=(2*10^-2)/sqrt(N)
printf("\n Average deflection %e rad ",theta) |
d4faad6036d8f8d4294ce2b33858992b6086dc7f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH22/EX22.13/22_13.sce | 0e987a09ff880f2cd9f287bd8b5a6228ba459e93 | [] | 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 | 733 | sce | 22_13.sce | clear//
//Variables
VCC = 10.0 //Source voltage (in volts)
RC = 2.0 * 10**3 //Collector resistance (in ohm)
RB = 100.0 * 10**3 //Base Resistance (in ohm)
beta = 50.0 //Common-Emitter current gain
VBE = 0.7 //Emitter-to-Base Voltage (in volts)
//Calculation
IB = (VCC - VBE)/(RB + beta * RC) //Base current (in Ampere)
IC = beta * IB //Collector current (in Ampere)
IE = IC //Emitter current (in Ampere)
S = 1 + beta //Stability factor
//Result
printf("\n IB is %0.3f mA.\nIC is %0.3f mA.\nIE is %0.3f mA.",IB*10**3,IC*10**3,IE*10**3)
|
d5b72b61cfa49406cc6e4b0bb456f118445e927a | 717ddeb7e700373742c617a95e25a2376565112c | /479/CH3/EX3.4/Example_3_4.sce | 497c963a7a4c32d21c87642fef379e87ab99482e | [] | 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 | 746 | sce | Example_3_4.sce | //Chemical Engineering Thermodynamics
//Chapter 3
//First Law of Thermodynamics
//Example 3.4
clear;
clc;
//Given
W = 0;//work done during the process
P1 = 1;//Initial pressure in atm
P2 = 10;//Final pressure in atm
V2 = V1;//Initial & final volume are equal
Cv = 0.23//specific heat at constant volume in Kcal/Kg deg K
//(delQ/delT)=Q
Q = 1.3;//Rate of heat addition in Kcal/min
m = 2.5//Weight of an ideal gas in Kg
T1 = 298//Initial temperature in Kelvin
//To calculate the time taken for the gas to attain 10 atm
//Q = m*Cv*(delT/delt)=1.3
T2 = (P2*T1)/(P1);//Final temperature in Kelvin
t = ((m*Cv)/1.3)*(T2-T1);//time taken in minutes
mprintf('The time taken to attain a pressure of 10 atm is %f hrs',t/60);
//end |
e0131cb68cc697dd49fe1d00d5fe84b87b0fcfd0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH5/EX5.47/47.sce | 5baf3735a51c7902084a2f75d78f8f83987b981f | [] | 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 | 47.sce | clc
m1=3; //kg
m2=4; //kg
T0=273; //K
T1=80+273; //K
T2=15+273; //K
c_pw=4.187; //kJ/kgK
tm=(m1*T1 + m2*T2)/(m1+m2);
Si=m1*c_pw*log(T1/T0) + m2*c_pw*log(T2/T0);
Sf=(m1+m2)*c_pw*log(tm/T0);
dS=Sf-Si;
disp("Net change in entropy =")
disp(dS)
disp("kJ/K") |
e8c995b69cdc77e15268cf1733211f5f60f1e223 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH17/EX17.23/Ex17_23.sce | 5769fad12255c7046041ca8c975e86d0d8d71dda | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 408 | sce | Ex17_23.sce | //Initilization of variables
m=90 //kg
k=450 //N/m
lo=0.6 //m
r=0.15 //m
x=0.9 //m
y=0.4 //m
//Calculations
//Initial KE=0
I=0.5*m*r^2 //kg.m^2
s1=sqrt((lo^2)+(x^2)) //m
s2=sqrt((lo^2)+(y^2)) //m
V1=0.5*k*(s1-lo)^2 //N.m
V2=0.5*k*(s2-lo)^2 //N.m
//Applying Conservation of Energy
w=sqrt((V1-V2)/(0.5*m*r^2+0.5*I)) //rad/s
//Result
clc
printf('The value of angular speed is: %f rad/s',w)
|
8bc53fd8287190a2227047bb3fbdecb366214488 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2642/CH2/EX2.6/Ex2_6.sce | 5103755115916b6cae5875a1d4d6f98e40885de8 | [] | 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 | 948 | sce | Ex2_6.sce | // FUNDAMENTALS OF ELECTICAL MACHINES
// M.A.SALAM
// NAROSA PUBLISHING HOUSE
// SECOND EDITION
// Chapter 2 : BESICS OF MAGNETIC CIRCUITS
// Example : 2.6
clc;clear; // clears the console and command history
// Given data
N = 200 // number of turns
d_in = 7 // inner diameter of wooden toroidal coil in cm
d_out = 10 // outer diameter of wooden toroidal coil in cm
A = 0.005 // cross sectional area m^2
I = 5 // current through coil in A
R = d_out-d_in
myu_0 = 4*%pi*10^-7
// caclulations
l = 2*%pi*R*10^-2 // mean circumference length in m
H = N*I/l // magnetic field intensity in At/m
B = myu_0*H // flux density in Wb/m^2
flux = B*A // flux in Wb
// display the result
disp("Example 2.6 solution");
printf(" \n Magnetic field intensity \n H= %.0f At/m \n", H);
printf(" \n Flux density \n B= %.2e Wb/m^2 \n", B);
printf(" \n Flux \n flux= %.1e Wb \n", flux);
|
52970f1d511fdfd5c65fa478a069d1a0b8087ef1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1067/CH57/EX57.05/57_05.sce | 22a52a06e9ade8ccb3d514a46bb29d45defcf680 | [] | 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 | 102 | sce | 57_05.sce | clear;
clc;
x=.05;
vs=1;
vr=1;
p=10;
d=asind(p*x);
mprintf("the power angle=/_%d degrees",d);
|
e22bbdff5759c3fdde6ad183028f189011d45a01 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_K._V._Kumar_3537.zip/Engineering_Physics_K._V._Kumar_3537/CH2/EX2.13/Ex2_13.sce | 0819a28a9b68bb14ffbde056c52fe36ae1864fb3 | [] | 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 | 223 | sce | Ex2_13.sce | errcatch(-1,"stop");mode(2);//Example 2_13
;
;
//deduce the missing order of a double slit
a=0.16*10^-3 //units in m
b=0.8*10^-3 //units in m
n_p=(a+b)/a
for j=1:3
printf("For p=%d n=%d\n",j,j*n_p);
end
exit();
|
92d2d56b09ff21fb2bd2f58acda5487e15afc338 | 5a05d7e1b331922620afe242e4393f426335f2e3 | /macros/yulewalker.sci | 22fbd778b40c68db343b4003d52b06ae39116d5a | [] | no_license | sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox | 2728cf855f58886c7c4a9317cc00784ba8cd8a5b | 91f8045f58b6b96dbaaf2d4400586660b92d461c | refs/heads/master | 2022-04-19T17:33:22.731810 | 2020-04-22T12:17:41 | 2020-04-22T12:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,309 | sci | yulewalker.sci | // Copyright (C) 2018 - 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:[insert name]
// Organization: FOSSEE, IIT Bombay
// Email: [email protected]
function [A,V]= yulewalker(c)
// Fit an AR (p)-model with Yule-Walker estimates given a vector C of autocovariances '[gamma_0, ..., gamma_p]'.
//Calling Sequence
//A = yulewalker(C)
//[A,V]= yulewalker(C)
//Parameters
//C: Autocovariances
//Description
//Fit an AR (p)-model with Yule-Walker estimates given a vector C of autocovariances '[gamma_0, ..., gamma_p]'.
//Returns the AR coefficients, A, and the variance of white noise, V.
//Test cases
//[A,V]=yulewalker([1 2 3])
// V = - 2.6666667
// A =1.3333333
// 0.3333333
funcprot(0);
lhs=argn(1);
rhs= argn(2);
if (rhs ~= 1)
error ("wrong number of input arguments");
end
p = length (c) - 1;
if (size (c,"c") > 1)
c = c';
end
cp = c(2 : p+1);
CP = zeros (p, p);
for i = 1:p
for j = 1:p
CP (i, j) = c (abs (i-j) + 1);
end
end
A = inv (CP) * cp;
V = c(1) -A' * cp;
endfunction
|
bac5d1ca03af97b64ae94b2905a2a9c77e5e2292 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH6/EX6.6/Example6_6.sce | afd0d399713d6d31d7b7671aeb6c8b3b3caee6e9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 481 | sce | Example6_6.sce | //Example 6.6
clc;
clear;
close;
format('v',7);
//Given data :
g=9.81;//constant
a=9*10^-4;//m^2
H=3;//meter
x=2.5;//meter
y=54/100;//meter
Qactual=250*10^-3/60;//Cumec
Qth=a*sqrt(2*g*H);//Cumec
Cd=Qactual/Qth;//coeff. of discharge
disp(Cd,"Coefficient of discharge : ");
Cv=sqrt(x^2)/sqrt(4*H*y);//velocity
disp(Cv,"Coefficient of velocity : ");
Cc=Cd/Cv;//coeff. of contraction
disp(Cc,"Coefficient of contraction : ");
//Answer in the book are not accurate.
|
d6d1013d9c55d5270eb551e2b07b374e46fabe58 | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH12/EX12.3/12_3.sce | 600e8ebbab04855e2b5c552b40952c5c8778a182 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 437 | sce | 12_3.sce | //Eg-12.3
//pg-511
clear
clc
x = 1;
h1 = 0.1;
h2 = h1/2;
deff('out = func(in)','out = exp(in)')
//Using central difference formula
Dh1 = (func(x+h1)-func(x-h1))/(2*h1);
Dh2 = (func(x+h2)-func(x-h2))/(2*h2);
//Using equation [16],
Dnew = 4/3*Dh2 - 1/3*Dh1;
printf('The value of the derivative using Richardson extrapolation is %f\n',Dnew)
printf(' This value is very close to the exact value of 2.718\n') |
923694a6add83eb4e39c802b21abe73e8202c60d | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH23/EX23.9/Example23_9.sce | fb391be380d14a6c0d282e42e1882c1ef25358f8 | [] | 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 | 993 | sce | Example23_9.sce | clear ;
clc;
// Example 23.9
printf('Example 23.9\n\n');
//page no. 704
// Solution
//Given
mv = 1 ;// Mass of saturated vapour - [lb]
P1 = 2 ;// Initial pressure -[atm]
P2 = 20 ;// Final pressure -[atm]
// Additional data is obtained from figure 23.6 of the book on page no. 703
H_2 = 179 ;// Specific enthalpy at 2 atm - [Btu/lb]
H_20 = 233 ;// Specific enthalpy at 20 atm - [Btu/lb]
V_2 = 3.00 ;// Specific volume at 2 atm - [cubic feet/lb]
V_20 = 0.30 ;// Specific volume at 20 atm - [cubic feet/lb]
T_2 = 72 ;// Temperature at 2 atm -[degree F]
T_20 = 239 ;// Temperature at 20 atm -[degree F]
del_H = H_20 - H_2 ;// Change in specific enthalpy -[Btu/lb]
del_V = V_20 - V_2 ;// Change in specific volume -[cubic feet/lb]
del_T = T_20 - T_2 ;// Change in temperature -[degree F]
printf('(a) Change in specific enthalpy is %.0f Btu/lb.\n',del_H);
printf(' (b) Change in specific volume is %.2f cubic feet/lb.\n',del_V);
printf(' (c) Change in temperature is %.1f degree F.\n',del_T); |
0f7f5bc8024d4a9fba8f78356a87a5c7fdf1ff61 | 717ddeb7e700373742c617a95e25a2376565112c | /632/CH5/EX5.2/example5_2.sce | e630e0e701934e4e2c6a496139f0700b0f660738 | [] | 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 | 169 | sce | example5_2.sce | //clc()
P = 10^7;//Pa;
T = 500;//K
R = 8.314;//Pa * L / mol K
V = N * R * T / ( P * 1000);
disp("m^3",V,"(a)Volume of CO2 calculated using ideal gas equation = ")
|
2f4f26ac3fef56bee5df20bc99e5117e74929450 | 449d555969bfd7befe906877abab098c6e63a0e8 | /929/CH1/EX1.1.a/Example1_1_a.sce | 9b43b44cc4b61d5ff47871b1caef9cbec17c7ad1 | [] | 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 | 566 | sce | Example1_1_a.sce | //Example 1.1(a)
clear;
clc;
Ri=100*10^3;//Input Resistance
Aoc=100;//Open Circuit Gain
Ro=1;//Output Resistance
Rs=25*10^3;//Source Resistance
RL=3;//Load Resistance
Av=(Ri/(Rs+Ri))*Aoc*(RL/(Ro+RL));//Overall Gain
Vredin=(Ri/(Ri+Rs))*100;//Percentage Reduction in Source Voltage due to Input Loading
Vredo=(RL/(Ro+RL))*100;//Percentage Reduction in Output Voltage due to output loading
printf("Overall Gain (Av)=%.2f V/V",Av);
printf("\nPercentage Input Loading=%.2f",Vredin);
printf("\nPercentage Output Loading=%.2f",Vredo); |
2c699a3f2acb9c88d3755fff69207f0817c13c65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /991/CH9/EX9.2/Example9_2.sce | edaecbecc99effa661009f971ed31c9c4ec40664 | [] | 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,408 | sce | Example9_2.sce | //Example 9.2.
clc
RC=2*10^3
hie=1300
hre=2*10^-4
hfe=55
hoe=22*10^-6
disp("(i) For RE = 200 ohm,")
format(7)
RE=200
x=hoe*(RE+RC)
disp(x," hoe*(RE + RC) =")
disp("Since hoe*(RE+RC) < 0.1, the approximate model is permissible.")
format(6)
AI=-hfe
disp(" AI = -hfe = -55")
Ri=hie+((1+hfe)*RE)
x1=Ri*10^-3
disp(x1," Ri(k-ohm) = hie + (1+hfe)*RE =")
Av=AI*(RC/Ri)
disp(Av," Av = AI * (RC/Ri) =")
disp("Output resistance, Ro = infinity")
disp("Output terminal resistance, RoT = Ro || RC = 2 k-ohm")
disp("(ii) For RE = 400 ohm")
format(7)
RE=400
x2=hoe*(RE+RC)
disp(x2," hoe*(RE + RC) =")
disp("Since hoe*(RE+RC) < 0.1, the approximate model is permissible.")
format(6)
AI=-hfe
disp(" AI = -hfe = -55")
Ri=hie+((1+hfe)*RE)
x3=Ri*10^-3
disp(x3," Ri(k-ohm) = hie + (1+hfe)*RE =")
format(5)
Av=AI*(RC/Ri)
disp(Av," Av = AI * (RC/Ri) =")
disp("Output resistance, Ro = infinity")
disp("Output terminal resistance, RoT = Ro || RC = 2 k-ohm")
disp("(iii) For RE = 1000 ohm")
disp("Since hoe*(RE+RC) < 0.1, the approximate model is permissible.")
format(6)
AI=-hfe
disp(" AI = -hfe = -55")
Ri=1300+((1+55)*1000)
x3=Ri*10^-3
disp(x3," Ri(k-ohm) = hie + (1+hfe)*RE =")
Av=AI*(RC/Ri)
disp(Av," Av = AI * (RC/Ri) =")
disp("Output resistance, Ro = infinity")
disp("Output terminal resistance, RoT = Ro || RC = 2 k-ohm") |
ad8a5648c95a678ef76cd6d072587ca2271fc75f | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.3.1/macros/percent/%pqs.sci | 6ec10aa3b65b9c56983adbb1e15632755aae3c5c | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 187 | sci | %pqs.sci | function f=%pqs(p1,p2)
// f=%pqs(p,m) <=> f=p.\m
//!
if size(p1,'*')==1 then
p1=p1*ones(p2)
elseif size(p2,'*')==1 then
p2=p2*ones(p1)
end
f=tlist(['r','num','den','dt'],p2,p1,[])
|
2905ba51eb5d7623f1d333895d5177147b6c3b40 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH2/EX2.7/Example2_7.sce | 3aa87d60c3962566a79399e052fdc83a7d79e91b | [] | 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 | 724 | sce | Example2_7.sce | //Example 2.7
//Program to estimate the maximum core diameter of an optical fiber
//which allows single mode operation
clear;
clc ;
close ;
//Given data
alpha=2; //Parabolic Profile
lambda=1.3*10^(-6); //metre - OPERATING WAVELENGTH
n1=1.5; //CORE REFRACTIVE INDEX
delta=0.01; //RELATIVE REFRACTIVE INDEX DIFFERENCE
//Normalized Frequency for single mode operation
V=2.4*sqrt(1+2/alpha);
//The maximum core radius for single mode operation
a=V*lambda/(2*%pi*n1*sqrt(2*delta));
//Displaying the Results in Command Window
printf("\n\n\t The maximum core diameter of the optical fiber which allows single mode operation is %0.1f micrometre.",2*a*10^6); |
0db0ca21b9aad3698240b556ee3bc692d60f96cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH4/EX4.4/Ch04Ex4.sce | b40ab8bb67f5f95b6a80f090b74a81a0358a2de7 | [] | 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 | 981 | sce | Ch04Ex4.sce | // Scilab code Ex4.4: Pg 121 (2005)
clc; clear;
// Part (b)
// For easy calculations, assume all variables to be unity
m_p = 1; // Mass of proton, a.m.u
m_a = 4*m_p; // Mass of alpha particle, a.m.u
Valpha = 1; // Velocity of alpha particle before collision, m/s
v_p = (2*m_a*Valpha)/(m_a + m_p); // Velocity of proton after collision, m/s
v_a = ((m_a - m_p)*(Valpha))/(m_a + m_p); // Velocity of alph particle after collision, m/s
p_change = ((v_a - Valpha)/(Valpha))*100; // Percentage change in velocity of alpha particle
printf("\nVelocity of proton after collision = %4.2fVa m/s", v_p);
printf("\nVelocity of alpha particle after collision = %4.2fVa m/s", v_a);
printf("\nPercentage change in velocity of alpha particle = %2d percent", p_change);
// Result
// Velocity of proton after collision = 1.60 V_a m/s
// Velocity of alph particle after collision = 0.60 V_a m/s
// Percentage change in velocity of alpha particle = -40 percent
|
043a9620ba539e017e4b91a2ded501027087a0cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2063/CH7/EX7.27/7_27.sce | 50212b06b2f1f3df97871baad54e67df079cd816 | [] | 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,831 | sce | 7_27.sce | clc
clear
//Input data
F=11;//Fuel used per hour observed during the trial of a single cylinder four stroke diesel engine in kg
mc=85;//Carbon present in the fuel in percent
mh=14;//Hydrogen present in the fuel in percent
mn=1;//Non combustibles present in the fuel in percent
CV=50000;//Calorific value of fuel in kJ/kg
Vc=8.5;//Percentage of carbon dioxide present in exhaust gas by Volumetric analysis
Vo=10;//Oxygen present in exhaust gases in percent
Vn=81.5;//Nitrogen present in exhaust gases in percent
Te=400;//Temperature of exhaust gases in degrees celsius
se=1.05;//Specific heat of exhaust gas in kJ/kg
Pp=0.030;//Partial pressure of steam in the exhaust in bar
Ta=20;//Ambient temperature in degrees celsius
hs=2545.6;//Enthalpy of saturated steam in kJ/kg
Tsa=24.1;//Saturation temperature from graph in degrees celcius
Cp=2.1;//Specific heat in kJ/kg K
hst=3335;//Enthalpy of super heated steam in kJ/kg
//Calculations
Ma=(Vn*mc)/(33*Vc);//Mass of air supplied per kg of fuel in kg
Me=Ma+1;//Mass of exhaust gases formed per kg of fuel in kg
me=(Me*F)/60;//Mass of exhaust gases formed per minute in kg
ms=F*(mh/100);//Mass of steam formed per kg of fuel in kg
ms1=(ms*F)/60;//Mass of steam formed per minute in kg
mde=me-ms1;//Mass of dry exhaust gases formed per minute in kg
H=mde*se*(Te-Ta);//Heat carried away by the dry exhaust gases per minute in kJ/min
Es=hs+(Cp*(Te-Tsa));//Enthalpy of superheated steam in kJ/kg
He=ms1*hst;//Heat carried away by steam in the exhaust gases in kJ/min
Hl=H+He;//Total heat lost through dry exhaust gases and steam in kJ/min
Hf=(F/60)*CV;//Heat supplied by fuel per minute in kJ/min
nh=(Hl/Hf)*100;//Percentage of heat carried away by exhaust gases
//Output
printf('Percentage of heat carried away by exhaust gases is %3.1f percent',nh)
|
26eb57758a538a9d1391ded075ccf8566b45d190 | 08fa003be553d3d594600de9d4278b295f5aa4ae | /src/main/resources/oauth2.properties.tst | 5ec306a4cc94cda87b721a2e391f98292210894a | [] | no_license | rwnevinger/MingleIFS | 4869ef58a6b966e01a24edbb05f0b8b041b0cd16 | 08d309748817adf92037d10adaaef50872fc14c7 | refs/heads/master | 2020-04-29T09:20:21.894049 | 2019-03-24T14:24:09 | 2019-03-24T14:24:09 | 176,020,939 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 646 | tst | oauth2.properties.tst | scope=
grant_type=password_credentials
# ionapi pu attribute
access_token_url=https://mingle-sso.inforcloudsuite.com:443/ONEONCOLOGY_TST/as/token.oauth2
# ionapi ci attribute
client_id=ONEONCOLOGY_TST~ynkZwSoWycgApD0JD12Y4uZ0cdEc0YbJ8-keBxwIru0
# ionapi cs attribute
client_secret=ZTgBqPitkoqNRGk7_9N9TEvMK58l0pcREYaqTA18FgO1VaCOEdiLRZGsVg3O5oWNkaWUEyBtgw4XUHN5uSDuqQ
# ionapi saak attribute
username=ONEONCOLOGY_TST#In2njDELOtOpNP0a-abvgoOt8uxhO09zQry3NwnfBJfh3OdjK4RmysivQ4PtcgQ0KKDDl9UjH7oBeY6IRqah0Q
# ionapi sask attribute
password=YhVIbUCZP9PFqytoxB38K1bB0P11kQ6R4lZb3C7SfgEl_pPjHZ2yJVd6uoCoz42RpjCmv9qJDgDYK0g0bxeEug
|
e089ce7c1b33182f078ebf72254abfff54ce27bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /3740/CH8/EX8.6/Ex8_6.sce | 4dd2e813614b23640872427cdfc0f04148a87fad | [] | 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 | 544 | sce | Ex8_6.sce | //Optoelectronics - An Introduction, 2nd Edition by J. Wilson and J.F.B. Hawkes
//Example 8.6
//OS=Windows XP sp3
//Scilab version 5.5.2
clc;
clear;
//given
n1=1.48;//Dimensionless refractive index of fiber core
n2=1.46;//Dimensionless refractive index of fiber cladding
L=1e3;//Length of fiber in m
c=3e8;//Speed of light in vacuum in m/s
DeltaTSI=L/c*(n1/n2)*(n1-n2);//Intermodal dispersion in s
mprintf("\n DeltaTSI = %.2f ns",DeltaTSI/1e-9);//Dividing by 10^(-9) to convert to ns
//The answers vary due to round off error
|
564b6b741e491da2b468a9c4afbc0249e526e710 | a6e16f8b4e3e9dfb7a8b6f323b7e35fb82537222 | /Pascal/Matthias Berger/PROFILER/TESTFILE/MENDEL.TST | 16f479d176aeb9598989f986ace2a61d0d03e141 | [] | no_license | pjones1063/Atari_ST_Sources | 59cd4af5968d20eb3bf16836fc460f018aa05e7c | fe7d2d16d3919274547efbd007f5e0ec1557396d | refs/heads/master | 2020-09-04T20:21:44.756895 | 2019-10-30T12:54:05 | 2019-10-30T12:54:05 | 219,878,695 | 2 | 0 | null | 2019-11-06T00:40:39 | 2019-11-06T00:40:39 | null | SHIFT_JIS | Scilab | false | false | 7,920 | tst | MENDEL.TST | { Profiler-Testversion zu G:\PROFILER.SYS\DEMOS.PAS\MENDEL.PAS }
CONST ___ = 46;
___2 =6;
VAR __ : INTEGER ;
VAR _ : ARRAY [1..___] OF REAL ;
VAR _2 : ARRAY [1..___2] OF REAL ;
VAR _h : STRING;
VAR _f : TEXT;
{ 7. Bundeswettbewerb Informatik 1988/1989 }
{ 1. Runde, Aufgabe 5 ; Autor M. Berger }
CONST MAX_ANZAHL_MERKMALE=4;
TYPE ELTERNTEIL_DEF=(MUTTER,VATER,KIND);
TYPNAME_DEF=(MUSTER,FARBE,FUEHLERFORM);
MERKMALSPEICHER=STRING[20];
DOMINANZ_LISTE_TEIL=RECORD
MERKMAL:MERKMALSPEICHER;
ANZ_REZES:INTEGER;
REZESSIVE:ARRAY[1..MAX_ANZAHL_MERKMALE]
OF MERKMALSPEICHER;
END;
DOMINANZ_LISTE_TYP=
ARRAY[TYPNAME_DEF,1..MAX_ANZAHL_MERKMALE]
OF DOMINANZ_LISTE_TEIL;
VAR DOMINANZ_LISTE:DOMINANZ_LISTE_TYP;
MERKMALE:ARRAY[ELTERNTEIL_DEF,TYPNAME_DEF,1..2]
OF MERKMALSPEICHER;
ANZ_KINDER:INTEGER;
ELTERNTEIL:ELTERNTEIL_DEF;
TYP:TYPNAME_DEF;
ZAEHLER:INTEGER;
PROCEDURE INITIALISIERUNG;
VAR I:INTEGER;
BEGIN _[1] := _[1] + 1 ; _2[1] := _2[1] + 1 ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[3] := _[3] + 1 ;
FOR I:=1 TO MAX_ANZAHL_MERKMALE DO BEGIN _[4] := _[4] + 1 ;
DOMINANZ_LISTE[TYP,I].MERKMAL:='' END END ;
DOMINANZ_LISTE[MUSTER,1].MERKMAL:='uni' ;
DOMINANZ_LISTE[MUSTER,1].ANZ_REZES:=3 ;
DOMINANZ_LISTE[MUSTER,1].REZESSIVE[1]:='uni' ;
DOMINANZ_LISTE[MUSTER,1].REZESSIVE[2]:='schwarz gepunktet' ;
DOMINANZ_LISTE[MUSTER,1].REZESSIVE[3]:='schwarz gestreift' ;
DOMINANZ_LISTE[MUSTER,2].MERKMAL:='schwarz gepunktet' ;
DOMINANZ_LISTE[MUSTER,2].ANZ_REZES:=2 ;
DOMINANZ_LISTE[MUSTER,2].REZESSIVE[1]:='schwarz gepunktet' ;
DOMINANZ_LISTE[MUSTER,2].REZESSIVE[2]:='schwarz gestreift' ;
DOMINANZ_LISTE[MUSTER,3].MERKMAL:='schwarz gestreift' ;
DOMINANZ_LISTE[MUSTER,3].ANZ_REZES:=1 ;
DOMINANZ_LISTE[MUSTER,3].REZESSIVE[1]:='schwarz gestreift' ;
DOMINANZ_LISTE[FARBE,1].MERKMAL:='rot' ;
DOMINANZ_LISTE[FARBE,1].ANZ_REZES:=3 ;
DOMINANZ_LISTE[FARBE,1].REZESSIVE[1]:='rot' ;
DOMINANZ_LISTE[FARBE,1].REZESSIVE[2]:='gr]' ;
DOMINANZ_LISTE[FARBE,1].REZESSIVE[3]:='blau' ;
DOMINANZ_LISTE[FARBE,2].MERKMAL:='gelb' ;
DOMINANZ_LISTE[FARBE,2].ANZ_REZES:=3 ;
DOMINANZ_LISTE[FARBE,2].REZESSIVE[1]:='gelb' ;
DOMINANZ_LISTE[FARBE,2].REZESSIVE[2]:='rot' ;
DOMINANZ_LISTE[FARBE,2].REZESSIVE[3]:='blau' ;
DOMINANZ_LISTE[FARBE,3].MERKMAL:='gr]' ;
DOMINANZ_LISTE[FARBE,3].ANZ_REZES:=3 ;
DOMINANZ_LISTE[FARBE,3].REZESSIVE[1]:='gr]' ;
DOMINANZ_LISTE[FARBE,3].REZESSIVE[2]:='gelb' ;
DOMINANZ_LISTE[FARBE,3].REZESSIVE[3]:='blau' ;
DOMINANZ_LISTE[FARBE,4].MERKMAL:='blau' ;
DOMINANZ_LISTE[FARBE,4].ANZ_REZES:=1 ;
DOMINANZ_LISTE[FARBE,4].REZESSIVE[1]:='blau' ;
DOMINANZ_LISTE[FUEHLERFORM,1].MERKMAL:='gerade' ;
DOMINANZ_LISTE[FUEHLERFORM,1].ANZ_REZES:=2 ;
DOMINANZ_LISTE[FUEHLERFORM,1].REZESSIVE[1]:='gerade' ;
DOMINANZ_LISTE[FUEHLERFORM,1].REZESSIVE[2]:='gekr[mt' ;
DOMINANZ_LISTE[FUEHLERFORM,2].MERKMAL:='gekr[mt' ;
DOMINANZ_LISTE[FUEHLERFORM,2].ANZ_REZES:=1 ;
DOMINANZ_LISTE[FUEHLERFORM,2].REZESSIVE[1]:='gekr[mt' ;
;IF _2[1] > _[2] THEN _[2] := _2[1]; _2[1]:=_2[1]-1; END ;
PROCEDURE EINGABE;
BEGIN _[5] := _[5] + 1 ; _2[2] := _2[2] + 1 ;
CLRSCR ; WRITELN('Mendels Land (bwINF 7 [88/89];Aufgabe 5)') ; WRITELN ;
FOR ELTERNTEIL:=MUTTER TO VATER DO BEGIN _[7] := _[7] + 1 ;
WRITE(' Bitte Merkmale ') ;
IF ELTERNTEIL=MUTTER
THEN BEGIN _[8] := _[8] + 1 ;
WRITE('der Mutter ')
END ELSE BEGIN _[9] := _[9] + 1 ;
WRITE('des Vaters ') END ;
WRITELN('angeben') ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[10] := _[10] + 1 ;
WRITE(' Bitte ') ;
BEGIN _[11] := _[11] + 1 ; CASE TYP OF
MUSTER: BEGIN _[12] := _[12] + 1 ; WRITE('Muster ') END ;
FARBE: BEGIN _[13] := _[13] + 1 ; WRITE('Fl“elfarbe ') END ;
FUEHLERFORM: BEGIN _[14] := _[14] + 1 ; WRITE('F”lerform ') END ;
END END ;
WRITE('eingeben : ') ;
READLN(MERKMALE[ELTERNTEIL,TYP,1]) ;
END ;
END ;
WRITE('Anzahl der Kinder eingeben : ') ; READLN(ANZ_KINDER) ;
;IF _2[2] > _[6] THEN _[6] := _2[2]; _2[2]:=_2[2]-1; END ;
PROCEDURE ERMITTLE_REZESSIVE_MERKMALE;
VAR I:INTEGER;
BEGIN _[15] := _[15] + 1 ; _2[3] := _2[3] + 1 ;
FOR ELTERNTEIL:=MUTTER TO VATER DO BEGIN _[17] := _[17] + 1 ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[18] := _[18] + 1 ;
MERKMALE[ELTERNTEIL,TYP,2]:='' ;
I:=0 ;
REPEAT _[19] := _[19] + 1 ;
I:=I+1 ;
IF DOMINANZ_LISTE[TYP,I].MERKMAL=MERKMALE[ELTERNTEIL,TYP,1]
THEN BEGIN _[20] := _[20] + 1 ;
MERKMALE[ELTERNTEIL,TYP,2]:=DOMINANZ_LISTE[TYP,I].REZESSIVE
[RANDOM(DOMINANZ_LISTE[TYP,I].ANZ_REZES)+1] END ;
UNTIL MERKMALE[ELTERNTEIL,TYP,2]<>'' ;
END ;
END ;
;IF _2[3] > _[16] THEN _[16] := _2[3]; _2[3]:=_2[3]-1; END ;
PROCEDURE ERBMERKMAL_ERMITTELN;
VAR I:INTEGER;
BEGIN _[21] := _[21] + 1 ; _2[4] := _2[4] + 1 ;
FOR ELTERNTEIL:=MUTTER TO VATER DO BEGIN _[23] := _[23] + 1 ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[24] := _[24] + 1 ;
I:=ROUND(INT(RANDOM*2))+1 ;
IF ELTERNTEIL=MUTTER THEN BEGIN _[25] := _[25] + 1 ;
MERKMALE[KIND,TYP,1]:=MERKMALE[ELTERNTEIL,TYP,I] END ;
IF ELTERNTEIL=VATER THEN BEGIN _[26] := _[26] + 1 ;
MERKMALE[KIND,TYP,2]:=MERKMALE[ELTERNTEIL,TYP,I] END ;
END ;
END ;
;IF _2[4] > _[22] THEN _[22] := _2[4]; _2[4]:=_2[4]-1; END ;
PROCEDURE DOM_ERBMERKMAL_ERMITTELN;
VAR I,U:INTEGER;
SWAP_HLP:MERKMALSPEICHER;
BEENDEN:BOOLEAN;
BEGIN _[27] := _[27] + 1 ; _2[5] := _2[5] + 1 ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[29] := _[29] + 1 ;
I:=0 ;
BEENDEN:=FALSE ;
REPEAT _[30] := _[30] + 1 ;
I:=I+1 ;
IF MERKMALE[KIND,TYP,2]=
DOMINANZ_LISTE[TYP,I].MERKMAL
THEN BEGIN _[31] := _[31] + 1 ;
FOR U:=1 TO DOMINANZ_LISTE[TYP,I].ANZ_REZES DO BEGIN _[32] := _[32] + 1 ;
IF DOMINANZ_LISTE[TYP,I].REZESSIVE[U]
=MERKMALE[KIND,TYP,1]
THEN BEGIN _[33] := _[33] + 1 ;
SWAP_HLP:=MERKMALE[KIND,TYP,2] ;
MERKMALE[KIND,TYP,2]:=MERKMALE[KIND,TYP,1] ;
MERKMALE[KIND,TYP,1]:=SWAP_HLP ;
BEENDEN:=TRUE ;
END ;
END ;
END ;
UNTIL(BEENDEN)OR(I=MAX_ANZAHL_MERKMALE) ;
END ;
;IF _2[5] > _[28] THEN _[28] := _2[5]; _2[5]:=_2[5]-1; END ;
PROCEDURE AUSGABE;
VAR X:CHAR;
BEGIN _[34] := _[34] + 1 ; _2[6] := _2[6] + 1 ;
CLRSCR ;
WRITELN('Mendels Land (bwINF 7 [88/89];Aufgabe 5)') ; WRITELN ;
FOR ELTERNTEIL:=MUTTER TO KIND DO BEGIN _[36] := _[36] + 1 ;
WRITE(' Merkmale') ;
IF ELTERNTEIL=MUTTER
THEN BEGIN _[37] := _[37] + 1 ;
WRITELN(' der Mutter :')
END ELSE BEGIN _[38] := _[38] + 1 ;
IF ELTERNTEIL=VATER
THEN BEGIN _[39] := _[39] + 1 ;
WRITELN(' des Vaters :')
END ELSE BEGIN _[40] := _[40] + 1 ;
WRITELN(' des ',ZAEHLER,'. Kindes :') END END ;
FOR TYP:=MUSTER TO FUEHLERFORM DO BEGIN _[41] := _[41] + 1 ;
WRITE(' - ') ;
BEGIN _[42] := _[42] + 1 ; CASE TYP OF
MUSTER: BEGIN _[43] := _[43] + 1 ; WRITE('Muster :') END ;
FARBE: BEGIN _[44] := _[44] + 1 ; WRITE('Farbe :') END ;
FUEHLERFORM: BEGIN _[45] := _[45] + 1 ; WRITE('F”ler :') END ;
END END ;
WRITELN(' Dominant ',MERKMALE[ELTERNTEIL,TYP,1],
' ; Rezessiv ',MERKMALE[ELTERNTEIL,TYP,2]) ;
END ;
END ;
READ(KBD,X) ;
;IF _2[6] > _[35] THEN _[35] := _2[6]; _2[6]:=_2[6]-1; END ;
BEGIN FOR __:= 1 TO ___ DO _[__]:=0; FOR __:= 1 TO ___2 DO _2[__]:=-1;
INITIALISIERUNG ;
EINGABE ;
ERMITTLE_REZESSIVE_MERKMALE ;
FOR ZAEHLER:=1 TO ANZ_KINDER DO BEGIN _[46] := _[46] + 1 ;
ERBMERKMAL_ERMITTELN ;
DOM_ERBMERKMAL_ERMITTELN ;
AUSGABE ;
END ;
;ASSIGN(_f,'G:\PROFILER.SYS\TESTFILE.TST\MENDEL.WRT');
REWRITE(_f);
WRITELN(_f,'(c)1989mkbmeersaukleintier');
WRITELN(_f,'G:\PROFILER.SYS\DEMOS.PAS\MENDEL.PAS');
WRITELN(_f,'nein');
WRITELN(_f,'46.0');
FOR __ := 1 TO ___ DO BEGIN
STR(_[__],_h);
WRITELN(_f,_h); END;
CLOSE(_f);
WRITELN;WRITELN;
WRITELN('-> Profile-Testlauf beendet. Werte in G:\PROFILER.SYS\TESTFILE.TST\MENDEL.WRT');
WRITELN('-> Bitte profile_2.prg starten. ');
END.
|
e9a92432d14bb0d2393f0394f9ea6c6953d428af | 449d555969bfd7befe906877abab098c6e63a0e8 | /635/CH1/EX1.26/Ch01Ex26.sci | e22c6795b35a3bfd0340f49e337a33edcd5f7548 | [] | 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 | 541 | sci | Ch01Ex26.sci | // Scilab Code Ex 1.26 Lattice parameter of a cubic crystal: Page-33 (2010)
h = 1; k = 1; l = 1; // Miller Indices for planes in a cubic crystal
d = 2D-10; // Interplanar spacing, m
// For cubic crystals, the interplanar spacing is given by
// d = a/(h^2+k^2+l^2)^1/2;
// Solving for a
a = (h^2+k^2+l^2)^(1/2)*d; // lattice parameter of cubic crystal, m
disp(a/1D-10, "The lattice parameter of the cubic crystal, in angstrom, is :");
// Result
// The lattice parameter of the cubic crystal, in angstrom, is :
// 3.4641016
|
d7258283384565c58f89decafff3fab0429da06e | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /NZFunctions/Data-Mining/SP_LinRegrSW-NZ-UM-01.tst | ecc3a6a066fbefda29932f9878a3cc2d282c7c3b | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,906 | tst | SP_LinRegrSW-NZ-UM-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza
--
-- Copyright (c): 2016 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
--
--
-- Functional Test Specifications:
--
-- Test Category: Data Mining Functions
--
-- Last Updated: 05-29-2017
--
-- Author: <[email protected]>
--
-- BEGIN: TEST SCRIPT
--timing on
-- BEGIN: TEST(s)
-----*******************************************************************************************************************************
---SP_LinRegrSW
-----*******************************************************************************************************************************
SELECT '***** EXECUTING SP_LinRegrSW *****';
CREATE OR REPLACE VIEW UM_vw_LinRegrSWDemo
AS (
SELECT ObsID, VarID, Value
FROM tblLinRegr
WHERE VarID > 0
AND VarID <= 20
AND Value <> 0
UNION ALL
SELECT ObsID, VarID, Value
FROM tblLinRegr
WHERE VarID IN (-1, 0));
EXEC SP_LinRegrSW ('UM_vw_LinRegrSWDemo','SPEC TEST 1',3,0.10, 'HelloWorld');
SELECT a.*
FROM fzzlLinRegrCoeffs a
WHERE a.AnalysisID = (SELECT AnalysisID
FROM fzzlLinRegrInfo
WHERE Note='HelloWorld')
AND ModelID <= 2
ORDER BY 1,2,3
LIMIT 20;
SELECT a.*
FROM fzzlLinRegrStats a
WHERE a.AnalysisID = (SELECT AnalysisID
FROM fzzlLinRegrInfo
WHERE Note='HelloWorld')
AND ModelID <= 2
LIMIT 20;
-- END: TEST(s)
-- END: TEST SCRIPT
--timing off |
5e60ef8def1372462af22ae328e0c95c2a6e9d85 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Design_With_Operational_Amplifiers_And_Analog_Integrated_Circuits_S._Franco_929.zip/Design_With_Operational_Amplifiers_And_Analog_Integrated_Circuits_S._Franco_929/CH6/EX6.1.a/Example6_1_a.sce | b5a34e12f1386450901da051c6f0c56e5f640db5 | [] | 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 | 218 | sce | Example6_1_a.sce | errcatch(-1,"stop");mode(2);//Example 6.1(a)
;
;
R1=2*10^3;
R2=18*10^3;
b=0.1;
fb=100*10^3;
emmax=0.01;
fmax=((((1/(1-emmax))^2)-1)*(fb^2))^(1/2);
printf("f<=%.1f kHz",fmax*10^(-3));
exit();
|
750bc24c6b479e8f7d2cd87968554e8ac2a6dfd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3856/CH4/EX4.5/Ex4_5.sce | 032b222db2b8a4b65bd50c8b12532431c4e6bb9f | [] | 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 | 736 | sce | Ex4_5.sce | //Calculate the change in Enternal energy and change in Enthalpy for heating of Xenon
//Example4.5
clc;
clear;
T1=300; //Initial temperature in K
T2=400; //Final temperature in K
m=55.40; //Mass of Xenon in g
M=131.29; //Molecular mass of Xenon
n=m/M; //Number of mole of Xenon in mol
R=8.314; //Gas constant in J K^-1 mol^-1
Cbarv=(3/2)*R; //Molar constant volume in J K^-1 mol^-1
delT=T2-T1; //Thange in temperature in K
delU=n*delT*Cbarv; //Change in Enternal energy in J
printf("Change in Enternal energy = %.0f J",delU);
Cbarp=(5/2)*R; //Molar constant pressure in J K^-1 mlo^-1
delH=n*Cbarp*delT; //Change in Enthalpy in J
printf("\nChange in Enthalpy = %.0f J",delH);
|
42f5e8967c3c6f9e370af0f461b819252349b7d3 | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/final/qscatter/v.sce | b357e099c3e11c5d0b87d56203105a6b4c0fbbe8 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 156 | sce | v.sce | function [v]=v(r,sigma,epsilon)
//epsilon=5.9;//meV H-Kr interaction
//sigma=3.57;//Angstrom
v=10*epsilon*( (sigma/r)^12-2*(sigma/r)^6);
endfunction
|
b235cb6d7f35e7d6d2612cc897fdd2124824c26e | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set6/s_Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380.zip/Electric_Machinery_And_Transformers_B._S._Guru_And_H._R._Hiziroglu_380/CH12/EX12.2/Ex12_2.sci | 47705a3632cb89ab70df214180c414171e211014 | [] | 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 | 485 | sci | Ex12_2.sci | errcatch(-1,"stop");mode(2);//Caption:Find the magnetic flux
//Exa:12.2
;
;
N_m=1500;//speed of motor (in rpm)
R_a=2;//armature resistance (in ohms)
V_s=100;
P_o=200;//rated power
K_a=85;//machine constant
P_rot=15;//rotational loss
w_m=(2*%pi*N_m)/60;
P_d=P_o+P_rot;//power developed
T_d=P_d/w_m;//torque developed
function y=root (a,b,c);
y=((-b)+sqrt((b^2)-(4*a*c)))/(2*a);
endfunction;
disp(root(1,-0.0075,(2.41*10^-6)),'magnetic flux (in Weber)=');
exit();
|
630693d0b43d7376aa10f01c1dedb631cee6483f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH5/EX5.51/EX5_51.sce | fccc0120237163bc8af2e52c362ae15976652a10 | [] | 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 | 355 | sce | EX5_51.sce | //EXAMPLE 5-51 PG NO-338
I=10; //CURRENT
R1=1;
R2=1;
R3=1;
VTH=(I*R1)/(R1+R2+R3);
RTH=(R1*(R1+R2))/(R1+R2+R3);
P=(VTH/(RTH+RTH))^2*(RTH);
disp('i) Voltage (VTH) is = '+string (VTH) +' V ');
disp('i) Resistance (RTH) is = '+string (RTH) +' ohms ');
disp('i) Power (P) is = '+string (P) +' W ');
|
7fb02a79fd90bc7f63e86c508e4f0e615752369c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH17/EX17.10w/17_10w.sce | 8c37f0c57f60ca19f289292e1c07302cb47054de | [] | 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 | 932 | sce | 17_10w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 17.10w
//calculation of the wavelengths in the visible region that are strongly reflected
//given data
d=.5*10^-6//thickness(in m) of the glass plate
mu=1.5//refractive index of the medium
lambda1=400*10^-9//minimum wavelength(in m) of the visible region
lambda2=700*10^-9//maximum wavelength(in m) of the visible region
//calculation
//condition for strong reflection of light of wavelength lambda is
//2*mu*d = (n + (1/2))*lambda............(1)
n1=round((2*mu*d/lambda1)-(1/2))//integral value of n for lambda1
n2=round((2*mu*d/lambda2)-(1/2))//integral value of n for lambda2
lambda1n=(2*mu*d)/(n1+(1/2))//from equation (1)
lambda2n=(2*mu*d)/(n2+(1/2))//from equation (1)
printf('the wavelengths in the visible region that are strongly reflected are %d nm and %d nm',round(lambda1n*10^9),round(lambda2n*10^9))
|
e59c6ce8517c563cc12a919295187ee7c1e57a2a | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH13/EX13.18/18.sce | 1fb6d1c68e0f124caf6811d60f233197b5f97452 | [] | 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 | 230 | sce | 18.sce | clc
L=0.25; //m
D=0.15; //m
V2=0.0004; //m^3
Vs=%pi/4*D^2*L;
V_total=Vs+V2;
y=1.4;
V3=V2+5/100*Vs;
rho=V3/V2;
r=(Vs+V2)/V2; //V1=Vs+V2
n_diesel=1-1/y/r^(y-1)*((rho^y-1)/(rho-1));
disp("efficiency =")
disp(n_diesel) |
b43bdba2fbf288ae45b4d4d472cc749a680f850b | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH3/EX3.13/3_13.sce | 609040e84a67511598fa1dad0088d287bdbc127d | [] | 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 | 209 | sce | 3_13.sce | Vc_0m=10
Vc_0p=Vc_0m
disp(Vc_0p)
//KVL
i1_0p=(10-Vc_0p)/20
i2_0p=Vc_0p/20
//KCL
iC_0p=i1_0p-i2_0p
disp(iC_0p)
iC_inf=0 //capacitor is open circuit
disp(iC_inf)
VC_inf=10*20/(20+20)
disp(VC_inf) |
5fbb6c1aba3d542f705afffb21ebb1fb50d7bd8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH45/EX45.03/45_03.sce | 703ee814b82cb67d63d4784fb5726a0e395c414f | [] | 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,131 | sce | 45_03.sce | //Problem 45.03: A coil of inductance 50 mH and resistance 5 ohm is connected to a 110 V, d.c. supply. Determine (a) the final value of current, (b) the value of current after 4 ms, (c) the value of the voltage across the resistor after 6 ms, (d) the value of the voltage across the inductance after 6 ms, and (e) the time when the current reaches 15 A.
//initializing the variables:
L = 0.05; // in Henry
R = 5; // in Ohm
V = 110; // in VOlts
ti = 0.004; // in sec
tvr = 0.006; // in sec
tvl = 0.006; // in sec
it = 15; // in amperes
//calculation:
//steady state current i
i = V/R
//when time t = 4ms current is
i4 = (V/R)*(1 - %e^(-1*ti*R/L))
//resistor voltage, VR
VR6 = V*(1 - %e^(-1*tvr*R/L))
//inductor voltage, VL
VL6 = V*(%e^(-1*tvl*R/L))
//time, t
ti = (-1*L/R)*log(1 - it*R/V)
printf("\n\n Result \n\n")
printf("\n steady state current i is %.0f A",i)
printf("\n when time t = 4ms current is is %.2f A",i4)
printf("\n value of resistor voltage at t = 6ms is %.2f V",VR6)
printf("\n value of inductor voltage at t = 6ms is %.2f V",VL6)
printf("\n the time after connection when the current is 15 A is %.5f sec",ti)
|
ca6282b3e8de2f6c57eece7b6ebced9580853a2f | 59e7c95649eb8894e1d6f0bcac3ca7ea2b023217 | /Equações Diferenciais.sce | aeb1510550e6225f8421afd6770f837117f99f80 | [] | no_license | nascimento-luciano/Scilab-Matlab | cb5ee9d97df3ed0f4311573df0fd37a88b3394d8 | 1cba42b68cc7954ff4c7dd6b13c7d8e6bd3d039e | refs/heads/main | 2023-03-19T21:06:18.691193 | 2021-03-18T00:57:29 | 2021-03-18T00:57:29 | 348,877,701 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 250 | sce | Equações Diferenciais.sce | clc
clear
close
// dy/dt=y^2-y sin(t)-cos(t), y(0)=0
function ydot=f(t,y)
ydot=y^2-y*sin(t)-cos(t);
endfunction
y0=0; // valor inicial de y no tempo inicial
t0=0; // tempo inicial
t=0:0.1:%pi; //escla de tempo
y=ode(y0,t0,t,f);
plot(t,y)
|
8fa48ac3ec743819b0511ec3bf829902626e30c4 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/DEVELOPMENT-LANGUAGES/germanic/ang.tst | ecba078710e4fd714d3f33e4dea4ffcce9488bec | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 212,979 | tst | ang.tst | rinc N;NOM;PL
rinc N;ACC;SG
rinc N;GEN;PL
rinc N;DAT;SG
rinc N;DAT;PL
rinc N;NOM;SG
rinc N;ACC;PL
rinc N;GEN;SG
gebedda N;NOM;PL
gebedda N;ACC;SG
gebedda N;NOM;SG
gebedda N;GEN;SG
gebedda N;DAT;PL
gebedda N;GEN;PL
gebedda N;DAT;SG
gebedda N;ACC;PL
flowan V;SBJV;PL;PRS
flowan V;IND;SG;1;PST
flowan V;IND;SG;3;PST
flowan V.PTCP;PST
flowan V;SBJV;PL;PST
flowan V;NFIN
flowan V.PTCP;PRS
flowan V;IMP;PL
flowan V;IND;SG;1;PRS
flowan V;SBJV;SG;PST
flowan V;IND;PL;PRS
flowan V;IND;SG;2;PRS
flowan V;IND;SG;2;PST
flowan V;SBJV;SG;PRS
flowan V;IND;PL;PST
flowan V;IND;SG;3;PRS
flowan V;IMP;SG
solian V;IND;PL;PST
solian V;SBJV;SG;PST
solian V;SBJV;PL;PRS
solian V.PTCP;PST
solian V;IND;SG;2;PRS
solian V;IND;SG;1;PRS
solian V;SBJV;PL;PST
solian V.PTCP;PRS
solian V;NFIN
solian V;IND;PL;PRS
solian V;SBJV;SG;PRS
solian V;IMP;SG
solian V;IMP;PL
solian V;IND;SG;3;PST
solian V;IND;SG;2;PST
solian V;SBJV;SG;PRS
solian V;IND;SG;1;PST
solian V;IND;PL;PRS
solian V;IND;SG;3;PRS
bolla N;NOM;SG
bolla N;GEN;SG
bolla N;ACC;PL
bolla N;ACC;SG
bolla N;DAT;SG
bolla N;DAT;PL
bolla N;NOM;PL
bolla N;GEN;PL
acennedlic ADJ;GEN;NEUT;SG;LGSPEC1
acennedlic ADJ;GEN;FEM;SG;LGSPEC1
acennedlic ADJ;GEN;NEUT;SG;LGSPEC2
acennedlic ADJ;INS;MASC;PL;LGSPEC2
acennedlic ADJ;NOM;NEUT;PL;LGSPEC2
acennedlic ADJ;ACC;NEUT;SG;LGSPEC1
acennedlic ADJ;INS;MASC;SG;LGSPEC1
acennedlic ADJ;INS;FEM;SG;LGSPEC2
acennedlic ADJ;ACC;FEM;SG;LGSPEC1
acennedlic ADJ;GEN;NEUT;PL;LGSPEC2
acennedlic ADJ;ACC;FEM;PL;LGSPEC2
acennedlic ADJ;INS;NEUT;PL;LGSPEC2
acennedlic ADJ;GEN;NEUT;PL;LGSPEC1
acennedlic ADJ;INS;MASC;PL;LGSPEC1
acennedlic ADJ;NOM;MASC;PL;LGSPEC1
acennedlic ADJ;NOM;NEUT;SG;LGSPEC2
acennedlic ADJ;NOM;FEM;PL;LGSPEC2
acennedlic ADJ;DAT;NEUT;SG;LGSPEC1
acennedlic ADJ;NOM;MASC;SG;LGSPEC1
acennedlic ADJ;DAT;NEUT;PL;LGSPEC2
acennedlic ADJ;DAT;MASC;PL;LGSPEC2
acennedlic ADJ;DAT;NEUT;PL;LGSPEC1
acennedlic ADJ;ACC;NEUT;SG;LGSPEC2
acennedlic ADJ;DAT;NEUT;SG;LGSPEC2
acennedlic ADJ;DAT;MASC;SG;LGSPEC2
acennedlic ADJ;ACC;NEUT;PL;LGSPEC2
acennedlic ADJ;NOM;MASC;SG;LGSPEC2
acennedlic ADJ;INS;NEUT;SG;LGSPEC1
acennedlic ADJ;GEN;FEM;SG;LGSPEC2
acennedlic ADJ;NOM;FEM;SG;LGSPEC2
acennedlic ADJ;ACC;MASC;PL;LGSPEC2
acennedlic ADJ;ACC;MASC;SG;LGSPEC1
acennedlic ADJ;INS;FEM;PL;LGSPEC1
acennedlic ADJ;INS;NEUT;PL;LGSPEC1
acennedlic ADJ;GEN;MASC;SG;LGSPEC2
acennedlic ADJ;ACC;FEM;PL;LGSPEC1
acennedlic ADJ;NOM;NEUT;PL;LGSPEC1
acennedlic ADJ;GEN;MASC;SG;LGSPEC1
acennedlic ADJ;NOM;NEUT;SG;LGSPEC1
acennedlic ADJ;DAT;FEM;SG;LGSPEC2
acennedlic ADJ;INS;MASC;SG;LGSPEC2
acennedlic ADJ;NOM;FEM;SG;LGSPEC1
acennedlic ADJ;GEN;FEM;PL;LGSPEC1
acennedlic ADJ;ACC;FEM;SG;LGSPEC2
acennedlic ADJ;DAT;FEM;SG;LGSPEC1
acennedlic ADJ;GEN;FEM;PL;LGSPEC2
acennedlic ADJ;NOM;NEUT;PL;LGSPEC2
acennedlic ADJ;INS;NEUT;SG;LGSPEC2
acennedlic ADJ;NOM;FEM;PL;LGSPEC2
acennedlic ADJ;ACC;MASC;PL;LGSPEC1
acennedlic ADJ;DAT;MASC;PL;LGSPEC1
acennedlic ADJ;GEN;FEM;PL;LGSPEC1
acennedlic ADJ;INS;FEM;PL;LGSPEC2
acennedlic ADJ;GEN;MASC;PL;LGSPEC2
acennedlic ADJ;DAT;FEM;PL;LGSPEC1
acennedlic ADJ;DAT;MASC;SG;LGSPEC1
acennedlic ADJ;ACC;MASC;SG;LGSPEC2
acennedlic ADJ;GEN;MASC;PL;LGSPEC1
acennedlic ADJ;INS;FEM;SG;LGSPEC1
acennedlic ADJ;DAT;FEM;PL;LGSPEC2
acennedlic ADJ;GEN;NEUT;PL;LGSPEC1
acennedlic ADJ;ACC;NEUT;PL;LGSPEC1
acennedlic ADJ;NOM;FEM;PL;LGSPEC1
acennedlic ADJ;NOM;MASC;PL;LGSPEC2
werod N;NOM;SG
werod N;GEN;PL
werod N;ACC;PL
werod N;DAT;PL
werod N;DAT;SG
werod N;NOM;PL
werod N;ACC;SG
werod N;GEN;SG
Crist N;GEN;SG
Crist N;DAT;SG
Crist N;ACC;SG
Crist N;NOM;SG
broc N;DAT;PL
broc N;GEN;PL
broc N;NOM;PL
broc N;ACC;PL
broc N;GEN;SG
broc N;DAT;SG
broc N;ACC;SG
broc N;NOM;SG
bodian V.PTCP;PRS
bodian V;SBJV;SG;PRS
bodian V;SBJV;PL;PRS
bodian V;SBJV;PL;PST
bodian V.PTCP;PST
bodian V;SBJV;SG;PST
bodian V;IND;SG;2;PST
bodian V;IND;PL;PST
bodian V;IND;SG;1;PST
bodian V;IMP;PL
bodian V;IND;SG;1;PRS
bodian V;IND;SG;2;PRS
bodian V;IND;PL;PRS
bodian V;IND;SG;3;PST
bodian V.PTCP;PST
bodian V;NFIN
bodian V;IND;SG;3;PRS
bodian V;IND;PL;PRS
bodian V;IMP;PL
bodian V;IMP;SG
bodian V;NFIN
clænsian V;IND;SG;3;PST
clænsian V;IND;SG;2;PST
clænsian V;IND;SG;1;PRS
clænsian V;IMP;SG
clænsian V;SBJV;SG;PST
clænsian V;SBJV;SG;PRS
clænsian V;SBJV;PL;PRS
clænsian V;IND;SG;1;PST
clænsian V;IMP;PL
clænsian V.PTCP;PST
clænsian V;NFIN
clænsian V;IND;PL;PRS
clænsian V;IND;SG;3;PRS
clænsian V;IND;SG;2;PRS
clænsian V.PTCP;PRS
clænsian V;IMP;PL
clænsian V;IND;PL;PRS
clænsian V.PTCP;PRS
clænsian V.PTCP;PST
clænsian V;IND;PL;PST
clænsian V;IND;SG;1;PRS
clænsian V;SBJV;PL;PST
yþan V;IND;SG;2;PST
yþan V;IND;PL;PRS
yþan V;IND;SG;1;PRS
yþan V;IND;SG;3;PRS
yþan V;IND;SG;1;PST
yþan V;IND;SG;3;PST
yþan V.PTCP;PST
yþan V;IND;SG;2;PRS
yþan V;NFIN
yþan V;SBJV;SG;PRS
yþan V;SBJV;PL;PST
yþan V;IMP;SG
yþan V;SBJV;PL;PRS
yþan V;IMP;PL
yþan V.PTCP;PRS
yþan V.PTCP;PST
yþan V;SBJV;SG;PST
yþan V;IND;PL;PST
yþan V;NFIN
linnan V;IND;PL;PST
linnan V;IMP;PL
linnan V;SBJV;PL;PRS
linnan V;IND;SG;2;PRS
linnan V;IMP;SG
linnan V;IND;SG;1;PST
linnan V;IND;SG;2;PST
linnan V;IND;SG;1;PRS
linnan V.PTCP;PST
linnan V;NFIN
linnan V;IND;PL;PRS
linnan V;SBJV;SG;PRS
linnan V.PTCP;PRS
linnan V;SBJV;SG;PST
linnan V;IND;SG;3;PST
linnan V;SBJV;PL;PST
linnan V;IMP;SG
linnan V;NFIN
linnan V;IND;SG;3;PRS
essian V;IMP;PL
essian V;IND;SG;1;PRS
essian V;SBJV;PL;PST
essian V;IND;PL;PST
essian V;SBJV;PL;PRS
essian V;IND;SG;2;PRS
essian V.PTCP;PST
essian V;IND;SG;3;PST
essian V;SBJV;SG;PST
essian V.PTCP;PRS
essian V;SBJV;SG;PRS
essian V;IMP;SG
essian V;IND;PL;PRS
essian V;IND;SG;3;PRS
essian V;IND;SG;1;PST
essian V;IND;SG;2;PST
essian V;NFIN
essian V;SBJV;SG;PRS
essian V;NFIN
essian V;IND;PL;PRS
essian V.PTCP;PST
irnan V;IND;SG;1;PST
irnan V;IND;SG;2;PST
irnan V;IND;SG;2;PRS
irnan V;NFIN
irnan V;SBJV;SG;PRS
irnan V.PTCP;PRS
irnan V;IMP;PL
irnan V;IND;SG;1;PRS
irnan V.PTCP;PST
irnan V;IND;PL;PRS
irnan V;IND;PL;PST
irnan V;SBJV;PL;PST
irnan V;IMP;SG
irnan V;SBJV;PL;PRS
irnan V;IND;SG;3;PST
irnan V.PTCP;PST
irnan V;IND;SG;3;PRS
irnan V;SBJV;SG;PST
ceorlboren ADJ;NOM;MASC;SG;LGSPEC1
ceorlboren ADJ;DAT;NEUT;PL;LGSPEC2
ceorlboren ADJ;ACC;NEUT;SG;LGSPEC2
ceorlboren ADJ;NOM;MASC;SG;LGSPEC2
ceorlboren ADJ;INS;MASC;PL;LGSPEC1
ceorlboren ADJ;NOM;FEM;PL;LGSPEC1
ceorlboren ADJ;NOM;FEM;PL;LGSPEC2
ceorlboren ADJ;INS;NEUT;SG;LGSPEC1
ceorlboren ADJ;INS;NEUT;SG;LGSPEC2
ceorlboren ADJ;GEN;MASC;SG;LGSPEC1
ceorlboren ADJ;INS;MASC;PL;LGSPEC2
ceorlboren ADJ;NOM;NEUT;SG;LGSPEC1
ceorlboren ADJ;DAT;FEM;PL;LGSPEC1
ceorlboren ADJ;ACC;MASC;PL;LGSPEC2
ceorlboren ADJ;DAT;MASC;SG;LGSPEC2
ceorlboren ADJ;ACC;MASC;SG;LGSPEC1
ceorlboren ADJ;NOM;NEUT;SG;LGSPEC2
ceorlboren ADJ;NOM;MASC;PL;LGSPEC2
ceorlboren ADJ;DAT;NEUT;SG;LGSPEC2
ceorlboren ADJ;NOM;FEM;SG;LGSPEC1
ceorlboren ADJ;GEN;FEM;PL;LGSPEC1
ceorlboren ADJ;GEN;MASC;PL;LGSPEC1
ceorlboren ADJ;DAT;NEUT;SG;LGSPEC1
ceorlboren ADJ;INS;FEM;PL;LGSPEC2
ceorlboren ADJ;GEN;MASC;SG;LGSPEC2
ceorlboren ADJ;DAT;FEM;SG;LGSPEC1
ceorlboren ADJ;ACC;NEUT;PL;LGSPEC1
ceorlboren ADJ;GEN;NEUT;SG;LGSPEC1
ceorlboren ADJ;GEN;FEM;PL;LGSPEC2
ceorlboren ADJ;NOM;MASC;PL;LGSPEC1
ceorlboren ADJ;INS;MASC;SG;LGSPEC2
ceorlboren ADJ;ACC;FEM;PL;LGSPEC2
ceorlboren ADJ;ACC;FEM;SG;LGSPEC1
ceorlboren ADJ;GEN;FEM;SG;LGSPEC2
ceorlboren ADJ;ACC;NEUT;PL;LGSPEC2
ceorlboren ADJ;DAT;MASC;SG;LGSPEC1
ceorlboren ADJ;INS;FEM;SG;LGSPEC2
ceorlboren ADJ;DAT;FEM;SG;LGSPEC2
ceorlboren ADJ;GEN;NEUT;SG;LGSPEC2
ceorlboren ADJ;NOM;NEUT;PL;LGSPEC1
ceorlboren ADJ;DAT;MASC;PL;LGSPEC1
ceorlboren ADJ;ACC;FEM;SG;LGSPEC2
ceorlboren ADJ;GEN;NEUT;PL;LGSPEC1
ceorlboren ADJ;DAT;MASC;PL;LGSPEC2
ceorlboren ADJ;GEN;NEUT;PL;LGSPEC2
ceorlboren ADJ;ACC;FEM;PL;LGSPEC1
ceorlboren ADJ;NOM;NEUT;PL;LGSPEC2
ceorlboren ADJ;GEN;MASC;PL;LGSPEC2
ceorlboren ADJ;INS;FEM;PL;LGSPEC1
ceorlboren ADJ;INS;MASC;SG;LGSPEC1
ceorlboren ADJ;NOM;FEM;SG;LGSPEC2
ceorlboren ADJ;ACC;MASC;SG;LGSPEC2
ceorlboren ADJ;GEN;FEM;SG;LGSPEC1
ceorlboren ADJ;ACC;NEUT;SG;LGSPEC1
ceorlboren ADJ;INS;FEM;SG;LGSPEC1
ceorlboren ADJ;ACC;MASC;PL;LGSPEC1
ceorlboren ADJ;INS;NEUT;PL;LGSPEC2
ceorlboren ADJ;DAT;NEUT;PL;LGSPEC1
ceorlboren ADJ;DAT;FEM;PL;LGSPEC2
ceorlboren ADJ;INS;NEUT;PL;LGSPEC1
herian V;IND;SG;2;PST
herian V;SBJV;SG;PRS
herian V;SBJV;PL;PST
herian V;IMP;SG
herian V;IMP;PL
herian V;NFIN
herian V;SBJV;PL;PRS
herian V;IND;PL;PRS
herian V;IND;SG;3;PST
herian V;IND;SG;2;PRS
herian V.PTCP;PST
herian V;SBJV;SG;PST
herian V;IND;SG;3;PRS
herian V;IND;SG;1;PST
herian V;IND;SG;1;PRS
herian V;IND;PL;PST
herian V.PTCP;PRS
eorðe N;GEN;PL
eorðe N;NOM;SG
eorðe N;ACC;SG
eorðe N;DAT;PL
eorðe N;GEN;SG
eorðe N;NOM;PL
eorðe N;ACC;PL
eorðe N;DAT;SG
sealh N;ACC;PL
sealh N;GEN;SG
sealh N;DAT;SG
sealh N;GEN;PL
sealh N;NOM;PL
sealh N;NOM;SG
sealh N;ACC;SG
sealh N;DAT;PL
yrre N;ACC;PL
yrre N;GEN;PL
yrre N;DAT;SG
yrre N;GEN;SG
yrre N;DAT;PL
yrre N;NOM;PL
yrre N;NOM;SG
yrre N;ACC;SG
mealwe N;DAT;PL
mealwe N;DAT;SG
mealwe N;NOM;PL
mealwe N;ACC;SG
mealwe N;ACC;PL
mealwe N;GEN;PL
mealwe N;GEN;SG
mealwe N;NOM;SG
edstaþeliend N;GEN;SG
edstaþeliend N;DAT;PL
edstaþeliend N;ACC;SG
edstaþeliend N;DAT;SG
edstaþeliend N;ACC;PL
edstaþeliend N;GEN;PL
edstaþeliend N;NOM;PL
edstaþeliend N;ACC;PL
edstaþeliend N;NOM;PL
edstaþeliend N;NOM;SG
bodig N;NOM;SG
bodig N;NOM;PL
bodig N;ACC;PL
bodig N;DAT;PL
bodig N;DAT;SG
bodig N;GEN;SG
bodig N;ACC;SG
bodig N;GEN;PL
ielfetu N;ACC;PL
ielfetu N;NOM;PL
ielfetu N;ACC;SG
ielfetu N;NOM;SG
ielfetu N;DAT;PL
ielfetu N;GEN;PL
ielfetu N;GEN;SG
ielfetu N;DAT;SG
lædan V;IND;PL;PST
lædan V;NFIN
lædan V;SBJV;PL;PST
lædan V;IND;SG;3;PST
lædan V.PTCP;PRS
lædan V;SBJV;SG;PST
lædan V;IND;PL;PRS
lædan V;IND;SG;1;PRS
lædan V;IMP;SG
lædan V;IND;SG;2;PRS
lædan V;IND;SG;1;PST
lædan V;SBJV;PL;PRS
lædan V;IND;SG;3;PRS
lædan V.PTCP;PST
lædan V;IMP;PL
lædan V;SBJV;SG;PRS
lædan V;IND;SG;2;PST
afigen ADJ;GEN;FEM;PL;LGSPEC1
afigen ADJ;GEN;NEUT;PL;LGSPEC1
afigen ADJ;NOM;FEM;SG;LGSPEC1
afigen ADJ;GEN;MASC;PL;LGSPEC2
afigen ADJ;ACC;NEUT;PL;LGSPEC1
afigen ADJ;INS;FEM;SG;LGSPEC2
afigen ADJ;ACC;NEUT;SG;LGSPEC2
afigen ADJ;NOM;FEM;PL;LGSPEC1
afigen ADJ;ACC;MASC;PL;LGSPEC1
afigen ADJ;INS;MASC;PL;LGSPEC2
afigen ADJ;INS;NEUT;SG;LGSPEC1
afigen ADJ;NOM;FEM;PL;LGSPEC2
afigen ADJ;GEN;NEUT;PL;LGSPEC2
afigen ADJ;INS;NEUT;PL;LGSPEC2
afigen ADJ;ACC;MASC;SG;LGSPEC2
afigen ADJ;ACC;FEM;PL;LGSPEC2
afigen ADJ;DAT;MASC;SG;LGSPEC2
afigen ADJ;GEN;FEM;SG;LGSPEC1
afigen ADJ;GEN;MASC;SG;LGSPEC2
afigen ADJ;INS;FEM;PL;LGSPEC2
afigen ADJ;DAT;NEUT;SG;LGSPEC2
afigen ADJ;DAT;MASC;PL;LGSPEC2
afigen ADJ;GEN;MASC;PL;LGSPEC1
afigen ADJ;GEN;NEUT;SG;LGSPEC2
afigen ADJ;NOM;NEUT;PL;LGSPEC1
afigen ADJ;NOM;MASC;SG;LGSPEC1
afigen ADJ;DAT;NEUT;SG;LGSPEC1
afigen ADJ;ACC;MASC;PL;LGSPEC2
afigen ADJ;INS;MASC;SG;LGSPEC1
afigen ADJ;NOM;NEUT;SG;LGSPEC1
afigen ADJ;ACC;FEM;PL;LGSPEC1
afigen ADJ;NOM;MASC;PL;LGSPEC2
afigen ADJ;NOM;NEUT;PL;LGSPEC2
afigen ADJ;NOM;MASC;PL;LGSPEC1
afigen ADJ;DAT;MASC;SG;LGSPEC1
afigen ADJ;ACC;NEUT;SG;LGSPEC1
afigen ADJ;DAT;FEM;PL;LGSPEC1
afigen ADJ;GEN;MASC;SG;LGSPEC1
afigen ADJ;INS;MASC;PL;LGSPEC1
afigen ADJ;ACC;FEM;SG;LGSPEC1
afigen ADJ;NOM;MASC;SG;LGSPEC2
afigen ADJ;NOM;FEM;SG;LGSPEC2
afigen ADJ;INS;NEUT;PL;LGSPEC1
afigen ADJ;DAT;NEUT;PL;LGSPEC1
afigen ADJ;DAT;NEUT;PL;LGSPEC2
afigen ADJ;ACC;FEM;PL;LGSPEC2
afigen ADJ;ACC;NEUT;PL;LGSPEC2
afigen ADJ;ACC;MASC;SG;LGSPEC1
afigen ADJ;GEN;FEM;SG;LGSPEC2
afigen ADJ;DAT;FEM;PL;LGSPEC2
afigen ADJ;INS;MASC;SG;LGSPEC2
afigen ADJ;INS;FEM;PL;LGSPEC1
afigen ADJ;GEN;FEM;PL;LGSPEC2
afigen ADJ;INS;FEM;SG;LGSPEC1
afigen ADJ;DAT;MASC;PL;LGSPEC1
afigen ADJ;DAT;FEM;SG;LGSPEC1
afigen ADJ;INS;NEUT;SG;LGSPEC2
afigen ADJ;NOM;NEUT;SG;LGSPEC2
afigen ADJ;GEN;MASC;PL;LGSPEC1
afigen ADJ;ACC;FEM;SG;LGSPEC2
afigen ADJ;GEN;NEUT;SG;LGSPEC1
afigen ADJ;DAT;FEM;SG;LGSPEC2
afigen ADJ;GEN;FEM;PL;LGSPEC1
mihtlic ADJ;NOM;MASC;PL;LGSPEC1
mihtlic ADJ;INS;NEUT;PL;LGSPEC1
mihtlic ADJ;INS;NEUT;SG;LGSPEC2
mihtlic ADJ;DAT;MASC;PL;LGSPEC1
mihtlic ADJ;ACC;NEUT;PL;LGSPEC2
mihtlic ADJ;GEN;FEM;SG;LGSPEC1
mihtlic ADJ;GEN;FEM;PL;LGSPEC1
mihtlic ADJ;GEN;NEUT;SG;LGSPEC2
mihtlic ADJ;GEN;NEUT;PL;LGSPEC1
mihtlic ADJ;ACC;FEM;PL;LGSPEC2
mihtlic ADJ;INS;FEM;PL;LGSPEC2
mihtlic ADJ;GEN;MASC;PL;LGSPEC2
mihtlic ADJ;GEN;MASC;SG;LGSPEC1
mihtlic ADJ;INS;NEUT;PL;LGSPEC2
mihtlic ADJ;INS;MASC;PL;LGSPEC1
mihtlic ADJ;ACC;FEM;PL;LGSPEC1
mihtlic ADJ;DAT;FEM;PL;LGSPEC2
mihtlic ADJ;GEN;MASC;PL;LGSPEC1
mihtlic ADJ;ACC;NEUT;PL;LGSPEC1
mihtlic ADJ;DAT;NEUT;PL;LGSPEC2
mihtlic ADJ;DAT;MASC;SG;LGSPEC1
mihtlic ADJ;ACC;MASC;PL;LGSPEC1
mihtlic ADJ;ACC;MASC;PL;LGSPEC2
mihtlic ADJ;ACC;NEUT;SG;LGSPEC1
mihtlic ADJ;GEN;NEUT;PL;LGSPEC2
mihtlic ADJ;INS;NEUT;SG;LGSPEC1
mihtlic ADJ;INS;MASC;SG;LGSPEC2
mihtlic ADJ;NOM;FEM;SG;LGSPEC2
mihtlic ADJ;DAT;MASC;SG;LGSPEC2
mihtlic ADJ;GEN;FEM;SG;LGSPEC2
mihtlic ADJ;INS;FEM;SG;LGSPEC1
mihtlic ADJ;NOM;NEUT;SG;LGSPEC1
mihtlic ADJ;NOM;NEUT;PL;LGSPEC2
mihtlic ADJ;GEN;NEUT;SG;LGSPEC1
mihtlic ADJ;GEN;FEM;PL;LGSPEC2
mihtlic ADJ;INS;FEM;SG;LGSPEC2
mihtlic ADJ;ACC;MASC;SG;LGSPEC1
mihtlic ADJ;INS;FEM;PL;LGSPEC1
mihtlic ADJ;GEN;MASC;SG;LGSPEC2
mihtlic ADJ;ACC;FEM;SG;LGSPEC2
mihtlic ADJ;NOM;MASC;SG;LGSPEC1
mihtlic ADJ;DAT;FEM;SG;LGSPEC1
mihtlic ADJ;NOM;FEM;PL;LGSPEC2
mihtlic ADJ;NOM;FEM;PL;LGSPEC2
mihtlic ADJ;NOM;NEUT;PL;LGSPEC2
mihtlic ADJ;NOM;MASC;PL;LGSPEC2
mihtlic ADJ;NOM;NEUT;SG;LGSPEC2
mihtlic ADJ;INS;MASC;SG;LGSPEC1
mihtlic ADJ;DAT;FEM;SG;LGSPEC2
mihtlic ADJ;NOM;MASC;SG;LGSPEC2
mihtlic ADJ;DAT;MASC;PL;LGSPEC2
mihtlic ADJ;ACC;FEM;SG;LGSPEC1
mihtlic ADJ;NOM;FEM;PL;LGSPEC1
mihtlic ADJ;ACC;MASC;SG;LGSPEC2
mihtlic ADJ;INS;MASC;PL;LGSPEC2
mihtlic ADJ;DAT;NEUT;SG;LGSPEC2
mihtlic ADJ;DAT;NEUT;SG;LGSPEC1
mihtlic ADJ;DAT;NEUT;PL;LGSPEC1
mihtlic ADJ;NOM;NEUT;PL;LGSPEC1
mihtlic ADJ;ACC;NEUT;SG;LGSPEC2
mihtlic ADJ;NOM;FEM;SG;LGSPEC1
mihtlic ADJ;ACC;FEM;PL;LGSPEC2
mihtlic ADJ;DAT;FEM;PL;LGSPEC1
stincan V;IND;SG;1;PRS
stincan V;IMP;PL
stincan V;IND;SG;1;PST
stincan V;NFIN
stincan V;IND;SG;2;PRS
stincan V;IND;PL;PST
stincan V.PTCP;PRS
stincan V;IND;SG;3;PST
stincan V;IMP;SG
stincan V.PTCP;PST
stincan V;SBJV;PL;PRS
stincan V;SBJV;PL;PST
stincan V;IND;SG;2;PST
stincan V;SBJV;SG;PRS
stincan V;IND;PL;PRS
stincan V;IND;SG;3;PRS
stincan V;SBJV;SG;PST
stincan V.PTCP;PST
gram ADJ;NOM;NEUT;SG;LGSPEC2
gram ADJ;INS;NEUT;PL;LGSPEC1
gram ADJ;GEN;NEUT;PL;LGSPEC1
gram ADJ;GEN;MASC;PL;LGSPEC1
gram ADJ;GEN;FEM;SG;LGSPEC1
gram ADJ;GEN;FEM;PL;LGSPEC1
gram ADJ;INS;NEUT;PL;LGSPEC2
gram ADJ;GEN;MASC;SG;LGSPEC1
gram ADJ;DAT;NEUT;SG;LGSPEC1
gram ADJ;INS;NEUT;SG;LGSPEC2
gram ADJ;DAT;MASC;PL;LGSPEC1
gram ADJ;NOM;FEM;PL;LGSPEC1
gram ADJ;NOM;MASC;SG;LGSPEC2
gram ADJ;ACC;MASC;SG;LGSPEC2
gram ADJ;ACC;MASC;PL;LGSPEC2
gram ADJ;ACC;FEM;SG;LGSPEC2
gram ADJ;DAT;MASC;SG;LGSPEC1
gram ADJ;GEN;MASC;SG;LGSPEC2
gram ADJ;ACC;FEM;PL;LGSPEC2
gram ADJ;ACC;FEM;PL;LGSPEC1
gram ADJ;GEN;MASC;PL;LGSPEC2
gram ADJ;NOM;FEM;SG;LGSPEC1
gram ADJ;NOM;NEUT;PL;LGSPEC1
gram ADJ;INS;FEM;PL;LGSPEC2
gram ADJ;GEN;NEUT;PL;LGSPEC2
gram ADJ;DAT;NEUT;SG;LGSPEC2
gram ADJ;ACC;NEUT;SG;LGSPEC1
gram ADJ;ACC;NEUT;PL;LGSPEC1
gram ADJ;NOM;MASC;SG;LGSPEC1
gram ADJ;GEN;NEUT;SG;LGSPEC2
gram ADJ;DAT;NEUT;PL;LGSPEC2
gram ADJ;NOM;NEUT;PL;LGSPEC2
gram ADJ;DAT;FEM;SG;LGSPEC1
gram ADJ;ACC;NEUT;SG;LGSPEC2
gram ADJ;DAT;FEM;PL;LGSPEC1
gram ADJ;DAT;MASC;SG;LGSPEC2
gram ADJ;ACC;FEM;SG;LGSPEC1
gram ADJ;INS;MASC;SG;LGSPEC2
gram ADJ;GEN;FEM;SG;LGSPEC2
gram ADJ;NOM;MASC;PL;LGSPEC1
gram ADJ;ACC;NEUT;PL;LGSPEC2
gram ADJ;NOM;FEM;PL;LGSPEC2
gram ADJ;NOM;NEUT;SG;LGSPEC1
gram ADJ;GEN;NEUT;SG;LGSPEC1
gram ADJ;NOM;MASC;PL;LGSPEC2
gram ADJ;INS;MASC;PL;LGSPEC2
gram ADJ;DAT;FEM;SG;LGSPEC2
gram ADJ;INS;NEUT;SG;LGSPEC1
gram ADJ;ACC;FEM;PL;LGSPEC2
gram ADJ;INS;MASC;PL;LGSPEC1
gram ADJ;GEN;FEM;PL;LGSPEC2
gram ADJ;INS;MASC;SG;LGSPEC1
gram ADJ;INS;FEM;SG;LGSPEC2
gram ADJ;DAT;FEM;PL;LGSPEC2
gram ADJ;NOM;FEM;SG;LGSPEC2
gram ADJ;ACC;NEUT;PL;LGSPEC2
gram ADJ;INS;FEM;PL;LGSPEC1
gram ADJ;INS;FEM;SG;LGSPEC1
gram ADJ;NOM;NEUT;PL;LGSPEC2
gram ADJ;ACC;MASC;PL;LGSPEC1
gram ADJ;DAT;NEUT;PL;LGSPEC1
gram ADJ;ACC;MASC;SG;LGSPEC1
gram ADJ;NOM;FEM;PL;LGSPEC2
gram ADJ;DAT;MASC;PL;LGSPEC2
Englisc ADJ;INS;FEM;PL;LGSPEC1
Englisc ADJ;GEN;FEM;PL;LGSPEC1
Englisc ADJ;INS;NEUT;PL;LGSPEC2
Englisc ADJ;ACC;NEUT;SG;LGSPEC1
Englisc ADJ;NOM;FEM;PL;LGSPEC1
Englisc ADJ;ACC;NEUT;PL;LGSPEC2
Englisc ADJ;NOM;NEUT;PL;LGSPEC2
Englisc ADJ;DAT;FEM;SG;LGSPEC1
Englisc ADJ;INS;FEM;SG;LGSPEC2
Englisc ADJ;GEN;NEUT;SG;LGSPEC1
Englisc ADJ;DAT;NEUT;PL;LGSPEC2
Englisc ADJ;GEN;MASC;SG;LGSPEC1
Englisc ADJ;INS;FEM;SG;LGSPEC1
Englisc ADJ;DAT;FEM;SG;LGSPEC2
Englisc ADJ;DAT;NEUT;SG;LGSPEC1
Englisc ADJ;NOM;NEUT;PL;LGSPEC1
Englisc ADJ;NOM;FEM;PL;LGSPEC2
Englisc ADJ;NOM;NEUT;SG;LGSPEC2
Englisc ADJ;ACC;FEM;SG;LGSPEC2
Englisc ADJ;ACC;MASC;SG;LGSPEC2
Englisc ADJ;GEN;FEM;SG;LGSPEC2
Englisc ADJ;INS;MASC;PL;LGSPEC2
Englisc ADJ;INS;FEM;PL;LGSPEC2
Englisc ADJ;INS;MASC;SG;LGSPEC1
Englisc ADJ;ACC;NEUT;PL;LGSPEC1
Englisc ADJ;GEN;MASC;SG;LGSPEC2
Englisc ADJ;NOM;FEM;SG;LGSPEC2
Englisc ADJ;ACC;FEM;PL;LGSPEC2
Englisc ADJ;DAT;FEM;PL;LGSPEC2
Englisc ADJ;GEN;MASC;PL;LGSPEC2
Englisc ADJ;GEN;MASC;PL;LGSPEC1
Englisc ADJ;INS;NEUT;PL;LGSPEC1
Englisc ADJ;ACC;NEUT;SG;LGSPEC2
Englisc ADJ;INS;NEUT;SG;LGSPEC2
Englisc ADJ;INS;MASC;PL;LGSPEC1
Englisc ADJ;ACC;MASC;SG;LGSPEC1
Englisc ADJ;INS;NEUT;SG;LGSPEC1
Englisc ADJ;NOM;FEM;SG;LGSPEC1
Englisc ADJ;GEN;NEUT;SG;LGSPEC2
Englisc ADJ;DAT;MASC;PL;LGSPEC1
Englisc ADJ;ACC;FEM;SG;LGSPEC1
Englisc ADJ;GEN;FEM;PL;LGSPEC2
Englisc ADJ;ACC;FEM;PL;LGSPEC1
Englisc ADJ;GEN;FEM;SG;LGSPEC1
Englisc ADJ;DAT;FEM;PL;LGSPEC1
Englisc ADJ;ACC;MASC;PL;LGSPEC1
Englisc ADJ;DAT;MASC;SG;LGSPEC2
Englisc ADJ;INS;MASC;SG;LGSPEC2
Englisc ADJ;NOM;MASC;SG;LGSPEC2
Englisc ADJ;GEN;NEUT;PL;LGSPEC1
Englisc ADJ;DAT;NEUT;SG;LGSPEC2
Englisc ADJ;NOM;NEUT;PL;LGSPEC2
Englisc ADJ;GEN;NEUT;PL;LGSPEC2
Englisc ADJ;DAT;NEUT;PL;LGSPEC1
Englisc ADJ;NOM;NEUT;SG;LGSPEC1
Englisc ADJ;NOM;MASC;PL;LGSPEC2
Englisc ADJ;NOM;MASC;PL;LGSPEC1
Englisc ADJ;NOM;MASC;SG;LGSPEC1
Englisc ADJ;DAT;MASC;SG;LGSPEC1
Englisc ADJ;ACC;MASC;PL;LGSPEC2
Englisc ADJ;NOM;FEM;PL;LGSPEC2
Englisc ADJ;DAT;MASC;PL;LGSPEC2
sƿiþ ADJ;ACC;MASC;SG;LGSPEC1
sƿiþ ADJ;ACC;PL;LGSPEC1
sƿiþ ADJ;NOM;FEM;PL;LGSPEC2
sƿiþ ADJ;ACC;FEM;SG;LGSPEC2
sƿiþ ADJ;ACC;NEUT;SG;LGSPEC2
sƿiþ ADJ;NOM;NEUT;PL;LGSPEC2
sƿiþ ADJ;DAT;PL;LGSPEC1
sƿiþ ADJ;GEN;FEM;SG;LGSPEC2
sƿiþ ADJ;DAT;FEM;SG;LGSPEC2
sƿiþ ADJ;ACC;FEM;SG;LGSPEC1
sƿiþ ADJ;NOM;NEUT;SG;LGSPEC1
sƿiþ ADJ;DAT;PL;LGSPEC2
sƿiþ ADJ;ACC;MASC;PL;LGSPEC2
sƿiþ ADJ;NOM;MASC;PL;LGSPEC2
sƿiþ ADJ;GEN;NEUT;SG;LGSPEC2
sƿiþ ADJ;ACC;NEUT;PL;LGSPEC2
sƿiþ ADJ;INS;MASC;SG;LGSPEC2
sƿiþ ADJ;DAT;SG;LGSPEC1
sƿiþ ADJ;ACC;FEM;PL;LGSPEC2
sƿiþ ADJ;NOM;SG;LGSPEC2
sƿiþ ADJ;NOM;MASC;SG;LGSPEC1
sƿiþ ADJ;NOM;FEM;SG;LGSPEC1
sƿiþ ADJ;ACC;MASC;SG;LGSPEC2
sƿiþ ADJ;ACC;NEUT;SG;LGSPEC1
sƿiþ ADJ;GEN;MASC;SG;LGSPEC2
sƿiþ ADJ;GEN;SG;LGSPEC1
sƿiþ ADJ;NOM;PL;LGSPEC1
sƿiþ ADJ;GEN;PL;LGSPEC1
sƿiþ ADJ;NOM;NEUT;PL;LGSPEC2
sƿiþ ADJ;DAT;NEUT;SG;LGSPEC2
sƿiþ ADJ;DAT;MASC;SG;LGSPEC2
sƿiþ ADJ;GEN;PL;LGSPEC1
sƿiþ ADJ;INS;NEUT;SG;LGSPEC2
sƿiþ ADJ;GEN;PL;LGSPEC2
æced N;ACC;SG
æced N;GEN;SG
æced N;DAT;PL
æced N;NOM;PL
æced N;GEN;PL
æced N;NOM;SG
æced N;DAT;SG
æced N;ACC;PL
isceald ADJ;DAT;MASC;SG;LGSPEC2
isceald ADJ;INS;MASC;SG;LGSPEC2
isceald ADJ;GEN;PL;LGSPEC1
isceald ADJ;ACC;NEUT;PL;LGSPEC2
isceald ADJ;ACC;MASC;SG;LGSPEC1
isceald ADJ;GEN;NEUT;SG;LGSPEC2
isceald ADJ;ACC;PL;LGSPEC1
isceald ADJ;INS;NEUT;SG;LGSPEC2
isceald ADJ;DAT;SG;LGSPEC1
isceald ADJ;ACC;MASC;SG;LGSPEC2
isceald ADJ;ACC;MASC;PL;LGSPEC2
isceald ADJ;GEN;SG;LGSPEC1
isceald ADJ;GEN;PL;LGSPEC2
isceald ADJ;NOM;MASC;PL;LGSPEC2
isceald ADJ;DAT;NEUT;SG;LGSPEC2
isceald ADJ;ACC;NEUT;SG;LGSPEC2
isceald ADJ;DAT;PL;LGSPEC2
isceald ADJ;NOM;PL;LGSPEC1
isceald ADJ;ACC;FEM;SG;LGSPEC1
isceald ADJ;NOM;FEM;SG;LGSPEC1
isceald ADJ;DAT;PL;LGSPEC1
isceald ADJ;NOM;NEUT;PL;LGSPEC2
isceald ADJ;NOM;NEUT;SG;LGSPEC1
isceald ADJ;NOM;NEUT;PL;LGSPEC2
isceald ADJ;ACC;NEUT;PL;LGSPEC2
isceald ADJ;ACC;FEM;SG;LGSPEC2
isceald ADJ;GEN;PL;LGSPEC1
isceald ADJ;NOM;SG;LGSPEC2
isceald ADJ;ACC;NEUT;SG;LGSPEC1
isceald ADJ;NOM;FEM;PL;LGSPEC2
isceald ADJ;ACC;FEM;PL;LGSPEC2
isceald ADJ;GEN;MASC;SG;LGSPEC2
isceald ADJ;DAT;FEM;SG;LGSPEC2
isceald ADJ;NOM;MASC;SG;LGSPEC1
isceald ADJ;GEN;FEM;SG;LGSPEC2
belgan V;NFIN
belgan V;IND;SG;3;PST
belgan V;SBJV;SG;PRS
belgan V;IND;SG;2;PST
belgan V;IND;PL;PST
belgan V;SBJV;PL;PST
belgan V;IND;SG;2;PRS
belgan V.PTCP;PST
belgan V;IMP;SG
belgan V;IND;SG;3;PRS
belgan V.PTCP;PRS
belgan V;SBJV;SG;PST
belgan V;IMP;PL
belgan V;SBJV;PL;PRS
belgan V;IND;SG;1;PST
belgan V;IND;SG;1;PRS
belgan V;IND;PL;PRS
gefan V;IND;SG;3;PRS
gefan V.PTCP;PST
gefan V;IMP;PL
gefan V;SBJV;PL;PRS
gefan V;IND;SG;1;PRS
gefan V.PTCP;PRS
gefan V;SBJV;PL;PST
gefan V;NFIN
gefan V;IND;PL;PRS
gefan V;IND;PL;PST
gefan V;SBJV;SG;PST
gefan V;IND;SG;2;PST
gefan V;IMP;SG
gefan V;SBJV;SG;PRS
gefan V;IND;SG;2;PRS
gefan V;IND;SG;3;PST
gefan V;IND;SG;1;PST
swefan V;SBJV;PL;PRS
swefan V;IND;SG;1;PST
swefan V;IND;SG;2;PST
swefan V;IMP;SG
swefan V.PTCP;PST
swefan V.PTCP;PRS
swefan V;IND;SG;3;PST
swefan V;SBJV;SG;PST
swefan V;IND;SG;2;PRS
swefan V;SBJV;SG;PRS
swefan V;SBJV;PL;PST
swefan V;IMP;PL
swefan V;IND;SG;1;PRS
swefan V;IND;SG;3;PRS
swefan V;NFIN
swefan V;IND;PL;PRS
swefan V;IND;PL;PST
helma N;DAT;SG
helma N;ACC;SG
helma N;ACC;PL
helma N;DAT;PL
helma N;GEN;PL
helma N;NOM;PL
helma N;GEN;SG
helma N;NOM;SG
modig ADJ;NOM;FEM;PL;LGSPEC2
modig ADJ;INS;NEUT;SG;LGSPEC2
modig ADJ;GEN;SG;LGSPEC1
modig ADJ;NOM;NEUT;SG;LGSPEC1
modig ADJ;ACC;MASC;PL;LGSPEC2
modig ADJ;DAT;PL;LGSPEC1
modig ADJ;DAT;MASC;SG;LGSPEC2
modig ADJ;GEN;PL;LGSPEC1
modig ADJ;ACC;NEUT;SG;LGSPEC1
modig ADJ;DAT;NEUT;SG;LGSPEC2
modig ADJ;NOM;FEM;SG;LGSPEC1
modig ADJ;DAT;SG;LGSPEC1
modig ADJ;NOM;MASC;SG;LGSPEC2
modig ADJ;GEN;MASC;SG;LGSPEC2
modig ADJ;NOM;NEUT;SG;LGSPEC2
modig ADJ;NOM;MASC;PL;LGSPEC2
modig ADJ;NOM;MASC;SG;LGSPEC1
modig ADJ;ACC;FEM;SG;LGSPEC1
modig ADJ;NOM;FEM;SG;LGSPEC2
modig ADJ;ACC;NEUT;SG;LGSPEC2
modig ADJ;ACC;FEM;PL;LGSPEC2
modig ADJ;DAT;FEM;SG;LGSPEC2
modig ADJ;GEN;PL;LGSPEC2
modig ADJ;ACC;NEUT;PL;LGSPEC2
modig ADJ;ACC;MASC;SG;LGSPEC1
modig ADJ;NOM;NEUT;PL;LGSPEC2
modig ADJ;GEN;NEUT;SG;LGSPEC2
modig ADJ;ACC;PL;LGSPEC1
modig ADJ;DAT;PL;LGSPEC2
modig ADJ;INS;MASC;SG;LGSPEC2
modig ADJ;ACC;FEM;SG;LGSPEC2
modig ADJ;NOM;PL;LGSPEC1
modig ADJ;ACC;MASC;SG;LGSPEC2
modig ADJ;NOM;FEM;SG;LGSPEC2
modig ADJ;INS;MASC;SG;LGSPEC2
modig ADJ;NOM;NEUT;PL;LGSPEC2
modig ADJ;GEN;PL;LGSPEC1
modig ADJ;NOM;MASC;SG;LGSPEC1
modig ADJ;ACC;PL;LGSPEC1
modig ADJ;NOM;NEUT;SG;LGSPEC1
modig ADJ;ACC;NEUT;SG;LGSPEC2
modig ADJ;NOM;MASC;PL;LGSPEC2
modig ADJ;GEN;FEM;SG;LGSPEC2
modig ADJ;NOM;FEM;SG;LGSPEC1
modig ADJ;ACC;FEM;SG;LGSPEC1
modig ADJ;INS;NEUT;SG;LGSPEC2
modig ADJ;ACC;NEUT;PL;LGSPEC2
modig ADJ;NOM;PL;LGSPEC1
modig ADJ;DAT;PL;LGSPEC1
modig ADJ;ACC;MASC;PL;LGSPEC2
wom N;DAT;SG
wom N;GEN;PL
wom N;DAT;PL
wom N;ACC;SG
wom N;NOM;SG
wom N;NOM;PL
wom N;GEN;SG
wom N;ACC;PL
wordgecwide N;NOM;PL
wordgecwide N;DAT;SG
wordgecwide N;GEN;PL
wordgecwide N;ACC;SG
wordgecwide N;NOM;SG
wordgecwide N;GEN;SG
wordgecwide N;ACC;PL
wordgecwide N;DAT;PL
hæfen N;NOM;PL
hæfen N;GEN;PL
hæfen N;ACC;SG
hæfen N;DAT;SG
hæfen N;NOM;SG
hæfen N;ACC;PL
hæfen N;DAT;PL
hæfen N;GEN;SG
hæfen N;ACC;PL
halbære ADJ;NOM;NEUT;PL;LGSPEC2
halbære ADJ;ACC;MASC;SG;LGSPEC2
halbære ADJ;ACC;FEM;PL;LGSPEC1
halbære ADJ;DAT;MASC;PL;LGSPEC2
halbære ADJ;ACC;NEUT;PL;LGSPEC2
halbære ADJ;INS;MASC;SG;LGSPEC1
halbære ADJ;NOM;MASC;SG;LGSPEC1
halbære ADJ;NOM;NEUT;PL;LGSPEC1
halbære ADJ;ACC;FEM;SG;LGSPEC2
halbære ADJ;NOM;FEM;PL;LGSPEC2
halbære ADJ;DAT;MASC;SG;LGSPEC1
halbære ADJ;GEN;NEUT;SG;LGSPEC1
halbære ADJ;NOM;FEM;SG;LGSPEC1
halbære ADJ;INS;MASC;PL;LGSPEC1
halbære ADJ;ACC;NEUT;SG;LGSPEC1
halbære ADJ;GEN;FEM;PL;LGSPEC1
halbære ADJ;INS;FEM;PL;LGSPEC2
halbære ADJ;GEN;NEUT;SG;LGSPEC2
halbære ADJ;ACC;NEUT;PL;LGSPEC1
halbære ADJ;INS;NEUT;PL;LGSPEC2
halbære ADJ;ACC;FEM;PL;LGSPEC2
halbære ADJ;GEN;NEUT;PL;LGSPEC1
halbære ADJ;DAT;NEUT;SG;LGSPEC1
halbære ADJ;INS;NEUT;SG;LGSPEC2
halbære ADJ;INS;NEUT;PL;LGSPEC1
halbære ADJ;GEN;FEM;PL;LGSPEC2
halbære ADJ;INS;FEM;SG;LGSPEC1
halbære ADJ;GEN;MASC;SG;LGSPEC2
halbære ADJ;GEN;MASC;PL;LGSPEC1
halbære ADJ;DAT;FEM;PL;LGSPEC1
halbære ADJ;INS;MASC;PL;LGSPEC2
halbære ADJ;NOM;MASC;PL;LGSPEC2
halbære ADJ;ACC;NEUT;SG;LGSPEC2
halbære ADJ;GEN;MASC;PL;LGSPEC2
halbære ADJ;INS;NEUT;SG;LGSPEC1
halbære ADJ;ACC;MASC;PL;LGSPEC2
halbære ADJ;DAT;FEM;SG;LGSPEC2
halbære ADJ;DAT;NEUT;SG;LGSPEC2
halbære ADJ;ACC;MASC;PL;LGSPEC1
halbære ADJ;INS;FEM;PL;LGSPEC1
halbære ADJ;DAT;NEUT;PL;LGSPEC1
halbære ADJ;GEN;MASC;SG;LGSPEC1
halbære ADJ;ACC;MASC;SG;LGSPEC1
halbære ADJ;GEN;NEUT;PL;LGSPEC2
halbære ADJ;GEN;FEM;SG;LGSPEC1
halbære ADJ;GEN;FEM;SG;LGSPEC2
halbære ADJ;NOM;NEUT;PL;LGSPEC2
halbære ADJ;DAT;MASC;SG;LGSPEC2
halbære ADJ;NOM;NEUT;SG;LGSPEC2
halbære ADJ;GEN;FEM;PL;LGSPEC1
halbære ADJ;NOM;NEUT;SG;LGSPEC1
halbære ADJ;DAT;FEM;SG;LGSPEC1
halbære ADJ;NOM;FEM;PL;LGSPEC1
halbære ADJ;INS;MASC;SG;LGSPEC2
halbære ADJ;NOM;MASC;PL;LGSPEC1
halbære ADJ;DAT;NEUT;PL;LGSPEC2
halbære ADJ;DAT;MASC;PL;LGSPEC1
halbære ADJ;ACC;FEM;SG;LGSPEC1
halbære ADJ;NOM;FEM;SG;LGSPEC2
halbære ADJ;NOM;MASC;SG;LGSPEC2
halbære ADJ;INS;FEM;SG;LGSPEC2
halbære ADJ;DAT;FEM;PL;LGSPEC2
botm N;DAT;PL
botm N;ACC;SG
botm N;DAT;SG
botm N;NOM;PL
botm N;GEN;SG
botm N;ACC;PL
botm N;NOM;SG
botm N;GEN;PL
deore ADJ;INS;MASC;SG;LGSPEC2
deore ADJ;NOM;MASC;SG;LGSPEC1
deore ADJ;GEN;PL;LGSPEC2
deore ADJ;DAT;MASC;SG;LGSPEC2
deore ADJ;GEN;PL;LGSPEC1
deore ADJ;GEN;SG;LGSPEC1
deore ADJ;GEN;FEM;SG;LGSPEC2
deore ADJ;ACC;MASC;PL;LGSPEC2
deore ADJ;ACC;MASC;SG;LGSPEC1
deore ADJ;NOM;FEM;PL;LGSPEC2
deore ADJ;ACC;NEUT;SG;LGSPEC2
deore ADJ;NOM;PL;LGSPEC1
deore ADJ;GEN;NEUT;SG;LGSPEC2
deore ADJ;NOM;MASC;PL;LGSPEC2
deore ADJ;ACC;PL;LGSPEC1
deore ADJ;ACC;FEM;SG;LGSPEC1
deore ADJ;GEN;MASC;SG;LGSPEC2
deore ADJ;DAT;SG;LGSPEC1
deore ADJ;NOM;NEUT;PL;LGSPEC2
deore ADJ;ACC;MASC;SG;LGSPEC2
deore ADJ;NOM;MASC;SG;LGSPEC2
deore ADJ;ACC;NEUT;SG;LGSPEC1
deore ADJ;ACC;NEUT;PL;LGSPEC2
deore ADJ;DAT;NEUT;SG;LGSPEC2
deore ADJ;INS;NEUT;SG;LGSPEC2
deore ADJ;DAT;FEM;SG;LGSPEC2
deore ADJ;NOM;FEM;SG;LGSPEC2
deore ADJ;DAT;PL;LGSPEC2
deore ADJ;NOM;NEUT;SG;LGSPEC2
deore ADJ;NOM;NEUT;SG;LGSPEC1
deore ADJ;ACC;FEM;PL;LGSPEC2
deore ADJ;NOM;NEUT;PL;LGSPEC2
deore ADJ;NOM;FEM;SG;LGSPEC1
deore ADJ;ACC;FEM;SG;LGSPEC2
deore ADJ;GEN;PL;LGSPEC1
deore ADJ;DAT;PL;LGSPEC1
deore ADJ;ACC;NEUT;PL;LGSPEC2
cwician V;SBJV;SG;PST
cwician V.PTCP;PST
cwician V;SBJV;PL;PRS
cwician V;IND;SG;1;PRS
cwician V;IND;SG;3;PRS
cwician V;IND;PL;PRS
cwician V;SBJV;SG;PRS
cwician V;NFIN
cwician V;IMP;PL
cwician V.PTCP;PRS
cwician V;SBJV;PL;PST
cwician V;IND;SG;3;PST
cwician V;IND;PL;PST
cwician V;IND;SG;2;PRS
cwician V;IMP;SG
cwician V;IMP;PL
cwician V;IND;SG;1;PST
cwician V;SBJV;SG;PRS
cwician V;IND;SG;2;PST
cwician V.PTCP;PRS
cwician V;IND;PL;PRS
gicel N;NOM;PL
gicel N;DAT;SG
gicel N;ACC;SG
gicel N;ACC;PL
gicel N;GEN;PL
gicel N;GEN;SG
gicel N;DAT;PL
gicel N;NOM;SG
leger N;GEN;PL
leger N;DAT;SG
leger N;DAT;PL
leger N;NOM;PL
leger N;GEN;SG
leger N;ACC;SG
leger N;NOM;SG
leger N;ACC;PL
wist N;ACC;SG
wist N;DAT;PL
wist N;DAT;SG
wist N;NOM;SG
wist N;NOM;PL
wist N;GEN;SG
wist N;ACC;PL
wist N;GEN;PL
utscyte N;DAT;PL
utscyte N;GEN;SG
utscyte N;NOM;PL
utscyte N;ACC;PL
utscyte N;NOM;SG
utscyte N;GEN;PL
utscyte N;DAT;SG
utscyte N;ACC;SG
habban V;IND;SG;3;PRS
habban V;SBJV;SG;PST
habban V;IND;SG;1;PST
habban V;NFIN
habban V.PTCP;PRS
habban V;IND;SG;3;PST
habban V;SBJV;PL;PST
habban V;IND;SG;2;PRS
habban V.PTCP;PST
habban V;IND;SG;1;PRS
habban V;IMP;SG
habban V;IMP;PL
habban V;SBJV;PL;PRS
habban V;NFIN
habban V;IND;SG;2;PST
habban V;SBJV;SG;PRS
habban V;IND;PL;PST
habban V;IND;PL;PRS
gifu N;DAT;SG
gifu N;DAT;PL
gifu N;GEN;PL
gifu N;NOM;PL
gifu N;ACC;PL
gifu N;ACC;SG
gifu N;NOM;SG
gifu N;GEN;SG
gifu N;NOM;PL
gifu N;ACC;PL
ƿebbestre N;GEN;SG
ƿebbestre N;DAT;PL
ƿebbestre N;NOM;PL
ƿebbestre N;ACC;SG
ƿebbestre N;ACC;PL
ƿebbestre N;NOM;SG
ƿebbestre N;GEN;PL
ƿebbestre N;DAT;SG
hring N;ACC;PL
hring N;NOM;SG
hring N;NOM;PL
hring N;ACC;SG
hring N;DAT;PL
hring N;GEN;PL
hring N;DAT;SG
hring N;GEN;SG
hæþen ADJ;ACC;MASC;SG;LGSPEC1
hæþen ADJ;DAT;PL;LGSPEC1
hæþen ADJ;ACC;MASC;SG;LGSPEC2
hæþen ADJ;GEN;PL;LGSPEC1
hæþen ADJ;NOM;MASC;PL;LGSPEC2
hæþen ADJ;INS;NEUT;SG;LGSPEC2
hæþen ADJ;NOM;FEM;SG;LGSPEC2
hæþen ADJ;DAT;SG;LGSPEC1
hæþen ADJ;DAT;PL;LGSPEC2
hæþen ADJ;NOM;NEUT;PL;LGSPEC2
hæþen ADJ;GEN;SG;LGSPEC1
hæþen ADJ;ACC;MASC;PL;LGSPEC2
hæþen ADJ;DAT;FEM;SG;LGSPEC2
hæþen ADJ;ACC;NEUT;PL;LGSPEC2
hæþen ADJ;NOM;FEM;SG;LGSPEC1
hæþen ADJ;DAT;MASC;SG;LGSPEC2
hæþen ADJ;NOM;PL;LGSPEC1
hæþen ADJ;NOM;FEM;PL;LGSPEC2
hæþen ADJ;ACC;PL;LGSPEC1
hæþen ADJ;NOM;NEUT;SG;LGSPEC1
hæþen ADJ;GEN;MASC;SG;LGSPEC2
hæþen ADJ;ACC;FEM;PL;LGSPEC2
hæþen ADJ;NOM;MASC;SG;LGSPEC1
hæþen ADJ;ACC;NEUT;SG;LGSPEC2
hæþen ADJ;ACC;NEUT;SG;LGSPEC1
hæþen ADJ;ACC;FEM;SG;LGSPEC1
hæþen ADJ;DAT;NEUT;SG;LGSPEC2
hæþen ADJ;INS;MASC;SG;LGSPEC2
hæþen ADJ;GEN;NEUT;SG;LGSPEC2
hæþen ADJ;GEN;FEM;SG;LGSPEC2
hæþen ADJ;ACC;FEM;SG;LGSPEC1
hæþen ADJ;GEN;MASC;SG;LGSPEC2
hæþen ADJ;GEN;FEM;SG;LGSPEC2
hæþen ADJ;ACC;MASC;SG;LGSPEC1
hæþen ADJ;NOM;MASC;SG;LGSPEC1
hæþen ADJ;ACC;PL;LGSPEC1
hæþen ADJ;NOM;PL;LGSPEC1
hæþen ADJ;NOM;NEUT;PL;LGSPEC2
hæþen ADJ;ACC;NEUT;SG;LGSPEC2
hæþen ADJ;ACC;FEM;PL;LGSPEC2
hæþen ADJ;ACC;FEM;SG;LGSPEC2
hæþen ADJ;NOM;MASC;PL;LGSPEC2
hæþen ADJ;ACC;MASC;PL;LGSPEC2
hæþen ADJ;GEN;PL;LGSPEC2
hæþen ADJ;ACC;NEUT;PL;LGSPEC2
hæþen ADJ;ACC;NEUT;SG;LGSPEC1
hæþen ADJ;NOM;FEM;PL;LGSPEC2
hæþen ADJ;NOM;FEM;SG;LGSPEC2
hæþen ADJ;NOM;MASC;SG;LGSPEC2
hæþen ADJ;NOM;NEUT;SG;LGSPEC2
suþerne ADJ;DAT;SG;LGSPEC1
suþerne ADJ;NOM;FEM;PL;LGSPEC2
suþerne ADJ;NOM;FEM;SG;LGSPEC1
suþerne ADJ;ACC;NEUT;PL;LGSPEC2
suþerne ADJ;ACC;MASC;PL;LGSPEC2
suþerne ADJ;NOM;MASC;SG;LGSPEC1
suþerne ADJ;GEN;PL;LGSPEC2
suþerne ADJ;NOM;NEUT;PL;LGSPEC2
suþerne ADJ;DAT;MASC;SG;LGSPEC2
suþerne ADJ;ACC;FEM;SG;LGSPEC1
suþerne ADJ;GEN;NEUT;SG;LGSPEC2
suþerne ADJ;NOM;FEM;SG;LGSPEC2
suþerne ADJ;INS;MASC;SG;LGSPEC2
suþerne ADJ;ACC;MASC;SG;LGSPEC2
suþerne ADJ;ACC;FEM;SG;LGSPEC2
suþerne ADJ;NOM;PL;LGSPEC1
suþerne ADJ;ACC;MASC;SG;LGSPEC1
suþerne ADJ;GEN;PL;LGSPEC1
suþerne ADJ;DAT;FEM;SG;LGSPEC2
suþerne ADJ;GEN;FEM;SG;LGSPEC2
suþerne ADJ;INS;NEUT;SG;LGSPEC2
suþerne ADJ;DAT;NEUT;SG;LGSPEC2
suþerne ADJ;NOM;MASC;SG;LGSPEC2
suþerne ADJ;NOM;MASC;PL;LGSPEC2
suþerne ADJ;GEN;MASC;SG;LGSPEC2
suþerne ADJ;GEN;SG;LGSPEC1
suþerne ADJ;NOM;NEUT;SG;LGSPEC1
suþerne ADJ;DAT;PL;LGSPEC1
suþerne ADJ;GEN;PL;LGSPEC1
suþerne ADJ;ACC;FEM;PL;LGSPEC2
suþerne ADJ;ACC;PL;LGSPEC1
suþerne ADJ;ACC;NEUT;SG;LGSPEC2
suþerne ADJ;NOM;NEUT;SG;LGSPEC2
suþerne ADJ;DAT;PL;LGSPEC2
suþerne ADJ;ACC;NEUT;SG;LGSPEC1
hrisian V;IND;PL;PRS
hrisian V;IMP;PL
hrisian V;SBJV;SG;PRS
hrisian V;IND;SG;1;PRS
hrisian V;IND;PL;PST
hrisian V;NFIN
hrisian V;IND;SG;1;PST
hrisian V.PTCP;PRS
hrisian V.PTCP;PST
hrisian V;SBJV;SG;PST
hrisian V;IND;SG;3;PRS
hrisian V;IND;SG;2;PST
hrisian V;IMP;SG
hrisian V;SBJV;PL;PST
hrisian V;IND;SG;2;PRS
hrisian V;IND;SG;3;PST
hrisian V;SBJV;PL;PRS
sundrian V;SBJV;SG;PRS
sundrian V;IND;PL;PST
sundrian V;SBJV;PL;PRS
sundrian V;IMP;PL
sundrian V;IND;PL;PRS
sundrian V;IND;SG;2;PRS
sundrian V;NFIN
sundrian V;SBJV;PL;PST
sundrian V;IND;SG;1;PST
sundrian V;IMP;SG
sundrian V;IND;SG;1;PRS
sundrian V;IND;SG;3;PRS
sundrian V.PTCP;PRS
sundrian V;IMP;PL
sundrian V.PTCP;PST
sundrian V;SBJV;SG;PST
sundrian V.PTCP;PST
sundrian V;IND;SG;3;PST
sundrian V.PTCP;PRS
sundrian V;IND;SG;2;PST
sundrian V;IND;SG;1;PRS
sundrian V;IND;PL;PRS
sundrian V;SBJV;PL;PRS
dilgian V;IMP;PL
dilgian V.PTCP;PST
dilgian V;IND;PL;PRS
dilgian V;NFIN
dilgian V;IND;PL;PST
dilgian V;SBJV;PL;PST
dilgian V;IND;SG;3;PRS
dilgian V;SBJV;SG;PRS
dilgian V;IND;SG;2;PST
dilgian V;IND;SG;3;PST
dilgian V;SBJV;SG;PST
dilgian V;IND;SG;2;PRS
dilgian V.PTCP;PRS
dilgian V;IND;SG;1;PRS
dilgian V;SBJV;PL;PRS
dilgian V;IND;SG;1;PST
dilgian V.PTCP;PST
dilgian V;IMP;SG
dilgian V;SBJV;SG;PRS
dilgian V.PTCP;PRS
dilgian V;SBJV;PL;PRS
geascian V;SBJV;PL;PST
geascian V;IMP;PL
geascian V;SBJV;PL;PRS
geascian V;IND;SG;3;PRS
geascian V.PTCP;PST
geascian V;IND;PL;PST
geascian V;IND;PL;PRS
geascian V;IND;SG;3;PST
geascian V.PTCP;PRS
geascian V;SBJV;SG;PRS
geascian V;IND;SG;2;PRS
geascian V;IND;SG;1;PRS
geascian V;IMP;SG
geascian V;IND;SG;1;PST
geascian V;NFIN
geascian V;IND;SG;2;PST
geascian V;IND;PL;PRS
geascian V;NFIN
geascian V;SBJV;SG;PST
wringan V;IND;SG;2;PST
wringan V;NFIN
wringan V.PTCP;PST
wringan V;IND;SG;3;PRS
wringan V;SBJV;PL;PST
wringan V;IND;SG;1;PRS
wringan V;IND;PL;PST
wringan V;SBJV;PL;PRS
wringan V;SBJV;SG;PRS
wringan V;IND;SG;2;PRS
wringan V;IMP;SG
wringan V;IND;SG;1;PST
wringan V.PTCP;PRS
wringan V;IND;SG;3;PST
wringan V;IMP;PL
wringan V;SBJV;SG;PST
wringan V;IND;PL;PRS
domleas ADJ;NOM;FEM;SG;LGSPEC1
domleas ADJ;DAT;FEM;SG;LGSPEC2
domleas ADJ;DAT;MASC;SG;LGSPEC1
domleas ADJ;DAT;FEM;PL;LGSPEC2
domleas ADJ;INS;MASC;SG;LGSPEC2
domleas ADJ;GEN;NEUT;SG;LGSPEC1
domleas ADJ;ACC;FEM;PL;LGSPEC2
domleas ADJ;GEN;FEM;PL;LGSPEC2
domleas ADJ;GEN;MASC;PL;LGSPEC2
domleas ADJ;DAT;FEM;SG;LGSPEC1
domleas ADJ;GEN;FEM;PL;LGSPEC1
domleas ADJ;NOM;FEM;PL;LGSPEC2
domleas ADJ;INS;NEUT;PL;LGSPEC1
domleas ADJ;NOM;MASC;PL;LGSPEC1
domleas ADJ;GEN;MASC;PL;LGSPEC1
domleas ADJ;ACC;MASC;PL;LGSPEC1
domleas ADJ;DAT;NEUT;PL;LGSPEC2
domleas ADJ;GEN;MASC;SG;LGSPEC1
domleas ADJ;INS;MASC;PL;LGSPEC2
domleas ADJ;GEN;FEM;SG;LGSPEC1
domleas ADJ;DAT;NEUT;PL;LGSPEC1
domleas ADJ;INS;NEUT;SG;LGSPEC1
domleas ADJ;INS;FEM;SG;LGSPEC1
domleas ADJ;ACC;MASC;PL;LGSPEC2
domleas ADJ;NOM;MASC;SG;LGSPEC1
domleas ADJ;ACC;MASC;SG;LGSPEC2
domleas ADJ;NOM;NEUT;PL;LGSPEC1
domleas ADJ;NOM;MASC;PL;LGSPEC2
domleas ADJ;INS;NEUT;SG;LGSPEC2
domleas ADJ;NOM;FEM;PL;LGSPEC1
domleas ADJ;GEN;NEUT;PL;LGSPEC1
domleas ADJ;INS;MASC;SG;LGSPEC1
domleas ADJ;GEN;NEUT;SG;LGSPEC2
domleas ADJ;INS;NEUT;PL;LGSPEC2
domleas ADJ;DAT;MASC;SG;LGSPEC2
domleas ADJ;GEN;MASC;SG;LGSPEC2
domleas ADJ;NOM;NEUT;PL;LGSPEC2
domleas ADJ;NOM;MASC;SG;LGSPEC2
domleas ADJ;ACC;FEM;SG;LGSPEC2
domleas ADJ;DAT;NEUT;SG;LGSPEC2
domleas ADJ;ACC;NEUT;SG;LGSPEC1
domleas ADJ;ACC;FEM;PL;LGSPEC1
domleas ADJ;GEN;MASC;PL;LGSPEC1
domleas ADJ;NOM;FEM;SG;LGSPEC2
domleas ADJ;ACC;NEUT;PL;LGSPEC2
domleas ADJ;INS;FEM;PL;LGSPEC1
domleas ADJ;GEN;FEM;PL;LGSPEC1
domleas ADJ;GEN;NEUT;PL;LGSPEC2
domleas ADJ;ACC;MASC;SG;LGSPEC1
domleas ADJ;INS;FEM;PL;LGSPEC2
domleas ADJ;INS;FEM;SG;LGSPEC2
domleas ADJ;DAT;FEM;PL;LGSPEC1
domleas ADJ;ACC;FEM;SG;LGSPEC1
domleas ADJ;GEN;FEM;SG;LGSPEC2
domleas ADJ;DAT;MASC;PL;LGSPEC2
domleas ADJ;NOM;FEM;PL;LGSPEC2
domleas ADJ;ACC;NEUT;SG;LGSPEC2
domleas ADJ;NOM;NEUT;SG;LGSPEC1
domleas ADJ;ACC;NEUT;PL;LGSPEC1
domleas ADJ;DAT;NEUT;SG;LGSPEC1
domleas ADJ;DAT;MASC;PL;LGSPEC1
domleas ADJ;INS;MASC;PL;LGSPEC1
domleas ADJ;NOM;NEUT;SG;LGSPEC2
aþeodan V;IND;SG;2;PRS
aþeodan V;IMP;SG
aþeodan V;IND;SG;2;PST
aþeodan V;IND;PL;PRS
aþeodan V;IND;SG;3;PRS
aþeodan V;IND;SG;1;PST
aþeodan V;SBJV;PL;PRS
aþeodan V;SBJV;SG;PST
aþeodan V;IMP;PL
aþeodan V;IND;SG;1;PRS
aþeodan V.PTCP;PRS
aþeodan V;NFIN
aþeodan V;IND;SG;3;PST
aþeodan V;SBJV;SG;PRS
aþeodan V;NFIN
aþeodan V;IND;PL;PST
aþeodan V.PTCP;PST
aþeodan V;SBJV;PL;PST
rima N;GEN;PL
rima N;ACC;SG
rima N;DAT;PL
rima N;DAT;SG
rima N;NOM;SG
rima N;NOM;PL
rima N;ACC;PL
rima N;GEN;SG
grambære ADJ;DAT;FEM;PL;LGSPEC1
grambære ADJ;INS;FEM;SG;LGSPEC2
grambære ADJ;ACC;FEM;PL;LGSPEC1
grambære ADJ;GEN;MASC;PL;LGSPEC1
grambære ADJ;DAT;NEUT;PL;LGSPEC2
grambære ADJ;GEN;FEM;PL;LGSPEC1
grambære ADJ;ACC;MASC;PL;LGSPEC2
grambære ADJ;DAT;MASC;PL;LGSPEC2
grambære ADJ;INS;FEM;PL;LGSPEC1
grambære ADJ;NOM;MASC;SG;LGSPEC2
grambære ADJ;GEN;FEM;SG;LGSPEC2
grambære ADJ;DAT;NEUT;SG;LGSPEC2
grambære ADJ;NOM;MASC;SG;LGSPEC1
grambære ADJ;GEN;MASC;SG;LGSPEC2
grambære ADJ;DAT;FEM;SG;LGSPEC2
grambære ADJ;INS;MASC;SG;LGSPEC1
grambære ADJ;NOM;FEM;SG;LGSPEC1
grambære ADJ;NOM;FEM;PL;LGSPEC2
grambære ADJ;ACC;NEUT;PL;LGSPEC1
grambære ADJ;ACC;MASC;SG;LGSPEC1
grambære ADJ;NOM;MASC;PL;LGSPEC1
grambære ADJ;ACC;NEUT;SG;LGSPEC2
grambære ADJ;DAT;MASC;PL;LGSPEC1
grambære ADJ;DAT;MASC;SG;LGSPEC2
grambære ADJ;INS;NEUT;SG;LGSPEC1
grambære ADJ;ACC;NEUT;PL;LGSPEC2
grambære ADJ;INS;NEUT;SG;LGSPEC2
grambære ADJ;DAT;NEUT;PL;LGSPEC1
grambære ADJ;NOM;MASC;PL;LGSPEC2
grambære ADJ;ACC;FEM;SG;LGSPEC1
grambære ADJ;GEN;FEM;PL;LGSPEC2
grambære ADJ;INS;MASC;PL;LGSPEC1
grambære ADJ;ACC;FEM;PL;LGSPEC2
grambære ADJ;NOM;NEUT;PL;LGSPEC2
grambære ADJ;INS;MASC;PL;LGSPEC2
grambære ADJ;ACC;MASC;PL;LGSPEC1
grambære ADJ;NOM;FEM;SG;LGSPEC2
grambære ADJ;GEN;NEUT;SG;LGSPEC2
grambære ADJ;NOM;NEUT;SG;LGSPEC2
grambære ADJ;GEN;NEUT;PL;LGSPEC2
grambære ADJ;GEN;FEM;SG;LGSPEC1
grambære ADJ;ACC;NEUT;SG;LGSPEC1
grambære ADJ;DAT;FEM;SG;LGSPEC1
grambære ADJ;DAT;MASC;SG;LGSPEC1
grambære ADJ;GEN;MASC;SG;LGSPEC1
grambære ADJ;GEN;NEUT;PL;LGSPEC1
grambære ADJ;INS;NEUT;PL;LGSPEC1
grambære ADJ;INS;FEM;PL;LGSPEC2
grambære ADJ;INS;NEUT;PL;LGSPEC2
grambære ADJ;INS;MASC;SG;LGSPEC2
grambære ADJ;ACC;MASC;SG;LGSPEC2
grambære ADJ;ACC;NEUT;PL;LGSPEC2
grambære ADJ;ACC;FEM;SG;LGSPEC2
grambære ADJ;NOM;FEM;PL;LGSPEC1
grambære ADJ;GEN;MASC;PL;LGSPEC2
grambære ADJ;INS;FEM;SG;LGSPEC1
grambære ADJ;DAT;NEUT;SG;LGSPEC1
grambære ADJ;GEN;NEUT;PL;LGSPEC1
grambære ADJ;NOM;NEUT;SG;LGSPEC1
grambære ADJ;DAT;FEM;PL;LGSPEC2
grambære ADJ;GEN;NEUT;SG;LGSPEC1
grambære ADJ;NOM;NEUT;PL;LGSPEC2
grambære ADJ;NOM;NEUT;PL;LGSPEC1
styrian V;IND;SG;3;PRS
styrian V;IMP;SG
styrian V;NFIN
styrian V;IND;SG;1;PRS
styrian V;SBJV;SG;PST
styrian V;IND;SG;2;PST
styrian V;IMP;PL
styrian V;IND;PL;PRS
styrian V;IND;SG;2;PRS
styrian V.PTCP;PRS
styrian V.PTCP;PST
styrian V;IND;PL;PST
styrian V;IND;SG;1;PST
styrian V;SBJV;PL;PRS
styrian V;IND;SG;3;PST
styrian V;SBJV;SG;PRS
styrian V;SBJV;PL;PST
hlæw N;ACC;SG
hlæw N;NOM;PL
hlæw N;NOM;SG
hlæw N;ACC;PL
hlæw N;GEN;PL
hlæw N;GEN;SG
hlæw N;DAT;PL
hlæw N;DAT;SG
mægen N;NOM;PL
mægen N;ACC;SG
mægen N;DAT;PL
mægen N;ACC;PL
mægen N;DAT;SG
mægen N;NOM;SG
mægen N;GEN;PL
mægen N;GEN;SG
metod N;NOM;SG
metod N;ACC;PL
metod N;ACC;SG
metod N;GEN;SG
metod N;NOM;PL
metod N;DAT;SG
metod N;GEN;PL
metod N;DAT;PL
from ADJ;NOM;MASC;PL;LGSPEC2
from ADJ;DAT;NEUT;PL;LGSPEC2
from ADJ;ACC;FEM;PL;LGSPEC1
from ADJ;ACC;NEUT;PL;LGSPEC2
from ADJ;DAT;NEUT;SG;LGSPEC2
from ADJ;DAT;MASC;PL;LGSPEC2
from ADJ;INS;FEM;PL;LGSPEC2
from ADJ;GEN;FEM;PL;LGSPEC2
from ADJ;ACC;FEM;PL;LGSPEC2
from ADJ;GEN;FEM;SG;LGSPEC1
from ADJ;NOM;MASC;SG;LGSPEC2
from ADJ;NOM;FEM;SG;LGSPEC1
from ADJ;INS;MASC;PL;LGSPEC2
from ADJ;GEN;NEUT;PL;LGSPEC1
from ADJ;NOM;FEM;PL;LGSPEC1
from ADJ;ACC;FEM;SG;LGSPEC2
from ADJ;DAT;FEM;SG;LGSPEC1
from ADJ;GEN;FEM;PL;LGSPEC1
from ADJ;INS;NEUT;PL;LGSPEC1
from ADJ;INS;NEUT;SG;LGSPEC1
from ADJ;ACC;NEUT;SG;LGSPEC2
from ADJ;NOM;MASC;SG;LGSPEC1
from ADJ;NOM;NEUT;SG;LGSPEC2
from ADJ;GEN;MASC;PL;LGSPEC1
from ADJ;ACC;FEM;SG;LGSPEC1
from ADJ;DAT;NEUT;SG;LGSPEC1
from ADJ;GEN;NEUT;PL;LGSPEC2
from ADJ;INS;FEM;SG;LGSPEC1
from ADJ;INS;MASC;SG;LGSPEC2
from ADJ;NOM;MASC;PL;LGSPEC1
from ADJ;DAT;FEM;SG;LGSPEC2
from ADJ;ACC;MASC;PL;LGSPEC1
from ADJ;ACC;MASC;SG;LGSPEC1
from ADJ;INS;NEUT;SG;LGSPEC2
from ADJ;ACC;MASC;SG;LGSPEC2
from ADJ;ACC;NEUT;SG;LGSPEC1
from ADJ;GEN;MASC;PL;LGSPEC2
from ADJ;INS;MASC;SG;LGSPEC1
from ADJ;DAT;FEM;PL;LGSPEC2
from ADJ;INS;MASC;PL;LGSPEC1
from ADJ;DAT;MASC;PL;LGSPEC1
from ADJ;NOM;NEUT;PL;LGSPEC2
from ADJ;DAT;NEUT;PL;LGSPEC1
from ADJ;NOM;FEM;SG;LGSPEC2
from ADJ;INS;FEM;SG;LGSPEC2
from ADJ;INS;FEM;PL;LGSPEC1
from ADJ;GEN;FEM;SG;LGSPEC2
from ADJ;GEN;NEUT;SG;LGSPEC1
from ADJ;INS;NEUT;PL;LGSPEC2
from ADJ;NOM;NEUT;PL;LGSPEC1
from ADJ;NOM;FEM;PL;LGSPEC2
from ADJ;GEN;FEM;PL;LGSPEC1
from ADJ;ACC;NEUT;PL;LGSPEC1
from ADJ;NOM;NEUT;SG;LGSPEC1
from ADJ;DAT;MASC;SG;LGSPEC1
from ADJ;GEN;MASC;SG;LGSPEC2
from ADJ;GEN;MASC;SG;LGSPEC1
from ADJ;DAT;MASC;SG;LGSPEC2
from ADJ;GEN;MASC;PL;LGSPEC1
from ADJ;NOM;NEUT;PL;LGSPEC2
from ADJ;GEN;NEUT;SG;LGSPEC2
from ADJ;ACC;FEM;PL;LGSPEC2
from ADJ;ACC;MASC;PL;LGSPEC2
from ADJ;NOM;FEM;PL;LGSPEC2
from ADJ;DAT;FEM;PL;LGSPEC1
andelbære ADJ;NOM;MASC;PL;LGSPEC2
andelbære ADJ;GEN;NEUT;SG;LGSPEC1
andelbære ADJ;GEN;MASC;SG;LGSPEC1
andelbære ADJ;ACC;NEUT;PL;LGSPEC2
andelbære ADJ;NOM;FEM;PL;LGSPEC1
andelbære ADJ;ACC;FEM;PL;LGSPEC1
andelbære ADJ;ACC;MASC;SG;LGSPEC2
andelbære ADJ;INS;NEUT;SG;LGSPEC1
andelbære ADJ;NOM;FEM;PL;LGSPEC2
andelbære ADJ;NOM;FEM;SG;LGSPEC2
andelbære ADJ;INS;FEM;SG;LGSPEC2
andelbære ADJ;DAT;FEM;SG;LGSPEC1
andelbære ADJ;GEN;FEM;SG;LGSPEC2
andelbære ADJ;DAT;NEUT;SG;LGSPEC2
andelbære ADJ;GEN;NEUT;PL;LGSPEC1
andelbære ADJ;ACC;MASC;PL;LGSPEC1
andelbære ADJ;ACC;FEM;SG;LGSPEC1
andelbære ADJ;DAT;MASC;PL;LGSPEC2
andelbære ADJ;NOM;MASC;SG;LGSPEC2
andelbære ADJ;GEN;FEM;SG;LGSPEC1
andelbære ADJ;NOM;NEUT;PL;LGSPEC2
andelbære ADJ;NOM;NEUT;SG;LGSPEC2
andelbære ADJ;DAT;NEUT;PL;LGSPEC1
andelbære ADJ;GEN;MASC;PL;LGSPEC2
andelbære ADJ;DAT;MASC;SG;LGSPEC2
andelbære ADJ;GEN;FEM;PL;LGSPEC1
andelbære ADJ;INS;MASC;SG;LGSPEC1
andelbære ADJ;ACC;FEM;SG;LGSPEC2
andelbære ADJ;GEN;MASC;PL;LGSPEC1
andelbære ADJ;GEN;NEUT;SG;LGSPEC2
andelbære ADJ;ACC;MASC;SG;LGSPEC1
andelbære ADJ;NOM;NEUT;PL;LGSPEC1
andelbære ADJ;NOM;FEM;SG;LGSPEC1
andelbære ADJ;DAT;MASC;PL;LGSPEC1
andelbære ADJ;ACC;FEM;PL;LGSPEC2
andelbære ADJ;DAT;NEUT;PL;LGSPEC2
andelbære ADJ;INS;NEUT;SG;LGSPEC2
andelbære ADJ;INS;FEM;PL;LGSPEC1
andelbære ADJ;ACC;NEUT;PL;LGSPEC1
andelbære ADJ;INS;FEM;SG;LGSPEC1
andelbære ADJ;INS;NEUT;PL;LGSPEC2
andelbære ADJ;INS;MASC;PL;LGSPEC2
andelbære ADJ;DAT;FEM;PL;LGSPEC2
andelbære ADJ;INS;MASC;PL;LGSPEC1
andelbære ADJ;DAT;MASC;SG;LGSPEC1
andelbære ADJ;DAT;NEUT;SG;LGSPEC1
andelbære ADJ;NOM;MASC;PL;LGSPEC1
andelbære ADJ;ACC;NEUT;SG;LGSPEC2
andelbære ADJ;GEN;MASC;PL;LGSPEC1
andelbære ADJ;ACC;NEUT;SG;LGSPEC1
andelbære ADJ;GEN;NEUT;PL;LGSPEC2
andelbære ADJ;ACC;FEM;PL;LGSPEC2
andelbære ADJ;INS;NEUT;PL;LGSPEC1
andelbære ADJ;GEN;FEM;PL;LGSPEC1
andelbære ADJ;NOM;MASC;SG;LGSPEC1
andelbære ADJ;GEN;MASC;SG;LGSPEC2
andelbære ADJ;DAT;FEM;PL;LGSPEC1
andelbære ADJ;NOM;NEUT;SG;LGSPEC1
andelbære ADJ;INS;MASC;SG;LGSPEC2
andelbære ADJ;DAT;FEM;SG;LGSPEC2
andelbære ADJ;INS;FEM;PL;LGSPEC2
andelbære ADJ;ACC;MASC;PL;LGSPEC2
andelbære ADJ;GEN;FEM;PL;LGSPEC2
reafian V;IND;SG;1;PRS
reafian V;NFIN
reafian V;IND;PL;PRS
reafian V;IND;PL;PST
reafian V;SBJV;PL;PST
reafian V;SBJV;PL;PRS
reafian V.PTCP;PRS
reafian V;SBJV;SG;PST
reafian V;IMP;PL
reafian V;IND;SG;2;PST
reafian V;IND;SG;2;PRS
reafian V.PTCP;PST
reafian V;SBJV;SG;PRS
reafian V;IMP;SG
reafian V;IND;SG;1;PST
reafian V;IMP;PL
reafian V;IND;SG;3;PRS
reafian V;IND;SG;3;PST
reafian V.PTCP;PST
smugan V;IMP;PL
smugan V;SBJV;PL;PST
smugan V;IMP;SG
smugan V;IND;SG;3;PST
smugan V;IND;SG;1;PST
smugan V.PTCP;PRS
smugan V;NFIN
smugan V;IND;PL;PRS
smugan V;IND;PL;PST
smugan V;IND;SG;1;PRS
smugan V;IND;SG;2;PRS
smugan V.PTCP;PST
smugan V;IND;SG;2;PST
smugan V;SBJV;PL;PRS
smugan V;IMP;SG
smugan V;NFIN
smugan V;IND;SG;3;PRS
smugan V;SBJV;SG;PST
smugan V;SBJV;SG;PRS
stæfleahtor N;ACC;PL
stæfleahtor N;NOM;PL
stæfleahtor N;GEN;PL
stæfleahtor N;ACC;SG
stæfleahtor N;DAT;PL
stæfleahtor N;DAT;SG
stæfleahtor N;NOM;SG
stæfleahtor N;GEN;SG
arleas ADJ;ACC;MASC;PL;LGSPEC1
arleas ADJ;ACC;FEM;SG;LGSPEC2
arleas ADJ;INS;NEUT;SG;LGSPEC2
arleas ADJ;GEN;MASC;PL;LGSPEC1
arleas ADJ;INS;FEM;SG;LGSPEC1
arleas ADJ;INS;MASC;SG;LGSPEC2
arleas ADJ;INS;FEM;PL;LGSPEC2
arleas ADJ;NOM;FEM;PL;LGSPEC1
arleas ADJ;DAT;NEUT;SG;LGSPEC1
arleas ADJ;INS;MASC;PL;LGSPEC2
arleas ADJ;NOM;FEM;PL;LGSPEC2
arleas ADJ;DAT;MASC;SG;LGSPEC2
arleas ADJ;ACC;MASC;SG;LGSPEC2
arleas ADJ;ACC;FEM;PL;LGSPEC2
arleas ADJ;DAT;NEUT;PL;LGSPEC1
arleas ADJ;NOM;NEUT;SG;LGSPEC1
arleas ADJ;DAT;FEM;PL;LGSPEC2
arleas ADJ;INS;NEUT;SG;LGSPEC1
arleas ADJ;DAT;FEM;SG;LGSPEC2
arleas ADJ;GEN;NEUT;SG;LGSPEC2
arleas ADJ;INS;MASC;SG;LGSPEC1
arleas ADJ;GEN;NEUT;PL;LGSPEC1
arleas ADJ;GEN;NEUT;SG;LGSPEC1
arleas ADJ;ACC;NEUT;SG;LGSPEC1
arleas ADJ;DAT;NEUT;PL;LGSPEC2
arleas ADJ;GEN;FEM;SG;LGSPEC2
arleas ADJ;GEN;MASC;SG;LGSPEC1
arleas ADJ;NOM;MASC;PL;LGSPEC2
arleas ADJ;DAT;NEUT;SG;LGSPEC2
arleas ADJ;GEN;FEM;PL;LGSPEC2
arleas ADJ;ACC;MASC;SG;LGSPEC1
arleas ADJ;NOM;NEUT;PL;LGSPEC2
arleas ADJ;NOM;FEM;SG;LGSPEC2
arleas ADJ;NOM;NEUT;PL;LGSPEC1
arleas ADJ;NOM;NEUT;SG;LGSPEC2
arleas ADJ;DAT;FEM;PL;LGSPEC1
arleas ADJ;INS;NEUT;PL;LGSPEC2
arleas ADJ;DAT;MASC;PL;LGSPEC2
arleas ADJ;ACC;FEM;SG;LGSPEC1
arleas ADJ;NOM;FEM;SG;LGSPEC1
arleas ADJ;ACC;FEM;PL;LGSPEC1
arleas ADJ;GEN;MASC;SG;LGSPEC2
arleas ADJ;ACC;MASC;PL;LGSPEC2
arleas ADJ;GEN;FEM;PL;LGSPEC1
arleas ADJ;NOM;MASC;SG;LGSPEC1
arleas ADJ;GEN;MASC;PL;LGSPEC2
arleas ADJ;INS;FEM;SG;LGSPEC2
arleas ADJ;ACC;NEUT;PL;LGSPEC2
arleas ADJ;INS;FEM;PL;LGSPEC1
arleas ADJ;DAT;MASC;SG;LGSPEC1
arleas ADJ;GEN;FEM;SG;LGSPEC1
arleas ADJ;INS;NEUT;PL;LGSPEC1
arleas ADJ;NOM;MASC;SG;LGSPEC2
arleas ADJ;ACC;FEM;PL;LGSPEC2
arleas ADJ;GEN;NEUT;PL;LGSPEC2
arleas ADJ;DAT;FEM;SG;LGSPEC1
arleas ADJ;ACC;NEUT;SG;LGSPEC2
arleas ADJ;NOM;MASC;PL;LGSPEC1
arleas ADJ;INS;MASC;PL;LGSPEC1
arleas ADJ;ACC;NEUT;PL;LGSPEC1
arleas ADJ;GEN;NEUT;PL;LGSPEC1
arleas ADJ;GEN;FEM;PL;LGSPEC1
arleas ADJ;DAT;MASC;PL;LGSPEC1
arleas ADJ;NOM;FEM;PL;LGSPEC2
cnawelæcing N;ACC;SG
cnawelæcing N;GEN;SG
cnawelæcing N;DAT;PL
cnawelæcing N;NOM;PL
cnawelæcing N;DAT;SG
cnawelæcing N;ACC;PL
cnawelæcing N;ACC;PL
cnawelæcing N;GEN;PL
cnawelæcing N;NOM;SG
sæliþend N;NOM;PL
sæliþend N;GEN;SG
sæliþend N;DAT;SG
sæliþend N;NOM;SG
sæliþend N;ACC;PL
sæliþend N;GEN;PL
sæliþend N;ACC;SG
sæliþend N;DAT;PL
sæliþend N;ACC;PL
sæliþend N;NOM;PL
wancol ADJ;DAT;NEUT;SG;LGSPEC1
wancol ADJ;INS;FEM;SG;LGSPEC1
wancol ADJ;GEN;NEUT;SG;LGSPEC1
wancol ADJ;DAT;MASC;SG;LGSPEC2
wancol ADJ;INS;MASC;PL;LGSPEC1
wancol ADJ;DAT;NEUT;PL;LGSPEC2
wancol ADJ;GEN;FEM;PL;LGSPEC1
wancol ADJ;NOM;NEUT;SG;LGSPEC2
wancol ADJ;ACC;FEM;SG;LGSPEC1
wancol ADJ;NOM;FEM;PL;LGSPEC2
wancol ADJ;ACC;MASC;PL;LGSPEC2
wancol ADJ;GEN;FEM;SG;LGSPEC1
wancol ADJ;GEN;NEUT;PL;LGSPEC1
wancol ADJ;NOM;NEUT;PL;LGSPEC1
wancol ADJ;ACC;FEM;PL;LGSPEC2
wancol ADJ;DAT;MASC;SG;LGSPEC1
wancol ADJ;INS;FEM;PL;LGSPEC2
wancol ADJ;GEN;MASC;SG;LGSPEC2
wancol ADJ;ACC;NEUT;SG;LGSPEC1
wancol ADJ;NOM;FEM;SG;LGSPEC2
wancol ADJ;NOM;FEM;SG;LGSPEC1
wancol ADJ;NOM;MASC;PL;LGSPEC1
wancol ADJ;INS;FEM;SG;LGSPEC2
wancol ADJ;INS;NEUT;PL;LGSPEC1
wancol ADJ;INS;NEUT;SG;LGSPEC1
wancol ADJ;GEN;MASC;PL;LGSPEC2
wancol ADJ;INS;NEUT;SG;LGSPEC2
wancol ADJ;ACC;FEM;SG;LGSPEC2
wancol ADJ;GEN;MASC;PL;LGSPEC1
wancol ADJ;ACC;NEUT;PL;LGSPEC2
wancol ADJ;GEN;MASC;SG;LGSPEC1
wancol ADJ;NOM;MASC;SG;LGSPEC1
wancol ADJ;DAT;MASC;PL;LGSPEC2
wancol ADJ;DAT;NEUT;SG;LGSPEC2
wancol ADJ;NOM;MASC;PL;LGSPEC2
wancol ADJ;NOM;NEUT;SG;LGSPEC1
wancol ADJ;DAT;FEM;SG;LGSPEC1
wancol ADJ;INS;MASC;PL;LGSPEC2
wancol ADJ;INS;NEUT;PL;LGSPEC2
wancol ADJ;NOM;MASC;SG;LGSPEC2
wancol ADJ;ACC;FEM;PL;LGSPEC1
wancol ADJ;ACC;MASC;PL;LGSPEC1
wancol ADJ;NOM;FEM;PL;LGSPEC1
wancol ADJ;INS;MASC;SG;LGSPEC2
wancol ADJ;ACC;NEUT;SG;LGSPEC2
wancol ADJ;DAT;MASC;PL;LGSPEC1
wancol ADJ;DAT;FEM;PL;LGSPEC1
wancol ADJ;GEN;NEUT;SG;LGSPEC2
wancol ADJ;DAT;NEUT;PL;LGSPEC1
wancol ADJ;INS;MASC;SG;LGSPEC1
wancol ADJ;DAT;FEM;PL;LGSPEC2
wancol ADJ;NOM;MASC;SG;LGSPEC1
wancol ADJ;GEN;FEM;SG;LGSPEC2
wancol ADJ;INS;MASC;SG;LGSPEC1
wancol ADJ;NOM;NEUT;PL;LGSPEC1
wancol ADJ;INS;MASC;PL;LGSPEC1
wancol ADJ;GEN;NEUT;PL;LGSPEC2
wancol ADJ;DAT;FEM;PL;LGSPEC1
wancol ADJ;ACC;NEUT;PL;LGSPEC1
wancol ADJ;ACC;FEM;SG;LGSPEC2
wancol ADJ;DAT;MASC;PL;LGSPEC2
wancol ADJ;INS;FEM;PL;LGSPEC2
wancol ADJ;NOM;NEUT;SG;LGSPEC1
wancol ADJ;DAT;MASC;PL;LGSPEC1
wancol ADJ;INS;NEUT;PL;LGSPEC2
wancol ADJ;INS;FEM;PL;LGSPEC1
wancol ADJ;GEN;FEM;PL;LGSPEC1
wancol ADJ;NOM;FEM;PL;LGSPEC2
wancol ADJ;DAT;FEM;SG;LGSPEC2
wancol ADJ;ACC;MASC;SG;LGSPEC2
wancol ADJ;NOM;NEUT;PL;LGSPEC2
wancol ADJ;ACC;NEUT;PL;LGSPEC1
wancol ADJ;ACC;MASC;PL;LGSPEC2
wancol ADJ;ACC;FEM;PL;LGSPEC2
wancol ADJ;DAT;MASC;SG;LGSPEC2
wancol ADJ;ACC;MASC;SG;LGSPEC1
wancol ADJ;GEN;MASC;PL;LGSPEC1
wancol ADJ;DAT;NEUT;SG;LGSPEC2
wancol ADJ;DAT;FEM;PL;LGSPEC2
wancol ADJ;INS;NEUT;SG;LGSPEC1
wancol ADJ;GEN;NEUT;SG;LGSPEC2
wancol ADJ;GEN;MASC;SG;LGSPEC2
wancol ADJ;GEN;FEM;PL;LGSPEC2
mynelic ADJ;NOM;NEUT;SG;LGSPEC1
mynelic ADJ;GEN;MASC;SG;LGSPEC1
mynelic ADJ;GEN;NEUT;PL;LGSPEC1
mynelic ADJ;ACC;MASC;SG;LGSPEC1
mynelic ADJ;DAT;MASC;PL;LGSPEC1
mynelic ADJ;INS;FEM;SG;LGSPEC2
mynelic ADJ;ACC;NEUT;PL;LGSPEC2
mynelic ADJ;DAT;NEUT;SG;LGSPEC1
mynelic ADJ;INS;MASC;SG;LGSPEC2
mynelic ADJ;ACC;FEM;PL;LGSPEC1
mynelic ADJ;NOM;NEUT;PL;LGSPEC1
mynelic ADJ;GEN;MASC;PL;LGSPEC2
mynelic ADJ;DAT;FEM;PL;LGSPEC1
mynelic ADJ;GEN;FEM;PL;LGSPEC2
mynelic ADJ;NOM;NEUT;PL;LGSPEC2
mynelic ADJ;DAT;NEUT;PL;LGSPEC1
mynelic ADJ;DAT;MASC;PL;LGSPEC2
mynelic ADJ;NOM;MASC;SG;LGSPEC2
mynelic ADJ;INS;FEM;PL;LGSPEC2
mynelic ADJ;INS;MASC;PL;LGSPEC1
mynelic ADJ;GEN;MASC;PL;LGSPEC1
mynelic ADJ;GEN;NEUT;SG;LGSPEC1
mynelic ADJ;ACC;FEM;SG;LGSPEC2
mynelic ADJ;DAT;FEM;SG;LGSPEC2
mynelic ADJ;DAT;NEUT;SG;LGSPEC2
mynelic ADJ;NOM;FEM;PL;LGSPEC2
mynelic ADJ;INS;FEM;PL;LGSPEC1
mynelic ADJ;NOM;NEUT;SG;LGSPEC2
mynelic ADJ;INS;NEUT;SG;LGSPEC1
mynelic ADJ;NOM;MASC;PL;LGSPEC1
mynelic ADJ;INS;MASC;SG;LGSPEC1
mynelic ADJ;GEN;NEUT;PL;LGSPEC2
mynelic ADJ;DAT;MASC;SG;LGSPEC2
mynelic ADJ;NOM;MASC;PL;LGSPEC2
mynelic ADJ;INS;FEM;SG;LGSPEC1
mynelic ADJ;GEN;FEM;SG;LGSPEC2
mynelic ADJ;ACC;FEM;PL;LGSPEC2
mynelic ADJ;DAT;MASC;SG;LGSPEC1
mynelic ADJ;NOM;FEM;SG;LGSPEC1
mynelic ADJ;INS;MASC;PL;LGSPEC2
mynelic ADJ;GEN;FEM;PL;LGSPEC1
mynelic ADJ;ACC;MASC;PL;LGSPEC2
mynelic ADJ;GEN;NEUT;SG;LGSPEC2
mynelic ADJ;NOM;NEUT;PL;LGSPEC2
mynelic ADJ;ACC;FEM;SG;LGSPEC1
mynelic ADJ;ACC;NEUT;SG;LGSPEC1
mynelic ADJ;NOM;MASC;SG;LGSPEC1
mynelic ADJ;NOM;FEM;SG;LGSPEC2
mynelic ADJ;INS;NEUT;SG;LGSPEC2
mynelic ADJ;ACC;MASC;PL;LGSPEC1
mynelic ADJ;ACC;NEUT;SG;LGSPEC2
mynelic ADJ;NOM;FEM;PL;LGSPEC2
mynelic ADJ;ACC;NEUT;PL;LGSPEC1
mynelic ADJ;GEN;FEM;SG;LGSPEC1
mynelic ADJ;GEN;MASC;SG;LGSPEC2
mynelic ADJ;NOM;FEM;PL;LGSPEC1
mynelic ADJ;INS;NEUT;PL;LGSPEC2
mynelic ADJ;ACC;MASC;SG;LGSPEC2
mynelic ADJ;DAT;NEUT;PL;LGSPEC2
mynelic ADJ;DAT;FEM;PL;LGSPEC2
mynelic ADJ;DAT;FEM;SG;LGSPEC1
mynelic ADJ;ACC;FEM;PL;LGSPEC2
mynelic ADJ;INS;NEUT;PL;LGSPEC1
ielden N;ACC;SG
ielden N;NOM;SG
ielden N;DAT;PL
ielden N;NOM;PL
ielden N;ACC;PL
ielden N;GEN;PL
ielden N;GEN;SG
ielden N;DAT;SG
ielden N;NOM;PL
ielden N;GEN;SG
ielden N;ACC;PL
ielden N;DAT;SG
ielden N;ACC;SG
ielden N;DAT;PL
smocian V;SBJV;PL;PRS
smocian V;SBJV;PL;PST
smocian V;IND;SG;1;PRS
smocian V;IND;SG;3;PRS
smocian V;IND;SG;2;PRS
smocian V.PTCP;PST
smocian V;IND;PL;PST
smocian V.PTCP;PRS
smocian V;IND;SG;2;PST
smocian V;IND;SG;1;PST
smocian V;IMP;PL
smocian V;NFIN
smocian V;SBJV;SG;PST
smocian V;IND;SG;3;PST
smocian V;IMP;SG
smocian V;IND;PL;PRS
smocian V;IND;PL;PRS
smocian V;IND;SG;1;PRS
smocian V;SBJV;SG;PRS
limpan V;SBJV;PL;PST
limpan V;IND;SG;3;PRS
limpan V;SBJV;SG;PST
limpan V;IND;SG;1;PRS
limpan V;NFIN
limpan V;IND;SG;3;PST
limpan V.PTCP;PST
limpan V;IND;SG;2;PST
limpan V;SBJV;PL;PRS
limpan V;IMP;PL
limpan V;SBJV;SG;PRS
limpan V.PTCP;PRS
limpan V;IND;SG;2;PRS
limpan V;IMP;SG
limpan V;IND;SG;1;PST
limpan V;IND;PL;PRS
limpan V;NFIN
limpan V;IND;PL;PST
lufian V;NFIN
lufian V;SBJV;SG;PRS
lufian V;IND;SG;2;PST
lufian V;IMP;PL
lufian V.PTCP;PRS
lufian V;IND;PL;PST
lufian V;IND;SG;2;PRS
lufian V;IND;PL;PRS
lufian V;IND;SG;3;PST
lufian V;IND;SG;3;PRS
lufian V;SBJV;PL;PST
lufian V;SBJV;PL;PRS
lufian V;IMP;PL
lufian V;IND;SG;1;PRS
lufian V.PTCP;PST
lufian V;IND;SG;1;PST
lufian V;SBJV;SG;PST
lufian V;SBJV;PL;PRS
lufian V;IND;SG;1;PRS
lufian V;SBJV;SG;PRS
lufian V;IMP;SG
wyscan V.PTCP;PST
wyscan V;IND;PL;PRS
wyscan V;IND;PL;PST
wyscan V;SBJV;PL;PST
wyscan V;SBJV;SG;PST
wyscan V;NFIN
wyscan V;IND;SG;2;PRS
wyscan V;SBJV;PL;PRS
wyscan V;IND;SG;2;PST
wyscan V;IND;SG;1;PRS
wyscan V;IND;SG;1;PST
wyscan V.PTCP;PRS
wyscan V;IMP;PL
wyscan V;SBJV;SG;PRS
wyscan V;IMP;SG
wyscan V;IND;SG;3;PRS
wyscan V.PTCP;PST
wyscan V;IND;SG;3;PST
hægl N;GEN;PL
hægl N;GEN;SG
hægl N;ACC;PL
hægl N;NOM;SG
hægl N;ACC;SG
hægl N;DAT;SG
hægl N;DAT;PL
hægl N;NOM;PL
soþgiedd N;ACC;PL
soþgiedd N;GEN;SG
soþgiedd N;ACC;SG
soþgiedd N;GEN;PL
soþgiedd N;DAT;SG
soþgiedd N;NOM;PL
soþgiedd N;NOM;SG
soþgiedd N;DAT;PL
geþeodan V;IND;SG;3;PRS
geþeodan V;IND;SG;2;PST
geþeodan V;IND;PL;PRS
geþeodan V;IND;SG;1;PRS
geþeodan V;IND;SG;3;PST
geþeodan V.PTCP;PRS
geþeodan V;IMP;PL
geþeodan V;NFIN
geþeodan V;IND;SG;2;PRS
geþeodan V;SBJV;SG;PRS
geþeodan V;IND;SG;1;PST
geþeodan V;IMP;SG
geþeodan V;IND;PL;PST
geþeodan V;SBJV;PL;PRS
geþeodan V.PTCP;PST
geþeodan V;SBJV;SG;PST
geþeodan V;NFIN
geþeodan V;SBJV;PL;PST
dead ADJ;ACC;MASC;SG;LGSPEC1
dead ADJ;NOM;FEM;PL;LGSPEC2
dead ADJ;NOM;NEUT;PL;LGSPEC2
dead ADJ;DAT;PL;LGSPEC1
dead ADJ;DAT;PL;LGSPEC2
dead ADJ;ACC;MASC;PL;LGSPEC2
dead ADJ;ACC;PL;LGSPEC1
dead ADJ;ACC;NEUT;SG;LGSPEC2
dead ADJ;NOM;MASC;PL;LGSPEC2
dead ADJ;NOM;SG;LGSPEC2
dead ADJ;GEN;PL;LGSPEC1
dead ADJ;ACC;NEUT;SG;LGSPEC1
dead ADJ;DAT;MASC;SG;LGSPEC2
dead ADJ;NOM;PL;LGSPEC1
dead ADJ;NOM;FEM;SG;LGSPEC1
dead ADJ;DAT;FEM;SG;LGSPEC2
dead ADJ;INS;MASC;SG;LGSPEC2
dead ADJ;GEN;MASC;SG;LGSPEC2
dead ADJ;NOM;MASC;SG;LGSPEC1
dead ADJ;INS;NEUT;SG;LGSPEC2
dead ADJ;DAT;SG;LGSPEC1
dead ADJ;ACC;FEM;SG;LGSPEC1
dead ADJ;ACC;FEM;PL;LGSPEC2
dead ADJ;DAT;NEUT;SG;LGSPEC2
dead ADJ;GEN;FEM;SG;LGSPEC2
dead ADJ;ACC;MASC;SG;LGSPEC2
dead ADJ;ACC;NEUT;PL;LGSPEC2
dead ADJ;ACC;FEM;SG;LGSPEC2
dead ADJ;GEN;PL;LGSPEC2
dead ADJ;GEN;SG;LGSPEC1
dead ADJ;NOM;NEUT;SG;LGSPEC1
dead ADJ;GEN;NEUT;SG;LGSPEC2
firgen N;DAT;PL
firgen N;DAT;SG
firgen N;GEN;PL
firgen N;GEN;SG
firgen N;ACC;PL
firgen N;NOM;SG
firgen N;ACC;SG
firgen N;NOM;PL
angsum ADJ;DAT;FEM;SG;LGSPEC1
angsum ADJ;GEN;NEUT;PL;LGSPEC1
angsum ADJ;INS;NEUT;PL;LGSPEC1
angsum ADJ;GEN;MASC;SG;LGSPEC1
angsum ADJ;INS;NEUT;SG;LGSPEC1
angsum ADJ;DAT;NEUT;SG;LGSPEC2
angsum ADJ;INS;FEM;PL;LGSPEC2
angsum ADJ;DAT;MASC;SG;LGSPEC1
angsum ADJ;NOM;NEUT;SG;LGSPEC2
angsum ADJ;INS;NEUT;SG;LGSPEC2
angsum ADJ;INS;MASC;SG;LGSPEC1
angsum ADJ;INS;FEM;SG;LGSPEC2
angsum ADJ;NOM;FEM;SG;LGSPEC1
angsum ADJ;NOM;FEM;SG;LGSPEC2
angsum ADJ;NOM;MASC;SG;LGSPEC2
angsum ADJ;INS;FEM;PL;LGSPEC1
angsum ADJ;NOM;FEM;PL;LGSPEC2
angsum ADJ;ACC;NEUT;PL;LGSPEC2
angsum ADJ;GEN;MASC;PL;LGSPEC1
angsum ADJ;NOM;FEM;PL;LGSPEC1
angsum ADJ;GEN;FEM;PL;LGSPEC1
angsum ADJ;NOM;NEUT;PL;LGSPEC1
angsum ADJ;ACC;NEUT;SG;LGSPEC2
angsum ADJ;DAT;MASC;SG;LGSPEC2
angsum ADJ;GEN;NEUT;PL;LGSPEC2
angsum ADJ;ACC;NEUT;SG;LGSPEC1
angsum ADJ;ACC;NEUT;PL;LGSPEC1
angsum ADJ;DAT;FEM;SG;LGSPEC2
angsum ADJ;GEN;FEM;SG;LGSPEC2
angsum ADJ;ACC;FEM;PL;LGSPEC2
angsum ADJ;DAT;FEM;PL;LGSPEC1
angsum ADJ;GEN;NEUT;SG;LGSPEC2
angsum ADJ;DAT;MASC;PL;LGSPEC2
angsum ADJ;NOM;MASC;PL;LGSPEC2
angsum ADJ;INS;MASC;SG;LGSPEC2
angsum ADJ;INS;MASC;PL;LGSPEC1
angsum ADJ;NOM;MASC;PL;LGSPEC1
angsum ADJ;GEN;FEM;PL;LGSPEC2
angsum ADJ;INS;FEM;SG;LGSPEC1
angsum ADJ;NOM;NEUT;SG;LGSPEC1
angsum ADJ;INS;NEUT;PL;LGSPEC2
angsum ADJ;ACC;MASC;SG;LGSPEC1
angsum ADJ;DAT;NEUT;SG;LGSPEC1
angsum ADJ;INS;MASC;PL;LGSPEC2
angsum ADJ;DAT;NEUT;PL;LGSPEC2
angsum ADJ;NOM;NEUT;PL;LGSPEC2
angsum ADJ;DAT;NEUT;PL;LGSPEC1
angsum ADJ;ACC;MASC;PL;LGSPEC1
angsum ADJ;DAT;MASC;PL;LGSPEC1
angsum ADJ;DAT;FEM;PL;LGSPEC2
angsum ADJ;GEN;NEUT;SG;LGSPEC1
angsum ADJ;NOM;MASC;SG;LGSPEC1
angsum ADJ;ACC;FEM;SG;LGSPEC2
angsum ADJ;GEN;FEM;PL;LGSPEC1
angsum ADJ;ACC;MASC;SG;LGSPEC2
angsum ADJ;GEN;MASC;PL;LGSPEC2
angsum ADJ;ACC;FEM;PL;LGSPEC1
angsum ADJ;NOM;FEM;PL;LGSPEC2
angsum ADJ;ACC;MASC;PL;LGSPEC2
angsum ADJ;GEN;FEM;SG;LGSPEC1
angsum ADJ;NOM;NEUT;PL;LGSPEC2
angsum ADJ;GEN;MASC;PL;LGSPEC1
angsum ADJ;GEN;MASC;SG;LGSPEC2
angsum ADJ;ACC;FEM;SG;LGSPEC1
mamorian V.PTCP;PRS
mamorian V;IMP;PL
mamorian V;IND;SG;2;PST
mamorian V;IND;SG;1;PST
mamorian V;SBJV;PL;PST
mamorian V;SBJV;SG;PST
mamorian V;IND;SG;3;PRS
mamorian V;IND;PL;PRS
mamorian V;SBJV;PL;PRS
mamorian V;IND;PL;PST
mamorian V;NFIN
mamorian V;NFIN
mamorian V;IND;SG;1;PRS
mamorian V;IND;PL;PRS
mamorian V;IND;SG;1;PRS
mamorian V;IND;SG;2;PRS
mamorian V.PTCP;PST
mamorian V;IMP;SG
mamorian V;SBJV;SG;PRS
mamorian V;SBJV;PL;PRS
mamorian V;IND;SG;3;PST
mamorian V;IMP;PL
brægen N;DAT;SG
brægen N;GEN;PL
brægen N;ACC;PL
brægen N;DAT;PL
brægen N;NOM;SG
brægen N;ACC;SG
brægen N;GEN;SG
brægen N;NOM;PL
hefig ADJ;DAT;NEUT;PL;LGSPEC2
hefig ADJ;ACC;NEUT;SG;LGSPEC2
hefig ADJ;DAT;FEM;PL;LGSPEC2
hefig ADJ;GEN;NEUT;PL;LGSPEC1
hefig ADJ;NOM;FEM;PL;LGSPEC2
hefig ADJ;INS;MASC;PL;LGSPEC1
hefig ADJ;DAT;MASC;PL;LGSPEC1
hefig ADJ;INS;FEM;SG;LGSPEC1
hefig ADJ;DAT;FEM;SG;LGSPEC1
hefig ADJ;NOM;MASC;PL;LGSPEC1
hefig ADJ;GEN;MASC;PL;LGSPEC2
hefig ADJ;ACC;FEM;PL;LGSPEC1
hefig ADJ;NOM;FEM;PL;LGSPEC1
hefig ADJ;GEN;MASC;PL;LGSPEC1
hefig ADJ;ACC;MASC;SG;LGSPEC1
hefig ADJ;DAT;NEUT;PL;LGSPEC1
hefig ADJ;GEN;FEM;SG;LGSPEC1
hefig ADJ;GEN;MASC;SG;LGSPEC2
hefig ADJ;INS;NEUT;PL;LGSPEC2
hefig ADJ;ACC;NEUT;SG;LGSPEC1
hefig ADJ;INS;FEM;PL;LGSPEC2
hefig ADJ;GEN;MASC;SG;LGSPEC1
hefig ADJ;NOM;NEUT;PL;LGSPEC1
hefig ADJ;ACC;FEM;SG;LGSPEC1
hefig ADJ;GEN;FEM;PL;LGSPEC2
hefig ADJ;INS;MASC;SG;LGSPEC1
hefig ADJ;ACC;NEUT;PL;LGSPEC1
hefig ADJ;DAT;FEM;SG;LGSPEC2
hefig ADJ;INS;NEUT;SG;LGSPEC1
hefig ADJ;INS;FEM;SG;LGSPEC2
hefig ADJ;NOM;MASC;PL;LGSPEC2
hefig ADJ;ACC;MASC;SG;LGSPEC2
hefig ADJ;INS;NEUT;PL;LGSPEC1
hefig ADJ;DAT;MASC;PL;LGSPEC2
hefig ADJ;ACC;MASC;PL;LGSPEC1
hefig ADJ;GEN;FEM;PL;LGSPEC1
hefig ADJ;DAT;MASC;SG;LGSPEC2
hefig ADJ;DAT;NEUT;SG;LGSPEC2
hefig ADJ;ACC;MASC;PL;LGSPEC2
hefig ADJ;ACC;FEM;PL;LGSPEC2
hefig ADJ;INS;FEM;PL;LGSPEC1
hefig ADJ;INS;MASC;PL;LGSPEC2
hefig ADJ;NOM;FEM;SG;LGSPEC1
hefig ADJ;ACC;NEUT;PL;LGSPEC2
hefig ADJ;NOM;NEUT;SG;LGSPEC2
hefig ADJ;NOM;MASC;SG;LGSPEC1
hefig ADJ;INS;MASC;SG;LGSPEC2
hefig ADJ;DAT;MASC;SG;LGSPEC1
hefig ADJ;NOM;FEM;SG;LGSPEC2
hefig ADJ;GEN;NEUT;SG;LGSPEC2
hefig ADJ;NOM;NEUT;SG;LGSPEC1
hefig ADJ;NOM;FEM;SG;LGSPEC2
hefig ADJ;ACC;NEUT;PL;LGSPEC2
hefig ADJ;ACC;FEM;PL;LGSPEC2
hefig ADJ;NOM;NEUT;PL;LGSPEC2
hefig ADJ;DAT;NEUT;SG;LGSPEC1
hefig ADJ;NOM;FEM;SG;LGSPEC1
hefig ADJ;GEN;NEUT;SG;LGSPEC1
hefig ADJ;NOM;MASC;SG;LGSPEC2
hefig ADJ;NOM;FEM;PL;LGSPEC2
hefig ADJ;GEN;FEM;SG;LGSPEC2
hefig ADJ;INS;NEUT;SG;LGSPEC2
hefig ADJ;GEN;NEUT;SG;LGSPEC2
hefig ADJ;GEN;FEM;PL;LGSPEC1
hefig ADJ;ACC;FEM;SG;LGSPEC2
hefig ADJ;DAT;MASC;SG;LGSPEC2
hefig ADJ;DAT;FEM;SG;LGSPEC1
hefig ADJ;DAT;MASC;PL;LGSPEC1
hefig ADJ;DAT;NEUT;PL;LGSPEC2
hefig ADJ;INS;NEUT;SG;LGSPEC2
hefig ADJ;NOM;FEM;PL;LGSPEC2
hefig ADJ;GEN;MASC;PL;LGSPEC1
hefig ADJ;GEN;MASC;SG;LGSPEC2
hefig ADJ;ACC;NEUT;PL;LGSPEC1
hefig ADJ;DAT;FEM;PL;LGSPEC1
hefig ADJ;NOM;NEUT;SG;LGSPEC1
hefig ADJ;DAT;MASC;PL;LGSPEC2
hefig ADJ;DAT;FEM;PL;LGSPEC2
hefig ADJ;INS;MASC;SG;LGSPEC2
hefig ADJ;NOM;FEM;PL;LGSPEC1
hefig ADJ;GEN;MASC;SG;LGSPEC1
hefig ADJ;DAT;NEUT;SG;LGSPEC1
hefig ADJ;DAT;MASC;SG;LGSPEC1
hefig ADJ;GEN;NEUT;PL;LGSPEC2
geofon N;NOM;PL
geofon N;ACC;SG
geofon N;GEN;SG
geofon N;DAT;PL
geofon N;NOM;SG
geofon N;ACC;PL
geofon N;GEN;PL
geofon N;ACC;SG
geofon N;DAT;SG
geofon N;DAT;SG
geofon N;NOM;PL
geofon N;GEN;PL
æscholt N;NOM;PL
æscholt N;DAT;SG
æscholt N;GEN;PL
æscholt N;GEN;SG
æscholt N;ACC;SG
æscholt N;ACC;PL
æscholt N;NOM;SG
æscholt N;DAT;PL
hyr N;NOM;PL
hyr N;DAT;PL
hyr N;GEN;PL
hyr N;DAT;SG
hyr N;NOM;SG
hyr N;ACC;PL
hyr N;ACC;SG
hyr N;GEN;SG
hyr N;ACC;PL
climban V;NFIN
climban V.PTCP;PST
climban V;IND;SG;2;PST
climban V;IND;SG;1;PST
climban V;IMP;SG
climban V.PTCP;PRS
climban V;IND;SG;3;PRS
climban V;IMP;PL
climban V;SBJV;SG;PST
climban V;SBJV;PL;PST
climban V;SBJV;SG;PRS
climban V;SBJV;PL;PRS
climban V;IND;PL;PRS
climban V;IND;PL;PST
climban V;IND;SG;1;PRS
climban V;IND;SG;2;PRS
climban V;IND;SG;3;PST
bifian V;IND;PL;PRS
bifian V;IND;PL;PST
bifian V;IMP;PL
bifian V.PTCP;PRS
bifian V.PTCP;PST
bifian V;IND;SG;1;PRS
bifian V;SBJV;PL;PRS
bifian V;IND;SG;2;PRS
bifian V;NFIN
bifian V;SBJV;PL;PST
bifian V;IND;SG;3;PST
bifian V;SBJV;SG;PST
bifian V;SBJV;SG;PRS
bifian V;IMP;SG
bifian V;IND;SG;1;PST
bifian V;IMP;PL
bifian V;IND;SG;2;PST
bifian V;IND;PL;PRS
bifian V;SBJV;SG;PRS
bifian V.PTCP;PST
bifian V;IND;SG;3;PRS
dugan V;IND;PL;PST
dugan V;SBJV;SG;PRS
dugan V;NFIN
dugan V.PTCP;PRS
dugan V;SBJV;PL;PRS
dugan V;SBJV;SG;PST
dugan V;SBJV;PL;PST
dugan V;IND;SG;3;PRS
dugan V;IND;SG;1;PRS
dugan V;IND;SG;3;PST
dugan V;IMP;PL
dugan V;IND;PL;PRS
dugan V;IND;SG;2;PRS
dugan V;IND;SG;2;PST
dugan V;IND;SG;1;PST
dugan V;IMP;SG
dugan V.PTCP;PST
gewrecan V.PTCP;PRS
gewrecan V;NFIN
gewrecan V.PTCP;PST
gewrecan V;SBJV;PL;PST
gewrecan V;SBJV;SG;PST
gewrecan V;IND;SG;1;PRS
gewrecan V;IND;SG;1;PST
gewrecan V;SBJV;SG;PRS
gewrecan V;IND;SG;3;PRS
gewrecan V;IND;PL;PST
gewrecan V;IMP;PL
gewrecan V;IND;SG;3;PST
gewrecan V;IND;SG;2;PST
gewrecan V;SBJV;PL;PRS
gewrecan V;IMP;SG
gewrecan V;IND;PL;PRS
gewrecan V;IND;SG;2;PRS
gewrecan V.PTCP;PST
midniht N;GEN;PL
midniht N;NOM;PL
midniht N;DAT;SG
midniht N;ACC;PL
midniht N;GEN;SG
midniht N;ACC;SG
midniht N;DAT;PL
midniht N;NOM;SG
midniht N;GEN;SG
iw N;ACC;SG
iw N;DAT;PL
iw N;GEN;SG
iw N;NOM;SG
iw N;GEN;PL
iw N;ACC;PL
iw N;NOM;PL
iw N;DAT;SG
oferflitan V;SBJV;SG;PST
oferflitan V;IND;SG;2;PRS
oferflitan V;IND;PL;PST
oferflitan V;IND;SG;3;PST
oferflitan V;NFIN
oferflitan V;IND;SG;3;PRS
oferflitan V;IND;PL;PRS
oferflitan V;IMP;SG
oferflitan V;IND;SG;1;PRS
oferflitan V;IND;SG;1;PST
oferflitan V.PTCP;PST
oferflitan V;SBJV;PL;PST
oferflitan V;SBJV;SG;PRS
oferflitan V;IMP;PL
oferflitan V;IND;SG;2;PST
oferflitan V.PTCP;PRS
oferflitan V;SBJV;PL;PRS
oferflitan V.PTCP;PST
read ADJ;GEN;PL;LGSPEC1
read ADJ;ACC;MASC;SG;LGSPEC2
read ADJ;INS;NEUT;SG;LGSPEC2
read ADJ;DAT;NEUT;SG;LGSPEC2
read ADJ;NOM;NEUT;SG;LGSPEC1
read ADJ;GEN;FEM;SG;LGSPEC2
read ADJ;NOM;PL;LGSPEC1
read ADJ;ACC;NEUT;SG;LGSPEC1
read ADJ;NOM;NEUT;PL;LGSPEC2
read ADJ;DAT;MASC;SG;LGSPEC2
read ADJ;ACC;FEM;SG;LGSPEC2
read ADJ;ACC;PL;LGSPEC1
read ADJ;ACC;NEUT;PL;LGSPEC2
read ADJ;DAT;FEM;SG;LGSPEC2
read ADJ;ACC;NEUT;SG;LGSPEC2
read ADJ;ACC;FEM;SG;LGSPEC1
read ADJ;DAT;SG;LGSPEC1
read ADJ;ACC;MASC;SG;LGSPEC1
read ADJ;NOM;FEM;PL;LGSPEC2
read ADJ;DAT;PL;LGSPEC2
read ADJ;ACC;FEM;PL;LGSPEC2
read ADJ;NOM;FEM;SG;LGSPEC1
read ADJ;NOM;MASC;SG;LGSPEC1
read ADJ;GEN;PL;LGSPEC1
read ADJ;ACC;MASC;PL;LGSPEC2
read ADJ;GEN;PL;LGSPEC2
read ADJ;GEN;MASC;SG;LGSPEC2
read ADJ;NOM;MASC;PL;LGSPEC2
read ADJ;INS;MASC;SG;LGSPEC2
read ADJ;GEN;SG;LGSPEC1
read ADJ;NOM;SG;LGSPEC2
read ADJ;GEN;NEUT;SG;LGSPEC2
read ADJ;ACC;NEUT;PL;LGSPEC2
read ADJ;DAT;PL;LGSPEC1
mihtig ADJ;INS;MASC;SG;LGSPEC1
mihtig ADJ;GEN;MASC;SG;LGSPEC2
mihtig ADJ;DAT;MASC;SG;LGSPEC2
mihtig ADJ;NOM;MASC;PL;LGSPEC1
mihtig ADJ;NOM;FEM;PL;LGSPEC1
mihtig ADJ;ACC;FEM;PL;LGSPEC2
mihtig ADJ;NOM;NEUT;PL;LGSPEC2
mihtig ADJ;DAT;MASC;PL;LGSPEC2
mihtig ADJ;DAT;MASC;PL;LGSPEC1
mihtig ADJ;DAT;MASC;SG;LGSPEC1
mihtig ADJ;NOM;MASC;SG;LGSPEC2
mihtig ADJ;INS;MASC;SG;LGSPEC2
mihtig ADJ;NOM;MASC;PL;LGSPEC2
mihtig ADJ;NOM;NEUT;PL;LGSPEC1
mihtig ADJ;GEN;NEUT;SG;LGSPEC1
mihtig ADJ;DAT;FEM;SG;LGSPEC2
mihtig ADJ;GEN;MASC;SG;LGSPEC1
mihtig ADJ;DAT;NEUT;PL;LGSPEC1
mihtig ADJ;NOM;MASC;SG;LGSPEC1
mihtig ADJ;GEN;NEUT;PL;LGSPEC1
mihtig ADJ;GEN;FEM;PL;LGSPEC1
mihtig ADJ;INS;MASC;PL;LGSPEC2
mihtig ADJ;DAT;NEUT;SG;LGSPEC2
mihtig ADJ;GEN;FEM;SG;LGSPEC1
mihtig ADJ;DAT;NEUT;SG;LGSPEC1
mihtig ADJ;GEN;MASC;PL;LGSPEC1
mihtig ADJ;INS;FEM;SG;LGSPEC2
mihtig ADJ;INS;FEM;PL;LGSPEC1
mihtig ADJ;DAT;FEM;PL;LGSPEC1
mihtig ADJ;INS;NEUT;PL;LGSPEC2
mihtig ADJ;DAT;FEM;PL;LGSPEC2
mihtig ADJ;INS;FEM;SG;LGSPEC1
mihtig ADJ;NOM;FEM;SG;LGSPEC1
mihtig ADJ;ACC;FEM;SG;LGSPEC1
mihtig ADJ;ACC;FEM;SG;LGSPEC2
mihtig ADJ;DAT;FEM;SG;LGSPEC1
mihtig ADJ;INS;MASC;PL;LGSPEC1
mihtig ADJ;ACC;MASC;PL;LGSPEC2
mihtig ADJ;NOM;NEUT;SG;LGSPEC2
mihtig ADJ;NOM;NEUT;SG;LGSPEC1
mihtig ADJ;GEN;FEM;SG;LGSPEC2
mihtig ADJ;INS;NEUT;PL;LGSPEC1
mihtig ADJ;INS;NEUT;SG;LGSPEC1
mihtig ADJ;ACC;MASC;SG;LGSPEC1
mihtig ADJ;DAT;NEUT;PL;LGSPEC2
mihtig ADJ;ACC;NEUT;PL;LGSPEC1
mihtig ADJ;ACC;NEUT;SG;LGSPEC1
mihtig ADJ;GEN;NEUT;SG;LGSPEC2
mihtig ADJ;GEN;MASC;PL;LGSPEC2
mihtig ADJ;ACC;NEUT;PL;LGSPEC2
mihtig ADJ;ACC;MASC;PL;LGSPEC1
mihtig ADJ;GEN;FEM;PL;LGSPEC2
mihtig ADJ;INS;FEM;PL;LGSPEC2
mihtig ADJ;ACC;NEUT;SG;LGSPEC2
mihtig ADJ;ACC;FEM;PL;LGSPEC1
mihtig ADJ;INS;FEM;PL;LGSPEC2
mihtig ADJ;NOM;MASC;SG;LGSPEC1
mihtig ADJ;NOM;FEM;PL;LGSPEC2
mihtig ADJ;NOM;NEUT;PL;LGSPEC2
mihtig ADJ;INS;NEUT;SG;LGSPEC2
mihtig ADJ;ACC;NEUT;SG;LGSPEC1
mihtig ADJ;GEN;NEUT;PL;LGSPEC1
mihtig ADJ;NOM;FEM;SG;LGSPEC2
mihtig ADJ;ACC;FEM;PL;LGSPEC1
mihtig ADJ;INS;MASC;SG;LGSPEC2
mihtig ADJ;GEN;MASC;SG;LGSPEC1
mihtig ADJ;ACC;FEM;PL;LGSPEC2
mihtig ADJ;NOM;FEM;SG;LGSPEC1
mihtig ADJ;NOM;FEM;PL;LGSPEC2
mihtig ADJ;INS;MASC;SG;LGSPEC1
mihtig ADJ;DAT;FEM;SG;LGSPEC1
mihtig ADJ;ACC;FEM;SG;LGSPEC1
mihtig ADJ;NOM;NEUT;SG;LGSPEC1
mihtig ADJ;NOM;FEM;PL;LGSPEC1
mihtig ADJ;INS;NEUT;PL;LGSPEC2
mihtig ADJ;GEN;MASC;PL;LGSPEC1
mihtig ADJ;INS;NEUT;SG;LGSPEC1
mihtig ADJ;ACC;MASC;SG;LGSPEC2
mihtig ADJ;NOM;MASC;PL;LGSPEC1
mihtig ADJ;INS;FEM;PL;LGSPEC1
mihtig ADJ;GEN;NEUT;PL;LGSPEC2
beobread N;GEN;SG
beobread N;ACC;SG
beobread N;DAT;PL
beobread N;DAT;SG
beobread N;NOM;SG
beobread N;NOM;PL
beobread N;GEN;PL
beobread N;ACC;PL
steorfan V;SBJV;PL;PST
steorfan V.PTCP;PST
steorfan V;SBJV;SG;PST
steorfan V;IND;PL;PRS
steorfan V;NFIN
steorfan V;IND;SG;3;PRS
steorfan V;IND;SG;3;PST
steorfan V;IMP;SG
steorfan V;SBJV;PL;PRS
steorfan V;IND;SG;1;PST
steorfan V;SBJV;SG;PRS
steorfan V;IND;SG;1;PRS
steorfan V;IMP;PL
steorfan V;IND;PL;PST
steorfan V.PTCP;PRS
steorfan V;IND;SG;2;PST
steorfan V.PTCP;PST
steorfan V;IND;SG;2;PRS
moru N;NOM;PL
moru N;ACC;PL
moru N;DAT;SG
moru N;GEN;SG
moru N;DAT;PL
moru N;GEN;PL
moru N;ACC;SG
moru N;NOM;SG
torfian V;SBJV;PL;PST
torfian V;IND;PL;PRS
torfian V;IND;SG;1;PRS
torfian V;IND;SG;1;PST
torfian V;IND;SG;2;PST
torfian V;NFIN
torfian V.PTCP;PST
torfian V;IMP;PL
torfian V;SBJV;SG;PST
torfian V;SBJV;SG;PRS
torfian V;IMP;SG
torfian V;SBJV;PL;PRS
torfian V;IND;SG;2;PRS
torfian V;IND;SG;3;PST
torfian V;IND;SG;3;PRS
torfian V.PTCP;PRS
torfian V;IMP;PL
torfian V;NFIN
torfian V;IND;SG;1;PRS
torfian V;IND;PL;PST
torfian V;SBJV;PL;PRS
lygen N;NOM;SG
lygen N;NOM;PL
lygen N;DAT;SG
lygen N;GEN;PL
lygen N;ACC;PL
lygen N;GEN;SG
lygen N;ACC;SG
lygen N;ACC;PL
lygen N;NOM;PL
lygen N;DAT;PL
bletsian V;SBJV;SG;PST
bletsian V;IND;PL;PRS
bletsian V;IND;SG;1;PST
bletsian V;SBJV;PL;PRS
bletsian V.PTCP;PST
bletsian V;IND;SG;3;PRS
bletsian V;NFIN
bletsian V;IND;SG;2;PST
bletsian V;IND;SG;1;PRS
bletsian V;IND;PL;PST
bletsian V;IMP;PL
bletsian V;SBJV;SG;PRS
bletsian V;IMP;SG
bletsian V.PTCP;PRS
bletsian V;IND;SG;2;PRS
bletsian V;SBJV;PL;PRS
bletsian V;IND;PL;PRS
bletsian V;IND;SG;3;PST
bletsian V;NFIN
bletsian V;SBJV;PL;PST
bletsian V.PTCP;PRS
aswebban V.PTCP;PST
aswebban V;IMP;SG
aswebban V;IND;SG;2;PRS
aswebban V;SBJV;PL;PRS
aswebban V;IND;SG;3;PST
aswebban V;IND;SG;2;PST
aswebban V;IND;PL;PST
aswebban V;IND;SG;1;PRS
aswebban V;SBJV;SG;PST
aswebban V;IND;SG;1;PST
aswebban V;SBJV;SG;PRS
aswebban V.PTCP;PRS
aswebban V;IND;PL;PRS
aswebban V;SBJV;PL;PST
aswebban V;IND;SG;3;PRS
aswebban V;NFIN
aswebban V;IMP;PL
aswebban V;NFIN
modiglic ADJ;ACC;NEUT;PL;LGSPEC1
modiglic ADJ;ACC;NEUT;SG;LGSPEC2
modiglic ADJ;ACC;FEM;SG;LGSPEC1
modiglic ADJ;GEN;NEUT;SG;LGSPEC2
modiglic ADJ;NOM;FEM;SG;LGSPEC1
modiglic ADJ;GEN;FEM;SG;LGSPEC1
modiglic ADJ;INS;MASC;PL;LGSPEC2
modiglic ADJ;NOM;FEM;SG;LGSPEC2
modiglic ADJ;GEN;MASC;SG;LGSPEC2
modiglic ADJ;ACC;FEM;PL;LGSPEC2
modiglic ADJ;INS;MASC;PL;LGSPEC1
modiglic ADJ;ACC;NEUT;PL;LGSPEC2
modiglic ADJ;DAT;NEUT;PL;LGSPEC1
modiglic ADJ;DAT;MASC;SG;LGSPEC2
modiglic ADJ;INS;NEUT;PL;LGSPEC2
modiglic ADJ;ACC;MASC;SG;LGSPEC1
modiglic ADJ;INS;NEUT;SG;LGSPEC2
modiglic ADJ;NOM;NEUT;PL;LGSPEC2
modiglic ADJ;GEN;FEM;PL;LGSPEC1
modiglic ADJ;NOM;MASC;SG;LGSPEC1
modiglic ADJ;GEN;MASC;PL;LGSPEC1
modiglic ADJ;INS;NEUT;PL;LGSPEC1
modiglic ADJ;NOM;MASC;PL;LGSPEC1
modiglic ADJ;NOM;NEUT;SG;LGSPEC1
modiglic ADJ;INS;MASC;SG;LGSPEC1
modiglic ADJ;ACC;FEM;SG;LGSPEC2
modiglic ADJ;DAT;FEM;PL;LGSPEC1
modiglic ADJ;INS;FEM;SG;LGSPEC1
modiglic ADJ;GEN;NEUT;PL;LGSPEC1
modiglic ADJ;ACC;MASC;PL;LGSPEC2
modiglic ADJ;DAT;NEUT;PL;LGSPEC2
modiglic ADJ;NOM;NEUT;PL;LGSPEC1
modiglic ADJ;INS;NEUT;SG;LGSPEC1
modiglic ADJ;GEN;NEUT;SG;LGSPEC1
modiglic ADJ;NOM;FEM;PL;LGSPEC2
modiglic ADJ;DAT;NEUT;SG;LGSPEC1
modiglic ADJ;DAT;FEM;PL;LGSPEC2
modiglic ADJ;ACC;MASC;SG;LGSPEC2
modiglic ADJ;ACC;NEUT;SG;LGSPEC1
modiglic ADJ;GEN;NEUT;PL;LGSPEC2
modiglic ADJ;DAT;FEM;SG;LGSPEC2
modiglic ADJ;INS;FEM;SG;LGSPEC2
modiglic ADJ;ACC;MASC;PL;LGSPEC1
modiglic ADJ;INS;FEM;PL;LGSPEC1
modiglic ADJ;DAT;NEUT;SG;LGSPEC2
modiglic ADJ;DAT;FEM;SG;LGSPEC1
modiglic ADJ;NOM;MASC;PL;LGSPEC2
modiglic ADJ;DAT;MASC;PL;LGSPEC1
modiglic ADJ;GEN;MASC;PL;LGSPEC2
modiglic ADJ;DAT;MASC;SG;LGSPEC1
modiglic ADJ;DAT;MASC;PL;LGSPEC2
modiglic ADJ;ACC;FEM;PL;LGSPEC1
modiglic ADJ;GEN;FEM;PL;LGSPEC2
modiglic ADJ;GEN;MASC;SG;LGSPEC1
modiglic ADJ;NOM;FEM;PL;LGSPEC2
modiglic ADJ;NOM;FEM;PL;LGSPEC1
modiglic ADJ;INS;FEM;PL;LGSPEC2
modiglic ADJ;NOM;NEUT;SG;LGSPEC2
modiglic ADJ;NOM;MASC;SG;LGSPEC2
modiglic ADJ;INS;MASC;SG;LGSPEC2
modiglic ADJ;ACC;NEUT;PL;LGSPEC2
modiglic ADJ;GEN;FEM;PL;LGSPEC1
modiglic ADJ;GEN;FEM;SG;LGSPEC2
forþgewitan V;NFIN
forþgewitan V.PTCP;PST
forþgewitan V;IND;PL;PST
forþgewitan V;SBJV;PL;PST
forþgewitan V;SBJV;PL;PRS
forþgewitan V;IMP;SG
forþgewitan V;IND;SG;2;PRS
forþgewitan V;IMP;PL
forþgewitan V;IND;SG;3;PRS
forþgewitan V.PTCP;PRS
forþgewitan V;IND;PL;PRS
forþgewitan V;IND;SG;2;PST
forþgewitan V;IND;SG;1;PST
forþgewitan V;IND;SG;1;PRS
forþgewitan V;SBJV;SG;PST
forþgewitan V;IND;SG;3;PST
forþgewitan V;SBJV;SG;PRS
sellic ADJ;INS;NEUT;PL;LGSPEC2
sellic ADJ;NOM;MASC;SG;LGSPEC1
sellic ADJ;GEN;MASC;PL;LGSPEC1
sellic ADJ;DAT;MASC;SG;LGSPEC2
sellic ADJ;INS;MASC;PL;LGSPEC2
sellic ADJ;NOM;NEUT;SG;LGSPEC1
sellic ADJ;GEN;NEUT;PL;LGSPEC1
sellic ADJ;ACC;FEM;SG;LGSPEC2
sellic ADJ;DAT;FEM;SG;LGSPEC2
sellic ADJ;ACC;FEM;SG;LGSPEC1
sellic ADJ;GEN;MASC;SG;LGSPEC2
sellic ADJ;ACC;NEUT;PL;LGSPEC2
sellic ADJ;ACC;MASC;PL;LGSPEC2
sellic ADJ;GEN;MASC;PL;LGSPEC2
sellic ADJ;NOM;NEUT;PL;LGSPEC2
sellic ADJ;GEN;NEUT;SG;LGSPEC2
sellic ADJ;ACC;NEUT;PL;LGSPEC1
sellic ADJ;ACC;FEM;PL;LGSPEC2
sellic ADJ;ACC;MASC;SG;LGSPEC1
sellic ADJ;DAT;NEUT;PL;LGSPEC2
sellic ADJ;GEN;FEM;PL;LGSPEC2
sellic ADJ;GEN;NEUT;PL;LGSPEC2
sellic ADJ;DAT;NEUT;SG;LGSPEC2
sellic ADJ;INS;MASC;SG;LGSPEC1
sellic ADJ;NOM;FEM;PL;LGSPEC2
sellic ADJ;GEN;FEM;SG;LGSPEC1
sellic ADJ;GEN;NEUT;SG;LGSPEC1
sellic ADJ;INS;NEUT;SG;LGSPEC2
sellic ADJ;NOM;MASC;PL;LGSPEC2
sellic ADJ;INS;FEM;SG;LGSPEC1
sellic ADJ;NOM;MASC;PL;LGSPEC1
sellic ADJ;GEN;MASC;SG;LGSPEC1
sellic ADJ;INS;FEM;PL;LGSPEC1
sellic ADJ;NOM;MASC;SG;LGSPEC2
sellic ADJ;DAT;MASC;PL;LGSPEC1
sellic ADJ;ACC;MASC;PL;LGSPEC1
sellic ADJ;ACC;NEUT;SG;LGSPEC2
sellic ADJ;GEN;FEM;PL;LGSPEC1
sellic ADJ;DAT;MASC;SG;LGSPEC1
sellic ADJ;DAT;NEUT;SG;LGSPEC1
sellic ADJ;INS;MASC;SG;LGSPEC2
sellic ADJ;INS;MASC;PL;LGSPEC1
sellic ADJ;ACC;NEUT;SG;LGSPEC1
sellic ADJ;ACC;FEM;PL;LGSPEC1
sellic ADJ;NOM;FEM;SG;LGSPEC1
sellic ADJ;GEN;FEM;PL;LGSPEC1
sellic ADJ;DAT;NEUT;PL;LGSPEC1
sellic ADJ;INS;FEM;SG;LGSPEC2
sellic ADJ;DAT;FEM;SG;LGSPEC1
sellic ADJ;ACC;MASC;SG;LGSPEC2
sellic ADJ;INS;NEUT;SG;LGSPEC1
sellic ADJ;GEN;FEM;SG;LGSPEC2
sellic ADJ;DAT;MASC;PL;LGSPEC2
sellic ADJ;NOM;NEUT;PL;LGSPEC1
sellic ADJ;GEN;MASC;PL;LGSPEC1
sellic ADJ;NOM;NEUT;SG;LGSPEC2
sellic ADJ;DAT;FEM;PL;LGSPEC1
sellic ADJ;INS;FEM;PL;LGSPEC2
sellic ADJ;ACC;NEUT;PL;LGSPEC2
sellic ADJ;NOM;FEM;PL;LGSPEC1
sellic ADJ;DAT;FEM;PL;LGSPEC2
sellic ADJ;NOM;NEUT;PL;LGSPEC2
sellic ADJ;NOM;FEM;SG;LGSPEC2
sellic ADJ;INS;NEUT;PL;LGSPEC1
stæger N;ACC;PL
stæger N;DAT;PL
stæger N;GEN;PL
stæger N;ACC;SG
stæger N;GEN;SG
stæger N;NOM;SG
stæger N;DAT;SG
stæger N;NOM;PL
stæger N;NOM;PL
stæger N;GEN;SG
stæger N;ACC;SG
grima N;NOM;SG
grima N;DAT;SG
grima N;ACC;PL
grima N;GEN;PL
grima N;GEN;SG
grima N;DAT;PL
grima N;NOM;PL
grima N;ACC;SG
eþelweard N;GEN;PL
eþelweard N;DAT;PL
eþelweard N;DAT;SG
eþelweard N;ACC;SG
eþelweard N;NOM;PL
eþelweard N;GEN;SG
eþelweard N;ACC;PL
eþelweard N;NOM;SG
bilewit ADJ;ACC;FEM;SG;LGSPEC2
bilewit ADJ;INS;MASC;PL;LGSPEC1
bilewit ADJ;GEN;FEM;PL;LGSPEC1
bilewit ADJ;ACC;FEM;SG;LGSPEC1
bilewit ADJ;NOM;MASC;SG;LGSPEC1
bilewit ADJ;ACC;FEM;PL;LGSPEC2
bilewit ADJ;NOM;NEUT;SG;LGSPEC1
bilewit ADJ;INS;NEUT;SG;LGSPEC1
bilewit ADJ;NOM;NEUT;PL;LGSPEC2
bilewit ADJ;DAT;NEUT;PL;LGSPEC2
bilewit ADJ;DAT;FEM;SG;LGSPEC1
bilewit ADJ;ACC;MASC;PL;LGSPEC2
bilewit ADJ;NOM;FEM;PL;LGSPEC1
bilewit ADJ;INS;NEUT;PL;LGSPEC1
bilewit ADJ;GEN;NEUT;SG;LGSPEC2
bilewit ADJ;GEN;NEUT;PL;LGSPEC2
bilewit ADJ;GEN;FEM;SG;LGSPEC2
bilewit ADJ;ACC;MASC;SG;LGSPEC2
bilewit ADJ;NOM;MASC;PL;LGSPEC1
bilewit ADJ;INS;MASC;SG;LGSPEC2
bilewit ADJ;DAT;MASC;PL;LGSPEC2
bilewit ADJ;ACC;NEUT;PL;LGSPEC2
bilewit ADJ;GEN;MASC;PL;LGSPEC2
bilewit ADJ;ACC;MASC;PL;LGSPEC1
bilewit ADJ;ACC;NEUT;SG;LGSPEC1
bilewit ADJ;GEN;MASC;SG;LGSPEC2
bilewit ADJ;INS;NEUT;SG;LGSPEC2
bilewit ADJ;ACC;NEUT;SG;LGSPEC2
bilewit ADJ;DAT;FEM;PL;LGSPEC1
bilewit ADJ;NOM;MASC;PL;LGSPEC2
bilewit ADJ;DAT;MASC;SG;LGSPEC2
bilewit ADJ;NOM;NEUT;PL;LGSPEC1
bilewit ADJ;GEN;FEM;PL;LGSPEC2
bilewit ADJ;DAT;NEUT;SG;LGSPEC2
bilewit ADJ;ACC;FEM;PL;LGSPEC1
bilewit ADJ;INS;FEM;SG;LGSPEC2
bilewit ADJ;DAT;NEUT;PL;LGSPEC1
bilewit ADJ;NOM;NEUT;SG;LGSPEC2
bilewit ADJ;NOM;FEM;SG;LGSPEC1
bilewit ADJ;DAT;FEM;PL;LGSPEC2
bilewit ADJ;INS;FEM;PL;LGSPEC2
bilewit ADJ;GEN;MASC;PL;LGSPEC1
bilewit ADJ;DAT;MASC;PL;LGSPEC1
bilewit ADJ;INS;MASC;SG;LGSPEC1
bilewit ADJ;INS;FEM;PL;LGSPEC1
bilewit ADJ;GEN;MASC;SG;LGSPEC1
bilewit ADJ;NOM;MASC;SG;LGSPEC2
bilewit ADJ;ACC;NEUT;PL;LGSPEC1
bilewit ADJ;GEN;FEM;SG;LGSPEC1
bilewit ADJ;NOM;FEM;PL;LGSPEC2
bilewit ADJ;GEN;NEUT;PL;LGSPEC1
bilewit ADJ;INS;NEUT;PL;LGSPEC2
bilewit ADJ;GEN;NEUT;PL;LGSPEC1
bilewit ADJ;NOM;FEM;SG;LGSPEC2
bilewit ADJ;DAT;MASC;SG;LGSPEC1
bilewit ADJ;GEN;MASC;PL;LGSPEC1
bilewit ADJ;INS;FEM;SG;LGSPEC1
bilewit ADJ;ACC;NEUT;PL;LGSPEC2
bilewit ADJ;DAT;FEM;SG;LGSPEC2
bilewit ADJ;DAT;NEUT;SG;LGSPEC1
bilewit ADJ;NOM;FEM;PL;LGSPEC2
bilewit ADJ;ACC;FEM;PL;LGSPEC2
bilewit ADJ;GEN;NEUT;SG;LGSPEC1
bilewit ADJ;INS;MASC;PL;LGSPEC2
bilewit ADJ;ACC;MASC;SG;LGSPEC1
swincan V;IND;SG;1;PST
swincan V.PTCP;PST
swincan V;IMP;PL
swincan V.PTCP;PRS
swincan V;SBJV;PL;PST
swincan V;SBJV;PL;PRS
swincan V;IND;PL;PRS
swincan V;NFIN
swincan V;IND;SG;2;PST
swincan V;IND;SG;3;PST
swincan V;IND;PL;PST
swincan V;SBJV;SG;PST
swincan V;SBJV;SG;PRS
swincan V;IMP;SG
swincan V;IND;SG;2;PRS
swincan V;IND;SG;3;PRS
swincan V;IND;SG;1;PRS
swincan V;NFIN
scrincan V;IMP;PL
scrincan V;SBJV;SG;PRS
scrincan V;IND;PL;PST
scrincan V;IND;SG;3;PST
scrincan V;NFIN
scrincan V.PTCP;PRS
scrincan V.PTCP;PST
scrincan V;IND;SG;3;PRS
scrincan V;IND;SG;1;PST
scrincan V;IND;PL;PRS
scrincan V;IND;SG;2;PST
scrincan V;NFIN
scrincan V;IMP;SG
scrincan V;IND;SG;2;PRS
scrincan V;IND;SG;1;PRS
scrincan V;SBJV;PL;PRS
scrincan V;SBJV;SG;PST
scrincan V;IND;SG;1;PST
scrincan V;SBJV;PL;PST
scrincan V;IND;SG;3;PST
uprodor N;NOM;PL
uprodor N;GEN;SG
uprodor N;ACC;PL
uprodor N;DAT;SG
uprodor N;NOM;SG
uprodor N;GEN;PL
uprodor N;DAT;PL
uprodor N;ACC;SG
forebodian V.PTCP;PST
forebodian V;NFIN
forebodian V;SBJV;PL;PRS
forebodian V;SBJV;SG;PST
forebodian V;IND;SG;3;PST
forebodian V;IND;SG;1;PST
forebodian V;IND;SG;2;PRS
forebodian V;IND;PL;PRS
forebodian V;IND;SG;1;PRS
forebodian V;IND;SG;2;PST
forebodian V.PTCP;PRS
forebodian V;SBJV;PL;PST
forebodian V;SBJV;SG;PRS
forebodian V;IND;SG;3;PRS
forebodian V;IND;PL;PST
forebodian V.PTCP;PRS
forebodian V;SBJV;SG;PRS
forebodian V;IMP;PL
forebodian V;IMP;PL
forebodian V;SBJV;PL;PRS
forebodian V;IMP;SG
forebodian V.PTCP;PST
handgewrit N;NOM;PL
handgewrit N;ACC;PL
handgewrit N;DAT;SG
handgewrit N;ACC;SG
handgewrit N;NOM;SG
handgewrit N;DAT;PL
handgewrit N;GEN;SG
handgewrit N;GEN;PL
gleaw ADJ;GEN;NEUT;PL;LGSPEC1
gleaw ADJ;GEN;FEM;PL;LGSPEC2
gleaw ADJ;GEN;MASC;PL;LGSPEC1
gleaw ADJ;NOM;NEUT;PL;LGSPEC1
gleaw ADJ;NOM;FEM;PL;LGSPEC2
gleaw ADJ;ACC;MASC;SG;LGSPEC1
gleaw ADJ;DAT;NEUT;SG;LGSPEC1
gleaw ADJ;NOM;FEM;PL;LGSPEC1
gleaw ADJ;ACC;FEM;SG;LGSPEC1
gleaw ADJ;DAT;NEUT;PL;LGSPEC2
gleaw ADJ;DAT;NEUT;PL;LGSPEC1
gleaw ADJ;NOM;FEM;SG;LGSPEC1
gleaw ADJ;DAT;NEUT;SG;LGSPEC2
gleaw ADJ;INS;NEUT;PL;LGSPEC2
gleaw ADJ;DAT;FEM;SG;LGSPEC1
gleaw ADJ;ACC;FEM;SG;LGSPEC2
gleaw ADJ;NOM;NEUT;PL;LGSPEC2
gleaw ADJ;ACC;FEM;PL;LGSPEC2
gleaw ADJ;INS;MASC;SG;LGSPEC1
gleaw ADJ;INS;MASC;PL;LGSPEC1
gleaw ADJ;ACC;MASC;PL;LGSPEC1
gleaw ADJ;NOM;NEUT;SG;LGSPEC1
gleaw ADJ;NOM;FEM;SG;LGSPEC2
gleaw ADJ;NOM;MASC;PL;LGSPEC1
gleaw ADJ;ACC;NEUT;SG;LGSPEC2
gleaw ADJ;ACC;MASC;SG;LGSPEC2
gleaw ADJ;GEN;FEM;SG;LGSPEC1
gleaw ADJ;INS;FEM;SG;LGSPEC2
gleaw ADJ;GEN;MASC;SG;LGSPEC2
gleaw ADJ;ACC;MASC;PL;LGSPEC2
gleaw ADJ;INS;MASC;PL;LGSPEC2
gleaw ADJ;DAT;MASC;SG;LGSPEC2
gleaw ADJ;DAT;MASC;SG;LGSPEC1
gleaw ADJ;INS;MASC;SG;LGSPEC2
gleaw ADJ;DAT;FEM;SG;LGSPEC2
gleaw ADJ;INS;FEM;PL;LGSPEC2
gleaw ADJ;ACC;NEUT;PL;LGSPEC2
gleaw ADJ;GEN;MASC;PL;LGSPEC2
gleaw ADJ;DAT;FEM;PL;LGSPEC2
gleaw ADJ;INS;NEUT;SG;LGSPEC2
gleaw ADJ;GEN;NEUT;SG;LGSPEC2
gleaw ADJ;GEN;MASC;SG;LGSPEC1
gleaw ADJ;GEN;FEM;SG;LGSPEC2
gleaw ADJ;ACC;NEUT;SG;LGSPEC1
gleaw ADJ;GEN;FEM;PL;LGSPEC1
gleaw ADJ;INS;NEUT;PL;LGSPEC1
gleaw ADJ;NOM;MASC;PL;LGSPEC2
gleaw ADJ;ACC;NEUT;PL;LGSPEC1
gleaw ADJ;DAT;MASC;PL;LGSPEC2
gleaw ADJ;NOM;NEUT;SG;LGSPEC2
gleaw ADJ;INS;FEM;PL;LGSPEC1
gleaw ADJ;GEN;NEUT;SG;LGSPEC1
gleaw ADJ;NOM;MASC;SG;LGSPEC2
gleaw ADJ;DAT;FEM;PL;LGSPEC1
gleaw ADJ;INS;FEM;SG;LGSPEC1
gleaw ADJ;DAT;MASC;PL;LGSPEC1
gleaw ADJ;ACC;FEM;PL;LGSPEC1
gleaw ADJ;INS;NEUT;SG;LGSPEC1
gleaw ADJ;NOM;MASC;SG;LGSPEC1
gleaw ADJ;GEN;NEUT;PL;LGSPEC2
gleaw ADJ;GEN;NEUT;PL;LGSPEC1
gleaw ADJ;GEN;FEM;PL;LGSPEC1
hwettan V;IND;SG;2;PST
hwettan V;NFIN
hwettan V;IMP;PL
hwettan V.PTCP;PST
hwettan V;IND;PL;PST
hwettan V;IND;SG;1;PRS
hwettan V;IND;SG;2;PRS
hwettan V;IND;SG;3;PRS
hwettan V.PTCP;PRS
hwettan V;SBJV;PL;PRS
hwettan V;IND;SG;1;PST
hwettan V;IND;PL;PRS
hwettan V;SBJV;PL;PST
hwettan V;SBJV;SG;PST
hwettan V;SBJV;SG;PRS
hwettan V;IND;SG;3;PST
hwettan V.PTCP;PST
hwettan V;IMP;SG
hwettan V;NFIN
þingian V;IND;PL;PRS
þingian V;IMP;PL
þingian V;IND;SG;1;PRS
þingian V;IND;SG;2;PST
þingian V;IND;PL;PST
þingian V;IND;SG;3;PST
þingian V;IMP;SG
þingian V;SBJV;SG;PRS
þingian V;IND;SG;3;PRS
þingian V;SBJV;SG;PST
þingian V;SBJV;PL;PST
þingian V;SBJV;PL;PRS
þingian V.PTCP;PRS
þingian V.PTCP;PST
þingian V;IND;SG;1;PRS
þingian V;IMP;PL
þingian V;SBJV;PL;PRS
þingian V;NFIN
þingian V;IND;SG;2;PRS
þingian V.PTCP;PRS
þingian V;IND;SG;1;PST
dol ADJ;GEN;PL;LGSPEC2
dol ADJ;NOM;MASC;SG;LGSPEC1
dol ADJ;ACC;PL;LGSPEC1
dol ADJ;NOM;FEM;PL;LGSPEC2
dol ADJ;GEN;MASC;SG;LGSPEC2
dol ADJ;ACC;FEM;PL;LGSPEC2
dol ADJ;NOM;FEM;SG;LGSPEC2
dol ADJ;ACC;FEM;SG;LGSPEC1
dol ADJ;ACC;MASC;PL;LGSPEC2
dol ADJ;GEN;NEUT;SG;LGSPEC2
dol ADJ;GEN;PL;LGSPEC1
dol ADJ;ACC;NEUT;PL;LGSPEC2
dol ADJ;DAT;NEUT;SG;LGSPEC2
dol ADJ;NOM;MASC;PL;LGSPEC2
dol ADJ;NOM;MASC;SG;LGSPEC2
dol ADJ;NOM;NEUT;SG;LGSPEC2
dol ADJ;ACC;MASC;SG;LGSPEC1
dol ADJ;DAT;PL;LGSPEC1
dol ADJ;INS;NEUT;SG;LGSPEC2
dol ADJ;DAT;PL;LGSPEC2
dol ADJ;NOM;FEM;SG;LGSPEC1
dol ADJ;ACC;NEUT;SG;LGSPEC1
dol ADJ;INS;MASC;SG;LGSPEC2
dol ADJ;ACC;NEUT;PL;LGSPEC2
dol ADJ;ACC;MASC;SG;LGSPEC2
dol ADJ;NOM;PL;LGSPEC1
dol ADJ;GEN;FEM;SG;LGSPEC2
dol ADJ;DAT;SG;LGSPEC1
dol ADJ;DAT;FEM;SG;LGSPEC2
dol ADJ;ACC;NEUT;SG;LGSPEC2
dol ADJ;NOM;NEUT;PL;LGSPEC2
dol ADJ;GEN;SG;LGSPEC1
dol ADJ;DAT;MASC;SG;LGSPEC2
dol ADJ;ACC;FEM;SG;LGSPEC2
dol ADJ;NOM;NEUT;SG;LGSPEC1
gewind N;GEN;PL
gewind N;DAT;PL
gewind N;NOM;PL
gewind N;ACC;PL
gewind N;NOM;SG
gewind N;DAT;SG
gewind N;GEN;SG
gewind N;ACC;SG
bisig ADJ;INS;NEUT;PL;LGSPEC1
bisig ADJ;NOM;FEM;PL;LGSPEC1
bisig ADJ;DAT;MASC;PL;LGSPEC1
bisig ADJ;DAT;FEM;SG;LGSPEC2
bisig ADJ;INS;FEM;SG;LGSPEC1
bisig ADJ;NOM;NEUT;SG;LGSPEC1
bisig ADJ;DAT;FEM;PL;LGSPEC2
bisig ADJ;GEN;MASC;SG;LGSPEC1
bisig ADJ;INS;NEUT;SG;LGSPEC1
bisig ADJ;DAT;MASC;SG;LGSPEC1
bisig ADJ;GEN;MASC;PL;LGSPEC2
bisig ADJ;GEN;NEUT;SG;LGSPEC2
bisig ADJ;GEN;NEUT;SG;LGSPEC1
bisig ADJ;GEN;FEM;SG;LGSPEC1
bisig ADJ;DAT;NEUT;PL;LGSPEC2
bisig ADJ;GEN;NEUT;PL;LGSPEC2
bisig ADJ;GEN;MASC;PL;LGSPEC1
bisig ADJ;GEN;MASC;SG;LGSPEC2
bisig ADJ;ACC;MASC;PL;LGSPEC1
bisig ADJ;ACC;MASC;SG;LGSPEC1
bisig ADJ;ACC;FEM;SG;LGSPEC1
bisig ADJ;INS;MASC;SG;LGSPEC2
bisig ADJ;INS;MASC;SG;LGSPEC1
bisig ADJ;DAT;NEUT;SG;LGSPEC2
bisig ADJ;GEN;NEUT;PL;LGSPEC1
bisig ADJ;INS;MASC;PL;LGSPEC2
bisig ADJ;INS;NEUT;PL;LGSPEC2
bisig ADJ;ACC;FEM;SG;LGSPEC2
bisig ADJ;ACC;FEM;PL;LGSPEC2
bisig ADJ;NOM;FEM;SG;LGSPEC1
bisig ADJ;INS;FEM;SG;LGSPEC2
bisig ADJ;NOM;NEUT;SG;LGSPEC2
bisig ADJ;INS;NEUT;SG;LGSPEC2
bisig ADJ;DAT;MASC;PL;LGSPEC2
bisig ADJ;GEN;FEM;PL;LGSPEC2
bisig ADJ;NOM;NEUT;PL;LGSPEC1
bisig ADJ;ACC;MASC;PL;LGSPEC2
bisig ADJ;DAT;NEUT;PL;LGSPEC1
bisig ADJ;GEN;FEM;SG;LGSPEC2
bisig ADJ;DAT;FEM;SG;LGSPEC1
bisig ADJ;GEN;FEM;PL;LGSPEC1
bisig ADJ;NOM;FEM;PL;LGSPEC2
bisig ADJ;NOM;MASC;PL;LGSPEC1
bisig ADJ;INS;MASC;PL;LGSPEC1
bisig ADJ;NOM;MASC;PL;LGSPEC2
bisig ADJ;ACC;NEUT;PL;LGSPEC1
bisig ADJ;INS;FEM;PL;LGSPEC1
bisig ADJ;INS;FEM;PL;LGSPEC2
bisig ADJ;NOM;NEUT;PL;LGSPEC2
bisig ADJ;DAT;MASC;SG;LGSPEC2
bisig ADJ;DAT;FEM;PL;LGSPEC1
bisig ADJ;ACC;NEUT;PL;LGSPEC2
bisig ADJ;NOM;MASC;SG;LGSPEC2
bisig ADJ;ACC;FEM;SG;LGSPEC2
bisig ADJ;DAT;NEUT;SG;LGSPEC1
bisig ADJ;ACC;MASC;SG;LGSPEC2
bisig ADJ;NOM;MASC;SG;LGSPEC1
bisig ADJ;DAT;MASC;SG;LGSPEC2
bisig ADJ;DAT;FEM;PL;LGSPEC1
bisig ADJ;NOM;FEM;PL;LGSPEC1
bisig ADJ;DAT;MASC;PL;LGSPEC2
bisig ADJ;NOM;FEM;PL;LGSPEC2
bisig ADJ;DAT;FEM;SG;LGSPEC1
bisig ADJ;DAT;NEUT;PL;LGSPEC2
bisig ADJ;DAT;NEUT;SG;LGSPEC2
bisig ADJ;INS;FEM;PL;LGSPEC1
bisig ADJ;DAT;NEUT;PL;LGSPEC1
bisig ADJ;ACC;MASC;SG;LGSPEC1
bisig ADJ;INS;MASC;SG;LGSPEC2
bisig ADJ;NOM;NEUT;SG;LGSPEC1
bisig ADJ;ACC;MASC;PL;LGSPEC2
bisig ADJ;ACC;NEUT;SG;LGSPEC1
bisig ADJ;ACC;NEUT;PL;LGSPEC1
bisig ADJ;NOM;FEM;SG;LGSPEC2
bisig ADJ;NOM;MASC;PL;LGSPEC2
bisig ADJ;INS;MASC;SG;LGSPEC1
bisig ADJ;ACC;FEM;SG;LGSPEC1
bisig ADJ;DAT;NEUT;SG;LGSPEC1
bisig ADJ;ACC;FEM;PL;LGSPEC1
bisig ADJ;NOM;MASC;SG;LGSPEC1
bisig ADJ;INS;MASC;PL;LGSPEC2
bisig ADJ;GEN;MASC;PL;LGSPEC1
bisig ADJ;INS;FEM;SG;LGSPEC1
bisig ADJ;INS;NEUT;SG;LGSPEC2
bisig ADJ;GEN;NEUT;PL;LGSPEC1
bisig ADJ;ACC;NEUT;SG;LGSPEC2
bisig ADJ;GEN;NEUT;SG;LGSPEC1
þyrs N;GEN;SG
þyrs N;ACC;PL
þyrs N;GEN;PL
þyrs N;DAT;PL
þyrs N;ACC;SG
þyrs N;DAT;SG
þyrs N;NOM;SG
þyrs N;NOM;PL
wyrms N;NOM;PL
wyrms N;DAT;PL
wyrms N;GEN;SG
wyrms N;DAT;SG
wyrms N;NOM;SG
wyrms N;ACC;SG
wyrms N;GEN;PL
wyrms N;NOM;PL
wyrms N;ACC;PL
heregrima N;GEN;PL
heregrima N;DAT;SG
heregrima N;ACC;SG
heregrima N;NOM;SG
heregrima N;NOM;PL
heregrima N;ACC;PL
heregrima N;GEN;SG
heregrima N;DAT;PL
mand N;GEN;PL
mand N;ACC;SG
mand N;ACC;PL
mand N;NOM;PL
mand N;NOM;SG
mand N;DAT;PL
mand N;GEN;SG
mand N;NOM;PL
mand N;DAT;SG
mildheortlic ADJ;DAT;FEM;SG;LGSPEC2
mildheortlic ADJ;DAT;NEUT;PL;LGSPEC1
mildheortlic ADJ;ACC;NEUT;PL;LGSPEC2
mildheortlic ADJ;DAT;NEUT;PL;LGSPEC2
mildheortlic ADJ;DAT;FEM;PL;LGSPEC2
mildheortlic ADJ;INS;MASC;SG;LGSPEC2
mildheortlic ADJ;ACC;MASC;SG;LGSPEC1
mildheortlic ADJ;DAT;FEM;SG;LGSPEC1
mildheortlic ADJ;ACC;MASC;PL;LGSPEC2
mildheortlic ADJ;INS;FEM;SG;LGSPEC1
mildheortlic ADJ;INS;NEUT;PL;LGSPEC2
mildheortlic ADJ;DAT;NEUT;SG;LGSPEC2
mildheortlic ADJ;INS;MASC;PL;LGSPEC1
mildheortlic ADJ;INS;FEM;SG;LGSPEC2
mildheortlic ADJ;GEN;MASC;SG;LGSPEC2
mildheortlic ADJ;GEN;MASC;PL;LGSPEC1
mildheortlic ADJ;DAT;MASC;PL;LGSPEC1
mildheortlic ADJ;GEN;NEUT;PL;LGSPEC2
mildheortlic ADJ;NOM;FEM;PL;LGSPEC1
mildheortlic ADJ;ACC;NEUT;SG;LGSPEC2
mildheortlic ADJ;NOM;NEUT;PL;LGSPEC2
mildheortlic ADJ;GEN;FEM;PL;LGSPEC1
mildheortlic ADJ;GEN;MASC;SG;LGSPEC1
mildheortlic ADJ;NOM;MASC;SG;LGSPEC1
mildheortlic ADJ;GEN;NEUT;PL;LGSPEC1
mildheortlic ADJ;ACC;FEM;SG;LGSPEC1
mildheortlic ADJ;NOM;NEUT;SG;LGSPEC1
mildheortlic ADJ;DAT;MASC;SG;LGSPEC1
mildheortlic ADJ;NOM;MASC;PL;LGSPEC1
mildheortlic ADJ;NOM;FEM;PL;LGSPEC2
mildheortlic ADJ;DAT;FEM;PL;LGSPEC1
mildheortlic ADJ;ACC;FEM;PL;LGSPEC2
mildheortlic ADJ;GEN;NEUT;SG;LGSPEC1
mildheortlic ADJ;GEN;FEM;PL;LGSPEC2
mildheortlic ADJ;GEN;NEUT;SG;LGSPEC2
mildheortlic ADJ;ACC;NEUT;SG;LGSPEC1
mildheortlic ADJ;INS;NEUT;PL;LGSPEC1
mildheortlic ADJ;ACC;FEM;SG;LGSPEC2
mildheortlic ADJ;NOM;FEM;SG;LGSPEC2
mildheortlic ADJ;NOM;MASC;SG;LGSPEC2
mildheortlic ADJ;INS;FEM;PL;LGSPEC2
mildheortlic ADJ;ACC;MASC;SG;LGSPEC2
mildheortlic ADJ;ACC;NEUT;PL;LGSPEC1
mildheortlic ADJ;INS;FEM;PL;LGSPEC1
mildheortlic ADJ;NOM;FEM;SG;LGSPEC1
mildheortlic ADJ;ACC;NEUT;PL;LGSPEC2
mildheortlic ADJ;INS;MASC;SG;LGSPEC1
mildheortlic ADJ;INS;NEUT;SG;LGSPEC2
mildheortlic ADJ;DAT;MASC;PL;LGSPEC2
mildheortlic ADJ;ACC;MASC;PL;LGSPEC1
mildheortlic ADJ;GEN;MASC;PL;LGSPEC1
mildheortlic ADJ;NOM;NEUT;SG;LGSPEC2
mildheortlic ADJ;DAT;NEUT;SG;LGSPEC1
mildheortlic ADJ;GEN;MASC;PL;LGSPEC2
mildheortlic ADJ;GEN;FEM;SG;LGSPEC2
mildheortlic ADJ;ACC;FEM;PL;LGSPEC2
mildheortlic ADJ;NOM;MASC;PL;LGSPEC2
mildheortlic ADJ;ACC;FEM;PL;LGSPEC1
mildheortlic ADJ;NOM;NEUT;PL;LGSPEC1
mildheortlic ADJ;DAT;MASC;SG;LGSPEC2
mildheortlic ADJ;INS;NEUT;SG;LGSPEC1
mildheortlic ADJ;INS;MASC;PL;LGSPEC2
mildheortlic ADJ;GEN;FEM;SG;LGSPEC1
rimcræft N;ACC;PL
rimcræft N;GEN;SG
rimcræft N;GEN;PL
rimcræft N;DAT;SG
rimcræft N;DAT;PL
rimcræft N;NOM;SG
rimcræft N;ACC;SG
rimcræft N;NOM;PL
rimcræft N;NOM;PL
rimcræft N;ACC;PL
gnagan V;NFIN
gnagan V;IND;SG;3;PRS
gnagan V.PTCP;PRS
gnagan V;IND;SG;3;PST
gnagan V;SBJV;PL;PRS
gnagan V;IND;PL;PST
gnagan V;IND;SG;1;PST
gnagan V;IND;PL;PRS
gnagan V;SBJV;SG;PST
gnagan V;IND;SG;2;PST
gnagan V;IMP;SG
gnagan V.PTCP;PST
gnagan V;IND;SG;2;PRS
gnagan V;SBJV;PL;PST
gnagan V.PTCP;PST
gnagan V;IND;SG;2;PRS
gnagan V;IMP;PL
gnagan V;NFIN
gnagan V;SBJV;SG;PRS
gnagan V;IND;SG;1;PRS
bucca N;NOM;SG
bucca N;ACC;SG
bucca N;GEN;SG
bucca N;NOM;PL
bucca N;DAT;PL
bucca N;ACC;PL
bucca N;DAT;SG
bucca N;GEN;PL
ehtan V;SBJV;PL;PST
ehtan V;SBJV;PL;PRS
ehtan V;SBJV;SG;PRS
ehtan V;IND;PL;PRS
ehtan V;IND;SG;2;PST
ehtan V;IMP;PL
ehtan V.PTCP;PRS
ehtan V;IND;SG;2;PRS
ehtan V;IMP;SG
ehtan V;NFIN
ehtan V;IND;SG;1;PRS
ehtan V.PTCP;PST
ehtan V;IND;SG;1;PST
ehtan V;IND;SG;3;PRS
ehtan V;SBJV;SG;PST
ehtan V;IND;PL;PST
ehtan V;IND;SG;3;PST
ehtan V;NFIN
gemætan V;IMP;PL
gemætan V;IND;SG;3;PRS
gemætan V;SBJV;PL;PRS
gemætan V;NFIN
gemætan V;IND;SG;2;PST
gemætan V.PTCP;PRS
gemætan V;IND;SG;1;PST
gemætan V;IMP;SG
gemætan V;IND;SG;1;PRS
gemætan V;IND;SG;3;PST
gemætan V;IND;PL;PRS
gemætan V;NFIN
gemætan V;IND;PL;PST
gemætan V;SBJV;SG;PST
gemætan V;SBJV;SG;PRS
gemætan V;IND;SG;2;PRS
gemætan V.PTCP;PST
gemætan V;SBJV;PL;PST
warnian V.PTCP;PST
warnian V.PTCP;PRS
warnian V;IND;SG;2;PST
warnian V;IND;SG;3;PRS
warnian V;IND;SG;3;PST
warnian V;NFIN
warnian V;SBJV;SG;PRS
warnian V;IND;SG;1;PRS
warnian V;IND;SG;2;PRS
warnian V;IMP;PL
warnian V;IND;SG;1;PST
warnian V;IMP;SG
warnian V;IND;PL;PST
warnian V;SBJV;PL;PRS
warnian V;SBJV;SG;PST
warnian V;IND;PL;PRS
warnian V;SBJV;PL;PST
warnian V.PTCP;PST
tima N;DAT;PL
tima N;NOM;SG
tima N;DAT;SG
tima N;ACC;PL
tima N;GEN;PL
tima N;GEN;SG
tima N;NOM;PL
tima N;ACC;SG
rodfæstnian V;IND;SG;3;PST
rodfæstnian V;SBJV;PL;PRS
rodfæstnian V;SBJV;SG;PRS
rodfæstnian V;IND;PL;PRS
rodfæstnian V;SBJV;SG;PST
rodfæstnian V;IND;SG;1;PST
rodfæstnian V;IND;SG;2;PRS
rodfæstnian V;IND;SG;1;PRS
rodfæstnian V.PTCP;PST
rodfæstnian V;IND;SG;3;PRS
rodfæstnian V;SBJV;PL;PST
rodfæstnian V;IND;PL;PST
rodfæstnian V;IMP;SG
rodfæstnian V;NFIN
rodfæstnian V;IND;PL;PRS
rodfæstnian V;IMP;PL
rodfæstnian V;NFIN
rodfæstnian V;IND;SG;2;PST
rodfæstnian V;IND;SG;1;PRS
rodfæstnian V.PTCP;PST
rodfæstnian V;SBJV;SG;PRS
rodfæstnian V.PTCP;PRS
rodfæstnian V;SBJV;PL;PRS
understondan V;IND;PL;PST
understondan V.PTCP;PRS
understondan V;SBJV;PL;PRS
understondan V;IMP;SG
understondan V;IND;SG;1;PRS
understondan V;IND;SG;2;PRS
understondan V;IND;SG;1;PST
understondan V;SBJV;SG;PRS
understondan V;SBJV;SG;PST
understondan V;IND;SG;3;PRS
understondan V;NFIN
understondan V;IND;SG;3;PST
understondan V.PTCP;PST
understondan V;IMP;PL
understondan V;IND;PL;PRS
understondan V;NFIN
understondan V;SBJV;PL;PST
understondan V;IND;SG;3;PRS
understondan V;IND;SG;2;PST
hnitan V;IND;SG;1;PST
hnitan V;IND;SG;3;PST
hnitan V;IND;PL;PRS
hnitan V;SBJV;SG;PRS
hnitan V;IND;PL;PST
hnitan V;IND;SG;3;PRS
hnitan V;NFIN
hnitan V;IMP;SG
hnitan V;SBJV;SG;PST
hnitan V.PTCP;PST
hnitan V.PTCP;PRS
hnitan V.PTCP;PST
hnitan V;SBJV;PL;PST
hnitan V;NFIN
hnitan V;IMP;PL
hnitan V;SBJV;PL;PRS
hnitan V;IND;SG;2;PRS
hnitan V;IND;SG;2;PST
hnitan V;IND;SG;1;PRS
roþor N;GEN;PL
roþor N;DAT;PL
roþor N;NOM;SG
roþor N;ACC;SG
roþor N;DAT;SG
roþor N;ACC;PL
roþor N;GEN;SG
roþor N;NOM;PL
begietan V;IND;SG;1;PRS
begietan V;NFIN
begietan V;IND;PL;PST
begietan V;IND;SG;3;PST
begietan V;IMP;SG
begietan V;SBJV;PL;PRS
begietan V;IND;SG;3;PRS
begietan V;SBJV;SG;PST
begietan V;IND;SG;1;PST
begietan V;IND;SG;2;PST
begietan V;SBJV;PL;PST
begietan V.PTCP;PST
begietan V;IMP;PL
begietan V;SBJV;SG;PRS
begietan V.PTCP;PRS
begietan V;IND;PL;PRS
begietan V;IND;SG;2;PRS
lacu N;NOM;PL
lacu N;ACC;PL
lacu N;DAT;SG
lacu N;DAT;PL
lacu N;GEN;SG
lacu N;GEN;PL
lacu N;ACC;SG
lacu N;NOM;PL
lacu N;NOM;SG
wen N;ACC;SG
wen N;ACC;PL
wen N;DAT;SG
wen N;DAT;PL
wen N;GEN;PL
wen N;GEN;SG
wen N;ACC;PL
wen N;NOM;SG
wen N;NOM;PL
flett N;DAT;SG
flett N;ACC;PL
flett N;NOM;SG
flett N;ACC;SG
flett N;GEN;PL
flett N;GEN;SG
flett N;NOM;PL
flett N;DAT;PL
fyllu N;NOM;PL
fyllu N;NOM;SG
fyllu N;ACC;PL
fyllu N;GEN;PL
fyllu N;GEN;SG
fyllu N;DAT;SG
fyllu N;ACC;PL
fyllu N;ACC;SG
fyllu N;DAT;SG
fyllu N;DAT;PL
fyllu N;GEN;SG
bæþ N;NOM;SG
bæþ N;DAT;PL
bæþ N;GEN;SG
bæþ N;DAT;SG
bæþ N;GEN;PL
bæþ N;ACC;SG
bæþ N;ACC;PL
bæþ N;NOM;PL
þing N;NOM;SG
þing N;NOM;PL
þing N;DAT;SG
þing N;ACC;SG
þing N;GEN;PL
þing N;GEN;SG
þing N;ACC;PL
þing N;DAT;PL
lamb N;ACC;SG
lamb N;NOM;PL
lamb N;DAT;PL
lamb N;DAT;SG
lamb N;GEN;PL
lamb N;ACC;PL
lamb N;NOM;SG
lamb N;GEN;SG
æþelboren ADJ;INS;FEM;PL;LGSPEC2
æþelboren ADJ;DAT;NEUT;SG;LGSPEC1
æþelboren ADJ;DAT;MASC;SG;LGSPEC2
æþelboren ADJ;ACC;FEM;SG;LGSPEC1
æþelboren ADJ;GEN;FEM;PL;LGSPEC1
æþelboren ADJ;GEN;FEM;SG;LGSPEC1
æþelboren ADJ;NOM;NEUT;SG;LGSPEC2
æþelboren ADJ;ACC;MASC;SG;LGSPEC1
æþelboren ADJ;GEN;MASC;PL;LGSPEC2
æþelboren ADJ;DAT;FEM;SG;LGSPEC1
æþelboren ADJ;GEN;NEUT;PL;LGSPEC1
æþelboren ADJ;DAT;NEUT;PL;LGSPEC2
æþelboren ADJ;INS;NEUT;PL;LGSPEC2
æþelboren ADJ;INS;MASC;PL;LGSPEC1
æþelboren ADJ;GEN;NEUT;SG;LGSPEC1
æþelboren ADJ;INS;NEUT;PL;LGSPEC1
æþelboren ADJ;GEN;NEUT;SG;LGSPEC2
æþelboren ADJ;ACC;NEUT;SG;LGSPEC2
æþelboren ADJ;NOM;FEM;SG;LGSPEC2
æþelboren ADJ;NOM;FEM;PL;LGSPEC2
æþelboren ADJ;INS;MASC;SG;LGSPEC2
æþelboren ADJ;NOM;FEM;PL;LGSPEC1
æþelboren ADJ;NOM;FEM;SG;LGSPEC1
æþelboren ADJ;DAT;FEM;PL;LGSPEC2
æþelboren ADJ;DAT;NEUT;SG;LGSPEC2
æþelboren ADJ;ACC;NEUT;PL;LGSPEC1
æþelboren ADJ;NOM;MASC;SG;LGSPEC1
æþelboren ADJ;ACC;FEM;SG;LGSPEC2
æþelboren ADJ;ACC;FEM;PL;LGSPEC1
æþelboren ADJ;ACC;FEM;PL;LGSPEC2
æþelboren ADJ;GEN;MASC;SG;LGSPEC2
æþelboren ADJ;DAT;NEUT;PL;LGSPEC1
æþelboren ADJ;NOM;MASC;SG;LGSPEC2
æþelboren ADJ;INS;MASC;PL;LGSPEC2
æþelboren ADJ;NOM;NEUT;SG;LGSPEC1
æþelboren ADJ;GEN;NEUT;PL;LGSPEC2
æþelboren ADJ;ACC;FEM;PL;LGSPEC2
æþelboren ADJ;GEN;MASC;PL;LGSPEC1
æþelboren ADJ;NOM;FEM;PL;LGSPEC2
æþelboren ADJ;NOM;NEUT;PL;LGSPEC1
æþelboren ADJ;DAT;FEM;SG;LGSPEC2
æþelboren ADJ;ACC;MASC;PL;LGSPEC1
æþelboren ADJ;ACC;NEUT;SG;LGSPEC1
æþelboren ADJ;ACC;MASC;PL;LGSPEC2
æþelboren ADJ;INS;FEM;SG;LGSPEC1
æþelboren ADJ;GEN;MASC;SG;LGSPEC1
æþelboren ADJ;INS;FEM;SG;LGSPEC2
æþelboren ADJ;ACC;MASC;SG;LGSPEC2
æþelboren ADJ;INS;NEUT;SG;LGSPEC1
æþelboren ADJ;GEN;MASC;PL;LGSPEC1
æþelboren ADJ;GEN;FEM;SG;LGSPEC2
æþelboren ADJ;INS;NEUT;SG;LGSPEC2
æþelboren ADJ;DAT;FEM;PL;LGSPEC1
æþelboren ADJ;NOM;MASC;PL;LGSPEC2
æþelboren ADJ;INS;FEM;PL;LGSPEC1
æþelboren ADJ;INS;MASC;SG;LGSPEC1
æþelboren ADJ;GEN;FEM;PL;LGSPEC2
æþelboren ADJ;NOM;MASC;PL;LGSPEC1
æþelboren ADJ;DAT;MASC;PL;LGSPEC2
æþelboren ADJ;NOM;NEUT;PL;LGSPEC2
æþelboren ADJ;DAT;MASC;SG;LGSPEC1
æþelboren ADJ;DAT;MASC;PL;LGSPEC1
æþelboren ADJ;ACC;NEUT;PL;LGSPEC2
fetian V;SBJV;PL;PST
fetian V;IND;SG;2;PRS
fetian V;SBJV;SG;PST
fetian V;SBJV;SG;PRS
fetian V;SBJV;PL;PRS
fetian V.PTCP;PST
fetian V;IND;PL;PST
fetian V;IND;SG;3;PST
fetian V;IND;SG;1;PRS
fetian V;IND;PL;PRS
fetian V.PTCP;PRS
fetian V;NFIN
fetian V;IMP;PL
fetian V;IMP;SG
fetian V.PTCP;PRS
fetian V.PTCP;PST
fetian V;IND;SG;2;PST
fetian V;IMP;PL
fetian V;IND;SG;1;PST
fetian V;SBJV;SG;PRS
fetian V;IND;SG;1;PRS
fetian V;NFIN
fetian V;IND;SG;3;PRS
ymbhweorfan V;IND;SG;3;PST
ymbhweorfan V;SBJV;SG;PRS
ymbhweorfan V;IND;SG;1;PRS
ymbhweorfan V;IND;SG;2;PRS
ymbhweorfan V;NFIN
ymbhweorfan V;SBJV;PL;PST
ymbhweorfan V;IND;SG;2;PST
ymbhweorfan V.PTCP;PST
ymbhweorfan V;IND;PL;PRS
ymbhweorfan V;IND;SG;3;PRS
ymbhweorfan V.PTCP;PRS
ymbhweorfan V;IND;PL;PST
ymbhweorfan V;SBJV;SG;PST
ymbhweorfan V;SBJV;PL;PRS
ymbhweorfan V;IMP;PL
ymbhweorfan V;IMP;SG
ymbhweorfan V;IND;SG;1;PST
ymbhweorfan V.PTCP;PST
weorþscipe N;GEN;SG
weorþscipe N;ACC;PL
weorþscipe N;NOM;SG
weorþscipe N;ACC;SG
weorþscipe N;DAT;SG
weorþscipe N;GEN;PL
weorþscipe N;NOM;PL
weorþscipe N;DAT;PL
higian V;IND;SG;1;PRS
higian V;IMP;PL
higian V.PTCP;PRS
higian V;SBJV;SG;PRS
higian V.PTCP;PST
higian V;IND;PL;PRS
higian V;IND;SG;2;PST
higian V;IND;PL;PST
higian V;SBJV;PL;PRS
higian V;NFIN
higian V;IND;SG;3;PST
higian V;IND;SG;1;PST
higian V;IND;SG;2;PRS
higian V;NFIN
higian V.PTCP;PST
higian V;SBJV;PL;PST
higian V;SBJV;SG;PST
higian V;SBJV;SG;PRS
higian V;IND;SG;3;PRS
higian V;IMP;SG
higian V.PTCP;PRS
higian V;SBJV;PL;PRS
line N;DAT;SG
line N;DAT;PL
line N;ACC;PL
line N;GEN;SG
line N;NOM;SG
line N;GEN;PL
line N;NOM;PL
line N;ACC;SG
tacor N;ACC;SG
tacor N;DAT;SG
tacor N;ACC;PL
tacor N;DAT;PL
tacor N;NOM;PL
tacor N;GEN;SG
tacor N;NOM;SG
tacor N;GEN;PL
frocga N;NOM;PL
frocga N;ACC;PL
frocga N;ACC;SG
frocga N;GEN;PL
frocga N;GEN;SG
frocga N;DAT;PL
frocga N;NOM;SG
frocga N;DAT;SG
ford N;ACC;SG
ford N;GEN;SG
ford N;ACC;PL
ford N;DAT;PL
ford N;NOM;SG
ford N;NOM;PL
ford N;GEN;PL
ford N;DAT;SG
behof N;ACC;PL
behof N;ACC;SG
behof N;NOM;SG
behof N;NOM;PL
behof N;DAT;SG
behof N;GEN;PL
behof N;GEN;SG
behof N;DAT;PL
andefn N;ACC;SG
andefn N;GEN;PL
andefn N;ACC;PL
andefn N;DAT;SG
andefn N;GEN;SG
andefn N;NOM;PL
andefn N;NOM;SG
andefn N;ACC;PL
andefn N;DAT;PL
pyll N;NOM;PL
pyll N;DAT;PL
pyll N;GEN;SG
pyll N;DAT;SG
pyll N;GEN;PL
pyll N;ACC;PL
pyll N;ACC;SG
pyll N;NOM;SG
earfoþdæde ADJ;NOM;MASC;PL;LGSPEC1
earfoþdæde ADJ;INS;MASC;SG;LGSPEC1
earfoþdæde ADJ;NOM;FEM;SG;LGSPEC1
earfoþdæde ADJ;ACC;FEM;SG;LGSPEC1
earfoþdæde ADJ;ACC;MASC;PL;LGSPEC1
earfoþdæde ADJ;NOM;NEUT;PL;LGSPEC2
earfoþdæde ADJ;GEN;NEUT;PL;LGSPEC1
earfoþdæde ADJ;DAT;NEUT;PL;LGSPEC2
earfoþdæde ADJ;GEN;MASC;SG;LGSPEC1
earfoþdæde ADJ;NOM;MASC;SG;LGSPEC2
earfoþdæde ADJ;GEN;MASC;PL;LGSPEC2
earfoþdæde ADJ;ACC;FEM;PL;LGSPEC1
earfoþdæde ADJ;NOM;MASC;PL;LGSPEC2
earfoþdæde ADJ;ACC;MASC;SG;LGSPEC2
earfoþdæde ADJ;DAT;MASC;SG;LGSPEC1
earfoþdæde ADJ;NOM;MASC;SG;LGSPEC1
earfoþdæde ADJ;NOM;FEM;PL;LGSPEC2
earfoþdæde ADJ;DAT;FEM;SG;LGSPEC1
earfoþdæde ADJ;GEN;FEM;PL;LGSPEC1
earfoþdæde ADJ;GEN;NEUT;SG;LGSPEC1
earfoþdæde ADJ;INS;NEUT;PL;LGSPEC2
earfoþdæde ADJ;ACC;NEUT;SG;LGSPEC2
earfoþdæde ADJ;DAT;NEUT;SG;LGSPEC1
earfoþdæde ADJ;NOM;FEM;SG;LGSPEC2
earfoþdæde ADJ;DAT;NEUT;PL;LGSPEC1
earfoþdæde ADJ;ACC;FEM;SG;LGSPEC2
earfoþdæde ADJ;ACC;NEUT;SG;LGSPEC1
earfoþdæde ADJ;INS;MASC;PL;LGSPEC2
earfoþdæde ADJ;DAT;MASC;SG;LGSPEC2
earfoþdæde ADJ;DAT;FEM;PL;LGSPEC1
earfoþdæde ADJ;INS;FEM;SG;LGSPEC1
earfoþdæde ADJ;ACC;NEUT;PL;LGSPEC2
earfoþdæde ADJ;INS;FEM;PL;LGSPEC2
earfoþdæde ADJ;ACC;MASC;PL;LGSPEC2
earfoþdæde ADJ;GEN;MASC;PL;LGSPEC1
earfoþdæde ADJ;ACC;MASC;SG;LGSPEC1
earfoþdæde ADJ;NOM;NEUT;PL;LGSPEC1
earfoþdæde ADJ;NOM;FEM;PL;LGSPEC1
earfoþdæde ADJ;INS;NEUT;SG;LGSPEC2
earfoþdæde ADJ;GEN;FEM;SG;LGSPEC1
earfoþdæde ADJ;DAT;FEM;PL;LGSPEC2
earfoþdæde ADJ;DAT;MASC;PL;LGSPEC2
earfoþdæde ADJ;DAT;FEM;SG;LGSPEC2
earfoþdæde ADJ;GEN;NEUT;PL;LGSPEC2
earfoþdæde ADJ;ACC;NEUT;PL;LGSPEC1
earfoþdæde ADJ;DAT;NEUT;SG;LGSPEC2
earfoþdæde ADJ;GEN;NEUT;SG;LGSPEC2
earfoþdæde ADJ;NOM;NEUT;SG;LGSPEC1
earfoþdæde ADJ;INS;NEUT;PL;LGSPEC1
earfoþdæde ADJ;DAT;MASC;PL;LGSPEC1
earfoþdæde ADJ;INS;FEM;PL;LGSPEC1
earfoþdæde ADJ;GEN;FEM;PL;LGSPEC2
earfoþdæde ADJ;GEN;MASC;SG;LGSPEC2
earfoþdæde ADJ;ACC;FEM;PL;LGSPEC2
earfoþdæde ADJ;INS;NEUT;SG;LGSPEC1
earfoþdæde ADJ;INS;MASC;PL;LGSPEC1
earfoþdæde ADJ;GEN;MASC;PL;LGSPEC1
earfoþdæde ADJ;INS;MASC;SG;LGSPEC2
earfoþdæde ADJ;NOM;NEUT;SG;LGSPEC2
earfoþdæde ADJ;INS;FEM;SG;LGSPEC2
earfoþdæde ADJ;GEN;FEM;SG;LGSPEC2
feolan V;IND;SG;2;PRS
feolan V;IND;PL;PRS
feolan V;IND;PL;PST
feolan V;SBJV;PL;PST
feolan V.PTCP;PRS
feolan V;SBJV;PL;PRS
feolan V;IMP;SG
feolan V;IND;SG;3;PRS
feolan V;IMP;PL
feolan V;SBJV;SG;PRS
feolan V;IND;SG;1;PST
feolan V;SBJV;SG;PST
feolan V;NFIN
feolan V;IND;SG;1;PRS
feolan V.PTCP;PST
feolan V;IND;SG;3;PST
feolan V.PTCP;PST
feolan V;IND;SG;2;PST
wegan V;NFIN
wegan V;IND;SG;1;PST
wegan V;SBJV;PL;PST
wegan V;IMP;PL
wegan V;IMP;SG
wegan V;SBJV;SG;PRS
wegan V.PTCP;PRS
wegan V.PTCP;PST
wegan V;IND;SG;3;PST
wegan V;IND;SG;2;PRS
wegan V;IND;SG;2;PST
wegan V;SBJV;SG;PST
wegan V;IND;SG;1;PRS
wegan V;IND;SG;3;PRS
wegan V;IND;PL;PST
wegan V;SBJV;PL;PRS
wegan V;IND;PL;PRS
ad N;DAT;PL
ad N;GEN;SG
ad N;DAT;SG
ad N;NOM;PL
ad N;ACC;PL
ad N;GEN;PL
ad N;ACC;SG
ad N;NOM;SG
forþgeriman V;IND;SG;2;PST
forþgeriman V;IND;SG;2;PRS
forþgeriman V;IND;SG;1;PRS
forþgeriman V.PTCP;PST
forþgeriman V;SBJV;SG;PST
forþgeriman V.PTCP;PRS
forþgeriman V;IND;SG;3;PRS
forþgeriman V;IND;PL;PST
forþgeriman V;NFIN
forþgeriman V;IND;SG;3;PST
forþgeriman V;IND;SG;1;PST
forþgeriman V;IND;PL;PRS
forþgeriman V;IMP;PL
forþgeriman V;NFIN
forþgeriman V;SBJV;PL;PST
forþgeriman V;SBJV;PL;PRS
forþgeriman V;SBJV;SG;PRS
forþgeriman V;IMP;SG
ealu N;GEN;PL
ealu N;NOM;PL
ealu N;GEN;SG
ealu N;DAT;SG
ealu N;ACC;SG
ealu N;DAT;PL
ealu N;NOM;SG
ealu N;ACC;PL
domboc N;NOM;SG
domboc N;DAT;PL
domboc N;GEN;SG
domboc N;ACC;PL
domboc N;NOM;PL
domboc N;GEN;PL
domboc N;ACC;SG
domboc N;DAT;SG
domboc N;GEN;SG
spinnan V;IND;SG;1;PRS
spinnan V;NFIN
spinnan V;IND;SG;2;PRS
spinnan V;IND;PL;PRS
spinnan V.PTCP;PST
spinnan V;SBJV;SG;PST
spinnan V;IND;SG;3;PST
spinnan V;IND;SG;3;PRS
spinnan V;SBJV;PL;PST
spinnan V;SBJV;SG;PRS
spinnan V.PTCP;PRS
spinnan V;IND;SG;2;PST
spinnan V;IMP;PL
spinnan V;SBJV;PL;PRS
spinnan V;IND;SG;1;PST
spinnan V;NFIN
spinnan V;IMP;SG
spinnan V.PTCP;PST
spinnan V;IND;PL;PST
winnan V;IND;SG;3;PRS
winnan V;IND;SG;1;PST
winnan V;NFIN
winnan V;IMP;PL
winnan V.PTCP;PRS
winnan V;IND;SG;3;PST
winnan V;SBJV;PL;PST
winnan V;IND;SG;1;PRS
winnan V;IND;PL;PRS
winnan V;IND;SG;2;PST
winnan V;IND;PL;PST
winnan V.PTCP;PST
winnan V;SBJV;PL;PRS
winnan V;SBJV;SG;PRS
winnan V;IND;SG;3;PST
winnan V;IND;SG;2;PRS
winnan V;SBJV;SG;PST
winnan V;IMP;SG
brad ADJ;DAT;FEM;SG;LGSPEC2
brad ADJ;ACC;FEM;PL;LGSPEC1
brad ADJ;INS;NEUT;PL;LGSPEC1
brad ADJ;ACC;NEUT;SG;LGSPEC2
brad ADJ;GEN;FEM;SG;LGSPEC2
brad ADJ;GEN;MASC;PL;LGSPEC1
brad ADJ;NOM;NEUT;PL;LGSPEC2
brad ADJ;NOM;NEUT;PL;LGSPEC1
brad ADJ;ACC;NEUT;PL;LGSPEC2
brad ADJ;GEN;FEM;PL;LGSPEC1
brad ADJ;INS;FEM;SG;LGSPEC1
brad ADJ;NOM;MASC;SG;LGSPEC2
brad ADJ;INS;MASC;PL;LGSPEC2
brad ADJ;INS;NEUT;SG;LGSPEC1
brad ADJ;DAT;NEUT;PL;LGSPEC2
brad ADJ;DAT;NEUT;PL;LGSPEC1
brad ADJ;NOM;FEM;SG;LGSPEC1
brad ADJ;GEN;FEM;PL;LGSPEC2
brad ADJ;INS;NEUT;PL;LGSPEC2
brad ADJ;ACC;MASC;SG;LGSPEC2
brad ADJ;DAT;MASC;SG;LGSPEC2
brad ADJ;INS;MASC;PL;LGSPEC1
brad ADJ;GEN;NEUT;SG;LGSPEC2
brad ADJ;GEN;NEUT;PL;LGSPEC1
brad ADJ;GEN;FEM;SG;LGSPEC1
brad ADJ;NOM;MASC;PL;LGSPEC1
brad ADJ;ACC;MASC;PL;LGSPEC2
brad ADJ;DAT;MASC;PL;LGSPEC2
brad ADJ;DAT;MASC;SG;LGSPEC1
brad ADJ;DAT;NEUT;SG;LGSPEC1
brad ADJ;NOM;NEUT;SG;LGSPEC1
brad ADJ;NOM;MASC;PL;LGSPEC2
brad ADJ;ACC;FEM;SG;LGSPEC1
brad ADJ;ACC;FEM;PL;LGSPEC2
brad ADJ;GEN;NEUT;SG;LGSPEC1
brad ADJ;ACC;NEUT;PL;LGSPEC1
brad ADJ;DAT;NEUT;SG;LGSPEC2
brad ADJ;INS;MASC;SG;LGSPEC1
brad ADJ;NOM;FEM;SG;LGSPEC2
brad ADJ;ACC;NEUT;SG;LGSPEC1
brad ADJ;NOM;FEM;PL;LGSPEC2
brad ADJ;DAT;FEM;PL;LGSPEC1
brad ADJ;INS;MASC;SG;LGSPEC2
brad ADJ;ACC;FEM;SG;LGSPEC2
brad ADJ;INS;FEM;PL;LGSPEC1
brad ADJ;INS;NEUT;SG;LGSPEC2
brad ADJ;GEN;MASC;SG;LGSPEC2
brad ADJ;INS;FEM;SG;LGSPEC2
brad ADJ;NOM;FEM;PL;LGSPEC2
brad ADJ;ACC;FEM;PL;LGSPEC2
brad ADJ;INS;FEM;PL;LGSPEC2
brad ADJ;GEN;NEUT;PL;LGSPEC2
brad ADJ;DAT;FEM;PL;LGSPEC2
brad ADJ;DAT;FEM;SG;LGSPEC1
brad ADJ;GEN;MASC;PL;LGSPEC2
brad ADJ;ACC;MASC;SG;LGSPEC1
brad ADJ;GEN;NEUT;PL;LGSPEC1
brad ADJ;NOM;NEUT;SG;LGSPEC2
brad ADJ;DAT;MASC;PL;LGSPEC1
brad ADJ;GEN;MASC;PL;LGSPEC1
brad ADJ;NOM;FEM;PL;LGSPEC1
brad ADJ;ACC;MASC;PL;LGSPEC1
brad ADJ;NOM;MASC;SG;LGSPEC1
brad ADJ;GEN;MASC;SG;LGSPEC1
mænan V;SBJV;PL;PST
mænan V;IND;SG;3;PST
mænan V;NFIN
mænan V;SBJV;SG;PST
mænan V;IND;PL;PRS
mænan V;IMP;SG
mænan V.PTCP;PST
mænan V;SBJV;PL;PRS
mænan V;IND;PL;PST
mænan V;SBJV;SG;PRS
mænan V;IND;SG;2;PST
mænan V;IND;SG;1;PST
mænan V;IND;SG;1;PRS
mænan V.PTCP;PRS
mænan V;IMP;PL
mænan V;IND;SG;3;PRS
mænan V;IND;SG;2;PRS
rasian V;IND;SG;1;PRS
rasian V;IND;PL;PST
rasian V;IND;SG;3;PST
rasian V;IND;PL;PRS
rasian V;IND;SG;3;PRS
rasian V;SBJV;SG;PST
rasian V;IND;SG;2;PRS
rasian V;SBJV;PL;PST
rasian V.PTCP;PRS
rasian V;IMP;SG
rasian V;SBJV;PL;PRS
rasian V;SBJV;SG;PRS
rasian V;IMP;PL
rasian V;SBJV;SG;PRS
rasian V;SBJV;PL;PRS
rasian V;IND;SG;1;PST
rasian V.PTCP;PST
rasian V;NFIN
rasian V.PTCP;PRS
rasian V;IND;SG;2;PST
sculan V;IMP;SG
sculan V;SBJV;SG;PRS
sculan V;SBJV;PL;PST
sculan V;IND;SG;2;PRS
sculan V;IND;PL;PST
sculan V;SBJV;PL;PRS
sculan V;IND;SG;3;PST
sculan V;IND;SG;1;PST
sculan V;IND;SG;2;PST
sculan V;SBJV;SG;PST
sculan V;NFIN
sculan V;IMP;PL
sculan V.PTCP;PRS
sculan V;IND;SG;1;PRS
sculan V;IND;SG;3;PRS
sculan V;IND;SG;2;PST
sculan V;IND;PL;PRS
sculan V;NFIN
sculan V;SBJV;PL;PST
sculan V;SBJV;SG;PST
sculan V.PTCP;PST
beorg N;NOM;PL
beorg N;DAT;SG
beorg N;GEN;SG
beorg N;GEN;PL
beorg N;NOM;SG
beorg N;ACC;SG
beorg N;DAT;PL
beorg N;ACC;PL
willian V;IND;SG;2;PRS
willian V;IND;PL;PRS
willian V;NFIN
willian V;IMP;PL
willian V;IND;SG;2;PST
willian V;IND;SG;3;PST
willian V.PTCP;PST
willian V;SBJV;PL;PST
willian V;IND;PL;PST
willian V.PTCP;PRS
willian V;IMP;SG
willian V;SBJV;SG;PRS
willian V;SBJV;SG;PST
willian V;IND;SG;1;PRS
willian V;SBJV;PL;PRS
willian V;IND;SG;1;PRS
willian V;IMP;PL
willian V;SBJV;SG;PRS
willian V.PTCP;PRS
willian V;IND;SG;3;PRS
willian V;SBJV;PL;PRS
willian V;IND;SG;1;PST
sƿelgan V;IMP;SG
sƿelgan V;IND;PL;PST
sƿelgan V.PTCP;PST
sƿelgan V;NFIN
sƿelgan V;IND;SG;2;PRS
sƿelgan V;IND;SG;3;PRS
sƿelgan V;SBJV;PL;PRS
sƿelgan V.PTCP;PRS
sƿelgan V;IMP;PL
sƿelgan V;IND;SG;1;PST
sƿelgan V;SBJV;SG;PRS
sƿelgan V;IND;SG;1;PRS
sƿelgan V;IND;SG;3;PST
sƿelgan V;SBJV;SG;PST
sƿelgan V;IND;PL;PRS
sƿelgan V;IND;SG;2;PST
sƿelgan V;SBJV;PL;PST
grighund N;DAT;SG
grighund N;ACC;SG
grighund N;NOM;PL
grighund N;GEN;PL
grighund N;ACC;PL
grighund N;DAT;PL
grighund N;GEN;SG
grighund N;NOM;SG
dæg N;ACC;PL
dæg N;GEN;PL
dæg N;NOM;SG
dæg N;NOM;PL
dæg N;DAT;PL
dæg N;ACC;SG
dæg N;GEN;SG
dæg N;DAT;SG
iernan V;NFIN
iernan V;IMP;SG
iernan V;IMP;PL
iernan V;IND;SG;3;PRS
iernan V;SBJV;SG;PRS
iernan V;IND;SG;2;PRS
iernan V.PTCP;PST
iernan V;IND;SG;1;PRS
iernan V;IND;SG;2;PST
iernan V;SBJV;SG;PST
iernan V;IND;SG;3;PST
iernan V;IND;PL;PRS
iernan V;IND;SG;1;PST
iernan V.PTCP;PRS
iernan V;SBJV;PL;PST
iernan V;SBJV;PL;PRS
iernan V;IND;PL;PST
arfæst ADJ;INS;NEUT;SG;LGSPEC1
arfæst ADJ;DAT;FEM;SG;LGSPEC2
arfæst ADJ;INS;FEM;PL;LGSPEC1
arfæst ADJ;INS;MASC;PL;LGSPEC2
arfæst ADJ;ACC;FEM;PL;LGSPEC2
arfæst ADJ;DAT;MASC;SG;LGSPEC2
arfæst ADJ;NOM;FEM;PL;LGSPEC2
arfæst ADJ;DAT;FEM;SG;LGSPEC1
arfæst ADJ;GEN;NEUT;SG;LGSPEC1
arfæst ADJ;DAT;NEUT;SG;LGSPEC1
arfæst ADJ;INS;MASC;PL;LGSPEC1
arfæst ADJ;INS;FEM;SG;LGSPEC1
arfæst ADJ;GEN;NEUT;PL;LGSPEC1
arfæst ADJ;DAT;FEM;PL;LGSPEC2
arfæst ADJ;INS;NEUT;SG;LGSPEC2
arfæst ADJ;GEN;MASC;PL;LGSPEC2
arfæst ADJ;ACC;NEUT;PL;LGSPEC2
arfæst ADJ;NOM;NEUT;SG;LGSPEC1
arfæst ADJ;ACC;MASC;PL;LGSPEC1
arfæst ADJ;NOM;MASC;PL;LGSPEC2
arfæst ADJ;ACC;FEM;PL;LGSPEC1
arfæst ADJ;NOM;FEM;SG;LGSPEC2
arfæst ADJ;INS;MASC;SG;LGSPEC2
arfæst ADJ;NOM;FEM;PL;LGSPEC1
arfæst ADJ;GEN;MASC;PL;LGSPEC1
arfæst ADJ;DAT;MASC;PL;LGSPEC2
arfæst ADJ;NOM;NEUT;PL;LGSPEC2
arfæst ADJ;INS;NEUT;PL;LGSPEC2
arfæst ADJ;INS;NEUT;PL;LGSPEC1
arfæst ADJ;ACC;MASC;SG;LGSPEC1
arfæst ADJ;GEN;MASC;SG;LGSPEC1
arfæst ADJ;GEN;MASC;SG;LGSPEC2
arfæst ADJ;ACC;NEUT;SG;LGSPEC2
arfæst ADJ;NOM;FEM;SG;LGSPEC1
arfæst ADJ;DAT;MASC;SG;LGSPEC1
arfæst ADJ;GEN;NEUT;SG;LGSPEC2
arfæst ADJ;GEN;FEM;PL;LGSPEC2
arfæst ADJ;ACC;FEM;SG;LGSPEC1
arfæst ADJ;DAT;NEUT;SG;LGSPEC2
arfæst ADJ;ACC;FEM;SG;LGSPEC2
arfæst ADJ;DAT;NEUT;PL;LGSPEC2
arfæst ADJ;ACC;MASC;SG;LGSPEC2
arfæst ADJ;DAT;NEUT;PL;LGSPEC1
arfæst ADJ;ACC;MASC;PL;LGSPEC2
arfæst ADJ;INS;MASC;SG;LGSPEC1
arfæst ADJ;ACC;NEUT;SG;LGSPEC1
arfæst ADJ;INS;FEM;PL;LGSPEC2
arfæst ADJ;ACC;NEUT;PL;LGSPEC1
arfæst ADJ;DAT;MASC;PL;LGSPEC1
arfæst ADJ;NOM;MASC;SG;LGSPEC2
arfæst ADJ;GEN;FEM;SG;LGSPEC2
arfæst ADJ;NOM;NEUT;SG;LGSPEC2
arfæst ADJ;DAT;FEM;PL;LGSPEC1
arfæst ADJ;INS;FEM;SG;LGSPEC2
arfæst ADJ;GEN;NEUT;PL;LGSPEC2
arfæst ADJ;NOM;NEUT;PL;LGSPEC1
arfæst ADJ;GEN;FEM;PL;LGSPEC1
arfæst ADJ;GEN;FEM;SG;LGSPEC1
arfæst ADJ;NOM;MASC;SG;LGSPEC1
arfæst ADJ;NOM;MASC;PL;LGSPEC1
ea N;ACC;PL
ea N;DAT;PL
ea N;ACC;SG
ea N;NOM;PL
ea N;DAT;SG
ea N;GEN;PL
ea N;GEN;SG
ea N;NOM;SG
ea N;GEN;SG
ea N;ACC;PL
hired N;ACC;SG
hired N;DAT;SG
hired N;GEN;SG
hired N;NOM;PL
hired N;ACC;PL
hired N;NOM;SG
hired N;GEN;PL
hired N;DAT;PL
bugan V;IND;PL;PRS
bugan V;IMP;PL
bugan V;IND;PL;PST
bugan V.PTCP;PRS
bugan V;NFIN
bugan V;IMP;SG
bugan V;IND;SG;1;PST
bugan V;SBJV;SG;PRS
bugan V;SBJV;SG;PST
bugan V;IND;SG;2;PRS
bugan V;IND;SG;3;PRS
bugan V.PTCP;PST
bugan V;IND;SG;1;PRS
bugan V;IND;SG;2;PST
bugan V;SBJV;PL;PST
bugan V;NFIN
bugan V;IND;SG;3;PST
bugan V;SBJV;PL;PRS
þufbære ADJ;INS;MASC;PL;LGSPEC1
þufbære ADJ;GEN;MASC;PL;LGSPEC1
þufbære ADJ;GEN;FEM;PL;LGSPEC1
þufbære ADJ;INS;FEM;PL;LGSPEC2
þufbære ADJ;NOM;NEUT;PL;LGSPEC2
þufbære ADJ;ACC;NEUT;PL;LGSPEC2
þufbære ADJ;NOM;NEUT;SG;LGSPEC1
þufbære ADJ;ACC;FEM;SG;LGSPEC1
þufbære ADJ;INS;MASC;SG;LGSPEC1
þufbære ADJ;GEN;NEUT;SG;LGSPEC1
þufbære ADJ;GEN;MASC;SG;LGSPEC1
þufbære ADJ;DAT;MASC;PL;LGSPEC1
þufbære ADJ;ACC;NEUT;SG;LGSPEC1
þufbære ADJ;DAT;MASC;SG;LGSPEC1
þufbære ADJ;INS;FEM;SG;LGSPEC1
þufbære ADJ;GEN;NEUT;PL;LGSPEC2
þufbære ADJ;NOM;FEM;SG;LGSPEC2
þufbære ADJ;GEN;FEM;SG;LGSPEC1
þufbære ADJ;DAT;MASC;SG;LGSPEC2
þufbære ADJ;DAT;MASC;PL;LGSPEC2
þufbære ADJ;INS;NEUT;SG;LGSPEC2
þufbære ADJ;NOM;NEUT;SG;LGSPEC2
þufbære ADJ;NOM;FEM;PL;LGSPEC2
þufbære ADJ;INS;NEUT;PL;LGSPEC1
þufbære ADJ;NOM;FEM;SG;LGSPEC1
þufbære ADJ;DAT;FEM;PL;LGSPEC2
þufbære ADJ;ACC;NEUT;SG;LGSPEC2
þufbære ADJ;DAT;NEUT;SG;LGSPEC1
þufbære ADJ;INS;FEM;PL;LGSPEC1
þufbære ADJ;ACC;MASC;SG;LGSPEC2
þufbære ADJ;INS;NEUT;SG;LGSPEC1
þufbære ADJ;GEN;NEUT;SG;LGSPEC2
þufbære ADJ;GEN;FEM;PL;LGSPEC2
þufbære ADJ;ACC;FEM;SG;LGSPEC2
þufbære ADJ;ACC;NEUT;PL;LGSPEC1
þufbære ADJ;ACC;MASC;PL;LGSPEC1
þufbære ADJ;NOM;MASC;PL;LGSPEC1
þufbære ADJ;DAT;FEM;SG;LGSPEC2
þufbære ADJ;ACC;FEM;PL;LGSPEC2
þufbære ADJ;DAT;NEUT;PL;LGSPEC1
þufbære ADJ;DAT;FEM;SG;LGSPEC1
þufbære ADJ;GEN;NEUT;PL;LGSPEC1
þufbære ADJ;ACC;FEM;PL;LGSPEC1
þufbære ADJ;NOM;FEM;PL;LGSPEC1
þufbære ADJ;INS;MASC;PL;LGSPEC2
þufbære ADJ;NOM;MASC;SG;LGSPEC2
þufbære ADJ;DAT;NEUT;SG;LGSPEC2
þufbære ADJ;INS;MASC;SG;LGSPEC2
þufbære ADJ;DAT;NEUT;PL;LGSPEC2
þufbære ADJ;DAT;FEM;PL;LGSPEC1
þufbære ADJ;NOM;MASC;PL;LGSPEC2
þufbære ADJ;ACC;MASC;PL;LGSPEC2
þufbære ADJ;NOM;NEUT;PL;LGSPEC1
þufbære ADJ;GEN;MASC;SG;LGSPEC2
þufbære ADJ;GEN;FEM;SG;LGSPEC2
þufbære ADJ;GEN;MASC;PL;LGSPEC2
þufbære ADJ;ACC;MASC;SG;LGSPEC1
þufbære ADJ;NOM;MASC;SG;LGSPEC1
þufbære ADJ;NOM;NEUT;PL;LGSPEC2
þufbære ADJ;INS;FEM;SG;LGSPEC2
þufbære ADJ;ACC;FEM;PL;LGSPEC2
þufbære ADJ;INS;NEUT;PL;LGSPEC2
wacol ADJ;INS;FEM;SG;LGSPEC2
wacol ADJ;INS;MASC;SG;LGSPEC2
wacol ADJ;NOM;NEUT;PL;LGSPEC1
wacol ADJ;ACC;NEUT;PL;LGSPEC2
wacol ADJ;GEN;MASC;SG;LGSPEC2
wacol ADJ;DAT;MASC;PL;LGSPEC1
wacol ADJ;NOM;MASC;SG;LGSPEC2
wacol ADJ;NOM;NEUT;SG;LGSPEC2
wacol ADJ;GEN;MASC;PL;LGSPEC1
wacol ADJ;ACC;MASC;PL;LGSPEC2
wacol ADJ;DAT;MASC;PL;LGSPEC2
wacol ADJ;GEN;NEUT;PL;LGSPEC1
wacol ADJ;DAT;NEUT;PL;LGSPEC1
wacol ADJ;INS;FEM;PL;LGSPEC2
wacol ADJ;ACC;MASC;SG;LGSPEC1
wacol ADJ;INS;NEUT;PL;LGSPEC1
wacol ADJ;INS;NEUT;PL;LGSPEC2
wacol ADJ;DAT;FEM;SG;LGSPEC1
wacol ADJ;ACC;FEM;SG;LGSPEC1
wacol ADJ;GEN;FEM;SG;LGSPEC1
wacol ADJ;NOM;MASC;PL;LGSPEC1
wacol ADJ;NOM;NEUT;SG;LGSPEC1
wacol ADJ;ACC;FEM;PL;LGSPEC1
wacol ADJ;INS;FEM;PL;LGSPEC1
wacol ADJ;NOM;MASC;SG;LGSPEC1
wacol ADJ;DAT;NEUT;PL;LGSPEC2
wacol ADJ;ACC;MASC;SG;LGSPEC2
wacol ADJ;ACC;NEUT;PL;LGSPEC1
wacol ADJ;INS;MASC;PL;LGSPEC1
wacol ADJ;NOM;NEUT;PL;LGSPEC2
wacol ADJ;GEN;FEM;SG;LGSPEC2
wacol ADJ;GEN;NEUT;PL;LGSPEC2
wacol ADJ;GEN;MASC;PL;LGSPEC2
wacol ADJ;DAT;FEM;PL;LGSPEC2
wacol ADJ;DAT;FEM;SG;LGSPEC2
wacol ADJ;GEN;NEUT;SG;LGSPEC2
wacol ADJ;GEN;FEM;PL;LGSPEC1
wacol ADJ;DAT;FEM;PL;LGSPEC1
wacol ADJ;INS;NEUT;SG;LGSPEC2
wacol ADJ;DAT;MASC;SG;LGSPEC1
wacol ADJ;ACC;FEM;PL;LGSPEC2
wacol ADJ;ACC;MASC;PL;LGSPEC1
wacol ADJ;ACC;FEM;PL;LGSPEC2
wacol ADJ;INS;MASC;PL;LGSPEC2
wacol ADJ;GEN;NEUT;SG;LGSPEC1
wacol ADJ;ACC;NEUT;SG;LGSPEC2
wacol ADJ;ACC;FEM;SG;LGSPEC2
wacol ADJ;NOM;FEM;SG;LGSPEC1
wacol ADJ;INS;FEM;SG;LGSPEC1
wacol ADJ;GEN;MASC;SG;LGSPEC1
wacol ADJ;NOM;MASC;PL;LGSPEC2
wacol ADJ;NOM;FEM;PL;LGSPEC2
wacol ADJ;NOM;FEM;SG;LGSPEC2
wacol ADJ;INS;NEUT;SG;LGSPEC1
wacol ADJ;DAT;NEUT;SG;LGSPEC2
wacol ADJ;GEN;FEM;PL;LGSPEC1
wacol ADJ;INS;MASC;SG;LGSPEC1
wacol ADJ;NOM;FEM;PL;LGSPEC1
wacol ADJ;DAT;MASC;SG;LGSPEC2
wacol ADJ;GEN;MASC;PL;LGSPEC1
wacol ADJ;ACC;NEUT;SG;LGSPEC1
wacol ADJ;GEN;FEM;PL;LGSPEC2
wacol ADJ;DAT;NEUT;SG;LGSPEC1
ierfe N;GEN;PL
ierfe N;DAT;SG
ierfe N;GEN;SG
ierfe N;NOM;SG
ierfe N;NOM;PL
ierfe N;ACC;PL
ierfe N;DAT;PL
ierfe N;ACC;SG
blac ADJ;NOM;MASC;SG;LGSPEC1
blac ADJ;GEN;NEUT;SG;LGSPEC2
blac ADJ;GEN;FEM;SG;LGSPEC2
blac ADJ;DAT;PL;LGSPEC2
blac ADJ;ACC;FEM;SG;LGSPEC2
blac ADJ;NOM;SG;LGSPEC2
blac ADJ;ACC;MASC;SG;LGSPEC1
blac ADJ;INS;NEUT;SG;LGSPEC2
blac ADJ;NOM;FEM;PL;LGSPEC2
blac ADJ;GEN;PL;LGSPEC2
blac ADJ;ACC;FEM;SG;LGSPEC1
blac ADJ;DAT;NEUT;SG;LGSPEC2
blac ADJ;DAT;FEM;SG;LGSPEC2
blac ADJ;ACC;NEUT;SG;LGSPEC2
blac ADJ;NOM;NEUT;SG;LGSPEC1
blac ADJ;ACC;MASC;SG;LGSPEC2
blac ADJ;ACC;NEUT;PL;LGSPEC2
blac ADJ;NOM;NEUT;PL;LGSPEC2
blac ADJ;GEN;PL;LGSPEC1
blac ADJ;ACC;FEM;PL;LGSPEC2
blac ADJ;ACC;PL;LGSPEC1
blac ADJ;DAT;PL;LGSPEC1
blac ADJ;NOM;PL;LGSPEC1
blac ADJ;NOM;MASC;PL;LGSPEC2
blac ADJ;NOM;NEUT;PL;LGSPEC2
blac ADJ;INS;MASC;SG;LGSPEC2
blac ADJ;ACC;MASC;PL;LGSPEC2
blac ADJ;ACC;NEUT;PL;LGSPEC2
blac ADJ;ACC;NEUT;SG;LGSPEC1
blac ADJ;NOM;FEM;SG;LGSPEC1
blac ADJ;GEN;SG;LGSPEC1
blac ADJ;GEN;MASC;SG;LGSPEC2
blac ADJ;DAT;SG;LGSPEC1
blac ADJ;GEN;PL;LGSPEC1
blac ADJ;DAT;MASC;SG;LGSPEC2
egle ADJ;NOM;MASC;SG;LGSPEC2
egle ADJ;NOM;MASC;PL;LGSPEC2
egle ADJ;NOM;NEUT;SG;LGSPEC1
egle ADJ;ACC;NEUT;PL;LGSPEC2
egle ADJ;DAT;SG;LGSPEC1
egle ADJ;NOM;FEM;PL;LGSPEC2
egle ADJ;DAT;FEM;SG;LGSPEC2
egle ADJ;NOM;FEM;SG;LGSPEC2
egle ADJ;INS;MASC;SG;LGSPEC2
egle ADJ;NOM;NEUT;SG;LGSPEC2
egle ADJ;NOM;NEUT;PL;LGSPEC2
egle ADJ;GEN;NEUT;SG;LGSPEC2
egle ADJ;ACC;FEM;PL;LGSPEC2
egle ADJ;GEN;SG;LGSPEC1
egle ADJ;DAT;NEUT;SG;LGSPEC2
egle ADJ;DAT;PL;LGSPEC1
egle ADJ;INS;NEUT;SG;LGSPEC2
egle ADJ;GEN;PL;LGSPEC1
egle ADJ;DAT;PL;LGSPEC2
egle ADJ;ACC;FEM;SG;LGSPEC1
egle ADJ;ACC;NEUT;SG;LGSPEC1
egle ADJ;GEN;PL;LGSPEC2
egle ADJ;ACC;FEM;PL;LGSPEC2
egle ADJ;ACC;FEM;SG;LGSPEC2
egle ADJ;ACC;PL;LGSPEC1
egle ADJ;ACC;MASC;SG;LGSPEC1
egle ADJ;ACC;NEUT;SG;LGSPEC2
egle ADJ;NOM;MASC;SG;LGSPEC1
egle ADJ;GEN;FEM;SG;LGSPEC2
egle ADJ;ACC;NEUT;PL;LGSPEC2
egle ADJ;NOM;PL;LGSPEC1
egle ADJ;ACC;MASC;SG;LGSPEC2
egle ADJ;NOM;FEM;SG;LGSPEC1
egle ADJ;ACC;MASC;PL;LGSPEC2
egle ADJ;DAT;MASC;SG;LGSPEC2
egle ADJ;GEN;MASC;SG;LGSPEC2
freme ADJ;NOM;NEUT;PL;LGSPEC2
freme ADJ;NOM;MASC;PL;LGSPEC2
freme ADJ;GEN;PL;LGSPEC2
freme ADJ;ACC;NEUT;SG;LGSPEC1
freme ADJ;DAT;MASC;SG;LGSPEC2
freme ADJ;INS;NEUT;SG;LGSPEC2
freme ADJ;NOM;FEM;SG;LGSPEC1
freme ADJ;GEN;NEUT;SG;LGSPEC2
freme ADJ;NOM;FEM;SG;LGSPEC2
freme ADJ;GEN;FEM;SG;LGSPEC2
freme ADJ;NOM;FEM;PL;LGSPEC2
freme ADJ;ACC;FEM;PL;LGSPEC2
freme ADJ;DAT;FEM;SG;LGSPEC2
freme ADJ;NOM;NEUT;SG;LGSPEC1
freme ADJ;NOM;MASC;SG;LGSPEC1
freme ADJ;ACC;MASC;SG;LGSPEC1
freme ADJ;DAT;NEUT;SG;LGSPEC2
freme ADJ;NOM;MASC;SG;LGSPEC2
freme ADJ;DAT;SG;LGSPEC1
freme ADJ;ACC;NEUT;PL;LGSPEC2
freme ADJ;ACC;PL;LGSPEC1
freme ADJ;GEN;SG;LGSPEC1
freme ADJ;GEN;PL;LGSPEC1
freme ADJ;GEN;MASC;SG;LGSPEC2
freme ADJ;INS;MASC;SG;LGSPEC2
freme ADJ;ACC;MASC;SG;LGSPEC2
freme ADJ;NOM;NEUT;PL;LGSPEC2
freme ADJ;NOM;PL;LGSPEC1
freme ADJ;DAT;PL;LGSPEC2
freme ADJ;ACC;FEM;SG;LGSPEC2
freme ADJ;ACC;MASC;PL;LGSPEC2
freme ADJ;ACC;NEUT;SG;LGSPEC2
freme ADJ;NOM;FEM;PL;LGSPEC2
freme ADJ;DAT;PL;LGSPEC1
freme ADJ;ACC;NEUT;PL;LGSPEC2
freme ADJ;ACC;FEM;PL;LGSPEC2
freme ADJ;GEN;PL;LGSPEC1
freme ADJ;NOM;NEUT;SG;LGSPEC2
freme ADJ;ACC;FEM;SG;LGSPEC1
feormeham N;DAT;SG
feormeham N;ACC;PL
feormeham N;GEN;PL
feormeham N;DAT;PL
feormeham N;GEN;SG
feormeham N;NOM;PL
feormeham N;NOM;SG
feormeham N;ACC;SG
fang N;NOM;PL
fang N;GEN;SG
fang N;ACC;SG
fang N;DAT;PL
fang N;ACC;PL
fang N;GEN;PL
fang N;NOM;SG
fang N;DAT;SG
nicor N;GEN;SG
nicor N;NOM;SG
nicor N;GEN;PL
nicor N;DAT;SG
nicor N;ACC;SG
nicor N;ACC;PL
nicor N;DAT;PL
nicor N;NOM;PL
cweccan V.PTCP;PST
cweccan V;SBJV;SG;PST
cweccan V;IND;PL;PRS
cweccan V;IND;SG;2;PST
cweccan V;SBJV;PL;PST
cweccan V.PTCP;PRS
cweccan V;NFIN
cweccan V;IND;SG;1;PRS
cweccan V;SBJV;PL;PRS
cweccan V;IMP;SG
cweccan V;SBJV;SG;PRS
cweccan V;IND;SG;2;PRS
cweccan V;IND;SG;1;PST
cweccan V;IND;SG;3;PST
cweccan V;IMP;PL
cweccan V;IND;PL;PST
cweccan V;IND;SG;3;PRS
acwician V;SBJV;PL;PRS
acwician V;IMP;PL
acwician V;IND;SG;1;PST
acwician V.PTCP;PRS
acwician V;SBJV;SG;PRS
acwician V;IND;SG;3;PST
acwician V;IND;SG;2;PST
acwician V;IMP;SG
acwician V;IND;SG;1;PRS
acwician V.PTCP;PST
acwician V;IND;PL;PST
acwician V;NFIN
acwician V;SBJV;PL;PST
acwician V;IND;PL;PRS
acwician V;IND;SG;2;PRS
acwician V.PTCP;PRS
acwician V;IND;PL;PRS
acwician V.PTCP;PST
acwician V;SBJV;SG;PST
acwician V;IND;SG;3;PRS
acwician V;NFIN
acwician V;IMP;PL
swigian V;IND;PL;PST
swigian V;IMP;PL
swigian V;IND;PL;PRS
swigian V.PTCP;PST
swigian V;SBJV;PL;PRS
swigian V;IND;SG;3;PST
swigian V;NFIN
swigian V.PTCP;PRS
swigian V;IND;SG;2;PRS
swigian V;IMP;SG
swigian V;IND;SG;3;PRS
swigian V;SBJV;SG;PRS
swigian V;IND;SG;1;PRS
swigian V;NFIN
swigian V.PTCP;PRS
swigian V;IND;PL;PRS
swigian V;SBJV;PL;PRS
swigian V;SBJV;PL;PST
swigian V;IND;SG;1;PRS
swigian V;SBJV;SG;PST
swigian V;IND;SG;1;PST
swigian V;IND;SG;2;PST
botettan V.PTCP;PRS
botettan V;IND;PL;PRS
botettan V;SBJV;PL;PRS
botettan V.PTCP;PST
botettan V;IMP;SG
botettan V;NFIN
botettan V;IND;SG;3;PST
botettan V;IND;SG;1;PRS
botettan V;IND;SG;1;PST
botettan V;IND;SG;2;PRS
botettan V;SBJV;PL;PST
botettan V;IND;PL;PST
botettan V;SBJV;SG;PST
botettan V;IND;SG;2;PST
botettan V;SBJV;SG;PRS
botettan V;IMP;PL
botettan V;NFIN
botettan V;IND;SG;3;PRS
ladteow N;NOM;SG
ladteow N;ACC;PL
ladteow N;GEN;SG
ladteow N;NOM;PL
ladteow N;DAT;SG
ladteow N;ACC;SG
ladteow N;GEN;PL
ladteow N;DAT;PL
gebigednes N;NOM;PL
gebigednes N;GEN;PL
gebigednes N;NOM;SG
gebigednes N;ACC;PL
gebigednes N;GEN;SG
gebigednes N;ACC;SG
gebigednes N;DAT;SG
gebigednes N;DAT;PL
stille ADJ;GEN;FEM;SG;LGSPEC1
stille ADJ;DAT;NEUT;PL;LGSPEC2
stille ADJ;INS;MASC;PL;LGSPEC2
stille ADJ;NOM;FEM;PL;LGSPEC2
stille ADJ;NOM;MASC;SG;LGSPEC1
stille ADJ;GEN;FEM;SG;LGSPEC2
stille ADJ;INS;MASC;PL;LGSPEC1
stille ADJ;NOM;MASC;PL;LGSPEC1
stille ADJ;GEN;MASC;PL;LGSPEC1
stille ADJ;ACC;NEUT;PL;LGSPEC1
stille ADJ;ACC;FEM;PL;LGSPEC1
stille ADJ;INS;NEUT;PL;LGSPEC2
stille ADJ;NOM;NEUT;PL;LGSPEC1
stille ADJ;INS;NEUT;PL;LGSPEC1
stille ADJ;DAT;MASC;SG;LGSPEC2
stille ADJ;GEN;NEUT;SG;LGSPEC1
stille ADJ;DAT;FEM;SG;LGSPEC2
stille ADJ;NOM;FEM;SG;LGSPEC1
stille ADJ;INS;FEM;SG;LGSPEC2
stille ADJ;INS;FEM;PL;LGSPEC2
stille ADJ;DAT;MASC;SG;LGSPEC1
stille ADJ;NOM;NEUT;SG;LGSPEC2
stille ADJ;ACC;NEUT;SG;LGSPEC1
stille ADJ;NOM;FEM;SG;LGSPEC2
stille ADJ;GEN;MASC;PL;LGSPEC2
stille ADJ;NOM;NEUT;PL;LGSPEC2
stille ADJ;INS;NEUT;SG;LGSPEC2
stille ADJ;DAT;NEUT;PL;LGSPEC1
stille ADJ;NOM;MASC;PL;LGSPEC2
stille ADJ;ACC;FEM;SG;LGSPEC1
stille ADJ;INS;MASC;SG;LGSPEC1
stille ADJ;GEN;NEUT;PL;LGSPEC2
stille ADJ;NOM;NEUT;SG;LGSPEC1
stille ADJ;ACC;MASC;PL;LGSPEC2
stille ADJ;ACC;MASC;SG;LGSPEC2
stille ADJ;INS;MASC;SG;LGSPEC2
stille ADJ;INS;NEUT;SG;LGSPEC1
stille ADJ;INS;FEM;SG;LGSPEC1
stille ADJ;DAT;FEM;SG;LGSPEC1
stille ADJ;ACC;NEUT;PL;LGSPEC2
stille ADJ;ACC;FEM;SG;LGSPEC2
stille ADJ;DAT;MASC;PL;LGSPEC2
stille ADJ;GEN;FEM;PL;LGSPEC2
stille ADJ;ACC;NEUT;SG;LGSPEC2
stille ADJ;GEN;MASC;SG;LGSPEC1
stille ADJ;ACC;FEM;PL;LGSPEC2
stille ADJ;DAT;NEUT;SG;LGSPEC2
stille ADJ;GEN;NEUT;PL;LGSPEC1
stille ADJ;DAT;MASC;PL;LGSPEC1
stille ADJ;DAT;FEM;PL;LGSPEC2
stille ADJ;ACC;MASC;SG;LGSPEC1
stille ADJ;GEN;NEUT;SG;LGSPEC2
stille ADJ;DAT;NEUT;SG;LGSPEC1
stille ADJ;GEN;MASC;SG;LGSPEC2
stille ADJ;ACC;MASC;PL;LGSPEC1
stille ADJ;NOM;NEUT;PL;LGSPEC2
stille ADJ;GEN;FEM;PL;LGSPEC1
stille ADJ;INS;FEM;PL;LGSPEC1
stille ADJ;NOM;FEM;PL;LGSPEC1
stille ADJ;ACC;NEUT;PL;LGSPEC2
stille ADJ;ACC;FEM;PL;LGSPEC2
stille ADJ;GEN;NEUT;PL;LGSPEC1
stille ADJ;DAT;FEM;PL;LGSPEC1
stille ADJ;NOM;MASC;SG;LGSPEC2
lufsum ADJ;NOM;FEM;PL;LGSPEC2
lufsum ADJ;GEN;MASC;PL;LGSPEC2
lufsum ADJ;ACC;FEM;PL;LGSPEC1
lufsum ADJ;DAT;NEUT;SG;LGSPEC2
lufsum ADJ;DAT;FEM;SG;LGSPEC2
lufsum ADJ;NOM;NEUT;PL;LGSPEC1
lufsum ADJ;ACC;NEUT;PL;LGSPEC1
lufsum ADJ;DAT;MASC;PL;LGSPEC2
lufsum ADJ;NOM;NEUT;PL;LGSPEC2
lufsum ADJ;NOM;FEM;SG;LGSPEC1
lufsum ADJ;INS;FEM;SG;LGSPEC1
lufsum ADJ;DAT;FEM;SG;LGSPEC1
lufsum ADJ;ACC;NEUT;PL;LGSPEC2
lufsum ADJ;ACC;FEM;SG;LGSPEC1
lufsum ADJ;INS;MASC;PL;LGSPEC1
lufsum ADJ;INS;NEUT;PL;LGSPEC2
lufsum ADJ;DAT;NEUT;PL;LGSPEC1
lufsum ADJ;GEN;MASC;SG;LGSPEC1
lufsum ADJ;NOM;NEUT;SG;LGSPEC1
lufsum ADJ;INS;MASC;SG;LGSPEC1
lufsum ADJ;GEN;NEUT;SG;LGSPEC2
lufsum ADJ;ACC;MASC;PL;LGSPEC1
lufsum ADJ;GEN;NEUT;PL;LGSPEC2
lufsum ADJ;ACC;MASC;PL;LGSPEC2
lufsum ADJ;DAT;FEM;PL;LGSPEC2
lufsum ADJ;INS;NEUT;SG;LGSPEC1
lufsum ADJ;INS;MASC;SG;LGSPEC2
lufsum ADJ;DAT;MASC;SG;LGSPEC1
lufsum ADJ;NOM;FEM;SG;LGSPEC2
lufsum ADJ;DAT;NEUT;SG;LGSPEC1
lufsum ADJ;GEN;NEUT;SG;LGSPEC1
lufsum ADJ;GEN;FEM;PL;LGSPEC1
lufsum ADJ;GEN;MASC;SG;LGSPEC2
lufsum ADJ;INS;FEM;SG;LGSPEC2
lufsum ADJ;NOM;NEUT;SG;LGSPEC2
lufsum ADJ;GEN;FEM;SG;LGSPEC1
lufsum ADJ;DAT;MASC;PL;LGSPEC1
lufsum ADJ;INS;NEUT;PL;LGSPEC1
lufsum ADJ;NOM;MASC;SG;LGSPEC2
lufsum ADJ;ACC;NEUT;SG;LGSPEC1
lufsum ADJ;ACC;FEM;SG;LGSPEC2
lufsum ADJ;GEN;MASC;PL;LGSPEC1
lufsum ADJ;ACC;FEM;PL;LGSPEC2
lufsum ADJ;INS;FEM;PL;LGSPEC1
lufsum ADJ;DAT;NEUT;PL;LGSPEC2
lufsum ADJ;NOM;FEM;PL;LGSPEC1
lufsum ADJ;NOM;MASC;PL;LGSPEC2
lufsum ADJ;INS;NEUT;SG;LGSPEC2
lufsum ADJ;GEN;MASC;PL;LGSPEC1
lufsum ADJ;ACC;NEUT;SG;LGSPEC2
lufsum ADJ;NOM;MASC;PL;LGSPEC1
lufsum ADJ;DAT;FEM;PL;LGSPEC1
lufsum ADJ;GEN;FEM;SG;LGSPEC2
lufsum ADJ;ACC;FEM;PL;LGSPEC2
lufsum ADJ;GEN;NEUT;PL;LGSPEC1
lufsum ADJ;ACC;MASC;SG;LGSPEC1
lufsum ADJ;DAT;MASC;SG;LGSPEC2
lufsum ADJ;GEN;FEM;PL;LGSPEC2
lufsum ADJ;NOM;MASC;SG;LGSPEC1
lufsum ADJ;ACC;MASC;SG;LGSPEC2
lufsum ADJ;GEN;FEM;PL;LGSPEC1
lufsum ADJ;INS;FEM;PL;LGSPEC2
lufsum ADJ;INS;MASC;PL;LGSPEC2
bær ADJ;GEN;MASC;PL;LGSPEC1
bær ADJ;ACC;MASC;SG;LGSPEC1
bær ADJ;INS;FEM;PL;LGSPEC1
bær ADJ;INS;NEUT;PL;LGSPEC1
bær ADJ;INS;NEUT;SG;LGSPEC1
bær ADJ;DAT;FEM;PL;LGSPEC1
bær ADJ;DAT;MASC;PL;LGSPEC2
bær ADJ;GEN;NEUT;PL;LGSPEC1
bær ADJ;NOM;MASC;PL;LGSPEC1
bær ADJ;GEN;FEM;PL;LGSPEC1
bær ADJ;DAT;MASC;SG;LGSPEC1
bær ADJ;GEN;FEM;SG;LGSPEC2
bær ADJ;INS;FEM;SG;LGSPEC1
bær ADJ;DAT;NEUT;SG;LGSPEC1
bær ADJ;DAT;MASC;PL;LGSPEC1
bær ADJ;GEN;NEUT;SG;LGSPEC1
bær ADJ;NOM;MASC;SG;LGSPEC1
bær ADJ;GEN;MASC;SG;LGSPEC1
bær ADJ;ACC;NEUT;PL;LGSPEC1
bær ADJ;INS;MASC;PL;LGSPEC1
bær ADJ;GEN;MASC;SG;LGSPEC2
bær ADJ;GEN;FEM;PL;LGSPEC2
bær ADJ;GEN;NEUT;PL;LGSPEC2
bær ADJ;GEN;FEM;SG;LGSPEC1
bær ADJ;DAT;FEM;PL;LGSPEC2
bær ADJ;NOM;MASC;SG;LGSPEC2
bær ADJ;ACC;FEM;SG;LGSPEC2
bær ADJ;DAT;FEM;SG;LGSPEC2
bær ADJ;DAT;FEM;SG;LGSPEC1
bær ADJ;INS;MASC;SG;LGSPEC1
bær ADJ;ACC;FEM;PL;LGSPEC2
bær ADJ;NOM;FEM;SG;LGSPEC2
bær ADJ;NOM;MASC;PL;LGSPEC2
bær ADJ;NOM;FEM;PL;LGSPEC2
bær ADJ;GEN;MASC;PL;LGSPEC2
bær ADJ;NOM;NEUT;PL;LGSPEC1
bær ADJ;DAT;NEUT;PL;LGSPEC1
bær ADJ;GEN;NEUT;SG;LGSPEC2
bær ADJ;INS;FEM;PL;LGSPEC2
bær ADJ;INS;NEUT;SG;LGSPEC2
bær ADJ;NOM;NEUT;SG;LGSPEC1
bær ADJ;NOM;FEM;PL;LGSPEC1
bær ADJ;NOM;NEUT;SG;LGSPEC2
bær ADJ;ACC;FEM;PL;LGSPEC1
bær ADJ;ACC;MASC;SG;LGSPEC2
bær ADJ;ACC;FEM;PL;LGSPEC2
bær ADJ;DAT;NEUT;PL;LGSPEC2
bær ADJ;NOM;FEM;SG;LGSPEC1
bær ADJ;INS;MASC;SG;LGSPEC2
bær ADJ;NOM;NEUT;PL;LGSPEC2
bær ADJ;ACC;MASC;PL;LGSPEC2
bær ADJ;ACC;FEM;SG;LGSPEC1
bær ADJ;ACC;NEUT;SG;LGSPEC1
bær ADJ;ACC;NEUT;SG;LGSPEC2
bær ADJ;ACC;MASC;PL;LGSPEC1
bær ADJ;DAT;MASC;SG;LGSPEC2
bær ADJ;DAT;NEUT;SG;LGSPEC2
bær ADJ;GEN;FEM;PL;LGSPEC1
bær ADJ;INS;FEM;SG;LGSPEC2
bær ADJ;ACC;NEUT;PL;LGSPEC2
bær ADJ;INS;NEUT;PL;LGSPEC2
bær ADJ;NOM;NEUT;PL;LGSPEC2
bær ADJ;INS;MASC;PL;LGSPEC2
wæter N;NOM;SG
wæter N;DAT;PL
wæter N;ACC;SG
wæter N;GEN;PL
wæter N;GEN;SG
wæter N;NOM;PL
wæter N;ACC;PL
wæter N;DAT;SG
hwit ADJ;GEN;NEUT;SG;LGSPEC2
hwit ADJ;NOM;MASC;SG;LGSPEC1
hwit ADJ;NOM;NEUT;PL;LGSPEC2
hwit ADJ;ACC;MASC;PL;LGSPEC2
hwit ADJ;DAT;PL;LGSPEC2
hwit ADJ;GEN;MASC;SG;LGSPEC2
hwit ADJ;ACC;NEUT;PL;LGSPEC2
hwit ADJ;NOM;FEM;PL;LGSPEC2
hwit ADJ;ACC;NEUT;SG;LGSPEC1
hwit ADJ;GEN;PL;LGSPEC1
hwit ADJ;NOM;FEM;SG;LGSPEC1
hwit ADJ;DAT;FEM;SG;LGSPEC2
hwit ADJ;ACC;FEM;PL;LGSPEC2
hwit ADJ;NOM;PL;LGSPEC1
hwit ADJ;DAT;NEUT;SG;LGSPEC2
hwit ADJ;DAT;MASC;SG;LGSPEC2
hwit ADJ;NOM;NEUT;SG;LGSPEC1
hwit ADJ;ACC;MASC;SG;LGSPEC1
hwit ADJ;GEN;SG;LGSPEC1
hwit ADJ;DAT;SG;LGSPEC1
hwit ADJ;NOM;SG;LGSPEC2
hwit ADJ;GEN;PL;LGSPEC2
hwit ADJ;ACC;FEM;SG;LGSPEC2
hwit ADJ;GEN;FEM;SG;LGSPEC2
hwit ADJ;DAT;PL;LGSPEC1
hwit ADJ;ACC;PL;LGSPEC1
hwit ADJ;INS;MASC;SG;LGSPEC2
hwit ADJ;ACC;MASC;SG;LGSPEC2
hwit ADJ;ACC;FEM;SG;LGSPEC1
hwit ADJ;INS;NEUT;SG;LGSPEC2
hwit ADJ;ACC;NEUT;SG;LGSPEC2
hwit ADJ;NOM;MASC;PL;LGSPEC2
bogiht ADJ;ACC;NEUT;SG;LGSPEC2
bogiht ADJ;DAT;NEUT;PL;LGSPEC1
bogiht ADJ;ACC;MASC;SG;LGSPEC1
bogiht ADJ;NOM;FEM;PL;LGSPEC1
bogiht ADJ;DAT;MASC;PL;LGSPEC2
bogiht ADJ;NOM;MASC;PL;LGSPEC2
bogiht ADJ;DAT;NEUT;SG;LGSPEC1
bogiht ADJ;INS;FEM;PL;LGSPEC2
bogiht ADJ;ACC;FEM;SG;LGSPEC2
bogiht ADJ;INS;FEM;PL;LGSPEC1
bogiht ADJ;DAT;MASC;SG;LGSPEC1
bogiht ADJ;ACC;FEM;PL;LGSPEC2
bogiht ADJ;INS;MASC;PL;LGSPEC2
bogiht ADJ;GEN;NEUT;SG;LGSPEC2
bogiht ADJ;GEN;FEM;PL;LGSPEC2
bogiht ADJ;NOM;MASC;SG;LGSPEC2
bogiht ADJ;DAT;FEM;SG;LGSPEC1
bogiht ADJ;ACC;NEUT;PL;LGSPEC2
bogiht ADJ;GEN;MASC;SG;LGSPEC2
bogiht ADJ;ACC;NEUT;SG;LGSPEC1
bogiht ADJ;NOM;FEM;PL;LGSPEC2
bogiht ADJ;ACC;FEM;SG;LGSPEC1
bogiht ADJ;GEN;FEM;PL;LGSPEC1
bogiht ADJ;NOM;MASC;PL;LGSPEC1
bogiht ADJ;NOM;NEUT;SG;LGSPEC2
bogiht ADJ;GEN;MASC;PL;LGSPEC1
bogiht ADJ;NOM;NEUT;PL;LGSPEC2
bogiht ADJ;ACC;NEUT;PL;LGSPEC1
bogiht ADJ;GEN;FEM;SG;LGSPEC1
bogiht ADJ;GEN;MASC;PL;LGSPEC2
bogiht ADJ;ACC;FEM;PL;LGSPEC1
bogiht ADJ;INS;NEUT;SG;LGSPEC2
bogiht ADJ;INS;MASC;SG;LGSPEC2
bogiht ADJ;DAT;MASC;PL;LGSPEC1
bogiht ADJ;DAT;FEM;SG;LGSPEC2
bogiht ADJ;NOM;NEUT;PL;LGSPEC1
bogiht ADJ;GEN;NEUT;PL;LGSPEC1
bogiht ADJ;GEN;NEUT;SG;LGSPEC1
bogiht ADJ;INS;NEUT;SG;LGSPEC1
bogiht ADJ;ACC;MASC;PL;LGSPEC2
bogiht ADJ;DAT;NEUT;PL;LGSPEC2
bogiht ADJ;INS;FEM;SG;LGSPEC2
bogiht ADJ;NOM;FEM;SG;LGSPEC1
bogiht ADJ;INS;MASC;PL;LGSPEC1
bogiht ADJ;NOM;MASC;SG;LGSPEC1
bogiht ADJ;DAT;MASC;SG;LGSPEC2
bogiht ADJ;INS;MASC;SG;LGSPEC1
bogiht ADJ;GEN;NEUT;PL;LGSPEC1
bogiht ADJ;GEN;MASC;PL;LGSPEC1
bogiht ADJ;NOM;NEUT;SG;LGSPEC1
bogiht ADJ;GEN;NEUT;PL;LGSPEC2
bogiht ADJ;GEN;FEM;SG;LGSPEC2
bogiht ADJ;ACC;MASC;SG;LGSPEC2
bogiht ADJ;DAT;NEUT;SG;LGSPEC2
bogiht ADJ;INS;NEUT;PL;LGSPEC2
bogiht ADJ;GEN;MASC;SG;LGSPEC1
bogiht ADJ;DAT;FEM;PL;LGSPEC2
bogiht ADJ;INS;FEM;SG;LGSPEC1
bogiht ADJ;ACC;MASC;PL;LGSPEC1
bogiht ADJ;INS;NEUT;PL;LGSPEC1
bogiht ADJ;DAT;FEM;PL;LGSPEC1
bogiht ADJ;NOM;FEM;SG;LGSPEC2
sceadan V;IMP;PL
sceadan V;IND;PL;PRS
sceadan V;NFIN
sceadan V;IMP;SG
sceadan V;IND;PL;PST
sceadan V;IND;SG;1;PST
sceadan V.PTCP;PRS
sceadan V;SBJV;SG;PST
sceadan V;SBJV;PL;PRS
sceadan V;SBJV;PL;PST
sceadan V;IND;SG;1;PRS
sceadan V;IND;SG;3;PRS
sceadan V;IND;SG;2;PRS
sceadan V;IND;SG;2;PST
sceadan V;IND;SG;3;PST
sceadan V;SBJV;SG;PRS
sceadan V.PTCP;PST
lox N;ACC;PL
lox N;NOM;SG
lox N;DAT;PL
lox N;DAT;SG
lox N;GEN;PL
lox N;ACC;SG
lox N;GEN;SG
lox N;NOM;PL
folm N;ACC;SG
folm N;ACC;PL
folm N;NOM;PL
folm N;GEN;SG
folm N;DAT;SG
folm N;NOM;SG
folm N;DAT;PL
folm N;GEN;PL
folm N;ACC;PL
folm N;NOM;PL
beon V;SBJV;PL;PRS
beon V;SBJV;PL;PST
beon V;IND;PL;PRS
beon V;IND;PL;PST
beon V;SBJV;SG;PST
beon V;NFIN
beon V;IMP;SG
beon V;IND;SG;1;PRS
beon V.PTCP;PRS
beon V;IND;SG;3;PST
beon V;IND;SG;2;PRS
beon V;IMP;PL
beon V;IND;SG;1;PST
beon V.PTCP;PST
beon V;SBJV;SG;PRS
beon V;IND;SG;1;PRS
beon V;IND;SG;2;PST
beon V;IND;SG;3;PRS
onstellan V;IND;SG;2;PRS
onstellan V;SBJV;PL;PST
onstellan V;IMP;SG
onstellan V;IND;SG;1;PST
onstellan V;SBJV;SG;PST
onstellan V;SBJV;PL;PRS
onstellan V.PTCP;PRS
onstellan V;IND;SG;2;PST
onstellan V.PTCP;PST
onstellan V;IND;SG;3;PRS
onstellan V;IMP;PL
onstellan V;IND;PL;PRS
onstellan V;IND;SG;1;PRS
onstellan V;SBJV;SG;PRS
onstellan V;NFIN
onstellan V;IND;SG;3;PST
onstellan V;IND;PL;PST
ƿadan V;IMP;SG
ƿadan V;IMP;PL
ƿadan V;NFIN
ƿadan V.PTCP;PRS
ƿadan V;IND;SG;1;PST
ƿadan V;SBJV;SG;PST
ƿadan V.PTCP;PST
ƿadan V;IND;SG;3;PRS
ƿadan V;SBJV;PL;PST
ƿadan V;IND;SG;1;PRS
ƿadan V;IND;SG;3;PST
ƿadan V;IND;SG;2;PST
ƿadan V;SBJV;PL;PRS
ƿadan V;IND;PL;PRS
ƿadan V;IND;SG;2;PRS
ƿadan V;SBJV;SG;PRS
ƿadan V;IND;PL;PST
bocian V;IND;SG;2;PST
bocian V.PTCP;PRS
bocian V;SBJV;SG;PRS
bocian V;IND;SG;3;PRS
bocian V;NFIN
bocian V;SBJV;SG;PST
bocian V;IND;SG;1;PRS
bocian V;IMP;SG
bocian V;IND;SG;1;PST
bocian V;IND;PL;PST
bocian V;IND;PL;PRS
bocian V;SBJV;PL;PRS
bocian V;IND;SG;3;PST
bocian V.PTCP;PST
bocian V;IND;SG;2;PRS
bocian V;IND;SG;1;PRS
bocian V;SBJV;PL;PST
bocian V;NFIN
bocian V;IMP;PL
bocian V;IND;PL;PRS
bocian V;IMP;PL
faroþ N;ACC;PL
faroþ N;DAT;PL
faroþ N;DAT;SG
faroþ N;GEN;PL
faroþ N;NOM;SG
faroþ N;ACC;SG
faroþ N;NOM;PL
faroþ N;GEN;SG
faroþ N;NOM;PL
ancor N;GEN;PL
ancor N;ACC;SG
ancor N;DAT;PL
ancor N;NOM;PL
ancor N;GEN;SG
ancor N;NOM;SG
ancor N;DAT;SG
ancor N;ACC;PL
handboc N;ACC;PL
handboc N;GEN;SG
handboc N;DAT;SG
handboc N;GEN;PL
handboc N;NOM;SG
handboc N;NOM;PL
handboc N;GEN;SG
handboc N;ACC;SG
handboc N;DAT;PL
goldfah ADJ;ACC;NEUT;SG;LGSPEC1
goldfah ADJ;ACC;FEM;PL;LGSPEC2
goldfah ADJ;NOM;PL;LGSPEC1
goldfah ADJ;NOM;NEUT;SG;LGSPEC1
goldfah ADJ;ACC;MASC;SG;LGSPEC2
goldfah ADJ;GEN;MASC;SG;LGSPEC2
goldfah ADJ;GEN;PL;LGSPEC1
goldfah ADJ;NOM;MASC;SG;LGSPEC2
goldfah ADJ;DAT;FEM;SG;LGSPEC2
goldfah ADJ;INS;MASC;SG;LGSPEC2
goldfah ADJ;GEN;PL;LGSPEC2
goldfah ADJ;GEN;SG;LGSPEC1
goldfah ADJ;ACC;NEUT;PL;LGSPEC2
goldfah ADJ;DAT;PL;LGSPEC2
goldfah ADJ;NOM;NEUT;SG;LGSPEC2
goldfah ADJ;NOM;MASC;SG;LGSPEC1
goldfah ADJ;ACC;MASC;SG;LGSPEC1
goldfah ADJ;NOM;NEUT;PL;LGSPEC2
goldfah ADJ;DAT;NEUT;SG;LGSPEC2
goldfah ADJ;DAT;PL;LGSPEC1
goldfah ADJ;INS;NEUT;SG;LGSPEC2
goldfah ADJ;ACC;PL;LGSPEC1
goldfah ADJ;GEN;FEM;SG;LGSPEC2
goldfah ADJ;ACC;MASC;PL;LGSPEC2
goldfah ADJ;NOM;FEM;SG;LGSPEC1
goldfah ADJ;DAT;MASC;SG;LGSPEC2
goldfah ADJ;NOM;MASC;PL;LGSPEC2
goldfah ADJ;DAT;SG;LGSPEC1
goldfah ADJ;NOM;FEM;PL;LGSPEC2
goldfah ADJ;GEN;PL;LGSPEC1
goldfah ADJ;ACC;FEM;SG;LGSPEC1
goldfah ADJ;ACC;FEM;SG;LGSPEC2
goldfah ADJ;ACC;NEUT;SG;LGSPEC2
goldfah ADJ;NOM;FEM;SG;LGSPEC2
goldfah ADJ;ACC;NEUT;PL;LGSPEC2
goldfah ADJ;GEN;NEUT;SG;LGSPEC2
woda N;GEN;SG
woda N;DAT;SG
woda N;ACC;PL
woda N;DAT;PL
woda N;NOM;PL
woda N;GEN;PL
woda N;NOM;SG
woda N;ACC;SG
steore N;NOM;PL
steore N;GEN;PL
steore N;GEN;SG
steore N;ACC;PL
steore N;DAT;PL
steore N;DAT;SG
steore N;ACC;SG
steore N;NOM;SG
wrætlic ADJ;DAT;MASC;SG;LGSPEC2
wrætlic ADJ;DAT;NEUT;SG;LGSPEC2
wrætlic ADJ;DAT;MASC;PL;LGSPEC2
wrætlic ADJ;ACC;NEUT;SG;LGSPEC1
wrætlic ADJ;INS;MASC;SG;LGSPEC2
wrætlic ADJ;INS;NEUT;PL;LGSPEC1
wrætlic ADJ;GEN;MASC;PL;LGSPEC1
wrætlic ADJ;NOM;FEM;SG;LGSPEC1
wrætlic ADJ;ACC;MASC;SG;LGSPEC1
wrætlic ADJ;NOM;FEM;SG;LGSPEC2
wrætlic ADJ;ACC;MASC;PL;LGSPEC1
wrætlic ADJ;DAT;NEUT;PL;LGSPEC2
wrætlic ADJ;INS;MASC;SG;LGSPEC1
wrætlic ADJ;ACC;MASC;PL;LGSPEC2
wrætlic ADJ;NOM;MASC;PL;LGSPEC1
wrætlic ADJ;GEN;NEUT;PL;LGSPEC2
wrætlic ADJ;NOM;FEM;PL;LGSPEC2
wrætlic ADJ;GEN;FEM;SG;LGSPEC2
wrætlic ADJ;ACC;FEM;PL;LGSPEC2
wrætlic ADJ;INS;NEUT;PL;LGSPEC2
wrætlic ADJ;DAT;FEM;PL;LGSPEC2
wrætlic ADJ;INS;FEM;PL;LGSPEC2
wrætlic ADJ;NOM;MASC;PL;LGSPEC2
wrætlic ADJ;DAT;FEM;SG;LGSPEC2
wrætlic ADJ;ACC;MASC;SG;LGSPEC2
wrætlic ADJ;NOM;FEM;PL;LGSPEC1
wrætlic ADJ;DAT;MASC;PL;LGSPEC1
wrætlic ADJ;GEN;NEUT;PL;LGSPEC1
wrætlic ADJ;NOM;NEUT;PL;LGSPEC2
wrætlic ADJ;DAT;FEM;SG;LGSPEC1
wrætlic ADJ;INS;NEUT;SG;LGSPEC1
wrætlic ADJ;INS;MASC;PL;LGSPEC2
wrætlic ADJ;INS;FEM;PL;LGSPEC1
wrætlic ADJ;DAT;FEM;PL;LGSPEC1
wrætlic ADJ;NOM;MASC;SG;LGSPEC1
wrætlic ADJ;GEN;NEUT;SG;LGSPEC2
wrætlic ADJ;ACC;NEUT;PL;LGSPEC2
wrætlic ADJ;DAT;MASC;SG;LGSPEC1
wrætlic ADJ;GEN;MASC;SG;LGSPEC2
wrætlic ADJ;NOM;NEUT;SG;LGSPEC2
wrætlic ADJ;ACC;FEM;SG;LGSPEC1
wrætlic ADJ;ACC;FEM;PL;LGSPEC1
wrætlic ADJ;DAT;NEUT;SG;LGSPEC1
wrætlic ADJ;GEN;FEM;SG;LGSPEC1
wrætlic ADJ;NOM;NEUT;SG;LGSPEC1
wrætlic ADJ;GEN;NEUT;SG;LGSPEC1
wrætlic ADJ;NOM;MASC;SG;LGSPEC2
wrætlic ADJ;NOM;NEUT;PL;LGSPEC1
wrætlic ADJ;GEN;FEM;PL;LGSPEC2
wrætlic ADJ;INS;MASC;PL;LGSPEC1
wrætlic ADJ;GEN;MASC;PL;LGSPEC2
wrætlic ADJ;INS;FEM;SG;LGSPEC2
wrætlic ADJ;INS;NEUT;SG;LGSPEC2
wrætlic ADJ;GEN;FEM;PL;LGSPEC1
wrætlic ADJ;DAT;NEUT;PL;LGSPEC1
wrætlic ADJ;ACC;FEM;SG;LGSPEC2
wrætlic ADJ;INS;FEM;SG;LGSPEC1
wrætlic ADJ;ACC;NEUT;PL;LGSPEC2
wrætlic ADJ;ACC;NEUT;SG;LGSPEC2
wrætlic ADJ;GEN;MASC;SG;LGSPEC1
wrætlic ADJ;ACC;NEUT;PL;LGSPEC1
sceawian V;IMP;PL
sceawian V;SBJV;SG;PRS
sceawian V;IMP;SG
sceawian V;IND;SG;3;PST
sceawian V;IND;SG;2;PST
sceawian V;IND;SG;1;PST
sceawian V;SBJV;PL;PRS
sceawian V;SBJV;SG;PST
sceawian V;IND;SG;2;PRS
sceawian V;IND;PL;PRS
sceawian V;IND;SG;3;PRS
sceawian V.PTCP;PRS
sceawian V;IND;SG;1;PRS
sceawian V;IND;PL;PST
sceawian V;NFIN
sceawian V.PTCP;PST
sceawian V;SBJV;PL;PST
sceawian V;SBJV;SG;PRS
sceawian V;IND;SG;1;PRS
sceawian V.PTCP;PST
sceawian V.PTCP;PRS
sceawian V;SBJV;PL;PRS
galdor N;ACC;PL
galdor N;GEN;SG
galdor N;NOM;PL
galdor N;DAT;SG
galdor N;DAT;PL
galdor N;ACC;SG
galdor N;NOM;SG
galdor N;GEN;PL
ælan V.PTCP;PST
ælan V;IND;SG;3;PST
ælan V;IND;PL;PRS
ælan V;IND;SG;1;PRS
ælan V;SBJV;PL;PST
ælan V.PTCP;PRS
ælan V;NFIN
ælan V;IND;PL;PST
ælan V;IMP;SG
ælan V;IND;SG;1;PST
ælan V;IMP;PL
ælan V;SBJV;SG;PST
ælan V.PTCP;PST
ælan V;SBJV;PL;PRS
ælan V;IND;SG;3;PRS
ælan V;IND;SG;2;PST
ælan V;SBJV;SG;PRS
ælan V;IND;SG;2;PRS
eadig ADJ;DAT;MASC;SG;LGSPEC1
eadig ADJ;DAT;NEUT;PL;LGSPEC1
eadig ADJ;INS;NEUT;PL;LGSPEC2
eadig ADJ;INS;NEUT;SG;LGSPEC2
eadig ADJ;INS;MASC;PL;LGSPEC2
eadig ADJ;DAT;MASC;SG;LGSPEC2
eadig ADJ;GEN;MASC;SG;LGSPEC1
eadig ADJ;ACC;FEM;SG;LGSPEC1
eadig ADJ;DAT;MASC;PL;LGSPEC2
eadig ADJ;GEN;NEUT;SG;LGSPEC1
eadig ADJ;GEN;FEM;PL;LGSPEC2
eadig ADJ;DAT;FEM;SG;LGSPEC1
eadig ADJ;ACC;MASC;PL;LGSPEC1
eadig ADJ;GEN;NEUT;PL;LGSPEC1
eadig ADJ;GEN;NEUT;PL;LGSPEC2
eadig ADJ;GEN;MASC;SG;LGSPEC2
eadig ADJ;INS;MASC;SG;LGSPEC2
eadig ADJ;ACC;NEUT;SG;LGSPEC1
eadig ADJ;ACC;NEUT;PL;LGSPEC1
eadig ADJ;INS;FEM;PL;LGSPEC1
eadig ADJ;GEN;MASC;PL;LGSPEC1
eadig ADJ;NOM;MASC;PL;LGSPEC1
eadig ADJ;NOM;NEUT;SG;LGSPEC1
eadig ADJ;INS;FEM;SG;LGSPEC1
eadig ADJ;DAT;FEM;PL;LGSPEC2
eadig ADJ;NOM;MASC;PL;LGSPEC2
eadig ADJ;DAT;FEM;PL;LGSPEC1
eadig ADJ;NOM;FEM;SG;LGSPEC1
eadig ADJ;NOM;MASC;SG;LGSPEC2
eadig ADJ;NOM;NEUT;SG;LGSPEC2
eadig ADJ;DAT;NEUT;PL;LGSPEC2
eadig ADJ;NOM;FEM;PL;LGSPEC2
eadig ADJ;DAT;NEUT;SG;LGSPEC2
eadig ADJ;NOM;MASC;SG;LGSPEC1
eadig ADJ;NOM;NEUT;PL;LGSPEC1
eadig ADJ;NOM;FEM;PL;LGSPEC1
eadig ADJ;ACC;NEUT;SG;LGSPEC2
eadig ADJ;GEN;NEUT;SG;LGSPEC2
eadig ADJ;ACC;NEUT;PL;LGSPEC2
eadig ADJ;ACC;FEM;PL;LGSPEC2
eadig ADJ;INS;MASC;PL;LGSPEC1
eadig ADJ;INS;NEUT;PL;LGSPEC1
eadig ADJ;INS;FEM;PL;LGSPEC2
eadig ADJ;ACC;MASC;SG;LGSPEC1
eadig ADJ;INS;NEUT;SG;LGSPEC1
eadig ADJ;GEN;FEM;PL;LGSPEC1
eadig ADJ;DAT;FEM;SG;LGSPEC2
eadig ADJ;NOM;NEUT;PL;LGSPEC2
eadig ADJ;NOM;FEM;SG;LGSPEC2
eadig ADJ;ACC;FEM;PL;LGSPEC1
eadig ADJ;DAT;NEUT;SG;LGSPEC1
eadig ADJ;GEN;MASC;PL;LGSPEC2
eadig ADJ;DAT;MASC;PL;LGSPEC1
eadig ADJ;ACC;MASC;SG;LGSPEC2
eadig ADJ;GEN;FEM;SG;LGSPEC1
eadig ADJ;ACC;FEM;PL;LGSPEC2
eadig ADJ;ACC;FEM;PL;LGSPEC1
eadig ADJ;INS;FEM;PL;LGSPEC2
eadig ADJ;GEN;NEUT;PL;LGSPEC1
eadig ADJ;ACC;MASC;PL;LGSPEC2
eadig ADJ;NOM;NEUT;PL;LGSPEC1
eadig ADJ;DAT;FEM;PL;LGSPEC2
eadig ADJ;NOM;MASC;SG;LGSPEC1
eadig ADJ;INS;MASC;PL;LGSPEC1
eadig ADJ;DAT;NEUT;SG;LGSPEC1
eadig ADJ;DAT;NEUT;SG;LGSPEC2
eadig ADJ;NOM;FEM;SG;LGSPEC2
eadig ADJ;ACC;MASC;PL;LGSPEC2
eadig ADJ;ACC;FEM;SG;LGSPEC2
eadig ADJ;NOM;MASC;PL;LGSPEC1
eadig ADJ;ACC;FEM;PL;LGSPEC2
eadig ADJ;NOM;FEM;SG;LGSPEC1
eadig ADJ;GEN;FEM;PL;LGSPEC1
eadig ADJ;ACC;NEUT;PL;LGSPEC2
eadig ADJ;GEN;MASC;SG;LGSPEC1
eadig ADJ;INS;MASC;SG;LGSPEC1
eadig ADJ;GEN;FEM;SG;LGSPEC1
eadig ADJ;GEN;FEM;SG;LGSPEC2
eadig ADJ;DAT;NEUT;PL;LGSPEC2
eadig ADJ;DAT;MASC;PL;LGSPEC1
eadig ADJ;ACC;NEUT;SG;LGSPEC1
eadig ADJ;NOM;FEM;PL;LGSPEC2
eadig ADJ;NOM;NEUT;SG;LGSPEC1
eadig ADJ;INS;FEM;SG;LGSPEC2
calu ADJ;GEN;PL;LGSPEC2
calu ADJ;INS;NEUT;SG;LGSPEC2
calu ADJ;DAT;PL;LGSPEC2
calu ADJ;GEN;PL;LGSPEC1
calu ADJ;ACC;NEUT;SG;LGSPEC2
calu ADJ;ACC;PL;LGSPEC1
calu ADJ;GEN;MASC;SG;LGSPEC2
calu ADJ;ACC;FEM;SG;LGSPEC2
calu ADJ;NOM;FEM;SG;LGSPEC2
calu ADJ;NOM;FEM;SG;LGSPEC1
calu ADJ;NOM;NEUT;PL;LGSPEC2
calu ADJ;NOM;MASC;PL;LGSPEC2
calu ADJ;NOM;MASC;SG;LGSPEC2
calu ADJ;ACC;NEUT;PL;LGSPEC2
calu ADJ;NOM;PL;LGSPEC1
calu ADJ;ACC;MASC;SG;LGSPEC2
calu ADJ;NOM;NEUT;SG;LGSPEC2
calu ADJ;DAT;SG;LGSPEC1
calu ADJ;NOM;FEM;PL;LGSPEC2
calu ADJ;GEN;FEM;SG;LGSPEC2
calu ADJ;DAT;NEUT;SG;LGSPEC2
calu ADJ;DAT;FEM;SG;LGSPEC2
calu ADJ;NOM;MASC;SG;LGSPEC1
calu ADJ;INS;MASC;SG;LGSPEC2
calu ADJ;NOM;NEUT;SG;LGSPEC1
calu ADJ;ACC;FEM;SG;LGSPEC1
calu ADJ;DAT;PL;LGSPEC1
calu ADJ;ACC;MASC;PL;LGSPEC2
calu ADJ;ACC;NEUT;SG;LGSPEC1
calu ADJ;GEN;SG;LGSPEC1
calu ADJ;ACC;NEUT;PL;LGSPEC2
calu ADJ;ACC;FEM;PL;LGSPEC2
calu ADJ;DAT;MASC;SG;LGSPEC2
calu ADJ;GEN;NEUT;SG;LGSPEC2
calu ADJ;NOM;FEM;PL;LGSPEC2
calu ADJ;ACC;MASC;SG;LGSPEC1
mildheortnes N;NOM;PL
mildheortnes N;GEN;PL
mildheortnes N;NOM;SG
mildheortnes N;ACC;SG
mildheortnes N;DAT;SG
mildheortnes N;GEN;SG
mildheortnes N;DAT;PL
mildheortnes N;NOM;PL
mildheortnes N;ACC;PL
engel N;GEN;SG
engel N;ACC;PL
engel N;ACC;SG
engel N;NOM;SG
engel N;DAT;SG
engel N;GEN;PL
engel N;DAT;PL
engel N;NOM;PL
Ængle N;GEN;PL
Ængle N;DAT;PL
Ængle N;ACC;PL
Ængle N;NOM;PL
hearra N;ACC;SG
hearra N;ACC;PL
hearra N;GEN;SG
hearra N;GEN;PL
hearra N;NOM;SG
hearra N;NOM;PL
hearra N;DAT;PL
hearra N;DAT;SG
scinan V;SBJV;SG;PST
scinan V;IND;SG;2;PST
scinan V;SBJV;PL;PRS
scinan V;IND;PL;PRS
scinan V;IND;SG;2;PRS
scinan V;IND;SG;1;PRS
scinan V;IND;SG;1;PST
scinan V;NFIN
scinan V;IMP;SG
scinan V.PTCP;PRS
scinan V.PTCP;PST
scinan V;IND;SG;3;PST
scinan V;IND;SG;3;PRS
scinan V;IND;PL;PST
scinan V;SBJV;PL;PST
scinan V;SBJV;SG;PRS
scinan V;NFIN
scinan V;IMP;PL
scinan V.PTCP;PST
gat N;NOM;PL
gat N;NOM;SG
gat N;DAT;PL
gat N;GEN;SG
gat N;GEN;PL
gat N;ACC;PL
gat N;NOM;PL
gat N;ACC;PL
gat N;ACC;SG
gat N;DAT;SG
beæwnian V;IND;PL;PRS
beæwnian V;SBJV;SG;PRS
beæwnian V.PTCP;PRS
beæwnian V;IND;SG;3;PST
beæwnian V;IND;SG;2;PRS
beæwnian V;SBJV;PL;PRS
beæwnian V;IND;SG;2;PST
beæwnian V.PTCP;PST
beæwnian V;IND;SG;1;PRS
beæwnian V;IND;SG;1;PST
beæwnian V;SBJV;PL;PST
beæwnian V;NFIN
beæwnian V;IMP;PL
beæwnian V;IMP;PL
beæwnian V;SBJV;SG;PST
beæwnian V;IND;SG;3;PRS
beæwnian V;NFIN
beæwnian V;IND;PL;PRS
beæwnian V;IMP;SG
beæwnian V;IND;SG;1;PRS
beæwnian V;IND;PL;PST
beæwnian V.PTCP;PST
beæwnian V;SBJV;PL;PRS
cwellan V;IND;SG;2;PST
cwellan V;NFIN
cwellan V;IND;SG;3;PRS
cwellan V;SBJV;PL;PST
cwellan V;SBJV;PL;PRS
cwellan V.PTCP;PRS
cwellan V;IND;PL;PRS
cwellan V;SBJV;SG;PRS
cwellan V;IND;SG;1;PRS
cwellan V;IND;PL;PST
cwellan V;IND;SG;1;PST
cwellan V.PTCP;PST
cwellan V;IMP;PL
cwellan V;NFIN
cwellan V;SBJV;SG;PST
cwellan V.PTCP;PST
cwellan V;IND;SG;3;PST
cwellan V;IND;SG;2;PRS
cwellan V;IMP;SG
færgripe N;NOM;PL
færgripe N;DAT;SG
færgripe N;DAT;PL
færgripe N;NOM;SG
færgripe N;ACC;SG
færgripe N;GEN;PL
færgripe N;ACC;PL
færgripe N;GEN;SG
færgripe N;ACC;PL
færgripe N;NOM;PL
halpenige N;NOM;PL
halpenige N;DAT;SG
halpenige N;GEN;PL
halpenige N;ACC;PL
halpenige N;NOM;SG
halpenige N;DAT;PL
halpenige N;GEN;SG
halpenige N;ACC;SG
andswarian V;NFIN
andswarian V;IMP;PL
andswarian V;SBJV;SG;PRS
andswarian V;IND;SG;2;PST
andswarian V;IND;PL;PRS
andswarian V;IND;PL;PST
andswarian V;SBJV;PL;PST
andswarian V;IMP;SG
andswarian V;IND;SG;1;PRS
andswarian V;IND;SG;3;PST
andswarian V;IND;SG;2;PRS
andswarian V.PTCP;PRS
andswarian V.PTCP;PST
andswarian V;SBJV;SG;PST
andswarian V;SBJV;PL;PRS
andswarian V;IND;SG;1;PST
andswarian V;IND;SG;3;PRS
andswarian V.PTCP;PST
andswarian V;SBJV;PL;PRS
gesegen N;ACC;PL
gesegen N;NOM;PL
gesegen N;NOM;SG
gesegen N;GEN;SG
gesegen N;DAT;PL
gesegen N;DAT;SG
gesegen N;ACC;SG
gesegen N;GEN;PL
leorningcild N;GEN;PL
leorningcild N;NOM;SG
leorningcild N;ACC;SG
leorningcild N;GEN;SG
leorningcild N;NOM;PL
leorningcild N;DAT;SG
leorningcild N;DAT;PL
leorningcild N;NOM;PL
leorningcild N;ACC;PL
leorningcild N;DAT;PL
leorningcild N;ACC;PL
leorningcild N;GEN;PL
leorningcild N;NOM;PL
notu N;NOM;SG
notu N;NOM;PL
notu N;GEN;SG
notu N;ACC;SG
notu N;DAT;SG
notu N;ACC;PL
notu N;ACC;PL
notu N;DAT;PL
notu N;GEN;PL
mereswin N;DAT;SG
mereswin N;NOM;SG
mereswin N;DAT;PL
mereswin N;ACC;PL
mereswin N;GEN;PL
mereswin N;NOM;PL
mereswin N;ACC;SG
mereswin N;GEN;SG
stracian V;SBJV;SG;PRS
stracian V;NFIN
stracian V;IND;SG;2;PRS
stracian V;IND;PL;PRS
stracian V;IND;SG;1;PST
stracian V;IMP;PL
stracian V.PTCP;PRS
stracian V;IND;SG;1;PRS
stracian V;SBJV;PL;PRS
stracian V.PTCP;PST
stracian V;SBJV;PL;PST
stracian V;IND;SG;3;PRS
stracian V;SBJV;SG;PST
stracian V;IND;SG;3;PST
stracian V;IND;SG;2;PST
stracian V;IND;SG;1;PRS
stracian V;IMP;SG
stracian V.PTCP;PRS
stracian V;IND;PL;PST
garleac N;ACC;SG
garleac N;GEN;PL
garleac N;DAT;PL
garleac N;GEN;SG
garleac N;ACC;PL
garleac N;NOM;PL
garleac N;DAT;SG
garleac N;NOM;SG
midd ADJ;NOM;FEM;PL;LGSPEC2
midd ADJ;ACC;NEUT;PL;LGSPEC2
midd ADJ;GEN;NEUT;SG;LGSPEC2
midd ADJ;ACC;FEM;SG;LGSPEC1
midd ADJ;ACC;FEM;PL;LGSPEC2
midd ADJ;ACC;NEUT;SG;LGSPEC1
midd ADJ;DAT;PL;LGSPEC2
midd ADJ;ACC;MASC;SG;LGSPEC1
midd ADJ;GEN;PL;LGSPEC1
midd ADJ;DAT;FEM;SG;LGSPEC2
midd ADJ;INS;NEUT;SG;LGSPEC2
midd ADJ;NOM;SG;LGSPEC2
midd ADJ;NOM;NEUT;SG;LGSPEC1
midd ADJ;NOM;MASC;SG;LGSPEC1
midd ADJ;ACC;PL;LGSPEC1
midd ADJ;ACC;FEM;SG;LGSPEC2
midd ADJ;NOM;NEUT;PL;LGSPEC2
midd ADJ;DAT;SG;LGSPEC1
midd ADJ;GEN;SG;LGSPEC1
midd ADJ;GEN;PL;LGSPEC2
midd ADJ;NOM;PL;LGSPEC1
midd ADJ;NOM;FEM;SG;LGSPEC1
midd ADJ;ACC;MASC;PL;LGSPEC2
midd ADJ;NOM;MASC;PL;LGSPEC2
midd ADJ;DAT;PL;LGSPEC1
midd ADJ;GEN;MASC;SG;LGSPEC2
midd ADJ;NOM;NEUT;PL;LGSPEC2
midd ADJ;GEN;FEM;SG;LGSPEC2
midd ADJ;ACC;NEUT;SG;LGSPEC2
midd ADJ;ACC;MASC;SG;LGSPEC2
midd ADJ;INS;MASC;SG;LGSPEC2
midd ADJ;DAT;MASC;SG;LGSPEC2
midd ADJ;DAT;NEUT;SG;LGSPEC2
unwæstmbære ADJ;GEN;NEUT;PL;LGSPEC1
unwæstmbære ADJ;NOM;FEM;SG;LGSPEC1
unwæstmbære ADJ;INS;NEUT;PL;LGSPEC1
unwæstmbære ADJ;NOM;NEUT;PL;LGSPEC1
unwæstmbære ADJ;ACC;NEUT;SG;LGSPEC2
unwæstmbære ADJ;ACC;FEM;SG;LGSPEC2
unwæstmbære ADJ;GEN;NEUT;PL;LGSPEC2
unwæstmbære ADJ;GEN;FEM;PL;LGSPEC2
unwæstmbære ADJ;INS;MASC;PL;LGSPEC2
unwæstmbære ADJ;ACC;MASC;PL;LGSPEC2
unwæstmbære ADJ;NOM;FEM;PL;LGSPEC2
unwæstmbære ADJ;ACC;FEM;PL;LGSPEC2
unwæstmbære ADJ;NOM;MASC;PL;LGSPEC1
unwæstmbære ADJ;ACC;MASC;SG;LGSPEC2
unwæstmbære ADJ;DAT;FEM;PL;LGSPEC2
unwæstmbære ADJ;ACC;NEUT;SG;LGSPEC1
unwæstmbære ADJ;ACC;MASC;PL;LGSPEC1
unwæstmbære ADJ;NOM;MASC;SG;LGSPEC1
unwæstmbære ADJ;ACC;NEUT;PL;LGSPEC1
unwæstmbære ADJ;GEN;MASC;PL;LGSPEC1
unwæstmbære ADJ;DAT;NEUT;PL;LGSPEC2
unwæstmbære ADJ;GEN;MASC;SG;LGSPEC2
unwæstmbære ADJ;INS;FEM;PL;LGSPEC1
unwæstmbære ADJ;INS;NEUT;PL;LGSPEC2
unwæstmbære ADJ;DAT;NEUT;SG;LGSPEC2
unwæstmbære ADJ;INS;MASC;PL;LGSPEC1
unwæstmbære ADJ;INS;MASC;SG;LGSPEC1
unwæstmbære ADJ;NOM;NEUT;SG;LGSPEC1
unwæstmbære ADJ;ACC;FEM;SG;LGSPEC1
unwæstmbære ADJ;ACC;MASC;SG;LGSPEC1
unwæstmbære ADJ;ACC;FEM;PL;LGSPEC1
unwæstmbære ADJ;INS;FEM;SG;LGSPEC1
unwæstmbære ADJ;NOM;NEUT;PL;LGSPEC2
unwæstmbære ADJ;ACC;NEUT;PL;LGSPEC2
unwæstmbære ADJ;INS;MASC;SG;LGSPEC2
unwæstmbære ADJ;GEN;FEM;PL;LGSPEC1
unwæstmbære ADJ;NOM;FEM;SG;LGSPEC2
unwæstmbære ADJ;GEN;NEUT;SG;LGSPEC2
unwæstmbære ADJ;DAT;MASC;PL;LGSPEC1
unwæstmbære ADJ;INS;NEUT;SG;LGSPEC2
unwæstmbære ADJ;GEN;NEUT;SG;LGSPEC1
unwæstmbære ADJ;DAT;FEM;PL;LGSPEC1
unwæstmbære ADJ;DAT;MASC;SG;LGSPEC2
unwæstmbære ADJ;INS;NEUT;SG;LGSPEC1
unwæstmbære ADJ;DAT;MASC;SG;LGSPEC1
unwæstmbære ADJ;GEN;FEM;SG;LGSPEC1
unwæstmbære ADJ;GEN;MASC;PL;LGSPEC2
unwæstmbære ADJ;NOM;MASC;PL;LGSPEC2
unwæstmbære ADJ;NOM;NEUT;PL;LGSPEC2
unwæstmbære ADJ;DAT;FEM;SG;LGSPEC1
unwæstmbære ADJ;GEN;FEM;SG;LGSPEC2
unwæstmbære ADJ;NOM;NEUT;SG;LGSPEC2
unwæstmbære ADJ;NOM;FEM;PL;LGSPEC1
unwæstmbære ADJ;NOM;MASC;SG;LGSPEC2
unwæstmbære ADJ;GEN;MASC;SG;LGSPEC1
unwæstmbære ADJ;INS;FEM;SG;LGSPEC2
unwæstmbære ADJ;ACC;NEUT;PL;LGSPEC2
unwæstmbære ADJ;INS;FEM;PL;LGSPEC2
unwæstmbære ADJ;ACC;FEM;PL;LGSPEC2
unwæstmbære ADJ;DAT;NEUT;PL;LGSPEC1
unwæstmbære ADJ;DAT;NEUT;SG;LGSPEC1
unwæstmbære ADJ;DAT;MASC;PL;LGSPEC2
unwæstmbære ADJ;DAT;FEM;SG;LGSPEC2
unwæstmbære ADJ;GEN;FEM;PL;LGSPEC1
ƿindan V;IMP;PL
ƿindan V;NFIN
ƿindan V;IND;SG;1;PST
ƿindan V;SBJV;SG;PST
ƿindan V;SBJV;SG;PRS
ƿindan V;IND;SG;3;PST
ƿindan V;IND;SG;1;PRS
ƿindan V;IND;SG;2;PST
ƿindan V;SBJV;PL;PST
ƿindan V.PTCP;PST
ƿindan V;IMP;SG
ƿindan V;IND;SG;3;PRS
ƿindan V;IND;SG;2;PRS
ƿindan V;SBJV;PL;PRS
ƿindan V;IND;PL;PRS
ƿindan V.PTCP;PST
ƿindan V;IND;PL;PST
ƿindan V.PTCP;PRS
bidan V;SBJV;SG;PST
bidan V;IND;SG;2;PRS
bidan V;IND;SG;1;PST
bidan V.PTCP;PST
bidan V;IND;PL;PST
bidan V;IND;SG;2;PST
bidan V;IMP;SG
bidan V;NFIN
bidan V;IND;SG;1;PRS
bidan V;SBJV;PL;PST
bidan V;IND;SG;3;PRS
bidan V;SBJV;PL;PRS
bidan V;NFIN
bidan V.PTCP;PRS
bidan V;SBJV;SG;PRS
bidan V;IMP;PL
bidan V;IND;PL;PRS
bidan V;IND;SG;3;PST
slean V;SBJV;PL;PST
slean V;SBJV;PL;PRS
slean V;IMP;PL
slean V;IND;SG;2;PRS
slean V;NFIN
slean V;IND;PL;PRS
slean V;SBJV;SG;PST
slean V;IND;SG;3;PST
slean V;SBJV;SG;PRS
slean V;IND;SG;3;PRS
slean V.PTCP;PRS
slean V;IND;SG;1;PRS
slean V.PTCP;PST
slean V;IND;SG;1;PST
slean V;IND;SG;2;PST
slean V;IND;PL;PST
slean V;IMP;SG
slean V;NFIN
manian V;IMP;SG
manian V;IMP;PL
manian V.PTCP;PRS
manian V;IND;SG;1;PRS
manian V;IND;PL;PRS
manian V;IND;SG;2;PST
manian V;NFIN
manian V;SBJV;SG;PRS
manian V.PTCP;PST
manian V;SBJV;SG;PST
manian V;SBJV;PL;PRS
manian V;SBJV;SG;PRS
manian V;IND;SG;3;PRS
manian V;IND;SG;1;PST
manian V;NFIN
manian V.PTCP;PST
manian V;SBJV;PL;PRS
manian V;IND;PL;PST
manian V;IND;PL;PRS
manian V;IND;SG;2;PRS
manian V;IND;SG;1;PRS
manian V;SBJV;PL;PST
manian V;IND;SG;3;PST
gehygd N;ACC;PL
gehygd N;NOM;SG
gehygd N;GEN;SG
gehygd N;NOM;PL
gehygd N;ACC;SG
gehygd N;DAT;PL
gehygd N;NOM;PL
gehygd N;GEN;PL
gehygd N;DAT;SG
wordhord N;DAT;PL
wordhord N;GEN;PL
wordhord N;DAT;SG
wordhord N;NOM;SG
wordhord N;ACC;PL
wordhord N;ACC;SG
wordhord N;NOM;PL
wordhord N;GEN;SG
understandan V;IND;SG;1;PRS
understandan V;IND;SG;3;PST
understandan V;IMP;SG
understandan V.PTCP;PST
understandan V;NFIN
understandan V;SBJV;PL;PST
understandan V.PTCP;PRS
understandan V;IND;SG;1;PST
understandan V;SBJV;SG;PRS
understandan V;IND;PL;PRS
understandan V;IND;SG;2;PST
understandan V;SBJV;SG;PST
understandan V;IND;SG;3;PRS
understandan V;IND;SG;2;PRS
understandan V;IND;PL;PST
understandan V;SBJV;PL;PRS
understandan V;IMP;PL
understandan V;NFIN
understandan V;IND;SG;2;PRS
cwide N;ACC;PL
cwide N;GEN;SG
cwide N;DAT;PL
cwide N;NOM;PL
cwide N;NOM;SG
cwide N;GEN;PL
cwide N;ACC;SG
cwide N;DAT;SG
oþstandan V;IND;SG;2;PST
oþstandan V;IMP;SG
oþstandan V;IND;SG;3;PST
oþstandan V;SBJV;PL;PRS
oþstandan V;IND;SG;2;PRS
oþstandan V;NFIN
oþstandan V;IND;SG;1;PST
oþstandan V;SBJV;PL;PST
oþstandan V;IMP;PL
oþstandan V;IND;PL;PST
oþstandan V;IND;SG;1;PRS
oþstandan V.PTCP;PRS
oþstandan V;NFIN
oþstandan V;IND;PL;PRS
oþstandan V;IND;SG;3;PRS
oþstandan V;IND;SG;2;PRS
oþstandan V.PTCP;PST
oþstandan V;IND;SG;3;PRS
oþstandan V;SBJV;SG;PST
oþstandan V;SBJV;SG;PRS
hrim N;ACC;SG
hrim N;DAT;PL
hrim N;GEN;SG
hrim N;NOM;SG
hrim N;ACC;PL
hrim N;DAT;SG
hrim N;NOM;PL
hrim N;GEN;PL
cwacian V;SBJV;PL;PST
cwacian V;IMP;SG
cwacian V;IND;SG;2;PRS
cwacian V;IND;SG;1;PRS
cwacian V;SBJV;SG;PST
cwacian V.PTCP;PRS
cwacian V;IND;SG;1;PST
cwacian V;SBJV;SG;PRS
cwacian V;IND;SG;3;PST
cwacian V;NFIN
cwacian V;IND;PL;PRS
cwacian V;IND;SG;2;PST
cwacian V;IMP;PL
cwacian V;IND;SG;3;PRS
cwacian V;SBJV;PL;PRS
cwacian V.PTCP;PST
cwacian V;IND;PL;PST
cwacian V;SBJV;PL;PRS
cwacian V.PTCP;PST
cwacian V.PTCP;PRS
brim N;NOM;SG
brim N;GEN;PL
brim N;DAT;SG
brim N;ACC;SG
brim N;ACC;PL
brim N;GEN;SG
brim N;DAT;PL
brim N;NOM;PL
mod N;GEN;SG
mod N;NOM;SG
mod N;ACC;PL
mod N;DAT;PL
mod N;DAT;SG
mod N;ACC;SG
mod N;NOM;PL
mod N;GEN;PL
nipan V;NFIN
nipan V;SBJV;PL;PST
nipan V;SBJV;SG;PRS
nipan V;SBJV;PL;PRS
nipan V;IND;SG;3;PST
nipan V;IND;PL;PST
nipan V;IND;SG;3;PRS
nipan V.PTCP;PST
nipan V;IMP;PL
nipan V;IND;SG;2;PRS
nipan V;IND;SG;2;PST
nipan V;SBJV;SG;PST
nipan V;IND;SG;1;PST
nipan V;IND;PL;PRS
nipan V.PTCP;PRS
nipan V;IMP;SG
nipan V.PTCP;PST
nipan V;NFIN
nipan V;IND;SG;1;PRS
frec ADJ;INS;NEUT;PL;LGSPEC2
frec ADJ;NOM;FEM;PL;LGSPEC2
frec ADJ;INS;NEUT;SG;LGSPEC1
frec ADJ;GEN;NEUT;SG;LGSPEC2
frec ADJ;ACC;NEUT;SG;LGSPEC1
frec ADJ;NOM;FEM;PL;LGSPEC1
frec ADJ;ACC;MASC;PL;LGSPEC1
frec ADJ;INS;MASC;PL;LGSPEC2
frec ADJ;GEN;MASC;PL;LGSPEC1
frec ADJ;GEN;FEM;SG;LGSPEC2
frec ADJ;ACC;NEUT;PL;LGSPEC1
frec ADJ;NOM;FEM;SG;LGSPEC2
frec ADJ;GEN;NEUT;SG;LGSPEC1
frec ADJ;DAT;FEM;PL;LGSPEC2
frec ADJ;ACC;MASC;SG;LGSPEC2
frec ADJ;GEN;NEUT;PL;LGSPEC2
frec ADJ;ACC;MASC;SG;LGSPEC1
frec ADJ;ACC;FEM;SG;LGSPEC1
frec ADJ;DAT;MASC;SG;LGSPEC2
frec ADJ;INS;FEM;PL;LGSPEC2
frec ADJ;DAT;NEUT;SG;LGSPEC2
frec ADJ;NOM;NEUT;SG;LGSPEC2
frec ADJ;INS;MASC;SG;LGSPEC1
frec ADJ;NOM;NEUT;PL;LGSPEC2
frec ADJ;ACC;NEUT;PL;LGSPEC2
frec ADJ;DAT;FEM;SG;LGSPEC1
frec ADJ;GEN;MASC;PL;LGSPEC2
frec ADJ;GEN;FEM;PL;LGSPEC1
frec ADJ;DAT;NEUT;PL;LGSPEC2
frec ADJ;GEN;FEM;PL;LGSPEC2
frec ADJ;NOM;MASC;PL;LGSPEC1
frec ADJ;DAT;MASC;SG;LGSPEC1
frec ADJ;ACC;NEUT;SG;LGSPEC2
frec ADJ;DAT;NEUT;SG;LGSPEC1
frec ADJ;INS;FEM;SG;LGSPEC2
frec ADJ;GEN;NEUT;PL;LGSPEC1
frec ADJ;DAT;MASC;PL;LGSPEC1
frec ADJ;NOM;MASC;SG;LGSPEC2
frec ADJ;ACC;FEM;PL;LGSPEC2
frec ADJ;ACC;FEM;PL;LGSPEC1
frec ADJ;INS;MASC;SG;LGSPEC2
frec ADJ;INS;NEUT;PL;LGSPEC1
frec ADJ;NOM;FEM;PL;LGSPEC2
frec ADJ;DAT;MASC;PL;LGSPEC2
frec ADJ;NOM;MASC;PL;LGSPEC2
frec ADJ;INS;MASC;PL;LGSPEC1
frec ADJ;DAT;FEM;PL;LGSPEC1
frec ADJ;ACC;FEM;SG;LGSPEC2
frec ADJ;INS;NEUT;SG;LGSPEC2
frec ADJ;GEN;FEM;SG;LGSPEC1
frec ADJ;NOM;FEM;SG;LGSPEC1
frec ADJ;GEN;NEUT;PL;LGSPEC1
frec ADJ;ACC;FEM;PL;LGSPEC2
frec ADJ;NOM;MASC;SG;LGSPEC1
frec ADJ;ACC;MASC;PL;LGSPEC2
frec ADJ;ACC;NEUT;PL;LGSPEC2
frec ADJ;DAT;FEM;SG;LGSPEC2
frec ADJ;GEN;MASC;SG;LGSPEC2
frec ADJ;INS;FEM;SG;LGSPEC1
frec ADJ;GEN;MASC;SG;LGSPEC1
frec ADJ;INS;FEM;PL;LGSPEC1
frec ADJ;NOM;NEUT;PL;LGSPEC1
frec ADJ;DAT;NEUT;PL;LGSPEC1
frec ADJ;NOM;NEUT;SG;LGSPEC1
beorht ADJ;ACC;MASC;PL;LGSPEC2
beorht ADJ;ACC;FEM;SG;LGSPEC2
beorht ADJ;NOM;SG;LGSPEC2
beorht ADJ;ACC;NEUT;SG;LGSPEC2
beorht ADJ;INS;NEUT;SG;LGSPEC2
beorht ADJ;ACC;NEUT;PL;LGSPEC2
beorht ADJ;ACC;NEUT;SG;LGSPEC1
beorht ADJ;DAT;SG;LGSPEC1
beorht ADJ;GEN;PL;LGSPEC1
beorht ADJ;GEN;PL;LGSPEC2
beorht ADJ;NOM;FEM;SG;LGSPEC1
beorht ADJ;ACC;MASC;SG;LGSPEC2
beorht ADJ;GEN;NEUT;SG;LGSPEC2
beorht ADJ;GEN;MASC;SG;LGSPEC2
beorht ADJ;DAT;FEM;SG;LGSPEC2
beorht ADJ;INS;MASC;SG;LGSPEC2
beorht ADJ;DAT;MASC;SG;LGSPEC2
beorht ADJ;DAT;PL;LGSPEC2
beorht ADJ;NOM;NEUT;PL;LGSPEC2
beorht ADJ;DAT;NEUT;SG;LGSPEC2
beorht ADJ;ACC;MASC;SG;LGSPEC1
beorht ADJ;NOM;FEM;PL;LGSPEC2
beorht ADJ;DAT;PL;LGSPEC1
beorht ADJ;NOM;NEUT;SG;LGSPEC1
beorht ADJ;NOM;MASC;PL;LGSPEC2
beorht ADJ;NOM;MASC;SG;LGSPEC1
beorht ADJ;NOM;PL;LGSPEC1
beorht ADJ;ACC;NEUT;PL;LGSPEC2
beorht ADJ;GEN;SG;LGSPEC1
beorht ADJ;ACC;PL;LGSPEC1
beorht ADJ;ACC;FEM;SG;LGSPEC1
beorht ADJ;ACC;FEM;PL;LGSPEC2
beorht ADJ;NOM;NEUT;PL;LGSPEC2
beorht ADJ;GEN;FEM;SG;LGSPEC2
þrescan V;IND;SG;1;PST
þrescan V.PTCP;PST
þrescan V;IND;PL;PRS
þrescan V;IND;SG;2;PRS
þrescan V;NFIN
þrescan V;SBJV;SG;PST
þrescan V;IND;PL;PST
þrescan V;IND;SG;3;PST
þrescan V.PTCP;PRS
þrescan V;IND;SG;2;PST
þrescan V;IMP;SG
þrescan V;SBJV;PL;PST
þrescan V;SBJV;PL;PRS
þrescan V;IND;SG;3;PRS
þrescan V;SBJV;SG;PRS
þrescan V;NFIN
þrescan V;IND;SG;1;PRS
þrescan V;IMP;PL
andustrian V;IND;PL;PRS
andustrian V.PTCP;PRS
andustrian V;SBJV;PL;PRS
andustrian V;SBJV;SG;PRS
andustrian V;IMP;PL
andustrian V;IND;PL;PST
andustrian V;IND;SG;1;PRS
andustrian V.PTCP;PST
andustrian V;SBJV;SG;PST
andustrian V;IND;SG;3;PRS
andustrian V;IND;SG;2;PRS
andustrian V;IND;SG;2;PST
andustrian V;IMP;SG
andustrian V;IND;SG;1;PST
andustrian V;NFIN
andustrian V;NFIN
andustrian V;IND;SG;3;PST
andustrian V;SBJV;PL;PST
andustrian V.PTCP;PST
weorc N;GEN;SG
weorc N;ACC;SG
weorc N;ACC;PL
weorc N;DAT;SG
weorc N;NOM;PL
weorc N;GEN;PL
weorc N;DAT;PL
weorc N;NOM;SG
derian V;SBJV;SG;PST
derian V;IND;SG;2;PRS
derian V;NFIN
derian V;IND;SG;2;PST
derian V;IND;SG;3;PST
derian V;IND;SG;1;PRS
derian V;IND;PL;PST
derian V.PTCP;PST
derian V;IMP;PL
derian V;IMP;SG
derian V;SBJV;SG;PRS
derian V;IND;SG;1;PST
derian V;SBJV;PL;PRS
derian V;SBJV;PL;PST
derian V;NFIN
derian V.PTCP;PRS
derian V;IND;PL;PRS
derian V;IND;SG;3;PRS
igland N;DAT;SG
igland N;ACC;PL
igland N;GEN;PL
igland N;NOM;SG
igland N;NOM;PL
igland N;ACC;SG
igland N;DAT;PL
igland N;GEN;SG
settan V;IND;SG;1;PRS
settan V;IND;SG;1;PST
settan V;IND;SG;2;PRS
settan V;NFIN
settan V;SBJV;PL;PRS
settan V.PTCP;PST
settan V;IMP;PL
settan V;SBJV;SG;PST
settan V;IND;SG;3;PST
settan V;SBJV;SG;PRS
settan V;IND;SG;2;PST
settan V;IND;SG;3;PRS
settan V;IMP;SG
settan V.PTCP;PRS
settan V;IND;PL;PRS
settan V;IND;PL;PST
settan V;NFIN
settan V;SBJV;PL;PST
nytlic ADJ;GEN;NEUT;SG;LGSPEC1
nytlic ADJ;GEN;NEUT;PL;LGSPEC1
nytlic ADJ;GEN;NEUT;SG;LGSPEC2
nytlic ADJ;DAT;NEUT;PL;LGSPEC2
nytlic ADJ;GEN;FEM;PL;LGSPEC2
nytlic ADJ;GEN;FEM;PL;LGSPEC1
nytlic ADJ;NOM;FEM;SG;LGSPEC2
nytlic ADJ;INS;NEUT;PL;LGSPEC1
nytlic ADJ;NOM;FEM;PL;LGSPEC2
nytlic ADJ;INS;NEUT;PL;LGSPEC2
nytlic ADJ;DAT;FEM;PL;LGSPEC1
nytlic ADJ;NOM;MASC;SG;LGSPEC1
nytlic ADJ;DAT;NEUT;SG;LGSPEC2
nytlic ADJ;INS;NEUT;SG;LGSPEC2
nytlic ADJ;NOM;NEUT;PL;LGSPEC2
nytlic ADJ;NOM;FEM;PL;LGSPEC1
nytlic ADJ;ACC;FEM;PL;LGSPEC2
nytlic ADJ;ACC;MASC;SG;LGSPEC1
nytlic ADJ;INS;FEM;PL;LGSPEC1
nytlic ADJ;ACC;MASC;PL;LGSPEC2
nytlic ADJ;INS;MASC;SG;LGSPEC2
nytlic ADJ;INS;NEUT;SG;LGSPEC1
nytlic ADJ;INS;FEM;SG;LGSPEC1
nytlic ADJ;NOM;MASC;PL;LGSPEC1
nytlic ADJ;DAT;MASC;SG;LGSPEC1
nytlic ADJ;DAT;FEM;SG;LGSPEC2
nytlic ADJ;ACC;MASC;SG;LGSPEC2
nytlic ADJ;ACC;NEUT;SG;LGSPEC1
nytlic ADJ;GEN;MASC;SG;LGSPEC1
nytlic ADJ;DAT;FEM;SG;LGSPEC1
nytlic ADJ;INS;FEM;SG;LGSPEC2
nytlic ADJ;GEN;FEM;SG;LGSPEC1
nytlic ADJ;ACC;FEM;SG;LGSPEC1
nytlic ADJ;GEN;MASC;PL;LGSPEC1
nytlic ADJ;NOM;MASC;SG;LGSPEC2
nytlic ADJ;ACC;FEM;PL;LGSPEC1
nytlic ADJ;NOM;NEUT;SG;LGSPEC2
nytlic ADJ;ACC;NEUT;PL;LGSPEC2
nytlic ADJ;DAT;MASC;PL;LGSPEC1
nytlic ADJ;ACC;NEUT;SG;LGSPEC2
nytlic ADJ;DAT;NEUT;PL;LGSPEC1
nytlic ADJ;DAT;MASC;PL;LGSPEC2
nytlic ADJ;ACC;MASC;PL;LGSPEC1
nytlic ADJ;DAT;FEM;PL;LGSPEC2
nytlic ADJ;NOM;NEUT;SG;LGSPEC1
nytlic ADJ;NOM;FEM;SG;LGSPEC1
nytlic ADJ;INS;MASC;PL;LGSPEC2
nytlic ADJ;NOM;MASC;PL;LGSPEC2
nytlic ADJ;DAT;NEUT;SG;LGSPEC1
nytlic ADJ;DAT;MASC;SG;LGSPEC2
nytlic ADJ;NOM;NEUT;PL;LGSPEC1
nytlic ADJ;GEN;NEUT;PL;LGSPEC1
nytlic ADJ;INS;MASC;SG;LGSPEC1
nytlic ADJ;GEN;MASC;PL;LGSPEC2
nytlic ADJ;GEN;NEUT;PL;LGSPEC2
nytlic ADJ;INS;MASC;PL;LGSPEC1
nytlic ADJ;NOM;NEUT;PL;LGSPEC2
nytlic ADJ;ACC;NEUT;PL;LGSPEC1
nytlic ADJ;GEN;MASC;SG;LGSPEC2
nytlic ADJ;GEN;FEM;SG;LGSPEC2
nytlic ADJ;INS;FEM;PL;LGSPEC2
nytlic ADJ;ACC;FEM;SG;LGSPEC2
nytlic ADJ;GEN;MASC;PL;LGSPEC1
nytlic ADJ;ACC;NEUT;PL;LGSPEC2
drefan V;IND;SG;1;PST
drefan V;IND;SG;1;PRS
drefan V;SBJV;PL;PST
drefan V;IMP;SG
drefan V;IND;SG;3;PST
drefan V;SBJV;PL;PRS
drefan V;IND;SG;2;PST
drefan V.PTCP;PRS
drefan V;IND;SG;2;PRS
drefan V;NFIN
drefan V;SBJV;SG;PRS
drefan V;SBJV;SG;PST
drefan V;IND;PL;PRS
drefan V;IMP;PL
drefan V;IND;SG;3;PRS
drefan V;NFIN
drefan V.PTCP;PST
drefan V;IND;PL;PST
helan V;IND;SG;1;PRS
helan V;IND;SG;2;PRS
helan V;NFIN
helan V.PTCP;PRS
helan V;IMP;PL
helan V;SBJV;PL;PRS
helan V;IND;PL;PST
helan V;IND;SG;1;PST
helan V;IND;SG;3;PST
helan V;IND;SG;2;PST
helan V;IND;PL;PRS
helan V;IND;SG;3;PRS
helan V;SBJV;SG;PRS
helan V;SBJV;PL;PST
helan V.PTCP;PST
helan V;SBJV;SG;PST
helan V;IMP;SG
rowan V.PTCP;PST
rowan V.PTCP;PRS
rowan V;IND;PL;PRS
rowan V;SBJV;SG;PST
rowan V;IND;SG;1;PST
rowan V;NFIN
rowan V;IMP;SG
rowan V;IND;SG;3;PRS
rowan V;IND;SG;1;PRS
rowan V;SBJV;PL;PRS
rowan V;IND;SG;3;PST
rowan V;SBJV;SG;PRS
rowan V;IND;SG;2;PST
rowan V;SBJV;PL;PST
rowan V;IND;SG;2;PRS
rowan V;IMP;PL
rowan V.PTCP;PST
rowan V;IND;PL;PST
rowan V;NFIN
cræftig ADJ;INS;NEUT;SG;LGSPEC1
cræftig ADJ;NOM;NEUT;PL;LGSPEC1
cræftig ADJ;DAT;MASC;PL;LGSPEC2
cræftig ADJ;ACC;FEM;SG;LGSPEC1
cræftig ADJ;INS;FEM;SG;LGSPEC1
cræftig ADJ;INS;FEM;PL;LGSPEC2
cræftig ADJ;GEN;MASC;PL;LGSPEC1
cræftig ADJ;GEN;MASC;SG;LGSPEC2
cræftig ADJ;ACC;NEUT;PL;LGSPEC2
cræftig ADJ;DAT;NEUT;PL;LGSPEC2
cræftig ADJ;DAT;NEUT;SG;LGSPEC1
cræftig ADJ;GEN;FEM;PL;LGSPEC1
cræftig ADJ;GEN;NEUT;SG;LGSPEC2
cræftig ADJ;ACC;NEUT;SG;LGSPEC1
cræftig ADJ;NOM;FEM;SG;LGSPEC1
cræftig ADJ;NOM;MASC;PL;LGSPEC2
cræftig ADJ;INS;MASC;SG;LGSPEC1
cræftig ADJ;INS;FEM;SG;LGSPEC2
cræftig ADJ;GEN;MASC;SG;LGSPEC1
cræftig ADJ;GEN;FEM;PL;LGSPEC2
cræftig ADJ;GEN;NEUT;SG;LGSPEC1
cræftig ADJ;DAT;FEM;PL;LGSPEC1
cræftig ADJ;NOM;FEM;PL;LGSPEC1
cræftig ADJ;NOM;MASC;SG;LGSPEC1
cræftig ADJ;DAT;FEM;SG;LGSPEC2
cræftig ADJ;NOM;NEUT;SG;LGSPEC1
cræftig ADJ;INS;MASC;SG;LGSPEC2
cræftig ADJ;ACC;MASC;SG;LGSPEC1
cræftig ADJ;INS;NEUT;SG;LGSPEC2
cræftig ADJ;ACC;FEM;SG;LGSPEC2
cræftig ADJ;GEN;NEUT;PL;LGSPEC2
cræftig ADJ;DAT;FEM;SG;LGSPEC1
cræftig ADJ;NOM;NEUT;PL;LGSPEC2
cræftig ADJ;INS;NEUT;PL;LGSPEC2
cræftig ADJ;ACC;FEM;PL;LGSPEC1
cræftig ADJ;GEN;NEUT;PL;LGSPEC1
cræftig ADJ;NOM;FEM;SG;LGSPEC2
cræftig ADJ;DAT;NEUT;PL;LGSPEC1
cræftig ADJ;DAT;NEUT;SG;LGSPEC2
cræftig ADJ;ACC;MASC;PL;LGSPEC1
cræftig ADJ;DAT;MASC;SG;LGSPEC2
cræftig ADJ;ACC;MASC;PL;LGSPEC2
cræftig ADJ;DAT;FEM;PL;LGSPEC2
cræftig ADJ;NOM;FEM;PL;LGSPEC2
cræftig ADJ;GEN;FEM;SG;LGSPEC1
cræftig ADJ;INS;MASC;PL;LGSPEC2
cræftig ADJ;INS;NEUT;PL;LGSPEC1
cræftig ADJ;NOM;MASC;PL;LGSPEC1
cræftig ADJ;NOM;MASC;SG;LGSPEC2
cræftig ADJ;INS;FEM;PL;LGSPEC1
cræftig ADJ;ACC;FEM;PL;LGSPEC2
cræftig ADJ;DAT;MASC;SG;LGSPEC1
cræftig ADJ;ACC;MASC;SG;LGSPEC2
cræftig ADJ;GEN;MASC;PL;LGSPEC1
cræftig ADJ;INS;NEUT;SG;LGSPEC2
cræftig ADJ;NOM;FEM;SG;LGSPEC2
cræftig ADJ;ACC;FEM;SG;LGSPEC2
cræftig ADJ;INS;MASC;PL;LGSPEC1
cræftig ADJ;ACC;NEUT;PL;LGSPEC1
cræftig ADJ;INS;MASC;SG;LGSPEC1
cræftig ADJ;NOM;NEUT;SG;LGSPEC1
cræftig ADJ;DAT;MASC;SG;LGSPEC1
cræftig ADJ;NOM;NEUT;PL;LGSPEC2
cræftig ADJ;DAT;MASC;PL;LGSPEC1
cræftig ADJ;GEN;MASC;PL;LGSPEC2
cræftig ADJ;INS;MASC;PL;LGSPEC2
cræftig ADJ;INS;NEUT;PL;LGSPEC2
cræftig ADJ;ACC;FEM;PL;LGSPEC2
cræftig ADJ;GEN;FEM;SG;LGSPEC2
cræftig ADJ;DAT;FEM;PL;LGSPEC1
cræftig ADJ;INS;FEM;PL;LGSPEC1
cræftig ADJ;INS;NEUT;PL;LGSPEC1
cræftig ADJ;NOM;FEM;PL;LGSPEC2
cræftig ADJ;INS;MASC;PL;LGSPEC1
cræftig ADJ;INS;MASC;SG;LGSPEC2
cræftig ADJ;ACC;NEUT;SG;LGSPEC2
cræftig ADJ;NOM;NEUT;SG;LGSPEC2
cræftig ADJ;ACC;NEUT;PL;LGSPEC1
cræftig ADJ;DAT;MASC;PL;LGSPEC1
cræftig ADJ;DAT;NEUT;PL;LGSPEC2
cræftig ADJ;INS;NEUT;SG;LGSPEC1
gemyndig ADJ;NOM;NEUT;SG;LGSPEC2
gemyndig ADJ;GEN;NEUT;PL;LGSPEC1
gemyndig ADJ;INS;NEUT;SG;LGSPEC1
gemyndig ADJ;ACC;NEUT;SG;LGSPEC2
gemyndig ADJ;ACC;MASC;PL;LGSPEC2
gemyndig ADJ;NOM;NEUT;PL;LGSPEC2
gemyndig ADJ;GEN;MASC;SG;LGSPEC1
gemyndig ADJ;ACC;FEM;PL;LGSPEC2
gemyndig ADJ;NOM;FEM;SG;LGSPEC1
gemyndig ADJ;DAT;FEM;PL;LGSPEC1
gemyndig ADJ;GEN;NEUT;SG;LGSPEC1
gemyndig ADJ;NOM;NEUT;SG;LGSPEC1
gemyndig ADJ;INS;NEUT;PL;LGSPEC2
gemyndig ADJ;GEN;NEUT;PL;LGSPEC2
gemyndig ADJ;ACC;MASC;SG;LGSPEC1
gemyndig ADJ;ACC;NEUT;SG;LGSPEC1
gemyndig ADJ;INS;MASC;PL;LGSPEC2
gemyndig ADJ;ACC;FEM;PL;LGSPEC1
gemyndig ADJ;DAT;NEUT;PL;LGSPEC2
gemyndig ADJ;DAT;MASC;PL;LGSPEC2
gemyndig ADJ;DAT;FEM;SG;LGSPEC1
gemyndig ADJ;INS;FEM;SG;LGSPEC1
gemyndig ADJ;ACC;MASC;PL;LGSPEC1
gemyndig ADJ;DAT;MASC;SG;LGSPEC1
gemyndig ADJ;DAT;MASC;SG;LGSPEC2
gemyndig ADJ;NOM;MASC;PL;LGSPEC2
gemyndig ADJ;DAT;NEUT;SG;LGSPEC1
gemyndig ADJ;DAT;NEUT;SG;LGSPEC2
gemyndig ADJ;NOM;MASC;SG;LGSPEC2
gemyndig ADJ;GEN;MASC;PL;LGSPEC1
gemyndig ADJ;NOM;FEM;PL;LGSPEC1
gemyndig ADJ;ACC;NEUT;PL;LGSPEC1
gemyndig ADJ;INS;MASC;PL;LGSPEC1
gemyndig ADJ;DAT;MASC;PL;LGSPEC1
gemyndig ADJ;INS;NEUT;SG;LGSPEC2
gemyndig ADJ;NOM;FEM;PL;LGSPEC2
gemyndig ADJ;NOM;MASC;PL;LGSPEC1
gemyndig ADJ;ACC;NEUT;PL;LGSPEC2
gemyndig ADJ;ACC;FEM;SG;LGSPEC1
gemyndig ADJ;GEN;FEM;PL;LGSPEC2
gemyndig ADJ;INS;FEM;PL;LGSPEC1
gemyndig ADJ;ACC;FEM;SG;LGSPEC2
gemyndig ADJ;GEN;FEM;PL;LGSPEC1
gemyndig ADJ;INS;MASC;SG;LGSPEC2
gemyndig ADJ;NOM;FEM;SG;LGSPEC2
gemyndig ADJ;DAT;NEUT;PL;LGSPEC1
gemyndig ADJ;NOM;NEUT;PL;LGSPEC1
gemyndig ADJ;GEN;MASC;SG;LGSPEC2
gemyndig ADJ;GEN;FEM;SG;LGSPEC2
gemyndig ADJ;INS;FEM;PL;LGSPEC2
gemyndig ADJ;DAT;FEM;PL;LGSPEC2
gemyndig ADJ;INS;MASC;SG;LGSPEC1
gemyndig ADJ;ACC;MASC;SG;LGSPEC2
gemyndig ADJ;NOM;MASC;SG;LGSPEC1
gemyndig ADJ;INS;MASC;PL;LGSPEC1
gemyndig ADJ;NOM;FEM;PL;LGSPEC2
gemyndig ADJ;GEN;MASC;PL;LGSPEC2
gemyndig ADJ;DAT;NEUT;PL;LGSPEC1
gemyndig ADJ;GEN;FEM;SG;LGSPEC1
gemyndig ADJ;DAT;FEM;SG;LGSPEC2
gemyndig ADJ;DAT;MASC;SG;LGSPEC1
gemyndig ADJ;GEN;NEUT;SG;LGSPEC2
gemyndig ADJ;INS;MASC;SG;LGSPEC1
gemyndig ADJ;INS;FEM;PL;LGSPEC2
gemyndig ADJ;ACC;FEM;SG;LGSPEC2
gemyndig ADJ;GEN;NEUT;SG;LGSPEC1
gemyndig ADJ;GEN;MASC;PL;LGSPEC1
gemyndig ADJ;INS;MASC;SG;LGSPEC2
gemyndig ADJ;INS;NEUT;SG;LGSPEC2
gemyndig ADJ;DAT;NEUT;PL;LGSPEC2
gemyndig ADJ;DAT;NEUT;SG;LGSPEC1
gemyndig ADJ;INS;NEUT;SG;LGSPEC1
gemyndig ADJ;ACC;FEM;PL;LGSPEC1
gemyndig ADJ;NOM;FEM;PL;LGSPEC2
gemyndig ADJ;ACC;NEUT;SG;LGSPEC1
gemyndig ADJ;INS;NEUT;PL;LGSPEC1
gemyndig ADJ;INS;FEM;PL;LGSPEC1
gemyndig ADJ;NOM;NEUT;PL;LGSPEC1
gemyndig ADJ;INS;FEM;SG;LGSPEC2
gemyndig ADJ;NOM;FEM;SG;LGSPEC2
gemyndig ADJ;GEN;NEUT;PL;LGSPEC1
belean V;SBJV;PL;PRS
belean V;SBJV;SG;PRS
belean V;IND;SG;2;PRS
belean V;IMP;SG
belean V.PTCP;PST
belean V;SBJV;SG;PST
belean V;IND;SG;2;PST
belean V;NFIN
belean V.PTCP;PRS
belean V;IND;SG;3;PRS
belean V;SBJV;PL;PST
belean V;IND;SG;1;PRS
belean V;IMP;PL
belean V;IND;SG;3;PST
belean V;IND;SG;1;PST
belean V;IND;PL;PST
belean V;IND;PL;PRS
animan V;IND;SG;3;PRS
animan V;IND;PL;PST
animan V;IND;SG;2;PST
animan V;IMP;PL
animan V;NFIN
animan V.PTCP;PST
animan V;SBJV;PL;PST
animan V.PTCP;PRS
animan V;SBJV;SG;PST
animan V;IND;SG;1;PST
animan V;IND;PL;PRS
animan V;IND;SG;3;PST
animan V;SBJV;PL;PRS
animan V;SBJV;SG;PRS
animan V;IND;SG;2;PRS
animan V;IMP;SG
animan V;NFIN
animan V;IND;SG;1;PRS
fordon V.PTCP;PST
fordon V;IMP;SG
fordon V;NFIN
fordon V;SBJV;PL;PST
fordon V;SBJV;SG;PST
fordon V;IND;SG;2;PST
fordon V;IMP;PL
fordon V;IND;PL;PRS
fordon V.PTCP;PRS
fordon V;IND;PL;PST
fordon V;IND;SG;3;PST
fordon V;SBJV;SG;PRS
fordon V;SBJV;PL;PRS
fordon V;IND;SG;2;PRS
fordon V;IND;SG;1;PRS
fordon V;IND;SG;1;PST
fordon V;IND;SG;3;PRS
cystig ADJ;GEN;NEUT;SG;LGSPEC1
cystig ADJ;NOM;FEM;PL;LGSPEC2
cystig ADJ;INS;NEUT;PL;LGSPEC2
cystig ADJ;ACC;FEM;SG;LGSPEC2
cystig ADJ;ACC;MASC;PL;LGSPEC1
cystig ADJ;INS;FEM;SG;LGSPEC2
cystig ADJ;NOM;MASC;SG;LGSPEC1
cystig ADJ;NOM;FEM;SG;LGSPEC2
cystig ADJ;NOM;FEM;SG;LGSPEC1
cystig ADJ;GEN;MASC;PL;LGSPEC1
cystig ADJ;ACC;MASC;PL;LGSPEC2
cystig ADJ;ACC;NEUT;SG;LGSPEC2
cystig ADJ;NOM;MASC;PL;LGSPEC1
cystig ADJ;ACC;NEUT;PL;LGSPEC2
cystig ADJ;DAT;NEUT;SG;LGSPEC1
cystig ADJ;ACC;MASC;SG;LGSPEC1
cystig ADJ;DAT;NEUT;SG;LGSPEC2
cystig ADJ;DAT;FEM;SG;LGSPEC2
cystig ADJ;INS;FEM;SG;LGSPEC1
cystig ADJ;DAT;FEM;PL;LGSPEC1
cystig ADJ;ACC;FEM;PL;LGSPEC2
cystig ADJ;INS;MASC;SG;LGSPEC1
cystig ADJ;INS;MASC;PL;LGSPEC2
cystig ADJ;GEN;FEM;SG;LGSPEC1
cystig ADJ;INS;MASC;SG;LGSPEC2
cystig ADJ;INS;NEUT;SG;LGSPEC1
cystig ADJ;NOM;NEUT;SG;LGSPEC1
cystig ADJ;GEN;NEUT;PL;LGSPEC1
cystig ADJ;INS;FEM;PL;LGSPEC1
cystig ADJ;DAT;MASC;PL;LGSPEC2
cystig ADJ;DAT;FEM;PL;LGSPEC2
cystig ADJ;DAT;NEUT;PL;LGSPEC1
cystig ADJ;NOM;NEUT;PL;LGSPEC1
cystig ADJ;GEN;FEM;PL;LGSPEC1
cystig ADJ;GEN;MASC;SG;LGSPEC2
cystig ADJ;ACC;NEUT;PL;LGSPEC1
cystig ADJ;DAT;MASC;SG;LGSPEC1
cystig ADJ;DAT;NEUT;PL;LGSPEC2
cystig ADJ;NOM;MASC;PL;LGSPEC2
cystig ADJ;GEN;FEM;SG;LGSPEC2
cystig ADJ;DAT;MASC;PL;LGSPEC1
cystig ADJ;NOM;FEM;PL;LGSPEC1
cystig ADJ;ACC;FEM;PL;LGSPEC1
cystig ADJ;INS;NEUT;SG;LGSPEC2
cystig ADJ;ACC;MASC;SG;LGSPEC2
cystig ADJ;GEN;MASC;PL;LGSPEC2
cystig ADJ;NOM;NEUT;PL;LGSPEC2
cystig ADJ;NOM;NEUT;SG;LGSPEC2
cystig ADJ;NOM;MASC;SG;LGSPEC2
cystig ADJ;GEN;FEM;PL;LGSPEC2
cystig ADJ;GEN;NEUT;PL;LGSPEC2
cystig ADJ;DAT;MASC;SG;LGSPEC2
cystig ADJ;DAT;FEM;SG;LGSPEC1
cystig ADJ;INS;NEUT;PL;LGSPEC1
cystig ADJ;GEN;FEM;SG;LGSPEC1
cystig ADJ;ACC;MASC;PL;LGSPEC2
cystig ADJ;GEN;MASC;SG;LGSPEC1
cystig ADJ;ACC;NEUT;SG;LGSPEC1
cystig ADJ;GEN;NEUT;SG;LGSPEC2
cystig ADJ;DAT;MASC;SG;LGSPEC1
cystig ADJ;DAT;FEM;PL;LGSPEC1
cystig ADJ;INS;FEM;PL;LGSPEC2
cystig ADJ;NOM;NEUT;SG;LGSPEC1
cystig ADJ;INS;NEUT;SG;LGSPEC2
cystig ADJ;NOM;NEUT;PL;LGSPEC2
cystig ADJ;ACC;FEM;PL;LGSPEC2
cystig ADJ;NOM;FEM;SG;LGSPEC1
cystig ADJ;ACC;FEM;SG;LGSPEC1
cystig ADJ;INS;MASC;PL;LGSPEC1
cystig ADJ;DAT;MASC;PL;LGSPEC2
cystig ADJ;INS;NEUT;PL;LGSPEC1
cystig ADJ;DAT;MASC;PL;LGSPEC1
cystig ADJ;NOM;NEUT;PL;LGSPEC1
cystig ADJ;NOM;FEM;SG;LGSPEC2
cystig ADJ;GEN;NEUT;SG;LGSPEC2
cystig ADJ;DAT;NEUT;SG;LGSPEC2
cystig ADJ;INS;FEM;PL;LGSPEC2
cystig ADJ;DAT;NEUT;SG;LGSPEC1
cystig ADJ;GEN;NEUT;PL;LGSPEC1
cystig ADJ;DAT;FEM;SG;LGSPEC1
cystig ADJ;DAT;MASC;SG;LGSPEC2
gast N;DAT;SG
gast N;GEN;SG
gast N;NOM;PL
gast N;ACC;PL
gast N;DAT;PL
gast N;ACC;SG
gast N;NOM;SG
gast N;GEN;PL
ricen N;ACC;PL
ricen N;NOM;PL
ricen N;GEN;PL
ricen N;DAT;SG
ricen N;DAT;PL
ricen N;NOM;SG
ricen N;GEN;SG
ricen N;ACC;SG
gieldan V;SBJV;SG;PRS
gieldan V;IMP;SG
gieldan V;IMP;PL
gieldan V;NFIN
gieldan V;IND;PL;PST
gieldan V;SBJV;PL;PRS
gieldan V;IND;SG;2;PRS
gieldan V.PTCP;PST
gieldan V.PTCP;PRS
gieldan V;IND;SG;2;PST
gieldan V;IND;SG;3;PRS
gieldan V;IND;PL;PRS
gieldan V;IND;SG;3;PST
gieldan V.PTCP;PST
gieldan V;SBJV;SG;PST
gieldan V;SBJV;PL;PST
gieldan V;NFIN
gieldan V;IND;SG;1;PST
gieldan V;IND;SG;1;PRS
lesan V.PTCP;PRS
lesan V.PTCP;PST
lesan V;IND;SG;1;PRS
lesan V;IMP;SG
lesan V;SBJV;PL;PST
lesan V;SBJV;SG;PRS
lesan V;SBJV;SG;PST
lesan V;IND;SG;1;PST
lesan V;IND;SG;3;PST
lesan V;IND;PL;PRS
lesan V;IND;PL;PST
lesan V;IMP;PL
lesan V;SBJV;PL;PRS
lesan V;IND;SG;2;PST
lesan V;NFIN
lesan V;IND;SG;3;PRS
lesan V;IND;SG;2;PRS
titt N;NOM;SG
titt N;DAT;PL
titt N;ACC;PL
titt N;DAT;SG
titt N;GEN;SG
titt N;NOM;PL
titt N;ACC;SG
titt N;GEN;PL
leofwende ADJ;ACC;MASC;PL;LGSPEC2
leofwende ADJ;NOM;FEM;PL;LGSPEC2
leofwende ADJ;ACC;FEM;SG;LGSPEC2
leofwende ADJ;NOM;PL;LGSPEC1
leofwende ADJ;NOM;NEUT;SG;LGSPEC1
leofwende ADJ;GEN;MASC;SG;LGSPEC2
leofwende ADJ;GEN;SG;LGSPEC1
leofwende ADJ;ACC;NEUT;SG;LGSPEC1
leofwende ADJ;DAT;PL;LGSPEC1
leofwende ADJ;ACC;MASC;SG;LGSPEC1
leofwende ADJ;ACC;MASC;SG;LGSPEC2
leofwende ADJ;NOM;MASC;SG;LGSPEC2
leofwende ADJ;NOM;NEUT;SG;LGSPEC2
leofwende ADJ;DAT;MASC;SG;LGSPEC2
leofwende ADJ;INS;MASC;SG;LGSPEC2
leofwende ADJ;ACC;NEUT;PL;LGSPEC2
leofwende ADJ;DAT;PL;LGSPEC2
leofwende ADJ;NOM;NEUT;PL;LGSPEC2
leofwende ADJ;DAT;NEUT;SG;LGSPEC2
leofwende ADJ;DAT;SG;LGSPEC1
leofwende ADJ;NOM;MASC;PL;LGSPEC2
leofwende ADJ;NOM;MASC;SG;LGSPEC1
leofwende ADJ;INS;NEUT;SG;LGSPEC2
leofwende ADJ;ACC;FEM;SG;LGSPEC1
leofwende ADJ;ACC;NEUT;PL;LGSPEC2
leofwende ADJ;NOM;FEM;SG;LGSPEC1
leofwende ADJ;GEN;PL;LGSPEC2
leofwende ADJ;ACC;PL;LGSPEC1
leofwende ADJ;GEN;FEM;SG;LGSPEC2
leofwende ADJ;ACC;NEUT;SG;LGSPEC2
leofwende ADJ;DAT;FEM;SG;LGSPEC2
leofwende ADJ;NOM;FEM;SG;LGSPEC2
leofwende ADJ;GEN;PL;LGSPEC1
leofwende ADJ;GEN;NEUT;SG;LGSPEC2
leofwende ADJ;ACC;FEM;PL;LGSPEC2
arian V;NFIN
arian V;IND;SG;3;PST
arian V;SBJV;PL;PST
arian V;IND;PL;PST
arian V;SBJV;SG;PRS
arian V;IND;SG;1;PRS
arian V;IND;SG;3;PRS
arian V;IND;PL;PRS
arian V;IMP;SG
arian V;IMP;PL
arian V.PTCP;PRS
arian V.PTCP;PST
arian V;IND;SG;2;PRS
arian V;IND;PL;PRS
arian V;IND;SG;2;PST
arian V.PTCP;PRS
arian V;IND;SG;1;PST
arian V;SBJV;PL;PRS
arian V.PTCP;PST
arian V;IMP;PL
arian V;SBJV;SG;PST
deaþ N;GEN;PL
deaþ N;DAT;PL
deaþ N;NOM;PL
deaþ N;NOM;SG
deaþ N;GEN;SG
deaþ N;ACC;PL
deaþ N;DAT;SG
deaþ N;ACC;SG
agiefan V;IND;SG;1;PST
agiefan V;NFIN
agiefan V;IND;PL;PRS
agiefan V.PTCP;PST
agiefan V;IMP;SG
agiefan V;IND;SG;3;PST
agiefan V;IND;SG;3;PRS
agiefan V;SBJV;SG;PST
agiefan V;IND;SG;2;PST
agiefan V;IND;SG;1;PRS
agiefan V;IND;SG;2;PRS
agiefan V;SBJV;PL;PRS
agiefan V;IND;PL;PST
agiefan V;IMP;PL
agiefan V;SBJV;SG;PRS
agiefan V;SBJV;PL;PST
agiefan V.PTCP;PRS
stoppian V.PTCP;PST
stoppian V;IND;SG;1;PRS
stoppian V;SBJV;PL;PST
stoppian V;SBJV;PL;PRS
stoppian V.PTCP;PRS
stoppian V;IMP;PL
stoppian V;IND;SG;2;PST
stoppian V;IND;PL;PRS
stoppian V;SBJV;SG;PST
stoppian V;IND;SG;2;PRS
stoppian V;NFIN
stoppian V;IMP;SG
stoppian V;SBJV;SG;PRS
stoppian V.PTCP;PRS
stoppian V;IND;SG;3;PRS
stoppian V;IND;PL;PST
stoppian V;IND;SG;3;PST
stoppian V;IND;SG;1;PST
abidan V;NFIN
abidan V;IND;SG;1;PST
abidan V;IND;PL;PST
abidan V;IND;PL;PRS
abidan V;IND;SG;3;PST
abidan V;IMP;SG
abidan V;IND;SG;3;PRS
abidan V;IND;SG;2;PRS
abidan V;SBJV;PL;PRS
abidan V;IND;SG;2;PST
abidan V.PTCP;PRS
abidan V;IND;SG;1;PRS
abidan V;SBJV;SG;PRS
abidan V;SBJV;PL;PST
abidan V.PTCP;PST
abidan V;SBJV;SG;PST
abidan V;IMP;PL
modrige N;GEN;SG
modrige N;DAT;SG
modrige N;GEN;PL
modrige N;DAT;PL
modrige N;NOM;SG
modrige N;ACC;SG
modrige N;ACC;PL
modrige N;NOM;PL
forcel N;ACC;PL
forcel N;NOM;SG
forcel N;NOM;PL
forcel N;ACC;SG
forcel N;DAT;SG
forcel N;GEN;PL
forcel N;GEN;SG
forcel N;DAT;PL
mæl N;NOM;SG
mæl N;DAT;PL
mæl N;DAT;SG
mæl N;GEN;SG
mæl N;ACC;SG
mæl N;ACC;PL
mæl N;NOM;PL
mæl N;GEN;PL
gegaderung N;ACC;PL
gegaderung N;GEN;PL
gegaderung N;NOM;PL
gegaderung N;DAT;SG
gegaderung N;ACC;SG
gegaderung N;GEN;SG
gegaderung N;NOM;PL
gegaderung N;DAT;PL
gegaderung N;NOM;SG
scufan V;IND;SG;2;PRS
scufan V;IMP;SG
scufan V;SBJV;SG;PRS
scufan V;SBJV;PL;PRS
scufan V;IND;SG;1;PRS
scufan V;NFIN
scufan V.PTCP;PRS
scufan V;IMP;PL
scufan V;SBJV;PL;PST
scufan V;IND;SG;3;PST
scufan V;IMP;SG
scufan V;SBJV;SG;PST
scufan V;IND;SG;3;PRS
scufan V;NFIN
scufan V;IND;SG;2;PST
scufan V.PTCP;PST
scufan V;IND;PL;PRS
scufan V;IND;PL;PST
scufan V;IND;SG;1;PST
adreogan V;IND;SG;2;PRS
adreogan V;IND;SG;1;PST
adreogan V;IMP;SG
adreogan V;NFIN
adreogan V;IND;SG;3;PST
adreogan V;IMP;PL
adreogan V;IND;PL;PRS
adreogan V.PTCP;PST
adreogan V;SBJV;PL;PST
adreogan V;SBJV;PL;PRS
adreogan V;IND;SG;2;PST
adreogan V;IND;SG;1;PRS
adreogan V;SBJV;SG;PRS
adreogan V;IND;PL;PST
adreogan V;SBJV;SG;PST
adreogan V;IND;SG;3;PRS
adreogan V;NFIN
adreogan V.PTCP;PRS
miltsian V;SBJV;SG;PRS
miltsian V;IMP;PL
miltsian V.PTCP;PRS
miltsian V;IND;SG;2;PST
miltsian V;IND;PL;PRS
miltsian V;SBJV;PL;PRS
miltsian V;IND;SG;1;PST
miltsian V;SBJV;PL;PST
miltsian V.PTCP;PST
miltsian V;NFIN
miltsian V;IND;SG;1;PRS
miltsian V;IND;SG;3;PST
miltsian V;IND;SG;2;PRS
miltsian V;IND;PL;PST
miltsian V;SBJV;SG;PST
miltsian V;NFIN
miltsian V.PTCP;PST
miltsian V;IMP;SG
miltsian V;IND;SG;3;PRS
miltsian V;IND;PL;PRS
miltsian V;SBJV;PL;PRS
modstaþol N;GEN;PL
modstaþol N;NOM;SG
modstaþol N;ACC;SG
modstaþol N;DAT;PL
modstaþol N;GEN;SG
modstaþol N;ACC;PL
modstaþol N;DAT;SG
modstaþol N;NOM;PL
hyrling N;GEN;SG
hyrling N;GEN;PL
hyrling N;ACC;SG
hyrling N;NOM;PL
hyrling N;DAT;SG
hyrling N;NOM;SG
hyrling N;DAT;PL
hyrling N;ACC;PL
sacan V.PTCP;PST
sacan V;IND;SG;1;PST
sacan V;IND;SG;3;PRS
sacan V;SBJV;PL;PRS
sacan V;IND;PL;PST
sacan V;IND;SG;2;PST
sacan V;IND;PL;PRS
sacan V;NFIN
sacan V;SBJV;SG;PRS
sacan V.PTCP;PRS
sacan V;SBJV;SG;PST
sacan V;IND;SG;2;PRS
sacan V;IND;SG;3;PST
sacan V;IMP;PL
sacan V;SBJV;PL;PST
sacan V;IND;SG;1;PRS
sacan V;IMP;SG
waru N;ACC;PL
waru N;ACC;SG
waru N;NOM;SG
waru N;DAT;PL
waru N;GEN;PL
waru N;GEN;SG
waru N;NOM;PL
waru N;ACC;PL
waru N;DAT;SG
tænel N;ACC;PL
tænel N;GEN;SG
tænel N;ACC;SG
tænel N;GEN;PL
tænel N;NOM;PL
tænel N;DAT;SG
tænel N;NOM;SG
tænel N;DAT;PL
pryte N;NOM;SG
pryte N;DAT;SG
pryte N;GEN;PL
pryte N;ACC;PL
pryte N;GEN;SG
pryte N;DAT;PL
pryte N;NOM;PL
pryte N;ACC;SG
gæsne ADJ;ACC;FEM;SG;LGSPEC2
gæsne ADJ;NOM;FEM;PL;LGSPEC2
gæsne ADJ;GEN;NEUT;SG;LGSPEC2
gæsne ADJ;NOM;MASC;SG;LGSPEC2
gæsne ADJ;ACC;NEUT;SG;LGSPEC2
gæsne ADJ;NOM;NEUT;PL;LGSPEC2
gæsne ADJ;GEN;PL;LGSPEC1
gæsne ADJ;GEN;PL;LGSPEC2
gæsne ADJ;ACC;FEM;SG;LGSPEC1
gæsne ADJ;NOM;NEUT;SG;LGSPEC1
gæsne ADJ;ACC;PL;LGSPEC1
gæsne ADJ;DAT;SG;LGSPEC1
gæsne ADJ;ACC;MASC;PL;LGSPEC2
gæsne ADJ;DAT;FEM;SG;LGSPEC2
gæsne ADJ;ACC;FEM;PL;LGSPEC2
gæsne ADJ;GEN;SG;LGSPEC1
gæsne ADJ;ACC;MASC;SG;LGSPEC2
gæsne ADJ;ACC;MASC;SG;LGSPEC1
gæsne ADJ;NOM;MASC;PL;LGSPEC2
gæsne ADJ;INS;MASC;SG;LGSPEC2
gæsne ADJ;DAT;NEUT;SG;LGSPEC2
gæsne ADJ;NOM;PL;LGSPEC1
gæsne ADJ;NOM;NEUT;SG;LGSPEC2
gæsne ADJ;DAT;PL;LGSPEC1
gæsne ADJ;NOM;FEM;SG;LGSPEC1
gæsne ADJ;NOM;MASC;SG;LGSPEC1
gæsne ADJ;NOM;FEM;SG;LGSPEC2
gæsne ADJ;INS;NEUT;SG;LGSPEC2
gæsne ADJ;GEN;MASC;SG;LGSPEC2
gæsne ADJ;DAT;MASC;SG;LGSPEC2
gæsne ADJ;GEN;FEM;SG;LGSPEC2
gæsne ADJ;ACC;NEUT;SG;LGSPEC1
gæsne ADJ;ACC;NEUT;PL;LGSPEC2
gæsne ADJ;ACC;FEM;PL;LGSPEC2
gæsne ADJ;DAT;PL;LGSPEC2
borian V;IND;SG;3;PRS
borian V.PTCP;PST
borian V;SBJV;SG;PRS
borian V.PTCP;PRS
borian V;IND;SG;2;PRS
borian V;SBJV;PL;PRS
borian V;IND;PL;PRS
borian V;IND;PL;PST
borian V;IMP;PL
borian V;SBJV;PL;PST
borian V;IND;SG;1;PST
borian V;IND;SG;3;PST
borian V;IND;SG;1;PRS
borian V;IMP;SG
borian V;NFIN
borian V;IND;PL;PRS
borian V;IND;SG;1;PRS
borian V;NFIN
borian V;SBJV;SG;PST
borian V;IND;SG;2;PST
borian V;SBJV;PL;PRS
dyppan V;IMP;PL
dyppan V;IND;SG;3;PRS
dyppan V;IND;PL;PRS
dyppan V;IMP;SG
dyppan V;IND;SG;1;PST
dyppan V.PTCP;PST
dyppan V;SBJV;SG;PRS
dyppan V;SBJV;SG;PST
dyppan V;SBJV;PL;PRS
dyppan V;IND;SG;3;PST
dyppan V;NFIN
dyppan V;IND;SG;1;PRS
dyppan V;IND;SG;2;PRS
dyppan V;IND;PL;PST
dyppan V.PTCP;PRS
dyppan V;IND;SG;2;PST
dyppan V.PTCP;PST
dyppan V;NFIN
dyppan V;SBJV;PL;PST
cynde ADJ;ACC;NEUT;SG;LGSPEC1
cynde ADJ;NOM;FEM;PL;LGSPEC2
cynde ADJ;DAT;FEM;SG;LGSPEC2
cynde ADJ;NOM;PL;LGSPEC1
cynde ADJ;NOM;MASC;PL;LGSPEC2
cynde ADJ;NOM;NEUT;PL;LGSPEC2
cynde ADJ;DAT;SG;LGSPEC1
cynde ADJ;GEN;MASC;SG;LGSPEC2
cynde ADJ;ACC;MASC;SG;LGSPEC2
cynde ADJ;ACC;NEUT;PL;LGSPEC2
cynde ADJ;NOM;FEM;SG;LGSPEC2
cynde ADJ;ACC;FEM;PL;LGSPEC2
cynde ADJ;NOM;FEM;SG;LGSPEC1
cynde ADJ;GEN;NEUT;SG;LGSPEC2
cynde ADJ;GEN;PL;LGSPEC2
cynde ADJ;ACC;FEM;SG;LGSPEC2
cynde ADJ;ACC;NEUT;SG;LGSPEC2
cynde ADJ;INS;NEUT;SG;LGSPEC2
cynde ADJ;NOM;NEUT;SG;LGSPEC1
cynde ADJ;GEN;FEM;SG;LGSPEC2
cynde ADJ;NOM;MASC;SG;LGSPEC1
cynde ADJ;ACC;FEM;SG;LGSPEC1
cynde ADJ;DAT;NEUT;SG;LGSPEC2
cynde ADJ;DAT;MASC;SG;LGSPEC2
cynde ADJ;ACC;MASC;PL;LGSPEC2
cynde ADJ;INS;MASC;SG;LGSPEC2
cynde ADJ;DAT;PL;LGSPEC1
cynde ADJ;ACC;PL;LGSPEC1
cynde ADJ;DAT;PL;LGSPEC2
cynde ADJ;GEN;PL;LGSPEC1
cynde ADJ;NOM;NEUT;SG;LGSPEC2
cynde ADJ;ACC;MASC;SG;LGSPEC1
cynde ADJ;NOM;MASC;SG;LGSPEC2
cynde ADJ;GEN;SG;LGSPEC1
cnæwe ADJ;NOM;FEM;PL;LGSPEC2
cnæwe ADJ;NOM;FEM;SG;LGSPEC1
cnæwe ADJ;NOM;NEUT;SG;LGSPEC1
cnæwe ADJ;INS;MASC;SG;LGSPEC2
cnæwe ADJ;NOM;MASC;SG;LGSPEC1
cnæwe ADJ;GEN;PL;LGSPEC1
cnæwe ADJ;DAT;FEM;SG;LGSPEC2
cnæwe ADJ;NOM;MASC;SG;LGSPEC2
cnæwe ADJ;GEN;FEM;SG;LGSPEC2
cnæwe ADJ;DAT;PL;LGSPEC1
cnæwe ADJ;ACC;FEM;SG;LGSPEC2
cnæwe ADJ;DAT;MASC;SG;LGSPEC2
cnæwe ADJ;GEN;MASC;SG;LGSPEC2
cnæwe ADJ;ACC;FEM;PL;LGSPEC2
cnæwe ADJ;NOM;NEUT;SG;LGSPEC2
cnæwe ADJ;GEN;PL;LGSPEC2
cnæwe ADJ;ACC;PL;LGSPEC1
cnæwe ADJ;NOM;FEM;SG;LGSPEC2
cnæwe ADJ;DAT;SG;LGSPEC1
cnæwe ADJ;GEN;SG;LGSPEC1
cnæwe ADJ;ACC;MASC;SG;LGSPEC1
cnæwe ADJ;NOM;NEUT;PL;LGSPEC2
cnæwe ADJ;NOM;PL;LGSPEC1
cnæwe ADJ;ACC;FEM;SG;LGSPEC1
cnæwe ADJ;ACC;NEUT;PL;LGSPEC2
cnæwe ADJ;DAT;NEUT;SG;LGSPEC2
cnæwe ADJ;NOM;MASC;PL;LGSPEC2
cnæwe ADJ;INS;NEUT;SG;LGSPEC2
cnæwe ADJ;ACC;MASC;PL;LGSPEC2
cnæwe ADJ;ACC;NEUT;SG;LGSPEC2
cnæwe ADJ;ACC;MASC;SG;LGSPEC2
cnæwe ADJ;GEN;PL;LGSPEC1
cnæwe ADJ;ACC;FEM;PL;LGSPEC2
cnæwe ADJ;ACC;NEUT;SG;LGSPEC1
cnæwe ADJ;GEN;NEUT;SG;LGSPEC2
cnæwe ADJ;DAT;PL;LGSPEC2
cnæwe ADJ;ACC;NEUT;PL;LGSPEC2
heard ADJ;NOM;NEUT;PL;LGSPEC2
heard ADJ;ACC;FEM;PL;LGSPEC2
heard ADJ;DAT;SG;LGSPEC1
heard ADJ;ACC;PL;LGSPEC1
heard ADJ;ACC;NEUT;SG;LGSPEC2
heard ADJ;DAT;PL;LGSPEC1
heard ADJ;GEN;PL;LGSPEC2
heard ADJ;ACC;MASC;SG;LGSPEC1
heard ADJ;GEN;PL;LGSPEC1
heard ADJ;ACC;FEM;SG;LGSPEC1
heard ADJ;NOM;FEM;PL;LGSPEC2
heard ADJ;GEN;FEM;SG;LGSPEC2
heard ADJ;NOM;NEUT;SG;LGSPEC1
heard ADJ;ACC;MASC;SG;LGSPEC2
heard ADJ;DAT;PL;LGSPEC2
heard ADJ;ACC;FEM;SG;LGSPEC2
heard ADJ;GEN;NEUT;SG;LGSPEC2
heard ADJ;NOM;MASC;PL;LGSPEC2
heard ADJ;GEN;MASC;SG;LGSPEC2
heard ADJ;ACC;NEUT;PL;LGSPEC2
heard ADJ;DAT;FEM;SG;LGSPEC2
heard ADJ;INS;MASC;SG;LGSPEC2
heard ADJ;NOM;SG;LGSPEC2
heard ADJ;NOM;PL;LGSPEC1
heard ADJ;DAT;MASC;SG;LGSPEC2
heard ADJ;NOM;MASC;SG;LGSPEC1
heard ADJ;INS;NEUT;SG;LGSPEC2
heard ADJ;ACC;NEUT;PL;LGSPEC2
heard ADJ;NOM;FEM;SG;LGSPEC1
heard ADJ;DAT;NEUT;SG;LGSPEC2
heard ADJ;GEN;SG;LGSPEC1
heard ADJ;ACC;NEUT;SG;LGSPEC1
heard ADJ;ACC;MASC;PL;LGSPEC2
spala N;ACC;SG
spala N;NOM;PL
spala N;ACC;PL
spala N;DAT;PL
spala N;NOM;SG
spala N;GEN;SG
spala N;GEN;PL
spala N;DAT;SG
blowan V;IND;SG;1;PRS
blowan V;SBJV;SG;PST
blowan V.PTCP;PRS
blowan V;IND;PL;PST
blowan V;IMP;SG
blowan V;IND;SG;1;PST
blowan V;NFIN
blowan V;SBJV;PL;PRS
blowan V;IND;SG;3;PST
blowan V.PTCP;PST
blowan V;NFIN
blowan V;SBJV;PL;PST
blowan V;IND;PL;PRS
blowan V;IND;SG;3;PRS
blowan V;SBJV;SG;PRS
blowan V;IND;SG;2;PST
blowan V;IMP;PL
blowan V;IND;SG;2;PRS
spyrd N;ACC;SG
spyrd N;ACC;PL
spyrd N;GEN;PL
spyrd N;NOM;PL
spyrd N;NOM;SG
spyrd N;GEN;SG
spyrd N;DAT;PL
spyrd N;DAT;SG
rinde N;GEN;SG
rinde N;ACC;SG
rinde N;NOM;PL
rinde N;DAT;SG
rinde N;NOM;SG
rinde N;DAT;PL
rinde N;ACC;PL
rinde N;GEN;PL
swindan V;IND;SG;3;PRS
swindan V;IMP;SG
swindan V.PTCP;PST
swindan V;NFIN
swindan V;IND;SG;1;PRS
swindan V;SBJV;SG;PST
swindan V;SBJV;PL;PST
swindan V;IND;SG;2;PST
swindan V;SBJV;SG;PRS
swindan V;IND;SG;3;PST
swindan V;IND;SG;1;PST
swindan V;IND;PL;PRS
swindan V;SBJV;PL;PRS
swindan V.PTCP;PRS
swindan V;IMP;PL
swindan V;IND;PL;PST
swindan V;IND;SG;2;PRS
pol N;DAT;SG
pol N;GEN;SG
pol N;NOM;SG
pol N;ACC;PL
pol N;GEN;PL
pol N;DAT;PL
pol N;NOM;PL
pol N;ACC;SG
fulian V.PTCP;PST
fulian V;SBJV;PL;PST
fulian V;IND;SG;3;PRS
fulian V;NFIN
fulian V;IND;SG;1;PRS
fulian V;IND;PL;PRS
fulian V;IND;SG;2;PST
fulian V;IMP;SG
fulian V;IND;PL;PST
fulian V;IND;SG;3;PST
fulian V;IND;SG;2;PRS
fulian V;IMP;PL
fulian V;SBJV;SG;PRS
fulian V;SBJV;SG;PST
fulian V;NFIN
fulian V;SBJV;SG;PRS
fulian V.PTCP;PRS
fulian V;IND;SG;1;PST
fulian V.PTCP;PRS
fulian V;SBJV;PL;PRS
sped N;GEN;PL
sped N;ACC;SG
sped N;ACC;PL
sped N;NOM;SG
sped N;DAT;SG
sped N;DAT;PL
sped N;NOM;PL
sped N;GEN;SG
geat N;GEN;PL
geat N;ACC;SG
geat N;ACC;PL
geat N;NOM;SG
geat N;DAT;PL
geat N;GEN;SG
geat N;NOM;PL
geat N;DAT;SG
nihtgenga N;NOM;SG
nihtgenga N;DAT;SG
nihtgenga N;GEN;SG
nihtgenga N;GEN;PL
nihtgenga N;NOM;PL
nihtgenga N;ACC;PL
nihtgenga N;ACC;SG
nihtgenga N;DAT;PL
earfoþe ADJ;NOM;FEM;PL;LGSPEC2
earfoþe ADJ;ACC;PL;LGSPEC1
earfoþe ADJ;ACC;FEM;SG;LGSPEC2
earfoþe ADJ;GEN;PL;LGSPEC1
earfoþe ADJ;ACC;FEM;PL;LGSPEC2
earfoþe ADJ;ACC;NEUT;SG;LGSPEC2
earfoþe ADJ;DAT;NEUT;SG;LGSPEC2
earfoþe ADJ;ACC;FEM;SG;LGSPEC1
earfoþe ADJ;NOM;MASC;PL;LGSPEC2
earfoþe ADJ;GEN;SG;LGSPEC1
earfoþe ADJ;GEN;PL;LGSPEC2
earfoþe ADJ;ACC;NEUT;PL;LGSPEC2
earfoþe ADJ;NOM;NEUT;PL;LGSPEC2
earfoþe ADJ;DAT;SG;LGSPEC1
earfoþe ADJ;NOM;FEM;SG;LGSPEC2
earfoþe ADJ;DAT;FEM;SG;LGSPEC2
earfoþe ADJ;GEN;NEUT;SG;LGSPEC2
earfoþe ADJ;NOM;NEUT;SG;LGSPEC1
earfoþe ADJ;ACC;NEUT;SG;LGSPEC1
earfoþe ADJ;INS;NEUT;SG;LGSPEC2
earfoþe ADJ;NOM;MASC;SG;LGSPEC2
earfoþe ADJ;ACC;MASC;SG;LGSPEC1
earfoþe ADJ;DAT;PL;LGSPEC2
earfoþe ADJ;GEN;MASC;SG;LGSPEC2
earfoþe ADJ;NOM;MASC;SG;LGSPEC1
earfoþe ADJ;DAT;MASC;SG;LGSPEC2
earfoþe ADJ;DAT;PL;LGSPEC1
earfoþe ADJ;ACC;MASC;SG;LGSPEC2
earfoþe ADJ;INS;MASC;SG;LGSPEC2
earfoþe ADJ;GEN;FEM;SG;LGSPEC2
earfoþe ADJ;GEN;PL;LGSPEC1
earfoþe ADJ;NOM;PL;LGSPEC1
earfoþe ADJ;NOM;FEM;SG;LGSPEC1
earfoþe ADJ;ACC;NEUT;PL;LGSPEC2
earfoþe ADJ;ACC;MASC;PL;LGSPEC2
earfoþe ADJ;NOM;NEUT;SG;LGSPEC2
blostmian V.PTCP;PST
blostmian V;IND;SG;2;PRS
blostmian V;SBJV;PL;PST
blostmian V;IND;SG;2;PST
blostmian V.PTCP;PRS
blostmian V;SBJV;PL;PRS
blostmian V;NFIN
blostmian V;IND;PL;PRS
blostmian V;IND;SG;1;PST
blostmian V;SBJV;SG;PRS
blostmian V;IND;PL;PST
blostmian V;IND;SG;1;PRS
blostmian V;IND;SG;3;PST
blostmian V;IMP;SG
blostmian V;IMP;PL
blostmian V;SBJV;SG;PST
blostmian V;SBJV;PL;PRS
blostmian V;IND;SG;1;PRS
blostmian V;IND;PL;PRS
blostmian V;IND;SG;3;PRS
onbidan V;NFIN
onbidan V;SBJV;PL;PST
onbidan V;IMP;SG
onbidan V;IND;SG;3;PST
onbidan V;IND;SG;1;PST
onbidan V.PTCP;PST
onbidan V;IND;SG;2;PST
onbidan V;IND;PL;PRS
onbidan V;SBJV;SG;PST
onbidan V;SBJV;SG;PRS
onbidan V;IND;PL;PST
onbidan V;IND;SG;2;PRS
onbidan V;IND;SG;1;PRS
onbidan V.PTCP;PRS
onbidan V;IMP;PL
onbidan V;IND;SG;3;PRS
onbidan V;SBJV;PL;PRS
feorran V.PTCP;PST
feorran V;IMP;SG
feorran V;IND;SG;3;PST
feorran V;IND;SG;3;PRS
feorran V;IMP;PL
feorran V;IND;SG;1;PRS
feorran V;IND;SG;2;PST
feorran V;NFIN
feorran V;SBJV;SG;PRS
feorran V;IND;PL;PST
feorran V;SBJV;PL;PST
feorran V;IND;PL;PRS
feorran V;SBJV;SG;PST
feorran V;SBJV;PL;PRS
feorran V.PTCP;PRS
feorran V;IND;SG;2;PRS
feorran V;IND;SG;1;PST
wigbære ADJ;INS;NEUT;SG;LGSPEC2
wigbære ADJ;GEN;NEUT;PL;LGSPEC2
wigbære ADJ;GEN;MASC;PL;LGSPEC1
wigbære ADJ;NOM;FEM;PL;LGSPEC1
wigbære ADJ;DAT;FEM;PL;LGSPEC2
wigbære ADJ;DAT;MASC;PL;LGSPEC2
wigbære ADJ;ACC;NEUT;SG;LGSPEC2
wigbære ADJ;NOM;NEUT;PL;LGSPEC2
wigbære ADJ;NOM;NEUT;SG;LGSPEC2
wigbære ADJ;ACC;MASC;PL;LGSPEC1
wigbære ADJ;INS;FEM;SG;LGSPEC1
wigbære ADJ;NOM;MASC;SG;LGSPEC1
wigbære ADJ;NOM;MASC;SG;LGSPEC2
wigbære ADJ;NOM;FEM;SG;LGSPEC1
wigbære ADJ;GEN;NEUT;SG;LGSPEC1
wigbære ADJ;ACC;FEM;PL;LGSPEC1
wigbære ADJ;DAT;NEUT;PL;LGSPEC2
wigbære ADJ;DAT;MASC;SG;LGSPEC2
wigbære ADJ;NOM;MASC;PL;LGSPEC1
wigbære ADJ;ACC;NEUT;PL;LGSPEC2
wigbære ADJ;DAT;NEUT;SG;LGSPEC1
wigbære ADJ;GEN;FEM;SG;LGSPEC1
wigbære ADJ;INS;NEUT;PL;LGSPEC2
wigbære ADJ;ACC;FEM;SG;LGSPEC2
wigbære ADJ;DAT;NEUT;SG;LGSPEC2
wigbære ADJ;INS;NEUT;PL;LGSPEC1
wigbære ADJ;INS;MASC;PL;LGSPEC2
wigbære ADJ;NOM;MASC;PL;LGSPEC2
wigbære ADJ;ACC;MASC;SG;LGSPEC2
wigbære ADJ;ACC;FEM;PL;LGSPEC2
wigbære ADJ;GEN;FEM;PL;LGSPEC2
wigbære ADJ;ACC;MASC;SG;LGSPEC1
wigbære ADJ;GEN;MASC;SG;LGSPEC1
wigbære ADJ;ACC;MASC;PL;LGSPEC2
wigbære ADJ;DAT;NEUT;PL;LGSPEC1
wigbære ADJ;DAT;FEM;SG;LGSPEC2
wigbære ADJ;GEN;MASC;SG;LGSPEC2
wigbære ADJ;INS;MASC;SG;LGSPEC1
wigbære ADJ;INS;FEM;SG;LGSPEC2
wigbære ADJ;ACC;FEM;SG;LGSPEC1
wigbære ADJ;ACC;NEUT;PL;LGSPEC1
wigbære ADJ;DAT;FEM;PL;LGSPEC1
wigbære ADJ;INS;NEUT;SG;LGSPEC1
wigbære ADJ;GEN;FEM;PL;LGSPEC1
wigbære ADJ;DAT;MASC;PL;LGSPEC1
wigbære ADJ;INS;MASC;PL;LGSPEC1
wigbære ADJ;ACC;NEUT;SG;LGSPEC1
wigbære ADJ;GEN;MASC;PL;LGSPEC2
wigbære ADJ;GEN;NEUT;PL;LGSPEC1
wigbære ADJ;INS;FEM;PL;LGSPEC2
wigbære ADJ;INS;MASC;SG;LGSPEC2
wigbære ADJ;NOM;FEM;SG;LGSPEC2
wigbære ADJ;DAT;MASC;SG;LGSPEC1
wigbære ADJ;ACC;NEUT;PL;LGSPEC2
wigbære ADJ;GEN;NEUT;SG;LGSPEC2
wigbære ADJ;NOM;NEUT;PL;LGSPEC1
wigbære ADJ;NOM;FEM;PL;LGSPEC2
wigbære ADJ;ACC;FEM;PL;LGSPEC2
wigbære ADJ;GEN;FEM;SG;LGSPEC2
wigbære ADJ;INS;FEM;PL;LGSPEC1
wigbære ADJ;NOM;NEUT;SG;LGSPEC1
wigbære ADJ;GEN;FEM;PL;LGSPEC1
wigbære ADJ;DAT;FEM;SG;LGSPEC1
fuht ADJ;DAT;FEM;PL;LGSPEC2
fuht ADJ;INS;MASC;PL;LGSPEC1
fuht ADJ;NOM;NEUT;SG;LGSPEC2
fuht ADJ;ACC;MASC;SG;LGSPEC1
fuht ADJ;ACC;MASC;SG;LGSPEC2
fuht ADJ;INS;MASC;SG;LGSPEC2
fuht ADJ;ACC;NEUT;SG;LGSPEC1
fuht ADJ;GEN;NEUT;SG;LGSPEC2
fuht ADJ;ACC;MASC;PL;LGSPEC2
fuht ADJ;ACC;FEM;PL;LGSPEC2
fuht ADJ;NOM;FEM;SG;LGSPEC1
fuht ADJ;INS;MASC;SG;LGSPEC1
fuht ADJ;DAT;NEUT;PL;LGSPEC1
fuht ADJ;NOM;MASC;PL;LGSPEC1
fuht ADJ;GEN;MASC;SG;LGSPEC1
fuht ADJ;DAT;NEUT;SG;LGSPEC2
fuht ADJ;NOM;NEUT;PL;LGSPEC1
fuht ADJ;GEN;MASC;PL;LGSPEC1
fuht ADJ;DAT;NEUT;PL;LGSPEC2
fuht ADJ;INS;FEM;SG;LGSPEC1
fuht ADJ;NOM;FEM;SG;LGSPEC2
fuht ADJ;NOM;NEUT;SG;LGSPEC1
fuht ADJ;ACC;NEUT;PL;LGSPEC1
fuht ADJ;GEN;MASC;PL;LGSPEC2
fuht ADJ;NOM;FEM;PL;LGSPEC1
fuht ADJ;GEN;NEUT;PL;LGSPEC2
fuht ADJ;NOM;MASC;SG;LGSPEC1
fuht ADJ;GEN;FEM;PL;LGSPEC1
fuht ADJ;INS;MASC;PL;LGSPEC2
fuht ADJ;INS;FEM;PL;LGSPEC1
fuht ADJ;DAT;FEM;SG;LGSPEC2
fuht ADJ;ACC;FEM;PL;LGSPEC1
fuht ADJ;NOM;MASC;PL;LGSPEC2
fuht ADJ;GEN;FEM;SG;LGSPEC1
fuht ADJ;DAT;FEM;SG;LGSPEC1
fuht ADJ;GEN;MASC;SG;LGSPEC2
fuht ADJ;INS;FEM;SG;LGSPEC2
fuht ADJ;NOM;MASC;SG;LGSPEC2
fuht ADJ;INS;NEUT;SG;LGSPEC2
fuht ADJ;GEN;FEM;PL;LGSPEC1
fuht ADJ;ACC;MASC;PL;LGSPEC1
fuht ADJ;GEN;FEM;SG;LGSPEC2
fuht ADJ;ACC;NEUT;PL;LGSPEC2
fuht ADJ;DAT;MASC;SG;LGSPEC1
fuht ADJ;DAT;NEUT;SG;LGSPEC1
fuht ADJ;DAT;MASC;SG;LGSPEC2
fuht ADJ;INS;NEUT;PL;LGSPEC2
fuht ADJ;NOM;NEUT;PL;LGSPEC2
fuht ADJ;ACC;FEM;SG;LGSPEC2
fuht ADJ;DAT;FEM;PL;LGSPEC1
fuht ADJ;GEN;NEUT;SG;LGSPEC1
fuht ADJ;INS;NEUT;SG;LGSPEC1
fuht ADJ;GEN;NEUT;PL;LGSPEC1
fuht ADJ;INS;NEUT;PL;LGSPEC1
fuht ADJ;INS;FEM;PL;LGSPEC2
fuht ADJ;ACC;FEM;SG;LGSPEC1
fuht ADJ;GEN;FEM;PL;LGSPEC2
fuht ADJ;NOM;FEM;PL;LGSPEC2
fuht ADJ;ACC;NEUT;SG;LGSPEC2
fuht ADJ;ACC;FEM;PL;LGSPEC2
fuht ADJ;DAT;MASC;PL;LGSPEC1
fuht ADJ;DAT;MASC;PL;LGSPEC2
nest N;DAT;PL
nest N;GEN;PL
nest N;GEN;SG
nest N;ACC;SG
nest N;NOM;SG
nest N;NOM;PL
nest N;ACC;PL
nest N;DAT;SG
hreþig ADJ;ACC;NEUT;SG;LGSPEC2
hreþig ADJ;DAT;FEM;PL;LGSPEC2
hreþig ADJ;ACC;FEM;PL;LGSPEC2
hreþig ADJ;ACC;FEM;SG;LGSPEC2
hreþig ADJ;NOM;NEUT;PL;LGSPEC1
hreþig ADJ;DAT;MASC;SG;LGSPEC1
hreþig ADJ;ACC;FEM;PL;LGSPEC1
hreþig ADJ;NOM;MASC;PL;LGSPEC1
hreþig ADJ;ACC;NEUT;PL;LGSPEC2
hreþig ADJ;DAT;MASC;SG;LGSPEC2
hreþig ADJ;ACC;NEUT;PL;LGSPEC1
hreþig ADJ;GEN;NEUT;PL;LGSPEC1
hreþig ADJ;INS;MASC;SG;LGSPEC2
hreþig ADJ;GEN;MASC;PL;LGSPEC1
hreþig ADJ;NOM;NEUT;SG;LGSPEC1
hreþig ADJ;DAT;NEUT;SG;LGSPEC2
hreþig ADJ;GEN;FEM;PL;LGSPEC1
hreþig ADJ;INS;NEUT;SG;LGSPEC2
hreþig ADJ;ACC;MASC;PL;LGSPEC1
hreþig ADJ;INS;FEM;SG;LGSPEC1
hreþig ADJ;NOM;FEM;SG;LGSPEC1
hreþig ADJ;INS;MASC;PL;LGSPEC1
hreþig ADJ;INS;FEM;SG;LGSPEC2
hreþig ADJ;NOM;NEUT;PL;LGSPEC2
hreþig ADJ;NOM;MASC;SG;LGSPEC2
hreþig ADJ;GEN;MASC;SG;LGSPEC2
hreþig ADJ;NOM;FEM;PL;LGSPEC1
hreþig ADJ;DAT;NEUT;SG;LGSPEC1
hreþig ADJ;GEN;MASC;PL;LGSPEC2
hreþig ADJ;ACC;MASC;SG;LGSPEC1
hreþig ADJ;NOM;FEM;SG;LGSPEC2
hreþig ADJ;ACC;FEM;SG;LGSPEC1
hreþig ADJ;GEN;FEM;SG;LGSPEC2
hreþig ADJ;ACC;NEUT;SG;LGSPEC1
hreþig ADJ;DAT;NEUT;PL;LGSPEC2
hreþig ADJ;GEN;FEM;SG;LGSPEC1
hreþig ADJ;DAT;FEM;SG;LGSPEC2
hreþig ADJ;INS;NEUT;SG;LGSPEC1
hreþig ADJ;INS;NEUT;PL;LGSPEC1
hreþig ADJ;NOM;MASC;PL;LGSPEC2
hreþig ADJ;DAT;MASC;PL;LGSPEC2
hreþig ADJ;DAT;NEUT;PL;LGSPEC1
hreþig ADJ;INS;FEM;PL;LGSPEC2
hreþig ADJ;GEN;MASC;SG;LGSPEC1
hreþig ADJ;DAT;MASC;PL;LGSPEC1
hreþig ADJ;DAT;FEM;SG;LGSPEC1
hreþig ADJ;NOM;MASC;SG;LGSPEC1
hreþig ADJ;INS;FEM;PL;LGSPEC1
hreþig ADJ;GEN;NEUT;SG;LGSPEC2
hreþig ADJ;GEN;NEUT;PL;LGSPEC1
hreþig ADJ;INS;MASC;PL;LGSPEC1
hreþig ADJ;GEN;NEUT;PL;LGSPEC2
hreþig ADJ;GEN;FEM;PL;LGSPEC2
hreþig ADJ;INS;NEUT;PL;LGSPEC2
hreþig ADJ;INS;NEUT;SG;LGSPEC1
hreþig ADJ;ACC;FEM;SG;LGSPEC1
hreþig ADJ;GEN;MASC;SG;LGSPEC2
hreþig ADJ;GEN;NEUT;SG;LGSPEC1
hreþig ADJ;INS;MASC;PL;LGSPEC2
hreþig ADJ;DAT;FEM;PL;LGSPEC1
hreþig ADJ;NOM;FEM;PL;LGSPEC2
hreþig ADJ;DAT;MASC;PL;LGSPEC1
hreþig ADJ;INS;MASC;PL;LGSPEC2
hreþig ADJ;NOM;NEUT;PL;LGSPEC2
hreþig ADJ;DAT;FEM;PL;LGSPEC1
hreþig ADJ;ACC;FEM;PL;LGSPEC2
hreþig ADJ;INS;NEUT;PL;LGSPEC2
hreþig ADJ;INS;FEM;PL;LGSPEC2
hreþig ADJ;ACC;MASC;PL;LGSPEC2
hreþig ADJ;NOM;MASC;PL;LGSPEC1
hreþig ADJ;GEN;MASC;PL;LGSPEC1
hreþig ADJ;GEN;MASC;SG;LGSPEC1
hreþig ADJ;GEN;NEUT;PL;LGSPEC1
hreþig ADJ;DAT;NEUT;PL;LGSPEC1
hreþig ADJ;NOM;MASC;SG;LGSPEC1
hreþig ADJ;GEN;NEUT;SG;LGSPEC1
hreþig ADJ;INS;MASC;SG;LGSPEC2
hreþig ADJ;INS;MASC;SG;LGSPEC1
hreþig ADJ;NOM;NEUT;SG;LGSPEC2
hreþig ADJ;DAT;FEM;SG;LGSPEC1
hreþig ADJ;ACC;MASC;SG;LGSPEC2
hreþig ADJ;INS;FEM;PL;LGSPEC1
hreþig ADJ;DAT;MASC;PL;LGSPEC2
sincgiefa N;NOM;SG
sincgiefa N;NOM;PL
sincgiefa N;DAT;PL
sincgiefa N;GEN;SG
sincgiefa N;ACC;PL
sincgiefa N;DAT;SG
sincgiefa N;GEN;PL
sincgiefa N;ACC;SG
becuman V;SBJV;PL;PST
becuman V;IND;PL;PST
becuman V;IND;SG;2;PRS
becuman V;IMP;PL
becuman V;IND;SG;2;PST
becuman V;IND;SG;1;PRS
becuman V;IND;SG;3;PST
becuman V.PTCP;PRS
becuman V;SBJV;SG;PST
becuman V;IMP;SG
becuman V;IND;SG;1;PST
becuman V;IND;SG;3;PRS
becuman V;SBJV;PL;PRS
becuman V;NFIN
becuman V;IND;SG;2;PST
becuman V;IND;PL;PRS
becuman V;NFIN
becuman V;IND;SG;1;PST
becuman V.PTCP;PST
becuman V;SBJV;SG;PRS
ærendfæst ADJ;DAT;MASC;PL;LGSPEC1
ærendfæst ADJ;DAT;FEM;PL;LGSPEC2
ærendfæst ADJ;ACC;NEUT;SG;LGSPEC2
ærendfæst ADJ;DAT;MASC;PL;LGSPEC2
ærendfæst ADJ;INS;FEM;PL;LGSPEC1
ærendfæst ADJ;ACC;FEM;PL;LGSPEC2
ærendfæst ADJ;ACC;MASC;PL;LGSPEC1
ærendfæst ADJ;NOM;FEM;PL;LGSPEC2
ærendfæst ADJ;INS;MASC;PL;LGSPEC2
ærendfæst ADJ;ACC;NEUT;PL;LGSPEC1
ærendfæst ADJ;GEN;FEM;PL;LGSPEC1
ærendfæst ADJ;NOM;MASC;PL;LGSPEC1
ærendfæst ADJ;NOM;FEM;PL;LGSPEC1
ærendfæst ADJ;ACC;FEM;SG;LGSPEC1
ærendfæst ADJ;DAT;NEUT;PL;LGSPEC1
ærendfæst ADJ;NOM;FEM;SG;LGSPEC1
ærendfæst ADJ;NOM;MASC;SG;LGSPEC1
ærendfæst ADJ;INS;MASC;PL;LGSPEC1
ærendfæst ADJ;INS;FEM;SG;LGSPEC1
ærendfæst ADJ;DAT;MASC;SG;LGSPEC1
ærendfæst ADJ;DAT;MASC;SG;LGSPEC2
ærendfæst ADJ;DAT;NEUT;SG;LGSPEC1
ærendfæst ADJ;INS;FEM;PL;LGSPEC2
ærendfæst ADJ;INS;MASC;SG;LGSPEC2
ærendfæst ADJ;GEN;NEUT;PL;LGSPEC1
ærendfæst ADJ;GEN;MASC;SG;LGSPEC1
ærendfæst ADJ;GEN;FEM;PL;LGSPEC2
ærendfæst ADJ;GEN;MASC;SG;LGSPEC2
ærendfæst ADJ;NOM;NEUT;SG;LGSPEC2
ærendfæst ADJ;ACC;NEUT;SG;LGSPEC1
ærendfæst ADJ;NOM;NEUT;SG;LGSPEC1
ærendfæst ADJ;GEN;MASC;PL;LGSPEC1
ærendfæst ADJ;GEN;FEM;SG;LGSPEC1
ærendfæst ADJ;DAT;FEM;SG;LGSPEC1
ærendfæst ADJ;GEN;MASC;PL;LGSPEC2
ærendfæst ADJ;GEN;NEUT;SG;LGSPEC2
ærendfæst ADJ;INS;NEUT;SG;LGSPEC2
ærendfæst ADJ;INS;NEUT;PL;LGSPEC1
ærendfæst ADJ;DAT;NEUT;PL;LGSPEC2
ærendfæst ADJ;NOM;MASC;PL;LGSPEC2
ærendfæst ADJ;DAT;FEM;PL;LGSPEC1
ærendfæst ADJ;ACC;FEM;SG;LGSPEC2
ærendfæst ADJ;INS;NEUT;SG;LGSPEC1
ærendfæst ADJ;GEN;FEM;SG;LGSPEC2
ærendfæst ADJ;DAT;NEUT;SG;LGSPEC2
ærendfæst ADJ;NOM;MASC;SG;LGSPEC2
ærendfæst ADJ;DAT;FEM;SG;LGSPEC2
ærendfæst ADJ;ACC;NEUT;PL;LGSPEC2
ærendfæst ADJ;INS;FEM;SG;LGSPEC2
ærendfæst ADJ;INS;MASC;SG;LGSPEC1
ærendfæst ADJ;GEN;NEUT;PL;LGSPEC2
ærendfæst ADJ;GEN;NEUT;SG;LGSPEC1
ærendfæst ADJ;NOM;FEM;SG;LGSPEC2
ærendfæst ADJ;ACC;MASC;PL;LGSPEC2
ærendfæst ADJ;GEN;NEUT;PL;LGSPEC1
ærendfæst ADJ;NOM;NEUT;PL;LGSPEC2
ærendfæst ADJ;ACC;FEM;PL;LGSPEC1
ærendfæst ADJ;ACC;MASC;SG;LGSPEC2
ærendfæst ADJ;INS;NEUT;PL;LGSPEC2
ærendfæst ADJ;NOM;NEUT;PL;LGSPEC1
ærendfæst ADJ;ACC;MASC;SG;LGSPEC1
scinu N;ACC;PL
scinu N;NOM;PL
scinu N;GEN;PL
scinu N;DAT;PL
scinu N;GEN;SG
scinu N;DAT;SG
scinu N;NOM;SG
scinu N;ACC;SG
scinu N;ACC;PL
scinu N;NOM;PL
midde N;ACC;PL
midde N;DAT;PL
midde N;NOM;SG
midde N;GEN;SG
midde N;NOM;PL
midde N;DAT;SG
midde N;ACC;SG
midde N;GEN;PL
brun ADJ;GEN;NEUT;PL;LGSPEC1
brun ADJ;INS;NEUT;PL;LGSPEC2
brun ADJ;DAT;MASC;PL;LGSPEC1
brun ADJ;INS;FEM;PL;LGSPEC2
brun ADJ;ACC;NEUT;PL;LGSPEC2
brun ADJ;INS;FEM;SG;LGSPEC2
brun ADJ;GEN;NEUT;SG;LGSPEC1
brun ADJ;DAT;MASC;SG;LGSPEC2
brun ADJ;GEN;NEUT;SG;LGSPEC2
brun ADJ;DAT;NEUT;PL;LGSPEC2
brun ADJ;DAT;MASC;SG;LGSPEC1
brun ADJ;INS;MASC;PL;LGSPEC1
brun ADJ;NOM;FEM;SG;LGSPEC1
brun ADJ;INS;MASC;SG;LGSPEC2
brun ADJ;GEN;FEM;SG;LGSPEC1
brun ADJ;NOM;FEM;PL;LGSPEC2
brun ADJ;DAT;MASC;PL;LGSPEC2
brun ADJ;GEN;MASC;SG;LGSPEC2
brun ADJ;NOM;NEUT;SG;LGSPEC2
brun ADJ;NOM;NEUT;PL;LGSPEC1
brun ADJ;GEN;FEM;PL;LGSPEC1
brun ADJ;GEN;FEM;PL;LGSPEC2
brun ADJ;GEN;MASC;PL;LGSPEC1
brun ADJ;INS;MASC;PL;LGSPEC2
brun ADJ;DAT;FEM;PL;LGSPEC1
brun ADJ;INS;FEM;PL;LGSPEC1
brun ADJ;NOM;NEUT;PL;LGSPEC2
brun ADJ;ACC;NEUT;PL;LGSPEC1
brun ADJ;INS;NEUT;SG;LGSPEC2
brun ADJ;ACC;FEM;PL;LGSPEC2
brun ADJ;ACC;MASC;PL;LGSPEC2
brun ADJ;NOM;FEM;PL;LGSPEC1
brun ADJ;DAT;FEM;SG;LGSPEC2
brun ADJ;DAT;NEUT;SG;LGSPEC2
brun ADJ;GEN;FEM;SG;LGSPEC2
brun ADJ;NOM;NEUT;SG;LGSPEC1
brun ADJ;ACC;FEM;PL;LGSPEC1
brun ADJ;ACC;FEM;SG;LGSPEC2
brun ADJ;DAT;FEM;PL;LGSPEC2
brun ADJ;GEN;NEUT;PL;LGSPEC2
brun ADJ;INS;NEUT;PL;LGSPEC1
brun ADJ;NOM;FEM;SG;LGSPEC2
brun ADJ;DAT;FEM;SG;LGSPEC1
brun ADJ;NOM;MASC;PL;LGSPEC1
brun ADJ;GEN;FEM;PL;LGSPEC1
brun ADJ;NOM;MASC;PL;LGSPEC2
brun ADJ;NOM;MASC;SG;LGSPEC2
brun ADJ;NOM;MASC;SG;LGSPEC1
brun ADJ;GEN;MASC;PL;LGSPEC1
brun ADJ;ACC;FEM;SG;LGSPEC1
brun ADJ;ACC;MASC;SG;LGSPEC1
brun ADJ;ACC;MASC;PL;LGSPEC1
brun ADJ;INS;NEUT;SG;LGSPEC1
brun ADJ;ACC;NEUT;SG;LGSPEC2
brun ADJ;GEN;MASC;PL;LGSPEC2
brun ADJ;ACC;MASC;SG;LGSPEC2
brun ADJ;GEN;MASC;SG;LGSPEC1
brun ADJ;DAT;NEUT;SG;LGSPEC1
brun ADJ;ACC;FEM;PL;LGSPEC2
brun ADJ;DAT;NEUT;PL;LGSPEC1
brun ADJ;ACC;NEUT;SG;LGSPEC1
brun ADJ;INS;MASC;SG;LGSPEC1
brun ADJ;INS;FEM;SG;LGSPEC1
onwæcnan V.PTCP;PST
onwæcnan V;IND;PL;PST
onwæcnan V;IMP;SG
onwæcnan V;IND;PL;PRS
onwæcnan V;SBJV;SG;PST
onwæcnan V;SBJV;PL;PRS
onwæcnan V;SBJV;SG;PRS
onwæcnan V;IND;SG;1;PST
onwæcnan V;IND;SG;3;PRS
onwæcnan V.PTCP;PRS
onwæcnan V;IMP;PL
onwæcnan V;IND;SG;1;PRS
onwæcnan V;IND;SG;2;PRS
onwæcnan V;NFIN
onwæcnan V.PTCP;PST
onwæcnan V;SBJV;PL;PST
onwæcnan V;IND;SG;3;PST
onwæcnan V;IND;SG;2;PST
gelicnes N;NOM;PL
gelicnes N;DAT;PL
gelicnes N;GEN;SG
gelicnes N;ACC;PL
gelicnes N;GEN;PL
gelicnes N;ACC;SG
gelicnes N;DAT;SG
gelicnes N;ACC;PL
gelicnes N;NOM;PL
gelicnes N;NOM;SG
steall N;DAT;PL
steall N;GEN;SG
steall N;DAT;SG
steall N;GEN;PL
steall N;NOM;SG
steall N;ACC;SG
steall N;NOM;PL
steall N;NOM;PL
steall N;ACC;PL
gemanigfieldan V;IMP;PL
gemanigfieldan V;SBJV;SG;PRS
gemanigfieldan V;NFIN
gemanigfieldan V;IND;SG;3;PRS
gemanigfieldan V.PTCP;PRS
gemanigfieldan V;IND;SG;2;PST
gemanigfieldan V;IND;SG;1;PRS
gemanigfieldan V;IND;SG;3;PST
gemanigfieldan V;SBJV;PL;PST
gemanigfieldan V.PTCP;PST
gemanigfieldan V;IMP;SG
gemanigfieldan V;IND;PL;PST
gemanigfieldan V;IND;SG;1;PST
gemanigfieldan V;IND;SG;2;PRS
gemanigfieldan V;SBJV;PL;PRS
gemanigfieldan V;IND;PL;PRS
gemanigfieldan V;SBJV;SG;PST
pullian V;IND;PL;PST
pullian V;NFIN
pullian V.PTCP;PST
pullian V;IND;PL;PRS
pullian V;IMP;PL
pullian V;IND;SG;3;PRS
pullian V.PTCP;PRS
pullian V;SBJV;SG;PRS
pullian V;IND;SG;1;PST
pullian V;SBJV;PL;PRS
pullian V;IND;SG;1;PRS
pullian V;IND;SG;2;PRS
pullian V.PTCP;PRS
pullian V;SBJV;SG;PRS
pullian V;IMP;SG
pullian V;IND;SG;1;PRS
pullian V;SBJV;PL;PRS
pullian V;SBJV;PL;PST
pullian V;IND;SG;2;PST
pullian V;SBJV;SG;PST
pullian V;IND;SG;3;PST
pullian V.PTCP;PST
onsittan V;IND;PL;PST
onsittan V.PTCP;PST
onsittan V;SBJV;PL;PRS
onsittan V;IND;SG;2;PST
onsittan V;NFIN
onsittan V;SBJV;SG;PST
onsittan V;IND;PL;PRS
onsittan V;SBJV;SG;PRS
onsittan V;IND;SG;2;PRS
onsittan V;IMP;PL
onsittan V;IND;SG;3;PRS
onsittan V;IMP;SG
onsittan V;IND;SG;1;PST
onsittan V;IND;SG;3;PST
onsittan V.PTCP;PRS
onsittan V;IND;SG;1;PRS
onsittan V;SBJV;PL;PST
onsittan V;NFIN
scieran V;IND;SG;3;PST
scieran V.PTCP;PST
scieran V;IND;PL;PST
scieran V;IMP;PL
scieran V;IND;SG;1;PRS
scieran V;IND;SG;2;PRS
scieran V;SBJV;SG;PRS
scieran V;IMP;SG
scieran V;IND;SG;2;PST
scieran V;SBJV;SG;PST
scieran V;SBJV;PL;PRS
scieran V;IND;PL;PRS
scieran V;IND;SG;1;PST
scieran V.PTCP;PRS
scieran V;SBJV;PL;PST
scieran V;NFIN
scieran V;IND;SG;3;PRS
scieran V;NFIN
baþian V;IND;SG;3;PST
baþian V;IMP;PL
baþian V;IND;SG;2;PST
baþian V;IND;SG;1;PST
baþian V;IMP;SG
baþian V;IND;SG;2;PRS
baþian V;IND;PL;PRS
baþian V;SBJV;PL;PRS
baþian V.PTCP;PST
baþian V;IND;SG;1;PRS
baþian V.PTCP;PRS
baþian V;NFIN
baþian V;IND;SG;3;PRS
baþian V;SBJV;SG;PRS
baþian V;IND;PL;PST
baþian V;SBJV;SG;PST
baþian V;IND;SG;1;PRS
baþian V;SBJV;PL;PRS
baþian V;SBJV;SG;PRS
baþian V.PTCP;PST
baþian V;SBJV;PL;PST
baþian V;NFIN
baþian V;IND;PL;PRS
feortan V;SBJV;PL;PST
feortan V;IND;PL;PRS
feortan V;IND;SG;2;PST
feortan V;IND;PL;PST
feortan V;IMP;SG
feortan V.PTCP;PST
feortan V;IND;SG;3;PST
feortan V;IND;SG;2;PRS
feortan V.PTCP;PRS
feortan V;SBJV;SG;PRS
feortan V;IMP;PL
feortan V;NFIN
feortan V;IND;SG;1;PRS
feortan V;NFIN
feortan V;SBJV;PL;PRS
feortan V;IND;SG;1;PST
feortan V;SBJV;SG;PST
feortan V.PTCP;PST
feortan V;IND;SG;3;PRS
andweard ADJ;NOM;NEUT;SG;LGSPEC1
andweard ADJ;DAT;MASC;SG;LGSPEC2
andweard ADJ;INS;MASC;SG;LGSPEC1
andweard ADJ;INS;FEM;SG;LGSPEC2
andweard ADJ;DAT;MASC;SG;LGSPEC1
andweard ADJ;GEN;FEM;SG;LGSPEC1
andweard ADJ;INS;NEUT;SG;LGSPEC2
andweard ADJ;DAT;FEM;PL;LGSPEC2
andweard ADJ;INS;MASC;PL;LGSPEC1
andweard ADJ;NOM;NEUT;SG;LGSPEC2
andweard ADJ;GEN;FEM;PL;LGSPEC1
andweard ADJ;GEN;NEUT;PL;LGSPEC1
andweard ADJ;DAT;FEM;SG;LGSPEC1
andweard ADJ;NOM;MASC;SG;LGSPEC1
andweard ADJ;ACC;NEUT;SG;LGSPEC1
andweard ADJ;INS;NEUT;PL;LGSPEC1
andweard ADJ;NOM;FEM;PL;LGSPEC1
andweard ADJ;NOM;MASC;PL;LGSPEC1
andweard ADJ;NOM;NEUT;PL;LGSPEC1
andweard ADJ;GEN;MASC;SG;LGSPEC1
andweard ADJ;DAT;FEM;PL;LGSPEC1
andweard ADJ;ACC;FEM;PL;LGSPEC2
andweard ADJ;DAT;NEUT;SG;LGSPEC1
andweard ADJ;NOM;FEM;PL;LGSPEC2
andweard ADJ;GEN;FEM;SG;LGSPEC2
andweard ADJ;INS;FEM;PL;LGSPEC2
andweard ADJ;GEN;FEM;PL;LGSPEC2
andweard ADJ;NOM;NEUT;PL;LGSPEC2
andweard ADJ;DAT;NEUT;PL;LGSPEC1
andweard ADJ;ACC;NEUT;PL;LGSPEC2
andweard ADJ;NOM;FEM;SG;LGSPEC2
andweard ADJ;ACC;MASC;PL;LGSPEC1
andweard ADJ;ACC;MASC;PL;LGSPEC2
andweard ADJ;GEN;NEUT;SG;LGSPEC1
andweard ADJ;GEN;MASC;SG;LGSPEC2
andweard ADJ;GEN;NEUT;PL;LGSPEC2
andweard ADJ;DAT;MASC;PL;LGSPEC2
andweard ADJ;DAT;NEUT;PL;LGSPEC2
andweard ADJ;NOM;FEM;SG;LGSPEC1
andweard ADJ;ACC;MASC;SG;LGSPEC1
andweard ADJ;ACC;FEM;PL;LGSPEC1
andweard ADJ;ACC;FEM;SG;LGSPEC1
andweard ADJ;DAT;NEUT;SG;LGSPEC2
andweard ADJ;INS;NEUT;SG;LGSPEC1
andweard ADJ;NOM;FEM;PL;LGSPEC2
andweard ADJ;INS;FEM;PL;LGSPEC1
andweard ADJ;GEN;MASC;PL;LGSPEC1
andweard ADJ;GEN;NEUT;SG;LGSPEC2
andweard ADJ;INS;NEUT;PL;LGSPEC2
andweard ADJ;NOM;MASC;SG;LGSPEC2
andweard ADJ;NOM;MASC;PL;LGSPEC2
andweard ADJ;ACC;FEM;SG;LGSPEC2
andweard ADJ;ACC;NEUT;SG;LGSPEC2
andweard ADJ;DAT;FEM;SG;LGSPEC2
andweard ADJ;INS;FEM;SG;LGSPEC1
andweard ADJ;INS;MASC;PL;LGSPEC2
andweard ADJ;GEN;MASC;PL;LGSPEC2
andweard ADJ;DAT;MASC;PL;LGSPEC1
andweard ADJ;GEN;MASC;PL;LGSPEC1
andweard ADJ;ACC;MASC;SG;LGSPEC2
andweard ADJ;ACC;NEUT;PL;LGSPEC1
andweard ADJ;INS;MASC;SG;LGSPEC2
hopa N;ACC;SG
hopa N;DAT;PL
hopa N;GEN;PL
hopa N;NOM;PL
hopa N;ACC;PL
hopa N;DAT;SG
hopa N;GEN;SG
hopa N;NOM;SG
andwist N;DAT;PL
andwist N;NOM;PL
andwist N;DAT;SG
andwist N;ACC;SG
andwist N;ACC;PL
andwist N;NOM;PL
andwist N;ACC;SG
andwist N;NOM;SG
andwist N;GEN;SG
andwist N;GEN;PL
lang ADJ;DAT;FEM;SG;LGSPEC2
lang ADJ;NOM;SG;LGSPEC2
lang ADJ;GEN;NEUT;SG;LGSPEC2
lang ADJ;ACC;NEUT;PL;LGSPEC2
lang ADJ;ACC;MASC;SG;LGSPEC2
lang ADJ;DAT;PL;LGSPEC1
lang ADJ;NOM;NEUT;PL;LGSPEC2
lang ADJ;NOM;FEM;SG;LGSPEC1
lang ADJ;DAT;SG;LGSPEC1
lang ADJ;NOM;PL;LGSPEC1
lang ADJ;GEN;FEM;SG;LGSPEC2
lang ADJ;DAT;NEUT;SG;LGSPEC2
lang ADJ;INS;NEUT;SG;LGSPEC2
lang ADJ;GEN;PL;LGSPEC1
lang ADJ;ACC;MASC;SG;LGSPEC1
lang ADJ;GEN;PL;LGSPEC2
lang ADJ;ACC;MASC;PL;LGSPEC2
lang ADJ;ACC;NEUT;SG;LGSPEC2
lang ADJ;NOM;FEM;PL;LGSPEC2
lang ADJ;ACC;FEM;SG;LGSPEC2
lang ADJ;INS;MASC;SG;LGSPEC2
lang ADJ;NOM;NEUT;SG;LGSPEC1
lang ADJ;DAT;MASC;SG;LGSPEC2
lang ADJ;DAT;PL;LGSPEC2
lang ADJ;NOM;MASC;PL;LGSPEC2
lang ADJ;ACC;FEM;PL;LGSPEC2
lang ADJ;GEN;PL;LGSPEC1
lang ADJ;GEN;MASC;SG;LGSPEC2
lang ADJ;ACC;FEM;SG;LGSPEC1
lang ADJ;ACC;NEUT;SG;LGSPEC1
lang ADJ;ACC;PL;LGSPEC1
lang ADJ;NOM;MASC;SG;LGSPEC1
lang ADJ;GEN;SG;LGSPEC1
deadlic ADJ;GEN;NEUT;SG;LGSPEC2
deadlic ADJ;INS;MASC;SG;LGSPEC1
deadlic ADJ;NOM;FEM;SG;LGSPEC1
deadlic ADJ;INS;MASC;PL;LGSPEC1
deadlic ADJ;INS;NEUT;PL;LGSPEC1
deadlic ADJ;DAT;FEM;SG;LGSPEC2
deadlic ADJ;DAT;MASC;PL;LGSPEC1
deadlic ADJ;ACC;FEM;PL;LGSPEC2
deadlic ADJ;ACC;MASC;SG;LGSPEC2
deadlic ADJ;GEN;MASC;SG;LGSPEC2
deadlic ADJ;NOM;FEM;PL;LGSPEC1
deadlic ADJ;INS;FEM;PL;LGSPEC2
deadlic ADJ;GEN;MASC;PL;LGSPEC1
deadlic ADJ;GEN;NEUT;PL;LGSPEC1
deadlic ADJ;DAT;FEM;PL;LGSPEC1
deadlic ADJ;NOM;FEM;PL;LGSPEC2
deadlic ADJ;INS;MASC;SG;LGSPEC2
deadlic ADJ;DAT;NEUT;PL;LGSPEC2
deadlic ADJ;ACC;MASC;PL;LGSPEC2
deadlic ADJ;ACC;NEUT;SG;LGSPEC2
deadlic ADJ;INS;NEUT;SG;LGSPEC2
deadlic ADJ;NOM;NEUT;PL;LGSPEC1
deadlic ADJ;INS;FEM;SG;LGSPEC2
deadlic ADJ;ACC;NEUT;PL;LGSPEC1
deadlic ADJ;NOM;MASC;PL;LGSPEC1
deadlic ADJ;ACC;FEM;PL;LGSPEC1
deadlic ADJ;DAT;MASC;SG;LGSPEC1
deadlic ADJ;NOM;NEUT;SG;LGSPEC2
deadlic ADJ;GEN;MASC;SG;LGSPEC1
deadlic ADJ;INS;NEUT;SG;LGSPEC1
deadlic ADJ;GEN;FEM;PL;LGSPEC2
deadlic ADJ;GEN;FEM;PL;LGSPEC1
deadlic ADJ;ACC;FEM;SG;LGSPEC1
deadlic ADJ;GEN;NEUT;SG;LGSPEC1
deadlic ADJ;DAT;NEUT;SG;LGSPEC1
deadlic ADJ;DAT;MASC;PL;LGSPEC2
deadlic ADJ;INS;NEUT;PL;LGSPEC2
deadlic ADJ;GEN;FEM;SG;LGSPEC2
deadlic ADJ;NOM;FEM;SG;LGSPEC2
deadlic ADJ;INS;FEM;SG;LGSPEC1
deadlic ADJ;NOM;MASC;PL;LGSPEC2
deadlic ADJ;NOM;NEUT;PL;LGSPEC2
deadlic ADJ;ACC;NEUT;PL;LGSPEC2
deadlic ADJ;NOM;MASC;SG;LGSPEC2
deadlic ADJ;GEN;NEUT;PL;LGSPEC2
deadlic ADJ;DAT;FEM;PL;LGSPEC2
deadlic ADJ;ACC;MASC;SG;LGSPEC1
deadlic ADJ;NOM;NEUT;PL;LGSPEC2
deadlic ADJ;ACC;MASC;PL;LGSPEC1
deadlic ADJ;NOM;MASC;SG;LGSPEC1
deadlic ADJ;INS;FEM;PL;LGSPEC1
deadlic ADJ;GEN;MASC;PL;LGSPEC2
deadlic ADJ;NOM;NEUT;SG;LGSPEC1
deadlic ADJ;DAT;MASC;SG;LGSPEC2
deadlic ADJ;GEN;FEM;SG;LGSPEC1
deadlic ADJ;ACC;NEUT;SG;LGSPEC1
deadlic ADJ;DAT;NEUT;SG;LGSPEC2
deadlic ADJ;DAT;NEUT;PL;LGSPEC1
deadlic ADJ;GEN;FEM;PL;LGSPEC1
deadlic ADJ;DAT;FEM;SG;LGSPEC1
deadlic ADJ;INS;MASC;PL;LGSPEC2
deadlic ADJ;ACC;FEM;SG;LGSPEC2
gieddian V.PTCP;PRS
gieddian V;NFIN
gieddian V;SBJV;PL;PRS
gieddian V;IMP;PL
gieddian V;IND;SG;1;PRS
gieddian V;SBJV;SG;PRS
gieddian V;IND;SG;3;PST
gieddian V;SBJV;SG;PST
gieddian V;IND;SG;3;PRS
gieddian V.PTCP;PST
gieddian V;IND;SG;2;PST
gieddian V;IND;SG;1;PST
gieddian V.PTCP;PST
gieddian V;IND;PL;PRS
gieddian V;NFIN
gieddian V;SBJV;PL;PST
gieddian V;IMP;PL
gieddian V;IND;SG;2;PRS
gieddian V.PTCP;PRS
gieddian V;SBJV;SG;PRS
gieddian V;IMP;SG
gieddian V;IND;PL;PRS
gieddian V;IND;PL;PST
ladian V;IND;SG;3;PST
ladian V;IND;SG;3;PRS
ladian V;SBJV;PL;PST
ladian V.PTCP;PST
ladian V;NFIN
ladian V;IND;SG;2;PRS
ladian V;SBJV;SG;PRS
ladian V;IND;PL;PST
ladian V;IND;SG;1;PRS
ladian V;SBJV;PL;PRS
ladian V;IMP;PL
ladian V.PTCP;PRS
ladian V;SBJV;SG;PST
ladian V;IND;PL;PRS
ladian V;IND;SG;1;PST
ladian V;IND;SG;2;PST
ladian V;IMP;SG
ladian V;SBJV;PL;PRS
ladian V;IMP;PL
wandian V;SBJV;SG;PST
wandian V;SBJV;PL;PRS
wandian V;IND;SG;2;PST
wandian V.PTCP;PRS
wandian V;NFIN
wandian V;SBJV;SG;PRS
wandian V.PTCP;PST
wandian V;IND;SG;1;PST
wandian V;IMP;SG
wandian V;IMP;PL
wandian V;IND;SG;3;PST
wandian V;IND;PL;PST
wandian V;IND;SG;2;PRS
wandian V;IND;PL;PRS
wandian V;IND;SG;3;PRS
wandian V;IND;SG;1;PRS
wandian V;SBJV;PL;PST
niht N;ACC;SG
niht N;NOM;PL
niht N;GEN;SG
niht N;DAT;SG
niht N;NOM;SG
niht N;DAT;PL
niht N;GEN;PL
niht N;DAT;SG
niht N;ACC;PL
niwe ADJ;GEN;FEM;PL;LGSPEC1
niwe ADJ;DAT;FEM;SG;LGSPEC1
niwe ADJ;INS;NEUT;SG;LGSPEC1
niwe ADJ;NOM;FEM;SG;LGSPEC1
niwe ADJ;ACC;NEUT;PL;LGSPEC2
niwe ADJ;ACC;NEUT;PL;LGSPEC1
niwe ADJ;DAT;NEUT;PL;LGSPEC2
niwe ADJ;GEN;MASC;PL;LGSPEC1
niwe ADJ;GEN;NEUT;PL;LGSPEC1
niwe ADJ;NOM;MASC;SG;LGSPEC1
niwe ADJ;ACC;FEM;PL;LGSPEC2
niwe ADJ;NOM;NEUT;PL;LGSPEC1
niwe ADJ;DAT;NEUT;SG;LGSPEC1
niwe ADJ;ACC;NEUT;SG;LGSPEC2
niwe ADJ;INS;FEM;SG;LGSPEC1
niwe ADJ;DAT;MASC;SG;LGSPEC2
niwe ADJ;INS;FEM;PL;LGSPEC1
niwe ADJ;GEN;FEM;SG;LGSPEC2
niwe ADJ;DAT;MASC;PL;LGSPEC1
niwe ADJ;GEN;MASC;SG;LGSPEC1
niwe ADJ;INS;NEUT;PL;LGSPEC2
niwe ADJ;DAT;NEUT;PL;LGSPEC1
niwe ADJ;GEN;NEUT;PL;LGSPEC2
niwe ADJ;ACC;NEUT;SG;LGSPEC1
niwe ADJ;NOM;MASC;SG;LGSPEC2
niwe ADJ;NOM;NEUT;PL;LGSPEC2
niwe ADJ;GEN;NEUT;SG;LGSPEC2
niwe ADJ;NOM;MASC;PL;LGSPEC1
niwe ADJ;GEN;FEM;SG;LGSPEC1
niwe ADJ;INS;FEM;SG;LGSPEC2
niwe ADJ;NOM;FEM;PL;LGSPEC2
niwe ADJ;INS;MASC;PL;LGSPEC1
niwe ADJ;ACC;FEM;SG;LGSPEC1
niwe ADJ;ACC;FEM;PL;LGSPEC1
niwe ADJ;NOM;FEM;PL;LGSPEC1
niwe ADJ;INS;MASC;SG;LGSPEC2
niwe ADJ;INS;NEUT;PL;LGSPEC1
niwe ADJ;GEN;FEM;PL;LGSPEC2
niwe ADJ;INS;NEUT;SG;LGSPEC2
niwe ADJ;INS;MASC;PL;LGSPEC2
niwe ADJ;DAT;FEM;PL;LGSPEC2
niwe ADJ;ACC;FEM;SG;LGSPEC2
niwe ADJ;DAT;FEM;SG;LGSPEC2
niwe ADJ;DAT;NEUT;SG;LGSPEC2
niwe ADJ;NOM;MASC;PL;LGSPEC2
niwe ADJ;GEN;MASC;PL;LGSPEC1
niwe ADJ;GEN;FEM;PL;LGSPEC1
niwe ADJ;GEN;NEUT;SG;LGSPEC1
niwe ADJ;ACC;MASC;SG;LGSPEC1
niwe ADJ;ACC;MASC;PL;LGSPEC2
niwe ADJ;DAT;MASC;SG;LGSPEC1
niwe ADJ;ACC;NEUT;PL;LGSPEC2
niwe ADJ;INS;FEM;PL;LGSPEC2
niwe ADJ;INS;MASC;SG;LGSPEC1
niwe ADJ;NOM;NEUT;SG;LGSPEC1
niwe ADJ;ACC;MASC;PL;LGSPEC1
niwe ADJ;GEN;MASC;SG;LGSPEC2
niwe ADJ;NOM;NEUT;SG;LGSPEC2
niwe ADJ;DAT;FEM;PL;LGSPEC1
niwe ADJ;DAT;MASC;PL;LGSPEC2
niwe ADJ;NOM;FEM;PL;LGSPEC2
niwe ADJ;ACC;MASC;SG;LGSPEC2
niwe ADJ;NOM;NEUT;PL;LGSPEC2
niwe ADJ;NOM;FEM;SG;LGSPEC2
niwe ADJ;GEN;NEUT;PL;LGSPEC1
niwe ADJ;GEN;MASC;PL;LGSPEC2
feþer N;DAT;PL
feþer N;ACC;PL
feþer N;DAT;SG
feþer N;NOM;PL
feþer N;NOM;SG
feþer N;GEN;PL
feþer N;NOM;PL
feþer N;GEN;SG
feþer N;ACC;SG
feþer N;ACC;PL
maþelian V;IND;SG;2;PRS
maþelian V;IND;PL;PST
maþelian V;SBJV;SG;PST
maþelian V;NFIN
maþelian V;IND;SG;3;PRS
maþelian V;IND;PL;PRS
maþelian V;IND;SG;2;PST
maþelian V;IMP;SG
maþelian V.PTCP;PRS
maþelian V;SBJV;SG;PRS
maþelian V;IMP;PL
maþelian V.PTCP;PST
maþelian V;IND;SG;3;PST
maþelian V;SBJV;PL;PRS
maþelian V;IND;SG;1;PRS
maþelian V;SBJV;PL;PST
maþelian V;IND;SG;1;PST
maþelian V;IMP;PL
maþelian V;IND;SG;1;PRS
maþelian V.PTCP;PRS
fegan V;NFIN
fegan V;IND;SG;3;PRS
fegan V;IND;SG;2;PRS
fegan V.PTCP;PRS
fegan V.PTCP;PST
fegan V;IND;SG;1;PST
fegan V;IND;SG;1;PRS
fegan V;IND;PL;PRS
fegan V;SBJV;PL;PST
fegan V;IND;SG;3;PST
fegan V;SBJV;SG;PST
fegan V;SBJV;PL;PRS
fegan V;SBJV;SG;PRS
fegan V;IMP;SG
fegan V;IND;SG;2;PST
fegan V;IMP;PL
fegan V;IND;PL;PST
ungelic ADJ;NOM;FEM;PL;LGSPEC2
ungelic ADJ;DAT;NEUT;PL;LGSPEC1
ungelic ADJ;NOM;NEUT;PL;LGSPEC1
ungelic ADJ;GEN;NEUT;PL;LGSPEC1
ungelic ADJ;NOM;NEUT;PL;LGSPEC2
ungelic ADJ;NOM;FEM;PL;LGSPEC1
ungelic ADJ;DAT;MASC;PL;LGSPEC1
ungelic ADJ;DAT;MASC;SG;LGSPEC1
ungelic ADJ;DAT;FEM;PL;LGSPEC2
ungelic ADJ;GEN;FEM;PL;LGSPEC1
ungelic ADJ;GEN;NEUT;PL;LGSPEC2
ungelic ADJ;GEN;FEM;SG;LGSPEC2
ungelic ADJ;GEN;NEUT;SG;LGSPEC2
ungelic ADJ;NOM;MASC;SG;LGSPEC1
ungelic ADJ;NOM;MASC;SG;LGSPEC2
ungelic ADJ;NOM;MASC;PL;LGSPEC1
ungelic ADJ;ACC;MASC;SG;LGSPEC2
ungelic ADJ;INS;NEUT;PL;LGSPEC2
ungelic ADJ;ACC;MASC;SG;LGSPEC1
ungelic ADJ;GEN;MASC;SG;LGSPEC2
ungelic ADJ;ACC;MASC;PL;LGSPEC1
ungelic ADJ;NOM;FEM;SG;LGSPEC2
ungelic ADJ;INS;FEM;SG;LGSPEC1
ungelic ADJ;ACC;NEUT;SG;LGSPEC2
ungelic ADJ;INS;MASC;PL;LGSPEC1
ungelic ADJ;ACC;FEM;SG;LGSPEC2
ungelic ADJ;DAT;NEUT;PL;LGSPEC2
ungelic ADJ;NOM;FEM;SG;LGSPEC1
ungelic ADJ;ACC;FEM;PL;LGSPEC1
ungelic ADJ;NOM;MASC;PL;LGSPEC2
ungelic ADJ;DAT;NEUT;SG;LGSPEC2
ungelic ADJ;GEN;MASC;PL;LGSPEC1
ungelic ADJ;GEN;MASC;PL;LGSPEC2
ungelic ADJ;ACC;FEM;PL;LGSPEC2
ungelic ADJ;INS;MASC;PL;LGSPEC2
ungelic ADJ;INS;NEUT;SG;LGSPEC1
ungelic ADJ;DAT;FEM;SG;LGSPEC2
ungelic ADJ;INS;NEUT;SG;LGSPEC2
ungelic ADJ;GEN;MASC;SG;LGSPEC1
ungelic ADJ;INS;FEM;PL;LGSPEC1
ungelic ADJ;ACC;NEUT;PL;LGSPEC2
ungelic ADJ;DAT;MASC;PL;LGSPEC2
ungelic ADJ;NOM;NEUT;SG;LGSPEC2
ungelic ADJ;ACC;FEM;SG;LGSPEC1
ungelic ADJ;INS;MASC;SG;LGSPEC2
ungelic ADJ;DAT;MASC;SG;LGSPEC2
ungelic ADJ;ACC;MASC;PL;LGSPEC2
ungelic ADJ;ACC;FEM;PL;LGSPEC2
ungelic ADJ;INS;FEM;PL;LGSPEC2
ungelic ADJ;INS;FEM;SG;LGSPEC2
ungelic ADJ;DAT;FEM;SG;LGSPEC1
ungelic ADJ;NOM;NEUT;SG;LGSPEC1
ungelic ADJ;ACC;NEUT;PL;LGSPEC2
ungelic ADJ;ACC;NEUT;SG;LGSPEC1
ungelic ADJ;DAT;NEUT;SG;LGSPEC1
ungelic ADJ;INS;MASC;SG;LGSPEC1
ungelic ADJ;ACC;NEUT;PL;LGSPEC1
ungelic ADJ;DAT;FEM;PL;LGSPEC1
ungelic ADJ;GEN;MASC;PL;LGSPEC1
ungelic ADJ;GEN;NEUT;SG;LGSPEC1
ungelic ADJ;INS;NEUT;PL;LGSPEC1
ungelic ADJ;GEN;FEM;PL;LGSPEC2
ungelic ADJ;GEN;FEM;SG;LGSPEC1
clysan V;IND;PL;PRS
clysan V.PTCP;PST
clysan V.PTCP;PRS
clysan V;IND;SG;2;PST
clysan V;IND;SG;1;PST
clysan V;IMP;PL
clysan V;IND;SG;3;PRS
clysan V;IND;SG;1;PRS
clysan V;NFIN
clysan V;IND;PL;PST
clysan V;SBJV;SG;PRS
clysan V;SBJV;PL;PST
clysan V;IND;SG;3;PST
clysan V;SBJV;SG;PST
clysan V;NFIN
clysan V;IMP;SG
clysan V;SBJV;PL;PRS
clysan V;IND;SG;2;PRS
ætren ADJ;DAT;MASC;SG;LGSPEC1
ætren ADJ;DAT;FEM;PL;LGSPEC2
ætren ADJ;DAT;MASC;PL;LGSPEC2
ætren ADJ;INS;FEM;PL;LGSPEC1
ætren ADJ;DAT;NEUT;SG;LGSPEC2
ætren ADJ;NOM;MASC;PL;LGSPEC2
ætren ADJ;GEN;FEM;SG;LGSPEC1
ætren ADJ;GEN;NEUT;PL;LGSPEC1
ætren ADJ;DAT;FEM;PL;LGSPEC1
ætren ADJ;NOM;NEUT;PL;LGSPEC2
ætren ADJ;GEN;MASC;PL;LGSPEC1
ætren ADJ;GEN;FEM;SG;LGSPEC2
ætren ADJ;NOM;FEM;PL;LGSPEC2
ætren ADJ;DAT;FEM;SG;LGSPEC2
ætren ADJ;INS;NEUT;SG;LGSPEC2
ætren ADJ;ACC;FEM;PL;LGSPEC2
ætren ADJ;ACC;MASC;SG;LGSPEC1
ætren ADJ;INS;NEUT;PL;LGSPEC2
ætren ADJ;ACC;NEUT;PL;LGSPEC2
ætren ADJ;GEN;FEM;PL;LGSPEC1
ætren ADJ;DAT;NEUT;PL;LGSPEC2
ætren ADJ;DAT;FEM;SG;LGSPEC1
ætren ADJ;GEN;NEUT;SG;LGSPEC1
ætren ADJ;ACC;MASC;PL;LGSPEC1
ætren ADJ;NOM;FEM;SG;LGSPEC2
ætren ADJ;INS;FEM;SG;LGSPEC2
ætren ADJ;GEN;NEUT;PL;LGSPEC2
ætren ADJ;INS;FEM;SG;LGSPEC1
ætren ADJ;GEN;MASC;SG;LGSPEC1
ætren ADJ;DAT;NEUT;SG;LGSPEC1
ætren ADJ;ACC;MASC;SG;LGSPEC2
ætren ADJ;NOM;NEUT;SG;LGSPEC2
ætren ADJ;ACC;FEM;SG;LGSPEC1
ætren ADJ;INS;MASC;PL;LGSPEC1
ætren ADJ;NOM;FEM;SG;LGSPEC1
ætren ADJ;GEN;NEUT;SG;LGSPEC2
ætren ADJ;ACC;FEM;PL;LGSPEC1
ætren ADJ;ACC;FEM;SG;LGSPEC2
ætren ADJ;NOM;MASC;PL;LGSPEC1
ætren ADJ;ACC;NEUT;PL;LGSPEC1
ætren ADJ;DAT;NEUT;PL;LGSPEC1
ætren ADJ;NOM;MASC;SG;LGSPEC2
ætren ADJ;INS;MASC;PL;LGSPEC2
ætren ADJ;DAT;MASC;PL;LGSPEC1
ætren ADJ;NOM;FEM;PL;LGSPEC1
ætren ADJ;INS;NEUT;PL;LGSPEC1
ætren ADJ;ACC;MASC;PL;LGSPEC2
ætren ADJ;GEN;MASC;SG;LGSPEC2
ætren ADJ;ACC;NEUT;SG;LGSPEC2
ætren ADJ;DAT;MASC;SG;LGSPEC2
ætren ADJ;INS;MASC;SG;LGSPEC2
ætren ADJ;ACC;NEUT;SG;LGSPEC1
ætren ADJ;INS;MASC;SG;LGSPEC1
ætren ADJ;INS;NEUT;SG;LGSPEC1
ætren ADJ;NOM;FEM;PL;LGSPEC2
ætren ADJ;INS;FEM;PL;LGSPEC2
ætren ADJ;NOM;MASC;SG;LGSPEC1
ætren ADJ;GEN;MASC;PL;LGSPEC1
ætren ADJ;NOM;NEUT;SG;LGSPEC1
ætren ADJ;GEN;FEM;PL;LGSPEC2
ætren ADJ;NOM;NEUT;PL;LGSPEC1
ætren ADJ;GEN;MASC;PL;LGSPEC2
handgeweorc N;DAT;PL
handgeweorc N;GEN;PL
handgeweorc N;NOM;PL
handgeweorc N;NOM;SG
handgeweorc N;ACC;PL
handgeweorc N;ACC;SG
handgeweorc N;GEN;SG
handgeweorc N;DAT;SG
æwan V;IND;SG;3;PRS
æwan V;IND;SG;1;PRS
æwan V.PTCP;PRS
æwan V;IND;SG;2;PST
æwan V;IND;SG;1;PST
æwan V;SBJV;SG;PST
æwan V;IMP;SG
æwan V;SBJV;PL;PRS
æwan V;IMP;PL
æwan V.PTCP;PST
æwan V;IND;SG;2;PRS
æwan V;SBJV;SG;PRS
æwan V;IND;PL;PRS
æwan V;SBJV;PL;PST
æwan V;NFIN
æwan V;IND;SG;3;PST
æwan V;IND;PL;PST
wyrcan V;IND;SG;1;PRS
wyrcan V;SBJV;SG;PRS
wyrcan V;IND;SG;2;PST
wyrcan V;NFIN
wyrcan V;IMP;PL
wyrcan V;IND;SG;2;PRS
wyrcan V;IND;PL;PRS
wyrcan V;IND;PL;PST
wyrcan V;SBJV;SG;PST
wyrcan V;IND;SG;3;PRS
wyrcan V;SBJV;PL;PRS
wyrcan V.PTCP;PRS
wyrcan V;SBJV;PL;PST
wyrcan V;IND;SG;3;PST
wyrcan V.PTCP;PST
wyrcan V;NFIN
wyrcan V;IMP;SG
wyrcan V;IND;SG;1;PST
geotan V;IND;SG;1;PST
geotan V;IMP;SG
geotan V;SBJV;PL;PST
geotan V;SBJV;SG;PST
geotan V;IND;SG;1;PRS
geotan V;IND;SG;3;PST
geotan V;IND;PL;PST
geotan V;NFIN
geotan V;SBJV;SG;PRS
geotan V;IND;SG;3;PRS
geotan V.PTCP;PST
geotan V.PTCP;PRS
geotan V;IND;SG;2;PST
geotan V;IND;SG;2;PRS
geotan V;SBJV;PL;PRS
geotan V;IMP;PL
geotan V;IND;PL;PRS
geotan V;NFIN
acumendlic ADJ;INS;FEM;SG;LGSPEC2
acumendlic ADJ;DAT;MASC;SG;LGSPEC2
acumendlic ADJ;NOM;FEM;SG;LGSPEC2
acumendlic ADJ;INS;MASC;PL;LGSPEC1
acumendlic ADJ;ACC;NEUT;SG;LGSPEC2
acumendlic ADJ;ACC;MASC;SG;LGSPEC2
acumendlic ADJ;INS;NEUT;SG;LGSPEC1
acumendlic ADJ;DAT;NEUT;SG;LGSPEC1
acumendlic ADJ;INS;FEM;PL;LGSPEC1
acumendlic ADJ;NOM;MASC;SG;LGSPEC2
acumendlic ADJ;GEN;NEUT;PL;LGSPEC1
acumendlic ADJ;GEN;FEM;PL;LGSPEC1
acumendlic ADJ;ACC;FEM;PL;LGSPEC2
acumendlic ADJ;NOM;FEM;PL;LGSPEC2
acumendlic ADJ;ACC;NEUT;PL;LGSPEC2
acumendlic ADJ;INS;FEM;SG;LGSPEC1
acumendlic ADJ;INS;NEUT;SG;LGSPEC2
acumendlic ADJ;NOM;MASC;PL;LGSPEC2
acumendlic ADJ;ACC;NEUT;SG;LGSPEC1
acumendlic ADJ;DAT;NEUT;PL;LGSPEC2
acumendlic ADJ;GEN;MASC;PL;LGSPEC2
acumendlic ADJ;GEN;NEUT;SG;LGSPEC1
acumendlic ADJ;DAT;FEM;PL;LGSPEC2
acumendlic ADJ;GEN;NEUT;PL;LGSPEC2
acumendlic ADJ;NOM;NEUT;PL;LGSPEC1
acumendlic ADJ;INS;MASC;PL;LGSPEC2
acumendlic ADJ;DAT;FEM;PL;LGSPEC1
acumendlic ADJ;NOM;FEM;PL;LGSPEC1
acumendlic ADJ;GEN;MASC;SG;LGSPEC2
acumendlic ADJ;NOM;MASC;PL;LGSPEC1
acumendlic ADJ;NOM;NEUT;SG;LGSPEC1
acumendlic ADJ;ACC;MASC;PL;LGSPEC2
acumendlic ADJ;GEN;FEM;SG;LGSPEC2
acumendlic ADJ;ACC;NEUT;PL;LGSPEC1
acumendlic ADJ;DAT;NEUT;SG;LGSPEC2
acumendlic ADJ;DAT;MASC;PL;LGSPEC2
acumendlic ADJ;DAT;MASC;SG;LGSPEC1
acumendlic ADJ;INS;NEUT;PL;LGSPEC1
acumendlic ADJ;GEN;MASC;PL;LGSPEC1
acumendlic ADJ;INS;FEM;PL;LGSPEC2
acumendlic ADJ;DAT;MASC;PL;LGSPEC1
acumendlic ADJ;ACC;FEM;SG;LGSPEC2
acumendlic ADJ;GEN;FEM;PL;LGSPEC2
acumendlic ADJ;NOM;NEUT;PL;LGSPEC2
acumendlic ADJ;DAT;FEM;SG;LGSPEC2
acumendlic ADJ;ACC;MASC;PL;LGSPEC1
acumendlic ADJ;GEN;FEM;SG;LGSPEC1
acumendlic ADJ;ACC;FEM;SG;LGSPEC1
acumendlic ADJ;DAT;FEM;SG;LGSPEC1
acumendlic ADJ;NOM;MASC;SG;LGSPEC1
acumendlic ADJ;ACC;FEM;PL;LGSPEC1
acumendlic ADJ;INS;MASC;SG;LGSPEC2
acumendlic ADJ;GEN;MASC;SG;LGSPEC1
acumendlic ADJ;GEN;NEUT;SG;LGSPEC2
acumendlic ADJ;GEN;MASC;PL;LGSPEC1
acumendlic ADJ;NOM;NEUT;SG;LGSPEC2
acumendlic ADJ;DAT;NEUT;PL;LGSPEC1
acumendlic ADJ;INS;NEUT;PL;LGSPEC2
acumendlic ADJ;NOM;NEUT;PL;LGSPEC2
acumendlic ADJ;ACC;MASC;SG;LGSPEC1
acumendlic ADJ;ACC;NEUT;PL;LGSPEC2
acumendlic ADJ;INS;MASC;SG;LGSPEC1
acumendlic ADJ;NOM;FEM;SG;LGSPEC1
eaþe ADJ;DAT;FEM;SG;LGSPEC2
eaþe ADJ;DAT;PL;LGSPEC1
eaþe ADJ;GEN;PL;LGSPEC2
eaþe ADJ;DAT;SG;LGSPEC1
eaþe ADJ;ACC;FEM;PL;LGSPEC2
eaþe ADJ;ACC;NEUT;SG;LGSPEC2
eaþe ADJ;GEN;PL;LGSPEC1
eaþe ADJ;DAT;PL;LGSPEC2
eaþe ADJ;ACC;NEUT;PL;LGSPEC2
eaþe ADJ;NOM;NEUT;PL;LGSPEC2
eaþe ADJ;DAT;NEUT;SG;LGSPEC2
eaþe ADJ;NOM;MASC;SG;LGSPEC2
eaþe ADJ;NOM;FEM;PL;LGSPEC2
eaþe ADJ;NOM;NEUT;SG;LGSPEC1
eaþe ADJ;ACC;PL;LGSPEC1
eaþe ADJ;NOM;PL;LGSPEC1
eaþe ADJ;ACC;MASC;SG;LGSPEC2
eaþe ADJ;GEN;FEM;SG;LGSPEC2
eaþe ADJ;DAT;MASC;SG;LGSPEC2
eaþe ADJ;GEN;NEUT;SG;LGSPEC2
eaþe ADJ;INS;NEUT;SG;LGSPEC2
eaþe ADJ;NOM;MASC;SG;LGSPEC1
eaþe ADJ;GEN;MASC;SG;LGSPEC2
eaþe ADJ;NOM;FEM;SG;LGSPEC1
eaþe ADJ;NOM;NEUT;SG;LGSPEC2
eaþe ADJ;NOM;MASC;PL;LGSPEC2
eaþe ADJ;ACC;FEM;SG;LGSPEC2
eaþe ADJ;INS;MASC;SG;LGSPEC2
eaþe ADJ;GEN;SG;LGSPEC1
eaþe ADJ;ACC;MASC;PL;LGSPEC2
eaþe ADJ;ACC;NEUT;SG;LGSPEC1
eaþe ADJ;NOM;FEM;SG;LGSPEC2
eaþe ADJ;ACC;FEM;SG;LGSPEC1
eaþe ADJ;ACC;MASC;SG;LGSPEC1
brucan V;SBJV;PL;PST
brucan V;IMP;PL
brucan V;IND;PL;PST
brucan V.PTCP;PRS
brucan V;IMP;SG
brucan V;NFIN
brucan V;SBJV;PL;PRS
brucan V;IND;SG;3;PRS
brucan V;IND;SG;3;PST
brucan V;IND;SG;2;PRS
brucan V;IND;PL;PRS
brucan V;IND;SG;1;PRS
brucan V;SBJV;SG;PST
brucan V;SBJV;SG;PRS
brucan V.PTCP;PST
brucan V;NFIN
brucan V;IND;SG;1;PST
brucan V;IND;SG;2;PST
wucu N;ACC;PL
wucu N;GEN;SG
wucu N;DAT;SG
wucu N;GEN;PL
wucu N;NOM;SG
wucu N;NOM;PL
wucu N;ACC;SG
wucu N;NOM;PL
wucu N;DAT;PL
healsgebedda N;GEN;PL
healsgebedda N;NOM;PL
healsgebedda N;ACC;PL
healsgebedda N;ACC;SG
healsgebedda N;GEN;SG
healsgebedda N;DAT;SG
healsgebedda N;NOM;SG
healsgebedda N;DAT;PL
rod N;GEN;SG
rod N;ACC;PL
rod N;NOM;PL
rod N;DAT;PL
rod N;DAT;SG
rod N;NOM;SG
rod N;ACC;SG
rod N;GEN;PL
nift N;GEN;SG
nift N;NOM;PL
nift N;ACC;SG
nift N;ACC;PL
nift N;DAT;SG
nift N;DAT;PL
nift N;NOM;PL
nift N;NOM;SG
nift N;GEN;PL
ealdfæder N;DAT;SG
ealdfæder N;GEN;PL
ealdfæder N;GEN;SG
ealdfæder N;DAT;PL
ealdfæder N;ACC;SG
ealdfæder N;NOM;SG
ealdfæder N;ACC;PL
ealdfæder N;NOM;PL
sprecol ADJ;INS;MASC;PL;LGSPEC2
sprecol ADJ;DAT;MASC;SG;LGSPEC2
sprecol ADJ;ACC;FEM;PL;LGSPEC2
sprecol ADJ;ACC;MASC;PL;LGSPEC1
sprecol ADJ;NOM;FEM;PL;LGSPEC1
sprecol ADJ;NOM;MASC;SG;LGSPEC1
sprecol ADJ;DAT;FEM;PL;LGSPEC2
sprecol ADJ;NOM;FEM;SG;LGSPEC1
sprecol ADJ;NOM;NEUT;PL;LGSPEC2
sprecol ADJ;GEN;MASC;SG;LGSPEC2
sprecol ADJ;NOM;MASC;SG;LGSPEC2
sprecol ADJ;ACC;MASC;SG;LGSPEC1
sprecol ADJ;GEN;NEUT;PL;LGSPEC1
sprecol ADJ;DAT;NEUT;SG;LGSPEC1
sprecol ADJ;INS;MASC;SG;LGSPEC1
sprecol ADJ;INS;FEM;SG;LGSPEC2
sprecol ADJ;ACC;NEUT;PL;LGSPEC2
sprecol ADJ;GEN;FEM;PL;LGSPEC1
sprecol ADJ;GEN;MASC;SG;LGSPEC1
sprecol ADJ;NOM;NEUT;SG;LGSPEC2
sprecol ADJ;DAT;NEUT;SG;LGSPEC2
sprecol ADJ;NOM;MASC;PL;LGSPEC1
sprecol ADJ;INS;NEUT;PL;LGSPEC1
sprecol ADJ;NOM;MASC;PL;LGSPEC2
sprecol ADJ;DAT;FEM;SG;LGSPEC2
sprecol ADJ;ACC;MASC;SG;LGSPEC2
sprecol ADJ;INS;FEM;PL;LGSPEC1
sprecol ADJ;ACC;FEM;SG;LGSPEC1
sprecol ADJ;ACC;MASC;PL;LGSPEC2
sprecol ADJ;GEN;FEM;SG;LGSPEC1
sprecol ADJ;INS;NEUT;PL;LGSPEC2
sprecol ADJ;NOM;FEM;SG;LGSPEC2
sprecol ADJ;GEN;MASC;PL;LGSPEC1
sprecol ADJ;DAT;FEM;PL;LGSPEC1
sprecol ADJ;INS;NEUT;SG;LGSPEC2
sprecol ADJ;INS;MASC;SG;LGSPEC2
sprecol ADJ;INS;MASC;PL;LGSPEC1
sprecol ADJ;DAT;NEUT;PL;LGSPEC2
sprecol ADJ;INS;FEM;PL;LGSPEC2
sprecol ADJ;GEN;NEUT;SG;LGSPEC1
sprecol ADJ;ACC;NEUT;SG;LGSPEC1
sprecol ADJ;ACC;NEUT;SG;LGSPEC2
sprecol ADJ;GEN;FEM;PL;LGSPEC2
sprecol ADJ;ACC;FEM;PL;LGSPEC1
sprecol ADJ;DAT;MASC;PL;LGSPEC1
sprecol ADJ;GEN;NEUT;PL;LGSPEC2
sprecol ADJ;GEN;MASC;PL;LGSPEC1
sprecol ADJ;NOM;NEUT;PL;LGSPEC1
sprecol ADJ;ACC;NEUT;PL;LGSPEC1
sprecol ADJ;GEN;MASC;PL;LGSPEC2
sprecol ADJ;INS;FEM;SG;LGSPEC1
sprecol ADJ;NOM;FEM;PL;LGSPEC2
sprecol ADJ;GEN;FEM;SG;LGSPEC2
sprecol ADJ;ACC;FEM;SG;LGSPEC2
sprecol ADJ;DAT;FEM;SG;LGSPEC1
sprecol ADJ;NOM;NEUT;SG;LGSPEC1
sprecol ADJ;DAT;MASC;SG;LGSPEC1
sprecol ADJ;DAT;NEUT;PL;LGSPEC1
sprecol ADJ;GEN;NEUT;SG;LGSPEC2
sprecol ADJ;DAT;MASC;PL;LGSPEC2
sprecol ADJ;INS;NEUT;SG;LGSPEC1
macian V;SBJV;SG;PST
macian V.PTCP;PRS
macian V;IND;PL;PRS
macian V;IND;SG;1;PRS
macian V;SBJV;SG;PRS
macian V;IMP;PL
macian V;IND;SG;1;PST
macian V;SBJV;PL;PRS
macian V;IND;PL;PST
macian V.PTCP;PST
macian V;IMP;SG
macian V;NFIN
macian V;IND;SG;2;PST
macian V;IND;SG;3;PST
macian V;IND;SG;3;PRS
macian V;IND;SG;2;PRS
macian V;NFIN
macian V;SBJV;SG;PRS
macian V;IMP;PL
macian V.PTCP;PST
macian V;SBJV;PL;PST
onfon V;IND;SG;3;PRS
onfon V;NFIN
onfon V;SBJV;PL;PST
onfon V;IMP;PL
onfon V;IND;PL;PST
onfon V;IND;SG;1;PRS
onfon V;IND;PL;PRS
onfon V;SBJV;PL;PRS
onfon V.PTCP;PST
onfon V;IND;SG;3;PST
onfon V;IND;SG;2;PST
onfon V;SBJV;SG;PRS
onfon V;SBJV;SG;PST
onfon V;IND;SG;2;PRS
onfon V;IND;SG;1;PST
onfon V.PTCP;PST
onfon V;IMP;SG
gespelia N;DAT;SG
gespelia N;GEN;PL
gespelia N;ACC;SG
gespelia N;NOM;SG
gespelia N;ACC;PL
gespelia N;NOM;PL
gespelia N;DAT;PL
gespelia N;GEN;SG
|
692367871563cd68ad199aaf5eba815b3f0ea9a9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH16/EX16.14/14.sce | 849651c64fd3532f59977dd5172f66ab5365c8ec | [] | 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 | 232 | sce | 14.sce | clc
R=287; //J/kg K
y=1.4;
p_atm=100; //kN/m^2
p1=284+p_atm; //kN/m^2
T1=297; //K
D=0.02; //m
A2=%pi/4*D^2;
rho_1=p1*10^3/R/T1;
m_max=0.685*A2*sqrt(p1*10^3*rho_1);
disp("Maximum flow rate =")
disp(m_max)
disp("kg/s") |
fdb7e9ebe626ae06b23f3a64f466e1521093707f | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0019.tst | bdc5f86ebf491db948fe190d0447088d1e516a90 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 402 | tst | 0019.tst | spLiTtEr y {}
fIlter Gt { a8:aE:d5:dA:df:CC
>= fE:7B5e::aB:4F:Af:159.224.4.241 OR bitAnd ( ) nOt BITAND ( D, ) or 253.0.3.254/63 >= 7 or ::Cb:acDe:d5:Bb:cD:cC:F/6 = h OR H ( -7.e86, ) oR 252.0.204.252 >> Jp }
FIlter Bxk {C }
KR -> ZAYin
GroUPEr WNRQrP {MODuLE r{ } AGGrEgatE Min(z.a) aS N ,D.w }
uNGROUPeR Q { }
groupfIlTER IRRY {NOt BITand ( ) OR biTor () }
merGer NF { ExporT g } |
4dff078ad0d91648854df1d90703cb1bcce081ad | 449d555969bfd7befe906877abab098c6e63a0e8 | /3875/CH10/EX10.24/10_24.sce | 2334824a09e7b86470379e3e6b71f699d52d3919 | [] | 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 | 507 | sce | 10_24.sce | clc;
clear;
KE=0.04*1.6*10^-19 //energy in J
m=1.675*10^-27 //mass of neutron in kg
h=6.63*10^-34 //Plancks constant in J-s
c=3*10^8 //velocity of light in m/s
//calculation
lambda=(h/sqrt(2*m*KE))/10^-9
mprintf("The de-Broglie wavelength is = %1.3f nm\n",lambda)
v_g=h/(lambda*10^-9*m)
mprintf("The group velocity is = %1.2e m/s\n",v_g)
v_p=(c^2)/v_g
mprintf("The phase velocity is = %1.2e m/s\n",v_p)
E=(h*c)/(lambda*10^-9)
mprintf("The energy of the nuetron is = %1.2e J or 8.69 keV",E)
|
bebc213c4f5344c69fdc4a05f6e181ccf2a62963 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2789/CH9/EX9.9/Ex9_9.sce | cff2ffda0312dff89706d2189aeb14ec6a48df86 | [] | 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 | 375 | sce | Ex9_9.sce | clear;
clc;
//page no. 302
p = 14.7;//psia
T = 60;// degreeF
l = 2000;//ft
b = 18;//in
h = 12;// in
v = 10;// fps
R_h = (b*h)/(2*12*(b+h));
Re = v*4*R_h*0.0763/(32.2*0.000000375);
f = 0.019;
h_L = f*(l/(4*R_h))*v^2 /(2*32.2);
del_p = 0.0763*h_L;
printf('loss of head = %.1f ft of air\n and the pressure drop = %.2f psf = %.3f psi',h_L,del_p,del_p*0.0069);
|
96d0ae06e0fc0414f42870d304315d59242e2448 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH3/EX3.6/Ex3_6.sce | a427ae48b7ff913a2d496e9a2b087dee11f05204 | [] | 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 | 528 | sce | Ex3_6.sce | // Example 3_6
clc;funcprot(0);
// Given data
T_1=20;// °C
T_2=100;// °C
p_1=0.100;// MPa
p_2=1.00;// MPa
rho=515;// kg/m^3
c=1.76;// kJ/kg.K.
// Solution
deltau=c*((T_2+273.15)-(T_1+273.15));// The change in specific internal energy in kJ/kg
v=1/rho;// The specific volume in m^3/kg
deltah=deltau+(v*((p_2*10^3)-(p_1*10^3)));// The change in specific enthalpy in kJ/kg
printf('\nThe change in specific internal energy,u_2-u_1=%3.0f kJ/kg \nThe change in specific enthalpy,h_2-h_1=%3.0f kJ/kg',deltau,deltah);
|
6098c280d5c9c6ead4ac88bf97ea6f696abcb8eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH14/EX14.4/Ex14_4.sce | dc1d6904737089e9d111c0a5bfb74bbc8311d085 | [] | 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 | 384 | sce | Ex14_4.sce | //Example 14.4//
a0=1.0;//m^3 // composite
d=a0-a
mprintf("d= %f m^3",d)
pA=2.70;//Mg/m^3 //density of aluminium (at 20degree C)
a1=3.97;//Mg/m^3 //density of Al2O3
a=0.1;//m^3 //meter //For 1m^3 we shall have 0.1m^3 of Al2O3
ma=a1*a
mprintf("\nma = %f Mg",ma)
b=0.9;//m^3 //cubic meter
ma1=pA*b
mprintf("\nma1 = %f Mg",ma1)
pc=(ma+ma1)
mprintf("\npc = %f Mg/m^3",pc)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.