blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0c3008780130d85e861726a4930fa98f349c93b1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH9/EX9.2/ex9_2.sce | e3f23b40ccb8343bdb5cd80aca4a70ca02123c1d | [] | 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 | ex9_2.sce | //Determine the output impedance of the transistor
clear;
clc;
//soltion
//given
TR=16/1; //turn ratio
Rl=4;//ohm //loudspeaker impedance
ro=(TR^2)*Rl;
printf("The output impedance of the transistor %.0f Ω",ro);
|
4af00d157e551112d8f28b2233b0f34cc08c0b94 | 484e05962b62928b49ae2e8fd80d4c45031eb3dc | /cfx/cfx.tst | 70f4fc2b1ab5ff90c8e748815a2102bd14c7b436 | [] | no_license | Royallle/hdl_cfx | adbb9dce7e3ae69507a4c1b26cddbd3b3a9eb0dc | 52cbe66f365516b659b65909e86aacb60da0342b | refs/heads/master | 2022-02-24T06:54:22.169423 | 2019-09-15T15:29:35 | 2019-09-15T15:29:35 | 110,464,895 | 0 | 0 | null | 2017-11-14T13:40:42 | 2017-11-12T20:05:58 | Scilab | UTF-8 | Scilab | false | false | 553 | tst | cfx.tst | // Script de teste do circuito Principal
load cfx.hdl,
output-file cfx.out,
compare-to cfx.cmp,
output-list x%B1.5.1 y%B1.5.1 nx%B2.1.2 ny%B2.1.2 px%B2.1.2 py%B2.1.2 zx%B2.1.2 zy%B2.1.2 eq%B2.1.2 si%B2.1.2 outsum%B1.5.1 outsub%B1.5.1 outsix%B1.5.1 overflow%B2.5.2;
set x %B00000, // x=0 y=0
set y %B00000,
eval,
output;
set x %B00011, // x=3 y=2
set y %B00010,
eval,
output;
set x %B00101, // x=5 y=-5
set y %B11011,
eval,
output;
set x %B01000, // x=8 y=8
set y %B01000,
eval,
output;
set x %B10110, // x=-10 y=-5
set y %B11011,
eval,
output;
|
6eb8450624b47a209444f73ae4df438a2a1bf2a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH8/EX8.8.50a/Ch8_8_50a.sce | f09a387fc5c6d6ae671383222f7afe3aaadb4876 | [] | 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 | 354 | sce | Ch8_8_50a.sce | clc
clear
disp("Example 8.50a")
printf("\n")
disp("Construct the Truth Table for logic expression")
disp("AB1+C1")
A=[0 0 0 0 1 1 1 1]
B=[0 0 1 1 0 0 1 1]
C=[0 1 0 1 0 1 0 1]
for i=1:length(A)
f(i)=(A(i)*(~(B(i))))+(~C(i))
if(f(i)==2)
f(i)=1
end
end
printf("truth table =%d%d%d%d%d%d%d%d",f(1),f(2),f(3),f(4),f(5),f(6),f(7),f(8)) |
243053750d11118e4f207952895bd1b8e4268442 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH5/EX5.10/5_10.sce | 977385af40e368c55706546ae030cf5dc96ff557 | [] | 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 | 833 | sce | 5_10.sce | clear; clc; close;
Vcc = 12;
Vbe = 0.7;
Vt = 26*(10^(-3));
Re = 3.3*(10^(3));
Rb = 220*(10^(3));
ro = %inf;
Beta = 100;
disp("For ro=infinity the values are:-");
Ib = (Vcc-Vbe)/(Rb+(Beta+1)*Re);
Ie = (Beta+1)*Ib;
re = Vt/Ie;
disp(re,"Value of diode resistive element is(in ohms) :");
Zb = (Beta*re) + ((Beta+1)*Re);
Zi = (Rb*Zb)/(Rb+Zb);
disp(Zi,"Input Impedance(ohms) :");
Zo = (Re*re)/(Re+re);
disp(Zo,"Output Impedance(ohms) :");
Av = Re/(Re+re);
disp(Av,"Voltage gain :");
disp("For ro=25kohm the values are :-")
ro_2 = 25*(10^(3));
Zb_2 = (Beta*re) + ((Beta+1)*Re)/(1+(Re/ro_2));
Zi_2 = (Rb*Zb_2)/(Rb+Zb_2);
disp(Zi_2,"Input Impedance(ohms) :");
Zo_2 = (Re*re)/(Re+re);
disp(Zo_2,"Output Impedance(ohms) :");
Av_2 = (((Beta+1)*Re)/Zb_2)/(1+(Re/ro_2));
disp(Av_2,"Voltage gain :");
|
7921b984387be79b6654e23ce64b2113d666cadd | 449d555969bfd7befe906877abab098c6e63a0e8 | /1445/CH7/EX7.24/ch7_ex_24.sce | 46b03988a224e7fdc51504f748330fb0e7a84fba | [] | 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 | 847 | sce | ch7_ex_24.sce | //CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 24
disp("CHAPTER 7");
disp("EXAMPLE 24");
//VARIABLE INITIALIZATION
va=10000;
v1=2500; //primary voltage in Volts
v2=250; //secondary voltage in Volts
R1=4.8;
X1=11.2;
R2=0.048;
X2=0.112;
//SOLUTION
//
R_dash_2=R2*(v1/v2)^2;
R_e1=R1+R_dash_2;
X_dash_2=X2*(v1/v2)^2;
X_e1=X1+X_dash_2;
//
R_dash_1=R1*(v2/v1)^2;
R_e2=R2+R_dash_1;
X_dash_1=X1*(v2/v1)^2;
X_e2=X2+X_dash_1;
//leakage impedence
z0=R_e2+X_e2*%i;
//applied load
Zl=5+3.5*%i;
//total impedence in series
Z=z0+Zl;
magZ=sqrt(real(Z)^2+imag(Z)^2);
magZl=sqrt(real(Zl)^2+imag(Zl)^2);
I2=v2/magZ;
V2=I2*magZl
disp("SOLUTION (a)");
disp(sprintf("The secondary terminal voltage is %f V",V2));
//
//part (b) of the problem cannot be solved mathematically alone.
disp(" ");
//
//END
|
09d85beba5578bf02596768bb51bef8e41349530 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH13/EX13.5/example5_sce.sce | 8459b4d532691a753c81451c226d5c45f2b0b954 | [] | 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 | 192 | sce | example5_sce.sce | //chapter 13
//example 13.5
//page 558
printf("\n")
printf("given")
Rf2=220;R4=3.9*10^3;Acl=75;f=100;
Rf1=(Acl-1)*Rf2
Xc2=Rf2;
C2=1/(2*3.14*f*Rf2)
Xcf1=Rf1/100;
Cf1=1/(2*3.14*f*Xcf1) |
1609bb592a1f9b7618f5eeb5cc64ce048f084194 | bce0c755bfdc527c8cc0737e8e1e59467267cff9 | /macros/graycoprops.sci | ae4b00223c84f96814ce90ecc7448e738175252d | [] | no_license | shubham0108/FOSSEE-Image-Processing-Toolbox | bacc26e6c7139383a374ea16f6c62565a7ff0603 | 68cddb2ca8dabddfe47251ac6647011acb849a2c | refs/heads/master | 2021-06-16T02:27:39.886532 | 2020-05-01T09:23:39 | 2020-05-01T09:23:39 | 97,078,162 | 0 | 0 | null | 2017-07-13T03:57:21 | 2017-07-13T03:57:21 | null | UTF-8 | Scilab | false | false | 2,867 | sci | graycoprops.sci | // Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
// Author: Nihar Rao
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function[stats] = graycoprops(srcImg, varargin)
// This function computes the Properties of gray-level co-occurrence matrix.
//
// Calling Sequence
// z=imread("lena.jpeg"); //in grayscale or color
// //Note: z can be a image or simply a Matrix.
// gray=graycoprops(z) //get all 4 properties
// gray=graycoprops(z,"contrast") //compute only contrast
// gray=graycoprops(z,["contrast" "energy"]) //compute contrast and energy.the properties can be passed in any order
// gray=graycoprops(z,["contrast" "correlation" "energy"])
// gray=graycoprops(z,["contrast" "correlation" "energy" "homogeneity"])
//
// Parameters
//
// gray: A struct containing all the parameters
// z: A image or a matrix
// contrast: a measure of the intensity contrast between a pixel and its neighbor over the whole image.
// energy: the sum of squared elements
// homogeneity: a value that measures the closeness of the distribution of elements.
// correlation:a measure of how correlated a pixel is to its neighbor over the whole image
//
// Description
// This function computes the Properties of gray-level co-occurrence matrix.The properties being "correlation","contrast","energy" and "homogeneity".
//
//
// Examples
// //compute for a image
// z=imread("lena.jpeg",0);
// sss=graycoprops(z,["contrast"])
//
// //compute for a matrix
// glcm = [0 1 2 3;1 1 2 3;1 0 2 0;0 0 0 3]
// sss=graycoprops(glcm,["contrast" "energy" "correlation"])
[lhs, rhs] = argn(0)
srcMat = mattolist(srcImg)
select rhs
case 1 then
[contrast correlation energy homo] = raw_graycoprops(srcMat);
stats=struct('Contrast',contrast,'Correlation',correlation,'Energy',energy,'Homogeniety',homo);
case 2 then
[rows cols]=size(varargin(1));
n=rows*cols;
if n>4
error(msprintf("the string matrix must have maximimum of 4 entries"));
end
inputString=varargin(1);
if n==1
[out]=raw_graycoprops(srcMat,varargin(1));
stats=struct(inputString(1),out);
elseif n==2
[out out1]=raw_graycoprops(srcMat,varargin(1));
stats=struct(inputString(1),out,inputString(2),out1);
elseif n==3
[out out1 out2]=raw_graycoprops(srcMat,varargin(1));
stats=struct(inputString(1),out,inputString(2),out1,inputString(3),out2);
elseif n==4
[out out1 out2 out3]=raw_graycoprops(srcMat,varargin(1));
stats=struct(inputString(1),out,inputString(2),out1,inputString(3),out2,inputString(4),out3);
end
end
endfunction
|
ffec61cf677477955b66d5224519db7fc5ad863a | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/StereoPictures/StereoPictures.SCI | dd608e76bee6b84d9db48b0e473422ba639df0ad | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 12,344 | sci | StereoPictures.SCI |
codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
codeblock readtextfile(ScriptFilePath+"\_StereoPicTools.sci");
###############################################################################################
# GENERAL SETTINGS
###############################################################################################
ycount=ReadSetting("StereoBrowserRows",3);
currentfolder=DataDir+"\StereoPictures";
###############################################################################################
# SHOW ZOOMED IMAGE FUNCTION AND RENDER LOOP
###############################################################################################
function CreateStereoPair(info,bmp) {
pair=map;
if info.tpe=='side' then {
pair.xr=bmp.xres/2;
pair.yr=bmp.yres;
pair.bmp1=bmp.crop(0,0,pair.xr,pair.yr);
pair.bmp2=bmp.crop(pair.xr,0,pair.xr,pair.yr);
}
if info.tpe=='anaglyph' then {
pair.xr=bmp.xres;
pair.yr=bmp.yres;
pair.bmp1=bmp.ConvertGray(1);
pair.bmp2=bmp.ConvertGray(3);
}
return(pair);
}
function loadimage(picname)
{
info=GetPicInfo(currentfolder,picname);
bmp=loadbitmap(currentfolder+"\"+picname+".jpg");
pair=CreateStereoPair(info,bmp);
frx=vp.aspectratio/pair.xr;
fry=1/pair.yr;
fr=min(frx,fry);
fr=fr*2*tan(vp.Aperture/2);
imageframe=sss.Universe.addsubframe("ImageFrame");
tx1=imageframe.CreateBitmapTexture("tx1",pair.bmp1);
tx2=imageframe.CreateBitmapTexture("tx2",pair.bmp2);
sizex=fr*pair.xr;
sizey=fr*pair.yr;
b=imageframe.add("Rectangle","Axis1":vector(sizex,0,0),"Axis2":vector(0,sizey,0),
"position":point(-0.5*sizex,-0.5*sizey,-0.0001),"EnableLight":false,
"Texture":tx1.name,
"TextureRight":tx2.name,
"color":info.col);
return(b);
}
function showimage(picnr)
{
#init
backup_camerapos=vp.camerapos;
thumbnailsframe.visible=false;
vp.CameraPos=point(0,0,1);
vp.EnableUserStop=false;
b=loadimage(thumbframes(picnr).name);
b.DepthMask=DepthMaskDisable;
fadein(0.5);
finished=false;
while not(finished) do {
render;
navmove=min(NavigationMove.x,2*NavigationRotate.y);
navmove=min(navmove,-1*NavigationMove.y);
navmove=min(navmove,2*NavigationRotate.x);
if (UIIsKeyDown("left")) or (UIIsKeyDown("up")) or (JoystickRockerPos(0)==270) or (navmove<-0.005) then
if picnr>0 then {#show previous image
picnr=picnr-1;
fadeout(0.15);
sss.Universe.imageframe.dispose;
b=loadimage(thumbframes(picnr).name);
b.DepthMask=DepthMaskDisable;
fadein(0.25);
}
navmove=max(NavigationMove.x,2*NavigationRotate.y);
navmove=max(navmove,-1*NavigationMove.y);
navmove=max(navmove,2*NavigationRotate.x);
if (UIIsKeyDown("right")) or (UIIsKeyDown("down")) or (JoystickRockerPos(0)==90) or
UIIsKeyDown("return") or (LeftMouseClicked) or NavigatorPressing or (navmove>0.005) then {
if picnr<thumbframes.size-1 then {#show next image
picnr=picnr+1;
fadeout(0.15);
sss.Universe.imageframe.dispose;
b=loadimage(thumbframes(picnr).name);
b.DepthMask=DepthMaskDisable;
fadein(0.25);
}
else finished=true;
}
if UIIsKeyDown("escape") or RightMouseClicked or NavigatorPulling
or JoystickButtonClicked(0,4) or JoystickButtonClicked(0,6) then finished=true;
}
#finalise
fadeout(0.5);
sss.Universe.imageframe.dispose;
vp.camerapos=backup_camerapos;
thumbnailsframe.visible=true;
vp.EnableUserStop=true;
return(picnr);
}
###############################################################################################
# INIT SCENE AND VIEWPORT
###############################################################################################
sf=T_scene_create;
sss=T_getscene;
vp=T_getviewport;
vp.CameraPos=point(0,0,1);
vp.CameraDir=vector(0,0,-1);
vp.FocalDistance=1;
vp.NearClipPlane=0.1;
vp.FarClipPlane=20;
vp.enableusernavigation=true;
vp.EnableUserStop=true;
###############################################################################################
# Create directory browse menu
###############################################################################################
currentfolder="";
if isdefined(ScriptArgument) then
if ScriptArgument.Length>0 then
currentfolder=ScriptArgument;
if currentfolder.length<=0 then {
menu=T_createmenu("Select stereo pictures folder",true);
menu.sizex=0.35;
menu.Color=color(1,1,1,1);
root.SC.Universe.MenuFrame.Color=color(1,1,1,1);
root.mousedampingfactor=0.25;
root.SC.Universe.MenuFrame.EnabeMouseArrow(point(0.5,0.5),point(0,0),point(1,1),0.03);
vp.ShowControls=true;
startfolderinfo=map;
startfolderinfo.Folder=ReadSetting("StereoFolder","");
if startfolderinfo.Folder=="" then startfolderinfo.Folder=DataDir+"\StereoPictures";
startfolderinfo.Name="Stereo pictures";
startfolderinfo.Parent="";
startfolderinfo.Level=-1;
todofolderlist=list(startfolderinfo);
while todofolderlist.size>0 do {
currentfolderinfo=todofolderlist(todofolderlist.size-1);
todofolderlist.del(todofolderlist.size-1);
#put subfolders in the todo stack
folderlist=GetFileList(currentfolderinfo.Folder+"\*.*",true);
folderlist.Invert;
foreach subfolder in folderlist do
if (subfolder!=".") and (subfolder!="..") then {
subfolderinfo=map;
subfolderinfo.Folder=currentfolderinfo.Folder+"\"+subfolder;
subfolderinfo.Name=Deref(subfolder);
subfolderinfo.Parent=currentfolderinfo.Folder;
subfolderinfo.Level=currentfolderinfo.Level+1;
todofolderlist.add(subfolderinfo);
}
if currentfolderinfo.Level>=0 then {
pindex="";
if currentfolderinfo.Level>0 then pindex=currentfolderinfo.Parent;
menu.Add(pindex,currentfolderinfo.Name,currentfolderinfo.folder);
}
}
T_menu_appendclose;
menufinished=false;
while not(menufinished) do {
if menu.WasModified then {
menufinished=true;
currentfolder=menu.SelectID;
}
render;
}
if menu.SelectID=="[Close]" then stop;
T_delmenu;
}
vp.enableusernavigation=false;
root.mousedampingfactor=0.85;
###############################################################################################
# LOAD THUMBNAILS
###############################################################################################
rendermessage(translate("Loading thumbnails"));
thbsize=0.99*2*tan(vp.Aperture/2)/(ycount+0);
thbsize2=0.9*thbsize;
thumbnailsframe=sss.Universe.addsubframe("ThumbnailsFrame");
columnframes=list;
thumbframes=list;
piclist0=GetFileList(currentfolder+"\*.jpg");
piclist=List;
foreach picfile in piclist0 do {
picname=picfile;picname.invert;picname.split(".");picname.invert;
if (picname.substring(picname.length-2,picname.length)!='_R') and (picname.substring(picname.length-2,picname.length)!='_L') then
piclist.add(picname);
}
xps=-1;
yps=9999;
maxposx=0;
createvar(columnframe);
foreach picname in piclist do {
yps=yps+1;
if yps>=ycount then {
xps=xps+1;
yps=0;
columnframe=thumbnailsframe.addsubframe(str(xps));columnframes.add(columnframe);
columnframe.transf.origin=point(xps*thbsize,0);
maxposx=max(maxposx,columnframe.transf.origin.x);
}
thumbframe=columnframe.addsubframe(picname);thumbframes.add(thumbframe);
thumbframe.transf.origin=point(0,-1*(yps-ycount/2+0.5)*thbsize);
thumbfilename=currentfolder+"\"+picname+".THB";
info=GetPicInfo(currentfolder,picname);
if not(fileispresent(thumbfilename)) then {
thumbfilename=datadir+"\textures\questionstereo.jpg";
info.tpe='side';
info.col=color(1,1,1);
}
bmpthumbnail=LoadBitmap(thumbfilename);
pair=CreateStereoPair(info,bmpthumbnail);
tx1=thumbframe.CreateBitmapTexture("tx1",pair.bmp1);
tx2=thumbframe.CreateBitmapTexture("tx2",pair.bmp2);
fr=thbsize2/max(pair.xr,pair.yr*1.1);
thbsizex=pair.xr*fr;
thbsizey=pair.yr*fr;
thumbframe.add("Rectangle","Axis1":vector(thbsizex,0,0),"Axis2":vector(0,thbsizey,0),
"position":point(-0.5*thbsizex,-0.5*thbsizey+0.02*thbsize,-0.0001),
"Texture":tx1.name,"TextureRight":tx2.name,"EnableLight":false,"Color":info.col
);
txt=thumbframe.add("Text3D","Content":picname,"Color":color(0.5,0.5,0.5),"EnableLight":false,
"UnitX":vector(thbsize/15,0,0),"UnitY":vector(0,thbsize/15,0));
txt.position=point(-0.5*txt.GetSizeX*thbsize/15,-0.45*thbsize,0);
}
#create selector frame
selframe=thumbnailsframe.addsubframe("selframe");
selframe.transf.origin=point(columnframes(0).transf.origin.x,thumbframes(0).transf.origin.y,0);
cv=selframe.add("Curve","Color":color(0.75,0.25,0.0),"Size":2);
cv.addpoint(point(-0.5*thbsize,-0.5*thbsize));
cv.addpoint(point( 0.5*thbsize,-0.5*thbsize));
cv.addpoint(point( 0.5*thbsize, 0.5*thbsize));
cv.addpoint(point(-0.5*thbsize, 0.5*thbsize));
cv.addpoint(point(-0.5*thbsize,-0.5*thbsize));
hiderendermessage;
###############################################################################################
# RENDER LOOP FOR THUMBNAIL BROWSING
###############################################################################################
function applydistwarping()
{
foreach column in columnframes do {
xx=column.transf.origin.x;
zz=-0.37*sqr(xx-vp.camerapos.x);
column.transf.origin=point(xx,column.transf.origin.y,zz);
column.visible=zz>-2;
}
}
selx=0;
sely=0;
selpsx=0;
selpsy=0;
firstrender=true;
while true do {
#Horizontal movement check
vl=0;
vl=40*(NavigationMove.x+2*NavigationRotate.y);
if UIGetAxisActive(UIAxisX,UIAxisLevel2) then vl=UIGetAxisPos(UIAxisX,UIAxisLevel2);
if UIGetAxisActive(UIAxisX,UIAxisLevel0) then vl=UIGetAxisPos(UIAxisX,UIAxisLevel0);
if abs(vl)>0.0001 then {
selpsx=selpsx+0.02*vl;
if selpsx<0 then selpsx=0;
if selpsx>maxposx then selpsx=maxposx;
vp.camerapos.x=selpsx;
newselx=round(vp.camerapos.x/thbsize);
if newselx!=selx then {
selpicnr=sely+ycount*newselx;
if (selpicnr>=0) and (selpicnr<thumbframes.size) then {
selframe.transf.origin=point(columnframes(newselx).transf.origin.x,selframe.transf.origin.y,selframe.transf.origin.z);
selx=newselx;
}
}
}
#Vertical movement check
vl=0;
vl=40*(NavigationMove.y-2*NavigationRotate.x);
if UIGetAxisActive(UIAxisY,UIAxisLevel2) then vl=UIGetAxisPos(UIAxisY,UIAxisLevel2);
if UIGetAxisActive(UIAxisY,UIAxisLevel0) then vl=UIGetAxisPos(UIAxisY,UIAxisLevel0);
if abs(vl)>0.0001 then {
selpsy=selpsy-0.03*vl;
if selpsy<0 then selpsy=0;
if selpsy>(ycount-1)*thbsize then selpsy=(ycount-1)*thbsize;
newsely=round(selpsy/thbsize);
if newsely!=sely then {
selpicnr=newsely+ycount*selx;
if (selpicnr>=0) and (selpicnr<thumbframes.size) then {
selframe.transf.origin=point(selframe.transf.origin.x,thumbframes(selpicnr).transf.origin.y,selframe.transf.origin.z);
sely=newsely;
}
}
}
applydistwarping;
if UIIsKeyDown("return") or LeftMouseClicked or NavigatorPressing or JoystickButtonClicked(0,4) then {
if not(firstrender) then {#zoom in on image
fadeout(0.5);
selpicnr=sely+ycount*selx;
selpicnr=showimage(selpicnr);
selx=floor(selpicnr/ycount);
sely=selpicnr-selx*ycount;
selframe.transf.origin=point(columnframes(selx).transf.origin.x,thumbframes(selpicnr).transf.origin.y,selframe.transf.origin.z);
vp.camerapos.x=selframe.transf.origin.x;
applydistwarping;
fadein(0.5);
selpsx=vp.camerapos.x;
selpsy=sely*thbsize;
firstrender=true;
}
}
if JoystickButtonClicked(0,6) or RightMouseClicked or NavigatorPulling then {
if not(firstrender) then stop;
}
render;
if firstrender then WaitReleaseAll;
firstrender=false;
}
|
a1ca66bc3307c671cb9d3a7f1d36340eda3e090a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3176/CH10/EX10.3/Ex10_3.sce | 71891e04b3dff0ccc1dc11d838ed077a2ecbcb6b | [] | 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 | 811 | sce | Ex10_3.sce | //Ex10_3
// Detection of Lines in Specified Direction
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods
clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
a=imread("Ex10_2.tif");
figure,ShowImage(a,'Gray Image');
title('Wire Bond Template Image','color','blue','fontsize',4);
[M,N]=size(a);
Mask_Diagonal=[2 -1 -1;-1 2 -1;-1 -1 2]; // Mask for the +45 Line Detetion
Filtered_Image=imfilter(a,Mask_Diagonal); // Filtering the Original Image with the Mask
figure,ShowImage(Filtered_Image,'Filter Image');
title('+45 Line Detected Image','color','blue','fontsize',4);
|
81496b5b2609989e0116ef7dad5cb1d3bf1c29d9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH1/EX1.6/Exa1_6.sce | a32b473c21303f30936fa29be446df496d2ad892 | [] | 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 | 228 | sce | Exa1_6.sce | //Exa 1.6
clc;
clear;
close;
//given data :
le=50;//in m
f=100;//in MHz
lambda=300/(f);//in m
Rr=(160*(%pi)^2)*(le/lambda)^2;//in Ohm
disp(Rr/10^6,"Radiation Resistance in Mohm: ");
//Note : Answer in the book is wrong |
43c2cad20a359b47e98f022eddff470a477e37d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH12/EX12.9/Ex12_9.sce | 288718cb73235ac830761415a2515508f9ff23e6 | [] | 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 | 645 | sce | Ex12_9.sce | //pagenumber 556 example 9
clear
voltag=30;//volt
w=0.51;
i1=10*10^-6;//ampere
v1=3.5;//volt
curen1=10*10^-3;//ampere
freque=60;//hertz
tridun=50*10^-6;//second
pinvol=w*voltag+0.6;
r=(voltag-pinvol)/i1;
disp("max limit resistance = "+string((r))+"ohm");
r=(voltag-v1)/(curen1);
disp("min limit resistance = "+string((r))+"ohm");
capac1=0.5*10^-6;//farad
r=(1/freque)*(1/(capac1*log(1/(1-w))));
disp("resistance = "+string((r))+"ohm");
rb2=10^4/(w*voltag);
rb1=tridun/capac1;
disp("rb1 = "+string((rb1))+"ohm");
disp("rb2 = "+string((rb2))+"ohm");
disp("peak voltage = "+string((pinvol))+"volt");
|
652292d4f7cb446c746d316586b872a504ac73f5 | 70a4addf2f21ce873b8c786bbcd95c4fa22d32ae | /scilab/Выбор бетона.sce | b2bce62e30d8e2b74a53dc7226a90a56846bf254 | [] | no_license | rumata-ap/BetonSelector | 058ef1f0a8c126fa91f4893059028ff38c4c9517 | f6bd2b0fe8e75ab62ce5bed51513135d0996a6f4 | refs/heads/main | 2022-12-27T20:24:39.234079 | 2020-10-12T15:35:02 | 2020-10-12T15:35:02 | 296,960,224 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 10,911 | sce | Выбор бетона.sce | //clear()
function varargout = getCharsFromGroup(el, ng)
[nin,nout]=argn()
e = el.children(ng)
//
classes = strsplit(e.children(1).attributes(3),",",19)
varargout(1) = classes
//
dim = evstr(e.children(7).attributes(2))
//
factor = evstr(e.children(2).attributes(4))
modules = evstr(e.children(2).attributes(3))' * factor
varargout(2) = modules
//
factor = evstr(e.children(3).attributes(4))
rbs = evstr(e.children(3).attributes(3))' * factor
varargout(3) = rbs
//
factor = evstr(e.children(4).attributes(4))
rbts = evstr(e.children(4).attributes(3))' * factor
varargout(4) = rbts
//
factor = evstr(e.children(5).attributes(4))
rbns = evstr(e.children(5).attributes(3))' * factor
varargout(5) = rbns
//
factor = evstr(e.children(6).attributes(4))
rbtns = evstr(e.children(6).attributes(3))' * factor
varargout(6) = rbtns
//
factor = evstr(e.children(7).attributes(4))
fibs_cr = evstr(e.children(7).attributes(3))' * factor
varargout(7) = matrix(fibs_cr,dim(2),dim(1))'
endfunction
function varargout = calcChars(nc,ke,kfi,id)
[nout,nin]=argn()
gamma_b2 = 1
if par(3) == 1 then gamma_b2 = 0.9 end
gamma_b3 = 1
if par(4) == 1 then gamma_b3 = 0.85 end
//Кратковременные расчетные характеристики
Eb = ebs(nc)*ke, Rb = rbs(nc+id)*gamma_b2*gamma_b3, Rbt = -rbts(nc+id)
ebt2 = -0.00015, ebt0 = -0.0001, ebt1 = 0.6*Rbt/Eb
eb1 = 0.6*Rb/Eb, eb0 = 0.002, eb2 = 0.0035
ebt1red = -0.000085, eb1red = 0.0015
diagr3C = [ebt2,ebt0,ebt1,0,eb1,eb0,eb2;...
Rbt,Rbt,0.6*Rbt,0,0.6*Rb,Rb,Rb]'
diagr2C = [ebt2,ebt1red,0,eb1red,eb2;...
Rbt,Rbt,0,Rb,Rb]'
C = [Eb Rb Rbt ebt2 ebt0 ebt1 eb1 eb0 eb2 ebt1red eb1red]'
resC = tlist(["C","name","symbol","value","unit"],..
header(:,1), header(:,2), C, units)
//Длительные расчетные характеристики
Ebt = Eb/(1+fibs_cr(par(2),nc+id)*kfi)
Rb = 0.9*Rb, Rbt = 0.9*Rbt
eb1 = 0.6*Rb/Ebt, eb0 = lebs(par(2),1), eb2 = lebs(par(2),2)
ebt1 = 0.6*Rbt/Ebt, ebt0 = -lebts(par(2),1), ebt2 = -lebts(par(2),2)
eb1red = lebs(par(2),3), ebt1red = -lebts(par(2),3)
diagr3CL = [ebt2,ebt0,ebt1,0,eb1,eb0,eb2;...
Rbt,Rbt,0.6*Rbt,0,0.6*Rb,Rb,Rb]'
diagr2CL = [ebt2,ebt1red,0,eb1red,eb2;...
Rbt,Rbt,0,Rb,Rb]'
CL = [Ebt Rb Rbt ebt2 ebt0 ebt1 eb1 eb0 eb2 ebt1red eb1red]'
resCL = tlist(["CL","name","symbol","value","unit"],..
header(:,1), header(:,2), CL, units)
//Нормативные кратковременные характеристики
Rb = rbns(nc+id), Rbt = -rbtns(nc+id)
ebt2 = -0.00015, ebt0 = -0.0001, ebt1 = 0.6*Rbt/Eb
eb1 = 0.6*Rb/Eb, eb0 = 0.002, eb2 = 0.0035
ebt1red = -0.000085, eb1red = 0.0015
diagr3N = [ebt2,ebt0,ebt1,0,eb1,eb0,eb2;...
Rbt,Rbt,0.6*Rbt,0,0.6*Rb,Rb,Rb]'
diagr2N = [ebt2,ebt1red,0,eb1red,eb2;...
Rbt,Rbt,0,Rb,Rb]'
N = [Eb Rb Rbt ebt2 ebt0 ebt1 eb1 eb0 eb2 ebt1red eb1red]'
resN = tlist(["N","name","symbol","value","unit"],..
header(:,1), header(:,2), N, units)
//Нормативные длительные характеристики
eb1 = 0.6*Rb/Ebt, eb0 = lebs(par(2),1),eb2 = lebs(par(2),2)
ebt1 = 0.6*Rbt/Ebt, ebt0 = -lebts(par(2),1), ebt2 = -lebts(par(2),2)
eb1red = lebs(par(2),3), ebt1red = -lebts(par(2),3)
diagr3NL = [ebt2,ebt0,ebt1,0,eb1,eb0,eb2;...
Rbt,Rbt,0.6*Rbt,0,0.6*Rb,Rb,Rb]'
diagr2NL = [ebt2,ebt1red,0,eb1red,eb2;...
Rbt,Rbt,0,Rb,Rb]'
NL = [Ebt Rb Rbt ebt2 ebt0 ebt1 eb1 eb0 eb2 ebt1red eb1red]'
resNL = tlist(["NL","name","symbol","value","unit"],..
header(:,1), header(:,2), NL, units)
//Вывод
varargout(1)= resC
varargout(2)= resCL
varargout(3)= resN
varargout(4)= resNL
varargout(5)= diagr2C
varargout(6)= diagr3C
varargout(7)= diagr2CL
varargout(8)= diagr3CL
varargout(9)= diagr2N
varargout(10)= diagr3N
varargout(11)= diagr2NL
varargout(12)= diagr3NL
endfunction
header = ["","","","","","";..
"---","---","---","---","---","---";..
"","","C","CL","N","NL";..
"Модуль деформации/упругости","Eb","","","","";..
"Прочность бетона при сжатии","Rb","","","","";..
"Прочность бетона при растяжении","Rbt","","","","";..
"Относительная деформация растяжения","ebt2","","","","";..
"Относительная деформация растяжения","ebt0","","","","";..
"Относительная деформация растяжения","ebt1","","","","";..
"Относительная деформация сжатия","eb1","","","","";..
"Относительная деформация сжатия","eb0","","","","";..
"Относительная деформация сжатия","eb2","","","","";..
"Приведенная деформация растяженя","ebt1red","","","","";..
"Приведенная деформация сжатия","eb1red","","","",""]
units = ["","","","кПa","кПa","кПa","","","","","","","",""]'
path = "ConcretesSP63.xml"
doc = xmlRead(path);
nvl = doc.root.children(5)
damps = strsplit(nvl.attributes(4),",",3)'
factor = evstr(nvl.children(1).attributes(4))
lebs = matrix(evstr(nvl.children(1).attributes(3)) * factor,3,3)'
lebts = matrix(evstr(nvl.children(2).attributes(3)) * factor,3,3)'
types = xmlGetValues("//Concretes/Type","name",path)'
l1 = list(' Тип бетона',1,['Тяжелый','Мелкозернистый','Легкий','Ячеистый']);
l2 = list(' Влажность',2,damps);
l3 = list(' Конструкция',2,['Бетонная','Железобетонная']);
l4 = list(' Слой бетонирования ',2,['больше 1.5м','меньше 1.5м']);
par = x_choices('Начальные параметры',list(l1,l2,l3,l4))
//td = x_choose(damps,['Укажите влажность среды'])
if size(par)(1) <> 0 then
e = doc.root.children(par(1))
groups = strsplit(e.attributes(2),",",8)
tg = x_choose(groups,['Выберите группу бетона'])
//Тяжелый бетон
if par(1)==1 && tg <> 0 then
[cls,ebs,rbs,rbts,rbns,rbtns,fibs_cr] = getCharsFromGroup(e, tg)
tc = x_choose(cls,['Выберите класс бетона'])
if tc <> 0 then
[C,CL,N,NL,d2C,d3C,d2CL,d3CL,d2N,d3N,d2NL,d3NL]=calcChars(tc,1,1,0)
else
disp('Не выбран класс бетона.')
end
//Мелкозернистый бетон
elseif par(1) == 2 && tg <> 0 then
[cls,ebs,rbs,rbts,rbns,rbtns,fibs_cr] = getCharsFromGroup(e, tg)
tc = x_choose(cls,['Выберите класс бетона'])
if tc <> 0 then
kE = 1
if tg == 1 then kE = 0.89 end
[C,CL,N,NL,d2C,d3C,d2CL,d3CL,d2N,d3N,d2NL,d3NL]=calcChars(tc,kE,1,0)
else
disp('Не выбран класс бетона.')
end
//Легкий и поризованный бетон
elseif par(1) == 3 && tg <> 0 then
[cls,ebs,rbs,rbts,rbns,rbtns,fibs_cr] = getCharsFromGroup(e, tg)
tc = x_choose(cls,['Выберите класс бетона'])
ro = evstr(e.children(tg).attributes(2))
kFi = (ro/2200)^2
if tc <> 0 then
[C,CL,N,NL,d2C,d3C,d2CL,d3CL,d2N,d3N,d2NL,d3NL]=calcChars(tc,1,kFi,0)
else
disp('Не выбран класс бетона.')
end
//Ячеистый бетон
elseif par(1) == 4 && tg <> 0 then
[cls,ebs,rbs,rbts,rbns,rbtns,fibs_cr] = getCharsFromGroup(e, tg)
tc = x_choose(cls,['Выберите класс бетона'])
th = x_choose(['Автоклавное','Естественное'],['Условия твердения'])
ro = evstr(e.children(tg).attributes(2))
kFi = (ro/2200)^2
idxs = [0,0,0,2,3,4,5,6]
if tc <> 0 && th <> 0 then
kE = 1
if th == 2 then kE = 0.8 end
idx = idxs(tc)
[C,CL,N,NL,d2C,d3C,d2CL,d3CL,d2N,d3N,d2NL,d3NL]=calcChars(tc,kE,kFi,idx)
else
disp('Не выбран класс бетона.')
end
else
disp('Не выбрана группа бетона.')
end
else
disp('Не выбран тип бетона.')
end
//
try
marc = [l1(3)(par(1)),groups(tg),cls(tc),damps(par(2)),l3(3)(par(3)),l4(3)(par(3))]
//Запись результатов в файлы
res = C.value, res(:,2)=CL.value, res(:,3)=N.value, res(:,4)=NL.value
res = string(res)
header(4:14,3) = res(:,1)
header(4:14,4) = res(:,2)
header(4:14,5) = res(:,3)
header(4:14,6) = res(:,4)
header(1,:) = marc
header(:,7) = units
res = header
csvWrite(header, "Concrete.csv", ';','.')
csvWrite(d2C, "2C.csv", ';','.')
csvWrite(d3C, "3C.csv", ';','.')
csvWrite(d2CL, "2CL.csv", ';','.')
csvWrite(d3CL, "3CL.csv", ';','.')
csvWrite(d2N, "2N.csv", ';','.')
csvWrite(d3N, "3N.csv", ';','.')
csvWrite(d2NL, "2NL.csv", ';','.')
csvWrite(d3NL, "3NL.csv", ';','.')
//write_csv(header, "Concrete.csv", ';', '.')
catch
disp('Характеристики не были рассчитаны.')
clear()
end
//[error_message,error_number]=lasterror(%t)
// Удаление промежуточных данных
clear e nvl doc tg tc types path par groups fibs_cr factor
clear Eb Ebt Rb Rbt ebt2 ebt0 ebt1 eb1 eb0 eb2 ebt1red eb1red
clear cls ebs rbs rbts rbns rbtns fibs_rc header units marc
clear ro kFi l1 l2 l3 l4 lebs lebts damps kE kFi
function plot_d3()
subplot(2,1,1)
//plot2d4([d3C(:,1),d3CL(:,1)], [d3C(:,2),d3CL(:,2)]);
plot(d3C(:,1),d3C(:,2),'.b-',d3CL(:,1),d3CL(:,2),'.r-');
//plot2d3([d3C(:,1),d3CL(:,1)], [d3C(:,2),d3CL(:,2)]);
a=gca();a.x_location = "origin";a.y_location = "origin";a.box="off"
e=gce();p=e.children(1);//get the handle on the polyline
p.mark_mode="off";p.mark_style=2;p.mark_size=5;
p1=e.children(2);//get the handle on the polyline
p1.mark_mode="off";p1.mark_style=2;p1.mark_size=5;
t=datatipCreate(p,5);datatipCreate(p,6);datatipCreate(p,7);
datatipCreate(p1,5);datatipCreate(p1,6);datatipCreate(p1,7);
subplot(2,1,2)
plot(d3N(:,1),d3N(:,2),'.b-',d3NL(:,1),d3NL(:,2),'.r-');
//plot2d4([d3N(:,1),d3NL(:,1)], [d3N(:,2),d3NL(:,2)]);
plot2d3([d3N(:,1),d3NL(:,1)], [d3N(:,2),d3NL(:,2)]);
a=gca();a.x_location = "origin";a.y_location = "origin";a.box="off"
endfunction
|
2c5e7ba620ef44b00b14ac2ce6a5915467eefb77 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2699/CH3/EX3.29/Ex3_29.sce | e834ef949d00e7ad41eddfbfff32e5e3c2b95306 | [] | 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 | 683 | sce | Ex3_29.sce | //EX3_29 PG-3.61
clc
Rl=2e3;//load resistance
Es=200;//rms voltage
f=50;
Esm=sqrt(2)*Es;//peak value of input voltage
Rf=0;//ideal diodes
Rs=0;
Ism=Esm/(Rf+Rs+Rl);
Idc=2*Ism/%pi;
printf("\n Therefore Average DC load current is %.2f A \n",Idc)
Edc=Idc*Rl;
printf("\n Therefore average DC voltage is %.0f V \n",Edc)
Rf=0.48;//ripple factor
Vrip=Rf*Edc;// ripple voltage
printf("\n rms value of ripple voltage is %.1f V \n ",Vrip)
disp("if a filter capacitor C=500 microF is used then")
C=500e-6;//capacitor filter
Rf=(4*sqrt(3)*f*C*Rl)^(-1);//for full wave rectifier
Vrip=Rf*Edc;//new ripple voltage
printf("\n rms value of new ripple voltage is %.4f V \n ",Vrip)
|
ce18b1a3a4b6f65a7c1a8d7b29f086540bd7504c | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH7/EX7.16/ex7_16.sce | 58b6c0505339268ba32be2ab2a0c58410dced54d | [] | 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 | 292 | sce | ex7_16.sce | //ex7.16
I_D_on=200*10^-3;
V_DD=24;
R_D=200;
V_GS=4;
V_GS_th=2;
R_1=100*10^3;
R_2=15*10^3;
K=value_of_K(200*10^-3,4,2)
V_GS=(R_2/(R_1+R_2))*V_DD;
I_D=K*(V_GS-V_GS_th)^2;
V_DS=V_DD-I_D*R_D;
disp(V_DS,'Drain to Source voltage in Volts')
disp(V_GS,'Gate to Source voltage in Volts') |
664e0a730deeff1a6bf9e0ecec0599410bb88457 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/lemma-split/SURPRISE-LANGUAGES/Turkic/uzb.tst | 0009e981734642e46b9845e1efd60b1916f60a86 | [] | 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 | 227,180 | tst | uzb.tst | sayohat qilmoq V;IND;SG;1;PST
sayohat qilmoq V;PROG;IND;PL;2;FUT
sayohat qilmoq V;FRML;COND;SG;2;PRS
sayohat qilmoq V;PROG;IND;PL;1;FUT
sayohat qilmoq V;PFV;IND;SG;1;PST
sayohat qilmoq V;PFV;FH;PL;2
sayohat qilmoq V;PROG;IND;PL;2;PST
sayohat qilmoq V;PRF+PROG;COND;SG;1;PRS
sayohat qilmoq V;IND;SG;3;PST
sayohat qilmoq V;PRF+PROG;COND;SG;3;PRS
sayohat qilmoq V;PFV;FRML;SBJV;SG;2;FUT
sayohat qilmoq V;PL;3;PRS
sayohat qilmoq V;PFV;SBJV;SG;2;INFM;FUT
sayohat qilmoq V;PFV;FRML;FH;SG;2
sayohat qilmoq V;PFV;FH;SG;2
sayohat qilmoq V;PFV;FH;SG;3
sayohat qilmoq V;PRF;SBJV;SG;3;PRS
sayohat qilmoq V;SG;3;PRS
sayohat qilmoq V;PFV;IND;SG;2;INFM;PST
sayohat qilmoq V;IND;PL;2;PST
sayohat qilmoq V;COND;SG;2;INFM;PRS
sayohat qilmoq V;PROG;IND;SG;2;INFM;PRS
sayohat qilmoq V;PFV;FH;SG;1
sayohat qilmoq V;PL;2;PRS
sayohat qilmoq V;PFV;SBJV;SG;1;FUT
sayohat qilmoq V;PFV;IND;PL;3;PST
sayohat qilmoq V;PROG;FRML;IND;SG;2;PST
sayohat qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sayohat qilmoq V;PFV;SBJV;PL;1;FUT
sayohat qilmoq V;PRF;SBJV;PL;2;PRS
sayohat qilmoq V;PFV;FRML;IND;SG;2;PST
sayohat qilmoq V;PROG;IND;PL;3;PST
sayohat qilmoq V;PFV;FH;PL;1
sayohat qilmoq V;PFV;IND;SG;3;PST
sayohat qilmoq V;PROG;IND;SG;2;INFM;PST
sayohat qilmoq V;PRF;SBJV;SG;2;INFM;PRS
sayohat qilmoq V;PROG;FRML;IND;SG;2;PRS
sayohat qilmoq V;PROG;COND;SG;3;PRS
sayohat qilmoq V;PRF;SBJV;PL;1;PRS
sayohat qilmoq V;PROG;COND;SG;2;PRS
sayohat qilmoq V;FRML;IND;SG;2;PST
sayohat qilmoq V;PRF+PROG;COND;PL;2;PRS
sayohat qilmoq V;COND;PL;2;PRS
sayohat qilmoq V;PL;1;PRS
sayohat qilmoq V;FRML;SG;2;PRS
sayohat qilmoq V;IND;PL;3;PST
sayohat qilmoq V;SG;1;PRS
sayohat qilmoq V;PROG;COND;PL;1;PRS
sayohat qilmoq V;PROG;IND;SG;1;PST
sayohat qilmoq V;PROG;IND;SG;1;FUT
sayohat qilmoq V;PROG;COND;PL;3;PRS
sayohat qilmoq V;PFV;FH;PL;3
sayohat qilmoq V;PROG;IND;PL;3;FUT
sayohat qilmoq V;IND;SG;2;INFM;PST
sayohat qilmoq V;SG;2;INFM;PRS
sayohat qilmoq V;COND;SG;1;PRS
sayohat qilmoq V;PROG;IND;SG;2;INFM;FUT
sayohat qilmoq V;PRF;FRML;SBJV;SG;2;PRS
sayohat qilmoq V;PFV;SBJV;PL;2;FUT
sayohat qilmoq V;PROG;IND;PL;3;PRS
sayohat qilmoq V;PROG;IND;PL;2;PRS
sayohat qilmoq V;PFV;SBJV;SG;3;FUT
sayohat qilmoq V;IND;PL;1;PST
sayohat qilmoq V;PRF+PROG;COND;PL;3;PRS
sayohat qilmoq V;PROG;IND;SG;3;PRS
sayohat qilmoq V;PFV;IND;PL;1;PST
sayohat qilmoq V;PRF;SBJV;PL;3;PRS
sayohat qilmoq V;COND;SG;3;PRS
sayohat qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sayohat qilmoq V;PFV;SBJV;PL;3;FUT
sayohat qilmoq V;PROG;IND;SG;3;FUT
sayohat qilmoq V;PROG;IND;SG;3;PST
sayohat qilmoq V;PFV;IND;PL;2;PST
sayohat qilmoq V;PROG;IND;SG;1;PRS
sayohat qilmoq V;PROG;FRML;IND;SG;2;FUT
sayohat qilmoq V;PROG;IND;PL;1;PRS
sayohat qilmoq V;PROG;IND;PL;1;PST
sayohat qilmoq V;COND;PL;3;PRS
sayohat qilmoq V;PRF;SBJV;SG;1;PRS
sayohat qilmoq V;PRF+PROG;COND;PL;1;PRS
sayohat qilmoq V;COND;PL;1;PRS
sayohat qilmoq V;PROG;COND;SG;1;PRS
yashamoq V;PROG;IND;PL;1;PRS
yashamoq V;COND;SG;2;INFM;PRS
yashamoq V;PFV;FH;PL;2
yashamoq V;IND;SG;3;PST
yashamoq V;IND;PL;2;PST
yashamoq V;COND;PL;1;PRS
yashamoq V;PFV;SBJV;PL;3;FUT
yashamoq V;PRF;SBJV;PL;3;PRS
yashamoq V;FRML;IND;SG;2;PST
yashamoq V;PROG;IND;PL;2;PRS
yashamoq V;PRF;SBJV;SG;2;INFM;PRS
yashamoq V;PFV;SBJV;PL;2;FUT
yashamoq V;PROG;IND;PL;3;PRS
yashamoq V;IND;SG;2;INFM;PST
yashamoq V;PRF;FRML;SBJV;SG;2;PRS
yashamoq V;PROG;FRML;IND;SG;2;FUT
yashamoq V;PROG;COND;SG;1;PRS
yashamoq V;PFV;IND;SG;1;PST
yashamoq V;PROG;IND;SG;3;FUT
yashamoq V;PROG;COND;SG;3;PRS
yashamoq V;PRF+PROG;FRML;COND;SG;2;PRS
yashamoq V;FRML;COND;SG;2;PRS
yashamoq V;PRF;SBJV;SG;3;PRS
yashamoq V;COND;PL;2;PRS
yashamoq V;PROG;FRML;IND;SG;2;PST
yashamoq V;PRF+PROG;COND;PL;1;PRS
yashamoq V;PFV;FH;SG;1
yashamoq V;PROG;IND;SG;1;PST
yashamoq V;PROG;IND;SG;3;PST
yashamoq V;SG;2;INFM;PRS
yashamoq V;PRF+PROG;COND;SG;2;INFM;PRS
yashamoq V;PFV;FH;PL;3
yashamoq V;PROG;IND;PL;3;FUT
yashamoq V;SG;3;PRS
yashamoq V;PFV;FRML;FH;SG;2
yashamoq V;PRF+PROG;COND;PL;2;PRS
yashamoq V;PFV;IND;PL;2;PST
yashamoq V;PROG;IND;PL;1;FUT
yashamoq V;PRF+PROG;COND;SG;1;PRS
yashamoq V;PRF;SBJV;PL;1;PRS
yashamoq V;PFV;IND;PL;1;PST
yashamoq V;PFV;IND;PL;3;PST
yashamoq V;PROG;COND;PL;3;PRS
yashamoq V;PFV;SBJV;SG;2;INFM;FUT
yashamoq V;PROG;IND;PL;2;FUT
yashamoq V;COND;PL;3;PRS
yashamoq V;PROG;IND;PL;1;PST
yashamoq V;PFV;FH;PL;1
yashamoq V;PROG;IND;SG;3;PRS
yashamoq V;IND;PL;1;PST
yashamoq V;PROG;IND;PL;2;PST
yashamoq V;PFV;IND;SG;3;PST
yashamoq V;PROG;FRML;IND;SG;2;PRS
yashamoq V;COND;SG;3;PRS
yashamoq V;PL;2;PRS
yashamoq V;FRML;SG;2;PRS
yashamoq V;PROG;IND;SG;2;INFM;FUT
yashamoq V;PFV;SBJV;SG;3;FUT
yashamoq V;COND;SG;1;PRS
yashamoq V;PRF+PROG;COND;SG;3;PRS
yashamoq V;IND;SG;1;PST
yashamoq V;PROG;IND;SG;1;FUT
yashamoq V;PFV;SBJV;SG;1;FUT
yashamoq V;PROG;COND;PL;1;PRS
yashamoq V;SG;1;PRS
yashamoq V;PROG;IND;SG;1;PRS
yashamoq V;PL;3;PRS
yashamoq V;PFV;IND;SG;2;INFM;PST
yashamoq V;PROG;IND;SG;2;INFM;PST
yashamoq V;PRF+PROG;COND;PL;3;PRS
yashamoq V;PL;1;PRS
yashamoq V;PFV;FH;SG;2
yashamoq V;IND;PL;3;PST
yashamoq V;PROG;IND;PL;3;PST
yashamoq V;PFV;FH;SG;3
yashamoq V;PFV;FRML;SBJV;SG;2;FUT
yashamoq V;PFV;SBJV;PL;1;FUT
yashamoq V;PROG;IND;SG;2;INFM;PRS
yashamoq V;PRF;SBJV;PL;2;PRS
yashamoq V;PRF;SBJV;SG;1;PRS
yashamoq V;PROG;COND;SG;2;PRS
yashamoq V;PFV;FRML;IND;SG;2;PST
buyurtma bermoq V;PL;2;PRS
buyurtma bermoq V;PFV;SBJV;PL;3;FUT
buyurtma bermoq V;PROG;IND;PL;3;PRS
buyurtma bermoq V;COND;SG;2;INFM;PRS
buyurtma bermoq V;PFV;SBJV;SG;3;FUT
buyurtma bermoq V;SBJV;PL;1;PRS
buyurtma bermoq V;PFV;IND;PL;1;PST
buyurtma bermoq V;PROG;IND;PL;2;PRS
buyurtma bermoq V;PFV;FH;SG;1
buyurtma bermoq V;PROG;IND;PL;2;FUT
buyurtma bermoq V;PROG;IND;SG;3;PRS
buyurtma bermoq V;IND;SG;1;PST
buyurtma bermoq V;PL;3;PRS
buyurtma bermoq V;PROG;IND;SG;3;FUT
buyurtma bermoq V;SBJV;PL;3;PRS
buyurtma bermoq V;PROG;COND;SG;1;PRS
buyurtma bermoq V;COND;PL;2;PRS
buyurtma bermoq V;PRF;SBJV;SG;2;INFM;PRS
buyurtma bermoq V;SBJV;SG;3;PRS
buyurtma bermoq V;PFV;FH;SG;2
buyurtma bermoq V;IND;PL;2;PST
buyurtma bermoq V;SG;2;INFM;PRS
buyurtma bermoq V;SG;1;PRS
buyurtma bermoq V;PROG;IND;SG;2;INFM;PRS
buyurtma bermoq V;PFV;SBJV;SG;2;INFM;FUT
buyurtma bermoq V;PROG;IND;PL;1;PRS
buyurtma bermoq V;PFV;IND;PL;3;PST
buyurtma bermoq V;PFV;FH;PL;2
buyurtma bermoq V;SBJV;PL;2;PRS
buyurtma bermoq V;PROG;COND;SG;2;PRS
buyurtma bermoq V;PRF+PROG;COND;SG;3;PRS
buyurtma bermoq V;PROG;COND;PL;3;PRS
buyurtma bermoq V;COND;SG;3;PRS
buyurtma bermoq V;PRF+PROG;COND;PL;1;PRS
buyurtma bermoq V;IND;SG;3;PST
buyurtma bermoq V;PROG;IND;SG;2;INFM;PST
buyurtma bermoq V;IND;PL;1;PST
buyurtma bermoq V;SG;3;PRS
buyurtma bermoq V;PRF+PROG;COND;PL;2;PRS
buyurtma bermoq V;COND;PL;3;PRS
buyurtma bermoq V;FRML;COND;SG;2;PRS
buyurtma bermoq V;PFV;FRML;IND;SG;2;PST
buyurtma bermoq V;PFV;IND;SG;2;INFM;PST
buyurtma bermoq V;IND;PL;3;PST
buyurtma bermoq V;PROG;IND;PL;2;PST
buyurtma bermoq V;PFV;FH;PL;3
buyurtma bermoq V;PFV;IND;SG;1;PST
buyurtma bermoq V;PRF+PROG;COND;PL;3;PRS
buyurtma bermoq V;PROG;IND;PL;1;FUT
buyurtma bermoq V;PROG;IND;SG;3;PST
buyurtma bermoq V;PRF;SBJV;PL;3;PRS
buyurtma bermoq V;PFV;FRML;SBJV;SG;2;FUT
buyurtma bermoq V;SBJV;SG;1;PRS
buyurtma bermoq V;PFV;FH;PL;1
buyurtma bermoq V;PFV;IND;PL;2;PST
buyurtma bermoq V;PFV;IND;SG;3;PST
buyurtma bermoq V;PROG;COND;SG;3;PRS
buyurtma bermoq V;PROG;FRML;IND;SG;2;PST
buyurtma bermoq V;PRF;SBJV;SG;1;PRS
buyurtma bermoq V;PL;1;PRS
buyurtma bermoq V;PRF;SBJV;SG;3;PRS
buyurtma bermoq V;PROG;COND;PL;1;PRS
buyurtma bermoq V;PRF;SBJV;PL;1;PRS
buyurtma bermoq V;PRF+PROG;COND;SG;1;PRS
buyurtma bermoq V;PROG;IND;PL;3;PST
buyurtma bermoq V;FRML;SBJV;SG;2;PRS
buyurtma bermoq V;PROG;IND;PL;3;FUT
buyurtma bermoq V;PRF;SBJV;PL;2;PRS
buyurtma bermoq V;PFV;FRML;FH;SG;2
buyurtma bermoq V;PROG;IND;SG;1;FUT
buyurtma bermoq V;IND;SG;2;INFM;PST
buyurtma bermoq V;FRML;IND;SG;2;PST
buyurtma bermoq V;PFV;FH;SG;3
buyurtma bermoq V;COND;SG;1;PRS
buyurtma bermoq V;PRF+PROG;FRML;COND;SG;2;PRS
buyurtma bermoq V;PFV;SBJV;PL;1;FUT
buyurtma bermoq V;FRML;SG;2;PRS
buyurtma bermoq V;PFV;SBJV;SG;1;FUT
buyurtma bermoq V;SBJV;SG;2;PRS
buyurtma bermoq V;PROG;FRML;IND;SG;2;FUT
buyurtma bermoq V;PROG;IND;SG;2;INFM;FUT
buyurtma bermoq V;PROG;IND;PL;1;PST
buyurtma bermoq V;PROG;IND;SG;1;PST
buyurtma bermoq V;PFV;SBJV;PL;2;FUT
buyurtma bermoq V;PRF;FRML;SBJV;SG;2;PRS
buyurtma bermoq V;PROG;IND;SG;1;PRS
buyurtma bermoq V;COND;PL;1;PRS
buyurtma bermoq V;PRF+PROG;COND;SG;2;INFM;PRS
buyurtma bermoq V;PROG;FRML;IND;SG;2;PRS
o'rganmoq V;FRML;IND;SG;2;PST
o'rganmoq V;PFV;FRML;SBJV;SG;2;FUT
o'rganmoq V;PROG;FRML;IND;SG;2;PST
o'rganmoq V;IND;PL;2;PST
o'rganmoq V;PROG;IND;SG;3;PRS
o'rganmoq V;PROG;IND;SG;3;PST
o'rganmoq V;PFV;FRML;IND;SG;2;PST
o'rganmoq V;PROG;IND;PL;2;PST
o'rganmoq V;IND;PL;1;PST
o'rganmoq V;PROG;IND;SG;2;INFM;FUT
o'rganmoq V;PRF+PROG;COND;PL;3;PRS
o'rganmoq V;SG;1;PRS
o'rganmoq V;PFV;IND;SG;1;PST
o'rganmoq V;IND;PL;3;PST
o'rganmoq V;PRF+PROG;COND;SG;3;PRS
o'rganmoq V;PROG;IND;PL;3;PST
o'rganmoq V;PFV;FRML;FH;SG;2
o'rganmoq V;PROG;COND;SG;3;PRS
o'rganmoq V;IND;SG;1;PST
o'rganmoq V;PROG;IND;PL;2;PRS
o'rganmoq V;PROG;COND;PL;1;PRS
o'rganmoq V;PL;2;PRS
o'rganmoq V;PFV;IND;PL;1;PST
o'rganmoq V;PROG;COND;PL;3;PRS
o'rganmoq V;COND;PL;1;PRS
o'rganmoq V;PFV;IND;SG;2;INFM;PST
o'rganmoq V;PFV;SBJV;PL;1;FUT
o'rganmoq V;PROG;FRML;IND;SG;2;FUT
o'rganmoq V;FRML;COND;SG;2;PRS
o'rganmoq V;PFV;SBJV;SG;3;FUT
o'rganmoq V;PROG;IND;PL;3;PRS
o'rganmoq V;PL;1;PRS
o'rganmoq V;PROG;COND;SG;1;PRS
o'rganmoq V;PRF;SBJV;PL;1;PRS
o'rganmoq V;SG;2;INFM;PRS
o'rganmoq V;PROG;IND;PL;1;PRS
o'rganmoq V;PFV;SBJV;PL;2;FUT
o'rganmoq V;PROG;IND;SG;1;FUT
o'rganmoq V;PROG;IND;PL;3;FUT
o'rganmoq V;PFV;SBJV;PL;3;FUT
o'rganmoq V;IND;SG;2;INFM;PST
o'rganmoq V;PFV;SBJV;SG;2;INFM;FUT
o'rganmoq V;PRF;SBJV;SG;3;PRS
o'rganmoq V;PFV;SBJV;SG;1;FUT
o'rganmoq V;PROG;IND;SG;2;INFM;PST
o'rganmoq V;COND;SG;3;PRS
o'rganmoq V;PROG;COND;SG;2;PRS
o'rganmoq V;FRML;SG;2;PRS
o'rganmoq V;PFV;IND;SG;3;PST
o'rganmoq V;PL;3;PRS
o'rganmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'rganmoq V;PROG;IND;SG;1;PRS
o'rganmoq V;PFV;FH;SG;3
o'rganmoq V;PFV;FH;SG;2
o'rganmoq V;PFV;FH;PL;2
o'rganmoq V;COND;SG;1;PRS
o'rganmoq V;PRF;SBJV;SG;1;PRS
o'rganmoq V;COND;PL;2;PRS
o'rganmoq V;PFV;IND;PL;2;PST
o'rganmoq V;PROG;IND;SG;1;PST
o'rganmoq V;PRF+PROG;COND;PL;2;PRS
o'rganmoq V;PFV;FH;PL;1
o'rganmoq V;PFV;FH;SG;1
o'rganmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'rganmoq V;COND;PL;3;PRS
o'rganmoq V;PRF;SBJV;PL;2;PRS
o'rganmoq V;PRF+PROG;COND;SG;1;PRS
o'rganmoq V;PRF+PROG;COND;PL;1;PRS
o'rganmoq V;PROG;IND;SG;3;FUT
o'rganmoq V;PROG;IND;PL;1;FUT
o'rganmoq V;SG;3;PRS
o'rganmoq V;PFV;IND;PL;3;PST
o'rganmoq V;IND;SG;3;PST
o'rganmoq V;PRF;SBJV;PL;3;PRS
o'rganmoq V;PRF;FRML;SBJV;SG;2;PRS
o'rganmoq V;PROG;IND;PL;1;PST
o'rganmoq V;PRF;SBJV;SG;2;INFM;PRS
o'rganmoq V;COND;SG;2;INFM;PRS
o'rganmoq V;PROG;IND;SG;2;INFM;PRS
o'rganmoq V;PROG;IND;PL;2;FUT
o'rganmoq V;PFV;FH;PL;3
o'rganmoq V;PROG;FRML;IND;SG;2;PRS
imtihondan o'tmoq V;COND;PL;1;PRS
imtihondan o'tmoq V;IND;PL;2;PST
imtihondan o'tmoq V;PFV;SBJV;PL;1;FUT
imtihondan o'tmoq V;PROG;IND;PL;3;PST
imtihondan o'tmoq V;PROG;IND;PL;1;PRS
imtihondan o'tmoq V;PROG;COND;SG;3;PRS
imtihondan o'tmoq V;PROG;COND;PL;1;PRS
imtihondan o'tmoq V;PRF;SBJV;PL;3;PRS
imtihondan o'tmoq V;PFV;FRML;FH;SG;2
imtihondan o'tmoq V;PROG;IND;SG;1;PST
imtihondan o'tmoq V;FRML;IND;SG;2;PST
imtihondan o'tmoq V;PROG;COND;SG;2;PRS
imtihondan o'tmoq V;PROG;FRML;IND;SG;2;FUT
imtihondan o'tmoq V;PFV;IND;SG;3;PST
imtihondan o'tmoq V;PROG;IND;PL;2;FUT
imtihondan o'tmoq V;PRF;FRML;SBJV;SG;2;PRS
imtihondan o'tmoq V;PFV;IND;PL;2;PST
imtihondan o'tmoq V;PRF+PROG;COND;PL;1;PRS
imtihondan o'tmoq V;COND;PL;2;PRS
imtihondan o'tmoq V;PRF;SBJV;PL;1;PRS
imtihondan o'tmoq V;IND;SG;3;PST
imtihondan o'tmoq V;PROG;IND;SG;1;PRS
imtihondan o'tmoq V;PROG;IND;PL;3;PRS
imtihondan o'tmoq V;PFV;FH;SG;2
imtihondan o'tmoq V;PFV;FRML;SBJV;SG;2;FUT
imtihondan o'tmoq V;PROG;FRML;IND;SG;2;PRS
imtihondan o'tmoq V;PROG;IND;PL;3;FUT
imtihondan o'tmoq V;PROG;COND;PL;3;PRS
imtihondan o'tmoq V;PROG;IND;PL;1;FUT
imtihondan o'tmoq V;PROG;COND;SG;1;PRS
imtihondan o'tmoq V;PRF;SBJV;PL;2;PRS
imtihondan o'tmoq V;PFV;SBJV;PL;3;FUT
imtihondan o'tmoq V;PRF+PROG;FRML;COND;SG;2;PRS
imtihondan o'tmoq V;SG;1;PRS
imtihondan o'tmoq V;PROG;IND;SG;2;INFM;PRS
imtihondan o'tmoq V;PFV;FRML;IND;SG;2;PST
imtihondan o'tmoq V;COND;SG;1;PRS
imtihondan o'tmoq V;PROG;IND;PL;1;PST
imtihondan o'tmoq V;PROG;IND;SG;3;PST
imtihondan o'tmoq V;PROG;IND;SG;2;INFM;FUT
imtihondan o'tmoq V;PROG;IND;PL;2;PRS
imtihondan o'tmoq V;PRF+PROG;COND;SG;1;PRS
imtihondan o'tmoq V;PFV;FH;PL;2
imtihondan o'tmoq V;PRF+PROG;COND;SG;2;INFM;PRS
imtihondan o'tmoq V;PFV;IND;SG;2;INFM;PST
imtihondan o'tmoq V;PL;3;PRS
imtihondan o'tmoq V;PRF+PROG;COND;PL;3;PRS
imtihondan o'tmoq V;PROG;IND;SG;1;FUT
imtihondan o'tmoq V;PFV;IND;PL;3;PST
imtihondan o'tmoq V;PFV;SBJV;PL;2;FUT
imtihondan o'tmoq V;COND;SG;3;PRS
imtihondan o'tmoq V;IND;PL;3;PST
imtihondan o'tmoq V;PROG;FRML;IND;SG;2;PST
imtihondan o'tmoq V;PFV;FH;PL;3
imtihondan o'tmoq V;PROG;IND;PL;2;PST
imtihondan o'tmoq V;PROG;IND;SG;3;FUT
imtihondan o'tmoq V;SG;3;PRS
imtihondan o'tmoq V;PL;2;PRS
imtihondan o'tmoq V;PFV;SBJV;SG;1;FUT
imtihondan o'tmoq V;IND;PL;1;PST
imtihondan o'tmoq V;PFV;SBJV;SG;3;FUT
imtihondan o'tmoq V;PFV;FH;PL;1
imtihondan o'tmoq V;PL;1;PRS
imtihondan o'tmoq V;IND;SG;2;INFM;PST
imtihondan o'tmoq V;PRF;SBJV;SG;3;PRS
imtihondan o'tmoq V;PRF;SBJV;SG;1;PRS
imtihondan o'tmoq V;COND;PL;3;PRS
imtihondan o'tmoq V;SG;2;INFM;PRS
imtihondan o'tmoq V;PFV;SBJV;SG;2;INFM;FUT
imtihondan o'tmoq V;PRF+PROG;COND;SG;3;PRS
imtihondan o'tmoq V;PFV;IND;SG;1;PST
imtihondan o'tmoq V;IND;SG;1;PST
imtihondan o'tmoq V;PFV;IND;PL;1;PST
imtihondan o'tmoq V;PROG;IND;SG;3;PRS
imtihondan o'tmoq V;PROG;IND;SG;2;INFM;PST
imtihondan o'tmoq V;FRML;SG;2;PRS
imtihondan o'tmoq V;PRF+PROG;COND;PL;2;PRS
imtihondan o'tmoq V;COND;SG;2;INFM;PRS
imtihondan o'tmoq V;FRML;COND;SG;2;PRS
imtihondan o'tmoq V;PRF;SBJV;SG;2;INFM;PRS
imtihondan o'tmoq V;PFV;FH;SG;1
imtihondan o'tmoq V;PFV;FH;SG;3
terlamoq V;PROG;FRML;IND;SG;2;PST
terlamoq V;PFV;SBJV;SG;1;FUT
terlamoq V;PFV;SBJV;PL;1;FUT
terlamoq V;PRF+PROG;COND;SG;1;PRS
terlamoq V;PROG;COND;PL;1;PRS
terlamoq V;PRF;SBJV;SG;2;INFM;PRS
terlamoq V;PFV;SBJV;SG;3;FUT
terlamoq V;SG;3;PRS
terlamoq V;PFV;SBJV;PL;3;FUT
terlamoq V;IND;PL;3;PST
terlamoq V;PFV;IND;PL;2;PST
terlamoq V;PROG;IND;PL;2;FUT
terlamoq V;PFV;FH;SG;1
terlamoq V;COND;SG;2;INFM;PRS
terlamoq V;PFV;FRML;SBJV;SG;2;FUT
terlamoq V;PROG;IND;PL;1;FUT
terlamoq V;PRF;SBJV;PL;2;PRS
terlamoq V;PFV;IND;SG;1;PST
terlamoq V;PROG;IND;SG;1;PRS
terlamoq V;PRF;SBJV;PL;1;PRS
terlamoq V;IND;PL;1;PST
terlamoq V;PRF;SBJV;PL;3;PRS
terlamoq V;PRF+PROG;COND;PL;1;PRS
terlamoq V;PFV;IND;SG;3;PST
terlamoq V;PROG;IND;SG;3;PST
terlamoq V;PROG;IND;PL;3;PST
terlamoq V;IND;PL;2;PST
terlamoq V;PRF+PROG;COND;PL;3;PRS
terlamoq V;PL;3;PRS
terlamoq V;COND;PL;2;PRS
terlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
terlamoq V;PFV;FH;SG;3
terlamoq V;PROG;IND;SG;3;FUT
terlamoq V;PFV;FH;PL;1
terlamoq V;PFV;FH;SG;2
terlamoq V;IND;SG;2;INFM;PST
terlamoq V;FRML;COND;SG;2;PRS
terlamoq V;PL;1;PRS
terlamoq V;PRF+PROG;COND;PL;2;PRS
terlamoq V;PROG;COND;SG;1;PRS
terlamoq V;PROG;IND;PL;3;FUT
terlamoq V;FRML;SG;2;PRS
terlamoq V;PROG;COND;PL;3;PRS
terlamoq V;PROG;IND;PL;1;PRS
terlamoq V;PFV;FH;PL;3
terlamoq V;PROG;IND;SG;3;PRS
terlamoq V;IND;SG;3;PST
terlamoq V;PROG;COND;SG;3;PRS
terlamoq V;PROG;IND;PL;3;PRS
terlamoq V;SG;2;INFM;PRS
terlamoq V;PROG;IND;SG;2;INFM;FUT
terlamoq V;PFV;SBJV;PL;2;FUT
terlamoq V;PROG;IND;SG;1;FUT
terlamoq V;FRML;IND;SG;2;PST
terlamoq V;PROG;FRML;IND;SG;2;PRS
terlamoq V;PFV;SBJV;SG;2;INFM;FUT
terlamoq V;PFV;FH;PL;2
terlamoq V;PL;2;PRS
terlamoq V;PROG;COND;SG;2;PRS
terlamoq V;PFV;FRML;IND;SG;2;PST
terlamoq V;PFV;FRML;FH;SG;2
terlamoq V;PROG;IND;PL;2;PRS
terlamoq V;PRF;SBJV;SG;3;PRS
terlamoq V;COND;PL;1;PRS
terlamoq V;PRF+PROG;COND;SG;3;PRS
terlamoq V;PROG;IND;SG;2;INFM;PRS
terlamoq V;PROG;IND;PL;1;PST
terlamoq V;PROG;IND;PL;2;PST
terlamoq V;COND;PL;3;PRS
terlamoq V;COND;SG;3;PRS
terlamoq V;PFV;IND;PL;1;PST
terlamoq V;PROG;IND;SG;2;INFM;PST
terlamoq V;PRF;SBJV;SG;1;PRS
terlamoq V;IND;SG;1;PST
terlamoq V;PROG;IND;SG;1;PST
terlamoq V;SG;1;PRS
terlamoq V;PFV;IND;PL;3;PST
terlamoq V;PRF;FRML;SBJV;SG;2;PRS
terlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
terlamoq V;PFV;IND;SG;2;INFM;PST
terlamoq V;PROG;FRML;IND;SG;2;FUT
terlamoq V;COND;SG;1;PRS
ishlab chiqarmoq V;PROG;IND;PL;3;PRS
ishlab chiqarmoq V;PFV;IND;SG;3;PST
ishlab chiqarmoq V;PROG;IND;PL;2;PST
ishlab chiqarmoq V;PROG;IND;SG;2;INFM;PRS
ishlab chiqarmoq V;COND;SG;3;PRS
ishlab chiqarmoq V;IND;SG;3;PST
ishlab chiqarmoq V;PROG;IND;PL;3;PST
ishlab chiqarmoq V;PL;1;PRS
ishlab chiqarmoq V;COND;PL;2;PRS
ishlab chiqarmoq V;PROG;COND;PL;1;PRS
ishlab chiqarmoq V;FRML;IND;SG;2;PST
ishlab chiqarmoq V;PFV;IND;PL;2;PST
ishlab chiqarmoq V;PROG;IND;SG;1;PST
ishlab chiqarmoq V;PRF+PROG;COND;PL;2;PRS
ishlab chiqarmoq V;PFV;FH;PL;1
ishlab chiqarmoq V;FRML;COND;SG;2;PRS
ishlab chiqarmoq V;PL;3;PRS
ishlab chiqarmoq V;PROG;IND;SG;1;PRS
ishlab chiqarmoq V;SG;1;PRS
ishlab chiqarmoq V;PROG;IND;SG;3;FUT
ishlab chiqarmoq V;PROG;IND;SG;3;PST
ishlab chiqarmoq V;PROG;IND;PL;1;FUT
ishlab chiqarmoq V;PFV;IND;PL;3;PST
ishlab chiqarmoq V;PROG;IND;PL;1;PRS
ishlab chiqarmoq V;COND;SG;1;PRS
ishlab chiqarmoq V;PFV;IND;PL;1;PST
ishlab chiqarmoq V;PROG;COND;SG;1;PRS
ishlab chiqarmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishlab chiqarmoq V;PFV;FH;SG;1
ishlab chiqarmoq V;PROG;IND;PL;2;PRS
ishlab chiqarmoq V;PFV;FRML;FH;SG;2
ishlab chiqarmoq V;PRF+PROG;COND;SG;3;PRS
ishlab chiqarmoq V;PFV;FH;PL;3
ishlab chiqarmoq V;PFV;SBJV;SG;3;FUT
ishlab chiqarmoq V;FRML;SG;2;PRS
ishlab chiqarmoq V;PFV;FH;SG;2
ishlab chiqarmoq V;PRF;SBJV;SG;1;PRS
ishlab chiqarmoq V;PFV;FH;PL;2
ishlab chiqarmoq V;PROG;IND;SG;2;INFM;FUT
ishlab chiqarmoq V;PROG;IND;PL;2;FUT
ishlab chiqarmoq V;PFV;SBJV;SG;1;FUT
ishlab chiqarmoq V;PRF;SBJV;SG;3;PRS
ishlab chiqarmoq V;PFV;SBJV;SG;2;INFM;FUT
ishlab chiqarmoq V;PRF+PROG;COND;SG;1;PRS
ishlab chiqarmoq V;IND;PL;2;PST
ishlab chiqarmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ishlab chiqarmoq V;COND;PL;3;PRS
ishlab chiqarmoq V;SG;3;PRS
ishlab chiqarmoq V;PROG;IND;SG;2;INFM;PST
ishlab chiqarmoq V;PROG;FRML;IND;SG;2;FUT
ishlab chiqarmoq V;IND;PL;3;PST
ishlab chiqarmoq V;PFV;FH;SG;3
ishlab chiqarmoq V;PROG;IND;SG;3;PRS
ishlab chiqarmoq V;COND;SG;2;INFM;PRS
ishlab chiqarmoq V;PROG;IND;PL;1;PST
ishlab chiqarmoq V;IND;PL;1;PST
ishlab chiqarmoq V;IND;SG;1;PST
ishlab chiqarmoq V;PL;2;PRS
ishlab chiqarmoq V;PFV;FRML;SBJV;SG;2;FUT
ishlab chiqarmoq V;PRF;SBJV;PL;3;PRS
ishlab chiqarmoq V;PFV;IND;SG;2;INFM;PST
ishlab chiqarmoq V;PROG;COND;SG;2;PRS
ishlab chiqarmoq V;PFV;IND;SG;1;PST
ishlab chiqarmoq V;PFV;SBJV;PL;2;FUT
ishlab chiqarmoq V;IND;SG;2;INFM;PST
ishlab chiqarmoq V;PROG;FRML;IND;SG;2;PRS
ishlab chiqarmoq V;PRF+PROG;COND;PL;3;PRS
ishlab chiqarmoq V;PRF;FRML;SBJV;SG;2;PRS
ishlab chiqarmoq V;PROG;IND;PL;3;FUT
ishlab chiqarmoq V;PRF+PROG;COND;PL;1;PRS
ishlab chiqarmoq V;PRF;SBJV;SG;2;INFM;PRS
ishlab chiqarmoq V;PFV;SBJV;PL;3;FUT
ishlab chiqarmoq V;PRF;SBJV;PL;1;PRS
ishlab chiqarmoq V;PROG;FRML;IND;SG;2;PST
ishlab chiqarmoq V;PROG;COND;PL;3;PRS
ishlab chiqarmoq V;PFV;FRML;IND;SG;2;PST
ishlab chiqarmoq V;PROG;IND;SG;1;FUT
ishlab chiqarmoq V;COND;PL;1;PRS
ishlab chiqarmoq V;PFV;SBJV;PL;1;FUT
ishlab chiqarmoq V;PRF;SBJV;PL;2;PRS
ishlab chiqarmoq V;SG;2;INFM;PRS
ishlab chiqarmoq V;PROG;COND;SG;3;PRS
silkimoq V;PFV;IND;SG;1;PST
silkimoq V;PROG;IND;PL;1;PRS
silkimoq V;PROG;COND;SG;1;PRS
silkimoq V;PROG;FRML;IND;SG;2;PRS
silkimoq V;PFV;FH;SG;2
silkimoq V;SG;1;PRS
silkimoq V;PRF;SBJV;PL;3;PRS
silkimoq V;PRF;SBJV;SG;1;PRS
silkimoq V;PROG;IND;SG;1;PRS
silkimoq V;IND;SG;1;PST
silkimoq V;PROG;IND;PL;1;PST
silkimoq V;IND;PL;1;PST
silkimoq V;PL;1;PRS
silkimoq V;PROG;FRML;IND;SG;2;PST
silkimoq V;PFV;SBJV;PL;2;FUT
silkimoq V;PFV;SBJV;SG;3;FUT
silkimoq V;PROG;IND;SG;2;INFM;PRS
silkimoq V;PFV;FH;PL;1
silkimoq V;FRML;SG;2;PRS
silkimoq V;PROG;IND;SG;3;PST
silkimoq V;PRF+PROG;COND;PL;3;PRS
silkimoq V;PFV;SBJV;SG;2;INFM;FUT
silkimoq V;PROG;IND;SG;3;FUT
silkimoq V;IND;PL;2;PST
silkimoq V;PRF;SBJV;SG;3;PRS
silkimoq V;COND;SG;2;INFM;PRS
silkimoq V;PRF+PROG;COND;SG;1;PRS
silkimoq V;PL;2;PRS
silkimoq V;PFV;FRML;SBJV;SG;2;FUT
silkimoq V;PFV;FH;SG;1
silkimoq V;FRML;IND;SG;2;PST
silkimoq V;PRF+PROG;COND;PL;1;PRS
silkimoq V;PROG;IND;PL;1;FUT
silkimoq V;PRF;SBJV;PL;1;PRS
silkimoq V;PFV;SBJV;PL;1;FUT
silkimoq V;PROG;IND;SG;2;INFM;PST
silkimoq V;PFV;SBJV;PL;3;FUT
silkimoq V;PROG;COND;SG;3;PRS
silkimoq V;PRF+PROG;COND;PL;2;PRS
silkimoq V;SG;2;INFM;PRS
silkimoq V;PFV;IND;SG;3;PST
silkimoq V;PROG;FRML;IND;SG;2;FUT
silkimoq V;PROG;IND;SG;3;PRS
silkimoq V;PRF;FRML;SBJV;SG;2;PRS
silkimoq V;PRF;SBJV;PL;2;PRS
silkimoq V;PROG;IND;SG;1;FUT
silkimoq V;COND;SG;1;PRS
silkimoq V;IND;PL;3;PST
silkimoq V;PFV;FH;PL;3
silkimoq V;COND;SG;3;PRS
silkimoq V;PROG;IND;PL;3;PRS
silkimoq V;PRF;SBJV;SG;2;INFM;PRS
silkimoq V;PFV;IND;SG;2;INFM;PST
silkimoq V;PROG;COND;PL;3;PRS
silkimoq V;FRML;COND;SG;2;PRS
silkimoq V;SG;3;PRS
silkimoq V;PRF+PROG;COND;SG;3;PRS
silkimoq V;PFV;FH;SG;3
silkimoq V;PFV;IND;PL;3;PST
silkimoq V;COND;PL;1;PRS
silkimoq V;IND;SG;2;INFM;PST
silkimoq V;PROG;IND;PL;2;PST
silkimoq V;PROG;IND;PL;2;FUT
silkimoq V;PROG;IND;PL;3;FUT
silkimoq V;IND;SG;3;PST
silkimoq V;PFV;SBJV;SG;1;FUT
silkimoq V;PFV;FRML;IND;SG;2;PST
silkimoq V;PROG;COND;SG;2;PRS
silkimoq V;COND;PL;2;PRS
silkimoq V;PRF+PROG;FRML;COND;SG;2;PRS
silkimoq V;PFV;FRML;FH;SG;2
silkimoq V;PRF+PROG;COND;SG;2;INFM;PRS
silkimoq V;PFV;IND;PL;2;PST
silkimoq V;PROG;IND;PL;3;PST
silkimoq V;PROG;IND;SG;1;PST
silkimoq V;PROG;IND;SG;2;INFM;FUT
silkimoq V;COND;PL;3;PRS
silkimoq V;PL;3;PRS
silkimoq V;PFV;IND;PL;1;PST
silkimoq V;PFV;FH;PL;2
silkimoq V;PROG;COND;PL;1;PRS
silkimoq V;PROG;IND;PL;2;PRS
ajramoq V;PRF;SBJV;SG;1;PRS
ajramoq V;COND;PL;2;PRS
ajramoq V;COND;PL;1;PRS
ajramoq V;PFV;IND;PL;2;PST
ajramoq V;PROG;IND;SG;2;INFM;FUT
ajramoq V;PRF;FRML;SBJV;SG;2;PRS
ajramoq V;PRF;SBJV;PL;2;PRS
ajramoq V;PROG;COND;PL;3;PRS
ajramoq V;IND;PL;1;PST
ajramoq V;PFV;SBJV;SG;2;INFM;FUT
ajramoq V;PROG;COND;PL;1;PRS
ajramoq V;PROG;COND;SG;3;PRS
ajramoq V;PRF+PROG;COND;SG;1;PRS
ajramoq V;PFV;FH;SG;2;INFM
ajramoq V;PROG;IND;SG;2;INFM;PRS
ajramoq V;PROG;IND;PL;1;FUT
ajramoq V;PFV;FRML;SBJV;SG;2;FUT
ajramoq V;PFV;IND;PL;1;PST
ajramoq V;PROG;IND;SG;3;PRS
ajramoq V;PL;1;PRS
ajramoq V;PRF+PROG;COND;PL;2;PRS
ajramoq V;PROG;IND;PL;1;PST
ajramoq V;PROG;IND;SG;3;PST
ajramoq V;PROG;IND;PL;3;PST
ajramoq V;PROG;IND;SG;1;FUT
ajramoq V;COND;SG;1;PRS
ajramoq V;PROG;IND;PL;2;PRS
ajramoq V;PROG;IND;SG;1;PRS
ajramoq V;SG;3;PRS
ajramoq V;PRF+PROG;COND;PL;3;PRS
ajramoq V;PFV;FRML;IND;SG;2;PST
ajramoq V;PROG;COND;SG;1;PRS
ajramoq V;PFV;IND;SG;1;PST
ajramoq V;PRF;SBJV;SG;2;INFM;PRS
ajramoq V;PFV;IND;SG;3;PST
ajramoq V;IND;SG;3;PST
ajramoq V;IND;PL;3;PST
ajramoq V;SG;2;INFM;PRS
ajramoq V;PROG;IND;PL;2;PST
ajramoq V;PRF;SBJV;PL;3;PRS
ajramoq V;PROG;IND;SG;3;FUT
ajramoq V;PL;2;PRS
ajramoq V;PROG;FRML;IND;SG;2;FUT
ajramoq V;PROG;IND;SG;1;PST
ajramoq V;IND;SG;1;PST
ajramoq V;PROG;IND;PL;1;PRS
ajramoq V;PFV;FH;SG;1
ajramoq V;PFV;IND;SG;2;INFM;PST
ajramoq V;PFV;SBJV;PL;1;FUT
ajramoq V;PROG;COND;SG;2;PRS
ajramoq V;PRF+PROG;COND;SG;3;PRS
ajramoq V;PFV;SBJV;PL;2;FUT
ajramoq V;FRML;COND;SG;2;PRS
ajramoq V;PFV;FH;PL;2
ajramoq V;PRF;SBJV;SG;3;PRS
ajramoq V;PFV;FH;PL;3
ajramoq V;PFV;FRML;FH;SG;2
ajramoq V;PROG;IND;PL;3;PRS
ajramoq V;FRML;IND;SG;2;PST
ajramoq V;PRF+PROG;COND;PL;1;PRS
ajramoq V;PL;3;PRS
ajramoq V;PFV;SBJV;SG;1;FUT
ajramoq V;SG;1;PRS
ajramoq V;PROG;IND;PL;2;FUT
ajramoq V;PROG;IND;PL;3;FUT
ajramoq V;PRF;SBJV;PL;1;PRS
ajramoq V;PROG;COND;PL;2;PRS
ajramoq V;IND;PL;2;PST
ajramoq V;PROG;FRML;IND;SG;2;PST
ajramoq V;COND;SG;2;INFM;PRS
ajramoq V;PROG;IND;SG;2;INFM;PST
ajramoq V;PFV;IND;PL;3;PST
ajramoq V;PFV;FH;SG;3
ajramoq V;PFV;SBJV;PL;3;FUT
ajramoq V;PROG;FRML;COND;SG;2;PRS
ajramoq V;PFV;SBJV;SG;3;FUT
ajramoq V;IND;SG;2;INFM;PST
ajramoq V;COND;SG;3;PRS
ajramoq V;FRML;SG;2;PRS
ajramoq V;PRF+PROG;COND;SG;2;INFM;PRS
ajramoq V;PROG;FRML;IND;SG;2;PRS
ajramoq V;PRF+PROG;FRML;COND;SG;2;PRS
ajramoq V;COND;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;FRML;IND;SG;2;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;3;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FRML;SBJV;SG;2;FUT
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;PL;1;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;1;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;COND;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;PL;3;FUT
ko'zdan g'oyib bo'lmoq V;COND;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;1;PST
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;SG;3;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;1;PST
ko'zdan g'oyib bo'lmoq V;PFV;IND;PL;1;PST
ko'zdan g'oyib bo'lmoq V;PFV;IND;SG;1;PST
ko'zdan g'oyib bo'lmoq V;COND;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;IND;SG;2;INFM;PST
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;2;INFM;PST
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;2;PST
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;1;FUT
ko'zdan g'oyib bo'lmoq V;PFV;FH;SG;2
ko'zdan g'oyib bo'lmoq V;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PROG;FRML;IND;SG;2;PST
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;3;PST
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PFV;IND;PL;2;PST
ko'zdan g'oyib bo'lmoq V;FRML;COND;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;COND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;FRML;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FRML;IND;SG;2;PST
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;SG;2;INFM;PRS
ko'zdan g'oyib bo'lmoq V;IND;PL;1;PST
ko'zdan g'oyib bo'lmoq V;IND;PL;2;PST
ko'zdan g'oyib bo'lmoq V;PFV;IND;PL;3;PST
ko'zdan g'oyib bo'lmoq V;PFV;IND;SG;3;PST
ko'zdan g'oyib bo'lmoq V;PROG;COND;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FH;PL;2
ko'zdan g'oyib bo'lmoq V;COND;PL;2;PRS
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;IND;SG;3;PST
ko'zdan g'oyib bo'lmoq V;PROG;COND;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;PL;2;FUT
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;3;FUT
ko'zdan g'oyib bo'lmoq V;PFV;IND;SG;2;INFM;PST
ko'zdan g'oyib bo'lmoq V;FRML;IND;SG;2;PST
ko'zdan g'oyib bo'lmoq V;COND;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PROG;FRML;IND;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;2;FUT
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PRF+PROG;COND;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;IND;PL;3;PST
ko'zdan g'oyib bo'lmoq V;PROG;COND;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FH;SG;3
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;SG;2;INFM;FUT
ko'zdan g'oyib bo'lmoq V;PL;1;PRS
ko'zdan g'oyib bo'lmoq V;PROG;COND;SG;3;PRS
ko'zdan g'oyib bo'lmoq V;PROG;COND;SG;2;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;2;INFM;FUT
ko'zdan g'oyib bo'lmoq V;SG;1;PRS
ko'zdan g'oyib bo'lmoq V;PFV;FRML;FH;SG;2
ko'zdan g'oyib bo'lmoq V;PRF;SBJV;PL;3;PRS
ko'zdan g'oyib bo'lmoq V;PROG;IND;SG;3;PST
ko'zdan g'oyib bo'lmoq V;PFV;SBJV;SG;1;FUT
ko'zdan g'oyib bo'lmoq V;PFV;FH;PL;3
ko'zdan g'oyib bo'lmoq V;IND;SG;1;PST
ko'zdan g'oyib bo'lmoq V;PFV;FH;SG;1
ko'zdan g'oyib bo'lmoq V;PFV;FH;PL;1
ishtirok etmoq V;PRF+PROG;COND;PL;2;PRS
ishtirok etmoq V;PROG;IND;SG;3;PRS
ishtirok etmoq V;PFV;IND;PL;1;PST
ishtirok etmoq V;COND;SG;3;PRS
ishtirok etmoq V;PROG;IND;SG;2;INFM;PST
ishtirok etmoq V;PRF+PROG;COND;SG;3;PRS
ishtirok etmoq V;COND;SG;1;PRS
ishtirok etmoq V;PFV;FH;SG;2
ishtirok etmoq V;PRF+PROG;COND;PL;1;PRS
ishtirok etmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ishtirok etmoq V;SBJV;SG;1;PRS
ishtirok etmoq V;SG;2;INFM;PRS
ishtirok etmoq V;PRF;SBJV;SG;1;PRS
ishtirok etmoq V;PFV;SBJV;SG;3;FUT
ishtirok etmoq V;IND;SG;1;PST
ishtirok etmoq V;PROG;IND;PL;1;FUT
ishtirok etmoq V;FRML;COND;SG;2;PRS
ishtirok etmoq V;PRF;SBJV;SG;3;PRS
ishtirok etmoq V;PFV;IND;SG;3;PST
ishtirok etmoq V;COND;SG;2;INFM;PRS
ishtirok etmoq V;PROG;IND;PL;2;FUT
ishtirok etmoq V;PFV;FH;SG;1
ishtirok etmoq V;PL;2;PRS
ishtirok etmoq V;PFV;FH;PL;1
ishtirok etmoq V;COND;PL;2;PRS
ishtirok etmoq V;COND;PL;1;PRS
ishtirok etmoq V;PROG;FRML;IND;SG;2;FUT
ishtirok etmoq V;PROG;IND;PL;1;PST
ishtirok etmoq V;PROG;IND;SG;3;FUT
ishtirok etmoq V;PRF;SBJV;SG;2;INFM;PRS
ishtirok etmoq V;PROG;IND;PL;3;PST
ishtirok etmoq V;FRML;IND;SG;2;PST
ishtirok etmoq V;PFV;FH;PL;2
ishtirok etmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishtirok etmoq V;PRF;SBJV;PL;1;PRS
ishtirok etmoq V;SBJV;SG;2;PRS
ishtirok etmoq V;PROG;IND;SG;2;INFM;FUT
ishtirok etmoq V;PROG;COND;PL;1;PRS
ishtirok etmoq V;FRML;SG;2;PRS
ishtirok etmoq V;PFV;FRML;SBJV;SG;2;FUT
ishtirok etmoq V;PFV;IND;PL;3;PST
ishtirok etmoq V;PROG;IND;PL;3;PRS
ishtirok etmoq V;SBJV;PL;2;PRS
ishtirok etmoq V;IND;SG;2;INFM;PST
ishtirok etmoq V;SBJV;PL;3;PRS
ishtirok etmoq V;SBJV;PL;1;PRS
ishtirok etmoq V;PROG;IND;SG;2;INFM;PRS
ishtirok etmoq V;SBJV;SG;3;PRS
ishtirok etmoq V;IND;PL;2;PST
ishtirok etmoq V;COND;PL;3;PRS
ishtirok etmoq V;PROG;COND;PL;3;PRS
ishtirok etmoq V;PFV;SBJV;SG;2;INFM;FUT
ishtirok etmoq V;PFV;IND;SG;2;INFM;PST
ishtirok etmoq V;PFV;IND;PL;2;PST
ishtirok etmoq V;IND;SG;3;PST
ishtirok etmoq V;SG;3;PRS
ishtirok etmoq V;PFV;FH;SG;3
ishtirok etmoq V;PFV;SBJV;PL;3;FUT
ishtirok etmoq V;PRF;FRML;SBJV;SG;2;PRS
ishtirok etmoq V;IND;PL;1;PST
ishtirok etmoq V;PROG;IND;SG;1;PST
ishtirok etmoq V;IND;PL;3;PST
ishtirok etmoq V;PROG;IND;SG;3;PST
ishtirok etmoq V;PROG;IND;PL;2;PST
ishtirok etmoq V;PL;3;PRS
ishtirok etmoq V;PROG;FRML;IND;SG;2;PST
ishtirok etmoq V;FRML;SBJV;SG;2;PRS
ishtirok etmoq V;PROG;IND;PL;3;FUT
ishtirok etmoq V;PL;1;PRS
ishtirok etmoq V;PRF;SBJV;PL;3;PRS
ishtirok etmoq V;PFV;SBJV;PL;1;FUT
ishtirok etmoq V;PRF+PROG;COND;PL;3;PRS
ishtirok etmoq V;PROG;IND;PL;2;PRS
ishtirok etmoq V;PFV;FRML;FH;SG;2
ishtirok etmoq V;PROG;IND;PL;1;PRS
ishtirok etmoq V;PROG;COND;SG;3;PRS
ishtirok etmoq V;PROG;COND;SG;2;PRS
ishtirok etmoq V;PROG;FRML;IND;SG;2;PRS
ishtirok etmoq V;PROG;COND;SG;1;PRS
ishtirok etmoq V;PROG;IND;SG;1;PRS
ishtirok etmoq V;PFV;FRML;IND;SG;2;PST
ishtirok etmoq V;PRF;SBJV;PL;2;PRS
ishtirok etmoq V;PROG;IND;SG;1;FUT
ishtirok etmoq V;PFV;SBJV;PL;2;FUT
ishtirok etmoq V;PFV;IND;SG;1;PST
ishtirok etmoq V;SG;1;PRS
ishtirok etmoq V;PFV;SBJV;SG;1;FUT
ishtirok etmoq V;PFV;FH;PL;3
ishtirok etmoq V;PRF+PROG;COND;SG;1;PRS
hujum qilmoq V;PROG;COND;SG;3;PRS
hujum qilmoq V;PFV;IND;SG;1;PST
hujum qilmoq V;IND;SG;2;INFM;PST
hujum qilmoq V;PROG;IND;SG;3;PRS
hujum qilmoq V;PFV;FRML;SBJV;SG;2;FUT
hujum qilmoq V;PROG;COND;PL;1;PRS
hujum qilmoq V;PRF;SBJV;SG;1;PRS
hujum qilmoq V;IND;PL;3;PST
hujum qilmoq V;PROG;COND;PL;3;PRS
hujum qilmoq V;PROG;IND;SG;3;PST
hujum qilmoq V;PROG;IND;SG;1;FUT
hujum qilmoq V;PFV;IND;PL;3;PST
hujum qilmoq V;PROG;IND;PL;2;PST
hujum qilmoq V;PFV;SBJV;PL;3;FUT
hujum qilmoq V;PFV;SBJV;SG;3;FUT
hujum qilmoq V;SG;2;INFM;PRS
hujum qilmoq V;PFV;FH;SG;1
hujum qilmoq V;PROG;IND;SG;1;PRS
hujum qilmoq V;PROG;IND;SG;3;FUT
hujum qilmoq V;PROG;IND;PL;3;FUT
hujum qilmoq V;PFV;FH;PL;3
hujum qilmoq V;PFV;SBJV;PL;2;FUT
hujum qilmoq V;PROG;FRML;IND;SG;2;PST
hujum qilmoq V;FRML;IND;SG;2;PST
hujum qilmoq V;PROG;IND;PL;1;PST
hujum qilmoq V;IND;SG;3;PST
hujum qilmoq V;COND;SG;3;PRS
hujum qilmoq V;PFV;SBJV;SG;1;FUT
hujum qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
hujum qilmoq V;FRML;SG;2;PRS
hujum qilmoq V;COND;PL;2;PRS
hujum qilmoq V;PFV;SBJV;SG;2;INFM;FUT
hujum qilmoq V;PROG;COND;SG;2;PRS
hujum qilmoq V;COND;SG;1;PRS
hujum qilmoq V;PROG;IND;PL;1;PRS
hujum qilmoq V;COND;PL;1;PRS
hujum qilmoq V;PFV;FRML;IND;SG;2;PST
hujum qilmoq V;PFV;IND;SG;2;INFM;PST
hujum qilmoq V;PRF+PROG;COND;SG;1;PRS
hujum qilmoq V;PRF+PROG;COND;PL;3;PRS
hujum qilmoq V;PRF+PROG;COND;SG;3;PRS
hujum qilmoq V;PFV;SBJV;PL;1;FUT
hujum qilmoq V;PL;2;PRS
hujum qilmoq V;PFV;FH;PL;1
hujum qilmoq V;PFV;IND;PL;2;PST
hujum qilmoq V;PFV;FRML;FH;SG;2
hujum qilmoq V;PFV;FH;SG;3
hujum qilmoq V;PROG;IND;SG;2;INFM;PST
hujum qilmoq V;PRF+PROG;COND;PL;1;PRS
hujum qilmoq V;PROG;IND;SG;2;INFM;PRS
hujum qilmoq V;PFV;IND;PL;1;PST
hujum qilmoq V;IND;PL;1;PST
hujum qilmoq V;COND;PL;3;PRS
hujum qilmoq V;PROG;IND;PL;2;PRS
hujum qilmoq V;PROG;FRML;IND;SG;2;PRS
hujum qilmoq V;PRF;FRML;SBJV;SG;2;PRS
hujum qilmoq V;PRF+PROG;COND;PL;2;PRS
hujum qilmoq V;SG;1;PRS
hujum qilmoq V;PROG;IND;PL;2;FUT
hujum qilmoq V;PRF;SBJV;SG;3;PRS
hujum qilmoq V;PFV;IND;SG;3;PST
hujum qilmoq V;PFV;FH;PL;2
hujum qilmoq V;PROG;COND;SG;1;PRS
hujum qilmoq V;PROG;IND;PL;1;FUT
hujum qilmoq V;COND;SG;2;INFM;PRS
hujum qilmoq V;PROG;IND;PL;3;PRS
hujum qilmoq V;PROG;IND;SG;2;INFM;FUT
hujum qilmoq V;SG;3;PRS
hujum qilmoq V;IND;PL;2;PST
hujum qilmoq V;IND;SG;1;PST
hujum qilmoq V;PRF;SBJV;SG;2;INFM;PRS
hujum qilmoq V;PL;1;PRS
hujum qilmoq V;PRF;SBJV;PL;2;PRS
hujum qilmoq V;PL;3;PRS
hujum qilmoq V;PFV;FH;SG;2
hujum qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
hujum qilmoq V;PROG;FRML;IND;SG;2;FUT
hujum qilmoq V;PRF;SBJV;PL;3;PRS
hujum qilmoq V;PROG;IND;SG;1;PST
hujum qilmoq V;PRF;SBJV;PL;1;PRS
hujum qilmoq V;FRML;COND;SG;2;PRS
hujum qilmoq V;PROG;IND;PL;3;PST
himoya qilmoq V;COND;PL;3;PRS
himoya qilmoq V;COND;SG;1;PRS
himoya qilmoq V;PL;3;PRS
himoya qilmoq V;PROG;COND;SG;1;PRS
himoya qilmoq V;COND;PL;2;PRS
himoya qilmoq V;PROG;COND;SG;2;PRS
himoya qilmoq V;PROG;FRML;IND;SG;2;PST
himoya qilmoq V;PROG;IND;SG;2;INFM;PST
himoya qilmoq V;PL;1;PRS
himoya qilmoq V;PFV;SBJV;SG;1;FUT
himoya qilmoq V;PROG;IND;SG;1;PST
himoya qilmoq V;PFV;FH;SG;2
himoya qilmoq V;PFV;SBJV;PL;2;FUT
himoya qilmoq V;PFV;SBJV;SG;2;INFM;FUT
himoya qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
himoya qilmoq V;FRML;SG;2;PRS
himoya qilmoq V;PROG;FRML;IND;SG;2;PRS
himoya qilmoq V;PRF+PROG;COND;PL;3;PRS
himoya qilmoq V;IND;PL;3;PST
himoya qilmoq V;IND;PL;2;PST
himoya qilmoq V;PRF+PROG;COND;PL;2;PRS
himoya qilmoq V;FRML;IND;SG;2;PST
himoya qilmoq V;PROG;COND;SG;3;PRS
himoya qilmoq V;PROG;IND;PL;2;PRS
himoya qilmoq V;COND;SG;3;PRS
himoya qilmoq V;PFV;SBJV;PL;3;FUT
himoya qilmoq V;COND;SG;2;INFM;PRS
himoya qilmoq V;PRF+PROG;COND;SG;3;PRS
himoya qilmoq V;PROG;IND;SG;3;PST
himoya qilmoq V;PFV;SBJV;PL;1;FUT
himoya qilmoq V;PFV;FH;PL;3
himoya qilmoq V;PROG;IND;SG;1;PRS
himoya qilmoq V;PRF;SBJV;SG;2;INFM;PRS
himoya qilmoq V;PFV;IND;SG;3;PST
himoya qilmoq V;PL;2;PRS
himoya qilmoq V;FRML;COND;SG;2;PRS
himoya qilmoq V;PROG;IND;PL;2;FUT
himoya qilmoq V;PROG;IND;PL;2;PST
himoya qilmoq V;PROG;FRML;IND;SG;2;FUT
himoya qilmoq V;PROG;IND;PL;3;PST
himoya qilmoq V;PFV;IND;PL;1;PST
himoya qilmoq V;PRF;SBJV;SG;3;PRS
himoya qilmoq V;PROG;COND;PL;1;PRS
himoya qilmoq V;PRF+PROG;COND;PL;1;PRS
himoya qilmoq V;PFV;IND;SG;1;PST
himoya qilmoq V;PFV;IND;PL;2;PST
himoya qilmoq V;SG;3;PRS
himoya qilmoq V;PROG;IND;PL;1;FUT
himoya qilmoq V;PRF;SBJV;SG;1;PRS
himoya qilmoq V;PFV;IND;SG;2;INFM;PST
himoya qilmoq V;PFV;FRML;FH;SG;2
himoya qilmoq V;COND;PL;1;PRS
himoya qilmoq V;PROG;IND;SG;3;PRS
himoya qilmoq V;IND;SG;1;PST
himoya qilmoq V;SG;2;INFM;PRS
himoya qilmoq V;PFV;FRML;SBJV;SG;2;FUT
himoya qilmoq V;PRF;SBJV;PL;2;PRS
himoya qilmoq V;PROG;IND;PL;1;PRS
himoya qilmoq V;IND;PL;1;PST
himoya qilmoq V;PFV;IND;PL;3;PST
himoya qilmoq V;PFV;FRML;IND;SG;2;PST
himoya qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
himoya qilmoq V;PROG;IND;SG;2;INFM;PRS
himoya qilmoq V;SG;1;PRS
himoya qilmoq V;PROG;IND;SG;3;FUT
himoya qilmoq V;PFV;FH;SG;3
himoya qilmoq V;PROG;IND;PL;1;PST
himoya qilmoq V;PROG;IND;PL;3;FUT
himoya qilmoq V;PFV;FH;SG;1
himoya qilmoq V;IND;SG;2;INFM;PST
himoya qilmoq V;PFV;FH;PL;1
himoya qilmoq V;PROG;IND;PL;3;PRS
himoya qilmoq V;IND;SG;3;PST
himoya qilmoq V;PFV;SBJV;SG;3;FUT
himoya qilmoq V;PRF;SBJV;PL;1;PRS
himoya qilmoq V;PFV;FH;PL;2
himoya qilmoq V;PRF;FRML;SBJV;SG;2;PRS
himoya qilmoq V;PROG;COND;PL;3;PRS
himoya qilmoq V;PROG;IND;SG;2;INFM;FUT
himoya qilmoq V;PRF+PROG;COND;SG;1;PRS
himoya qilmoq V;PRF;SBJV;PL;3;PRS
himoya qilmoq V;PROG;IND;SG;1;FUT
gapirmoq V;PFV;FRML;SBJV;SG;2;FUT
gapirmoq V;IND;PL;2;PST
gapirmoq V;PROG;IND;SG;3;PST
gapirmoq V;PRF;SBJV;PL;3;PRS
gapirmoq V;PROG;IND;SG;3;PRS
gapirmoq V;COND;PL;1;PRS
gapirmoq V;COND;SG;3;PRS
gapirmoq V;PL;3;PRS
gapirmoq V;PL;1;PRS
gapirmoq V;PROG;IND;SG;1;PRS
gapirmoq V;PROG;FRML;IND;SG;2;PST
gapirmoq V;IND;SG;3;PST
gapirmoq V;PFV;FRML;FH;SG;2
gapirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
gapirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
gapirmoq V;PRF+PROG;COND;PL;2;PRS
gapirmoq V;FRML;COND;SG;2;PRS
gapirmoq V;PFV;FH;SG;3
gapirmoq V;FRML;IND;SG;2;PST
gapirmoq V;PROG;IND;PL;3;FUT
gapirmoq V;PL;2;PRS
gapirmoq V;FRML;SG;2;PRS
gapirmoq V;PFV;IND;PL;3;PST
gapirmoq V;PROG;IND;PL;3;PRS
gapirmoq V;PFV;SBJV;SG;3;FUT
gapirmoq V;PRF;SBJV;SG;1;PRS
gapirmoq V;PROG;IND;PL;3;PST
gapirmoq V;PROG;IND;PL;1;PST
gapirmoq V;PROG;IND;SG;2;INFM;FUT
gapirmoq V;PROG;FRML;IND;SG;2;PRS
gapirmoq V;PROG;IND;SG;1;PST
gapirmoq V;PFV;SBJV;PL;2;FUT
gapirmoq V;PRF;SBJV;SG;2;INFM;PRS
gapirmoq V;PFV;IND;PL;1;PST
gapirmoq V;PFV;FH;SG;1
gapirmoq V;PROG;IND;PL;1;PRS
gapirmoq V;PFV;FH;SG;2
gapirmoq V;PFV;FH;PL;1
gapirmoq V;PRF+PROG;COND;SG;1;PRS
gapirmoq V;PRF;SBJV;PL;2;PRS
gapirmoq V;PROG;IND;PL;1;FUT
gapirmoq V;PFV;FRML;IND;SG;2;PST
gapirmoq V;SG;1;PRS
gapirmoq V;PRF+PROG;COND;PL;1;PRS
gapirmoq V;PROG;COND;SG;1;PRS
gapirmoq V;PRF+PROG;COND;SG;3;PRS
gapirmoq V;PROG;IND;SG;2;INFM;PST
gapirmoq V;PRF;SBJV;SG;3;PRS
gapirmoq V;PROG;COND;SG;3;PRS
gapirmoq V;PFV;SBJV;SG;1;FUT
gapirmoq V;COND;PL;3;PRS
gapirmoq V;PRF+PROG;COND;PL;3;PRS
gapirmoq V;COND;SG;2;INFM;PRS
gapirmoq V;PROG;IND;SG;1;FUT
gapirmoq V;PRF;FRML;SBJV;SG;2;PRS
gapirmoq V;PFV;SBJV;PL;1;FUT
gapirmoq V;PFV;IND;SG;1;PST
gapirmoq V;PROG;IND;SG;2;INFM;PRS
gapirmoq V;IND;SG;1;PST
gapirmoq V;PROG;FRML;IND;SG;2;FUT
gapirmoq V;IND;PL;3;PST
gapirmoq V;PROG;IND;PL;2;PST
gapirmoq V;PRF;SBJV;PL;1;PRS
gapirmoq V;IND;SG;2;INFM;PST
gapirmoq V;PROG;COND;PL;3;PRS
gapirmoq V;SG;2;INFM;PRS
gapirmoq V;PROG;COND;SG;2;PRS
gapirmoq V;PROG;IND;PL;2;PRS
gapirmoq V;PFV;FH;PL;3
gapirmoq V;PFV;IND;SG;2;INFM;PST
gapirmoq V;COND;SG;1;PRS
gapirmoq V;PFV;SBJV;PL;3;FUT
gapirmoq V;PFV;FH;PL;2
gapirmoq V;PFV;IND;SG;3;PST
gapirmoq V;PFV;SBJV;SG;2;INFM;FUT
gapirmoq V;SG;3;PRS
gapirmoq V;PROG;COND;PL;1;PRS
gapirmoq V;PROG;IND;PL;2;FUT
gapirmoq V;COND;PL;2;PRS
gapirmoq V;PFV;IND;PL;2;PST
gapirmoq V;PROG;IND;SG;3;FUT
gapirmoq V;IND;PL;1;PST
so'zlashmoq V;FRML;SG;2;PRS
so'zlashmoq V;PROG;COND;PL;2;PRS
so'zlashmoq V;FRML;IND;SG;2;PST
so'zlashmoq V;PROG;IND;SG;1;PRS
so'zlashmoq V;PROG;IND;SG;2;INFM;PRS
so'zlashmoq V;PRF+PROG;COND;SG;1;PRS
so'zlashmoq V;PFV;IND;PL;3;PST
so'zlashmoq V;COND;SG;1;PRS
so'zlashmoq V;SBJV;PL;1;PRS
so'zlashmoq V;PROG;IND;PL;1;PST
so'zlashmoq V;PROG;COND;SG;3;PRS
so'zlashmoq V;PRF+PROG;COND;PL;1;PRS
so'zlashmoq V;PROG;FRML;IND;SG;2;PST
so'zlashmoq V;PFV;FRML;FH;SG;2
so'zlashmoq V;COND;PL;1;PRS
so'zlashmoq V;FRML;COND;SG;2;PRS
so'zlashmoq V;PFV;SBJV;PL;3;FUT
so'zlashmoq V;PROG;IND;PL;2;FUT
so'zlashmoq V;COND;SG;3;PRS
so'zlashmoq V;PFV;SBJV;SG;3;FUT
so'zlashmoq V;PRF+PROG;COND;SG;2;INFM;PRS
so'zlashmoq V;PRF;SBJV;PL;3;PRS
so'zlashmoq V;PFV;FH;PL;2
so'zlashmoq V;IND;PL;1;PST
so'zlashmoq V;PROG;IND;SG;3;PST
so'zlashmoq V;COND;PL;2;PRS
so'zlashmoq V;PRF+PROG;COND;SG;3;PRS
so'zlashmoq V;PFV;SBJV;SG;2;INFM;FUT
so'zlashmoq V;PFV;FRML;SBJV;SG;2;FUT
so'zlashmoq V;PROG;COND;SG;1;PRS
so'zlashmoq V;PROG;COND;PL;1;PRS
so'zlashmoq V;FRML;SBJV;SG;2;PRS
so'zlashmoq V;PFV;IND;SG;1;PST
so'zlashmoq V;PRF;SBJV;SG;1;PRS
so'zlashmoq V;PROG;IND;SG;1;PST
so'zlashmoq V;IND;PL;2;PST
so'zlashmoq V;PFV;SBJV;PL;1;FUT
so'zlashmoq V;SBJV;SG;3;PRS
so'zlashmoq V;PROG;IND;SG;3;FUT
so'zlashmoq V;PROG;IND;SG;2;INFM;PST
so'zlashmoq V;PFV;IND;PL;2;PST
so'zlashmoq V;PROG;FRML;COND;SG;2;PRS
so'zlashmoq V;PROG;IND;SG;1;FUT
so'zlashmoq V;PRF+PROG;COND;PL;2;PRS
so'zlashmoq V;IND;SG;3;PST
so'zlashmoq V;PRF;SBJV;PL;1;PRS
so'zlashmoq V;PFV;IND;SG;2;INFM;PST
so'zlashmoq V;PROG;IND;PL;3;FUT
so'zlashmoq V;PFV;IND;PL;1;PST
so'zlashmoq V;PL;3;PRS
so'zlashmoq V;PFV;SBJV;PL;2;FUT
so'zlashmoq V;PROG;IND;PL;3;PRS
so'zlashmoq V;PRF;FRML;SBJV;SG;2;PRS
so'zlashmoq V;PL;2;PRS
so'zlashmoq V;PFV;FH;SG;3
so'zlashmoq V;IND;SG;2;INFM;PST
so'zlashmoq V;PRF;SBJV;SG;3;PRS
so'zlashmoq V;PROG;FRML;IND;SG;2;PRS
so'zlashmoq V;PROG;IND;SG;3;PRS
so'zlashmoq V;SBJV;SG;1;PRS
so'zlashmoq V;SG;2;INFM;PRS
so'zlashmoq V;SG;1;PRS
so'zlashmoq V;PFV;FH;SG;2
so'zlashmoq V;PFV;FRML;IND;SG;2;PST
so'zlashmoq V;PFV;IND;SG;3;PST
so'zlashmoq V;PFV;SBJV;SG;1;FUT
so'zlashmoq V;PROG;COND;SG;2;PRS
so'zlashmoq V;PROG;FRML;IND;SG;2;FUT
so'zlashmoq V;COND;PL;3;PRS
so'zlashmoq V;PROG;COND;PL;3;PRS
so'zlashmoq V;PFV;FH;PL;3
so'zlashmoq V;SBJV;PL;2;PRS
so'zlashmoq V;PROG;IND;PL;2;PRS
so'zlashmoq V;SBJV;PL;3;PRS
so'zlashmoq V;PRF;SBJV;PL;2;PRS
so'zlashmoq V;PRF;SBJV;SG;2;INFM;PRS
so'zlashmoq V;IND;SG;1;PST
so'zlashmoq V;PROG;IND;PL;2;PST
so'zlashmoq V;PROG;IND;PL;1;FUT
so'zlashmoq V;SG;3;PRS
so'zlashmoq V;PROG;IND;PL;3;PST
so'zlashmoq V;PRF+PROG;COND;PL;3;PRS
so'zlashmoq V;PROG;IND;PL;1;PRS
so'zlashmoq V;COND;SG;2;INFM;PRS
so'zlashmoq V;SBJV;SG;2;PRS
so'zlashmoq V;PRF+PROG;FRML;COND;SG;2;PRS
so'zlashmoq V;PFV;FH;SG;1
so'zlashmoq V;IND;PL;3;PST
so'zlashmoq V;PFV;FH;PL;1
so'zlashmoq V;PL;1;PRS
so'zlashmoq V;PROG;IND;SG;2;INFM;FUT
to'xtamga kelmoq V;PROG;COND;SG;1;PRS
to'xtamga kelmoq V;PFV;FH;PL;2
to'xtamga kelmoq V;PROG;FRML;IND;SG;2;PRS
to'xtamga kelmoq V;PFV;IND;PL;2;PST
to'xtamga kelmoq V;PROG;IND;SG;3;FUT
to'xtamga kelmoq V;PFV;SBJV;PL;1;FUT
to'xtamga kelmoq V;PROG;IND;SG;2;INFM;FUT
to'xtamga kelmoq V;SG;2;INFM;PRS
to'xtamga kelmoq V;PFV;IND;PL;3;PST
to'xtamga kelmoq V;COND;PL;1;PRS
to'xtamga kelmoq V;PFV;FH;SG;2
to'xtamga kelmoq V;PROG;COND;PL;3;PRS
to'xtamga kelmoq V;PL;1;PRS
to'xtamga kelmoq V;PROG;IND;SG;2;INFM;PRS
to'xtamga kelmoq V;PRF+PROG;COND;SG;3;PRS
to'xtamga kelmoq V;COND;SG;2;INFM;PRS
to'xtamga kelmoq V;PRF+PROG;COND;SG;1;PRS
to'xtamga kelmoq V;SG;3;PRS
to'xtamga kelmoq V;PRF+PROG;FRML;COND;SG;2;PRS
to'xtamga kelmoq V;PROG;COND;SG;3;PRS
to'xtamga kelmoq V;PRF+PROG;COND;PL;2;PRS
to'xtamga kelmoq V;PFV;SBJV;SG;1;FUT
to'xtamga kelmoq V;PROG;IND;PL;1;PST
to'xtamga kelmoq V;PROG;COND;PL;1;PRS
to'xtamga kelmoq V;PROG;IND;PL;2;PRS
to'xtamga kelmoq V;FRML;SG;2;PRS
to'xtamga kelmoq V;PFV;FRML;IND;SG;2;PST
to'xtamga kelmoq V;IND;PL;1;PST
to'xtamga kelmoq V;PFV;FH;PL;1
to'xtamga kelmoq V;PFV;SBJV;SG;2;INFM;FUT
to'xtamga kelmoq V;PL;2;PRS
to'xtamga kelmoq V;PROG;IND;SG;1;PST
to'xtamga kelmoq V;COND;PL;3;PRS
to'xtamga kelmoq V;IND;SG;1;PST
to'xtamga kelmoq V;PFV;IND;SG;1;PST
to'xtamga kelmoq V;SG;1;PRS
to'xtamga kelmoq V;PFV;IND;SG;3;PST
to'xtamga kelmoq V;COND;PL;2;PRS
to'xtamga kelmoq V;PROG;IND;PL;3;PST
to'xtamga kelmoq V;PROG;IND;PL;2;FUT
to'xtamga kelmoq V;IND;PL;3;PST
to'xtamga kelmoq V;PROG;IND;SG;2;INFM;PST
to'xtamga kelmoq V;PROG;FRML;IND;SG;2;FUT
to'xtamga kelmoq V;PROG;IND;PL;3;FUT
to'xtamga kelmoq V;PFV;FRML;SBJV;SG;2;FUT
to'xtamga kelmoq V;PROG;IND;SG;1;FUT
to'xtamga kelmoq V;FRML;IND;SG;2;PST
to'xtamga kelmoq V;IND;SG;3;PST
to'xtamga kelmoq V;IND;PL;2;PST
to'xtamga kelmoq V;PRF;SBJV;SG;2;INFM;PRS
to'xtamga kelmoq V;COND;SG;3;PRS
to'xtamga kelmoq V;PRF;SBJV;PL;1;PRS
to'xtamga kelmoq V;PRF;SBJV;SG;1;PRS
to'xtamga kelmoq V;PFV;FRML;FH;SG;2
to'xtamga kelmoq V;PFV;FH;SG;3
to'xtamga kelmoq V;PRF+PROG;COND;SG;2;INFM;PRS
to'xtamga kelmoq V;PROG;IND;SG;1;PRS
to'xtamga kelmoq V;FRML;COND;SG;2;PRS
to'xtamga kelmoq V;PFV;SBJV;SG;3;FUT
to'xtamga kelmoq V;PFV;IND;PL;1;PST
to'xtamga kelmoq V;PFV;FH;SG;1
to'xtamga kelmoq V;PRF;SBJV;SG;3;PRS
to'xtamga kelmoq V;PFV;SBJV;PL;2;FUT
to'xtamga kelmoq V;PROG;IND;SG;3;PRS
to'xtamga kelmoq V;PROG;FRML;IND;SG;2;PST
to'xtamga kelmoq V;PFV;SBJV;PL;3;FUT
to'xtamga kelmoq V;PROG;IND;PL;2;PST
to'xtamga kelmoq V;PRF;SBJV;PL;3;PRS
to'xtamga kelmoq V;COND;SG;1;PRS
to'xtamga kelmoq V;PRF+PROG;COND;PL;3;PRS
to'xtamga kelmoq V;PROG;COND;SG;2;PRS
to'xtamga kelmoq V;IND;SG;2;INFM;PST
to'xtamga kelmoq V;PRF;FRML;SBJV;SG;2;PRS
to'xtamga kelmoq V;PFV;IND;SG;2;INFM;PST
to'xtamga kelmoq V;PL;3;PRS
to'xtamga kelmoq V;PRF;SBJV;PL;2;PRS
to'xtamga kelmoq V;PROG;IND;PL;3;PRS
to'xtamga kelmoq V;PROG;IND;PL;1;PRS
to'xtamga kelmoq V;PFV;FH;PL;3
to'xtamga kelmoq V;PROG;IND;SG;3;PST
to'xtamga kelmoq V;PROG;IND;PL;1;FUT
to'xtamga kelmoq V;PRF+PROG;COND;PL;1;PRS
ajrashmoq V;PL;2;PRS
ajrashmoq V;IND;PL;3;PST
ajrashmoq V;PFV;IND;SG;1;PST
ajrashmoq V;PROG;COND;SG;3;PRS
ajrashmoq V;PROG;FRML;IND;SG;2;PRS
ajrashmoq V;PROG;FRML;IND;SG;2;PST
ajrashmoq V;COND;SG;1;PRS
ajrashmoq V;PRF;SBJV;SG;2;INFM;PRS
ajrashmoq V;PROG;IND;PL;1;PRS
ajrashmoq V;PFV;FRML;IND;SG;2;PST
ajrashmoq V;PRF;SBJV;PL;1;PRS
ajrashmoq V;PROG;IND;SG;2;INFM;FUT
ajrashmoq V;SBJV;SG;1;PRS
ajrashmoq V;PROG;COND;PL;3;PRS
ajrashmoq V;PRF+PROG;COND;PL;2;PRS
ajrashmoq V;PROG;IND;PL;3;PRS
ajrashmoq V;PFV;SBJV;SG;3;FUT
ajrashmoq V;PROG;IND;SG;3;FUT
ajrashmoq V;PL;1;PRS
ajrashmoq V;FRML;SG;2;PRS
ajrashmoq V;PRF;SBJV;SG;1;PRS
ajrashmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ajrashmoq V;PFV;FH;PL;2
ajrashmoq V;FRML;SBJV;SG;2;PRS
ajrashmoq V;COND;PL;1;PRS
ajrashmoq V;PROG;IND;SG;1;FUT
ajrashmoq V;SG;2;INFM;PRS
ajrashmoq V;FRML;COND;SG;2;PRS
ajrashmoq V;PROG;IND;PL;3;FUT
ajrashmoq V;SBJV;PL;3;PRS
ajrashmoq V;SG;1;PRS
ajrashmoq V;PROG;IND;PL;1;PST
ajrashmoq V;PFV;FRML;FH;SG;2
ajrashmoq V;PROG;COND;SG;2;PRS
ajrashmoq V;PFV;IND;SG;3;PST
ajrashmoq V;PRF;SBJV;PL;2;PRS
ajrashmoq V;PROG;IND;PL;1;FUT
ajrashmoq V;PROG;IND;SG;3;PRS
ajrashmoq V;PFV;FH;SG;2
ajrashmoq V;PFV;IND;PL;1;PST
ajrashmoq V;PFV;SBJV;SG;2;INFM;FUT
ajrashmoq V;PROG;COND;SG;1;PRS
ajrashmoq V;PROG;FRML;IND;SG;2;FUT
ajrashmoq V;PROG;IND;SG;2;INFM;PST
ajrashmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ajrashmoq V;PFV;SBJV;PL;1;FUT
ajrashmoq V;SBJV;PL;2;PRS
ajrashmoq V;COND;PL;2;PRS
ajrashmoq V;PROG;IND;PL;2;PRS
ajrashmoq V;IND;SG;1;PST
ajrashmoq V;PROG;IND;PL;2;FUT
ajrashmoq V;PFV;SBJV;SG;1;FUT
ajrashmoq V;IND;PL;1;PST
ajrashmoq V;COND;SG;3;PRS
ajrashmoq V;IND;SG;2;INFM;PST
ajrashmoq V;FRML;IND;SG;2;PST
ajrashmoq V;SG;3;PRS
ajrashmoq V;PROG;IND;PL;2;PST
ajrashmoq V;PFV;FH;SG;1
ajrashmoq V;PL;3;PRS
ajrashmoq V;PFV;IND;SG;2;INFM;PST
ajrashmoq V;PROG;IND;SG;1;PRS
ajrashmoq V;PRF+PROG;COND;PL;3;PRS
ajrashmoq V;PROG;IND;SG;1;PST
ajrashmoq V;PFV;FH;PL;3
ajrashmoq V;IND;SG;3;PST
ajrashmoq V;PFV;FH;PL;1
ajrashmoq V;PRF+PROG;COND;PL;1;PRS
ajrashmoq V;COND;SG;2;INFM;PRS
ajrashmoq V;PROG;IND;PL;3;PST
ajrashmoq V;PRF;FRML;SBJV;SG;2;PRS
ajrashmoq V;PFV;SBJV;PL;3;FUT
ajrashmoq V;SBJV;SG;3;PRS
ajrashmoq V;PFV;FH;SG;3
ajrashmoq V;PRF+PROG;COND;SG;1;PRS
ajrashmoq V;COND;PL;3;PRS
ajrashmoq V;PRF;SBJV;SG;3;PRS
ajrashmoq V;PROG;IND;SG;3;PST
ajrashmoq V;PFV;SBJV;PL;2;FUT
ajrashmoq V;PFV;IND;PL;2;PST
ajrashmoq V;SBJV;SG;2;PRS
ajrashmoq V;PROG;IND;SG;2;INFM;PRS
ajrashmoq V;PRF+PROG;COND;SG;3;PRS
ajrashmoq V;PFV;IND;PL;3;PST
ajrashmoq V;PFV;FRML;SBJV;SG;2;FUT
ajrashmoq V;PROG;COND;PL;1;PRS
ajrashmoq V;IND;PL;2;PST
ajrashmoq V;PRF;SBJV;PL;3;PRS
ajrashmoq V;SBJV;PL;1;PRS
qidirmoq V;PROG;FRML;COND;SG;2;PRS
qidirmoq V;PROG;IND;SG;2;INFM;PST
qidirmoq V;PRF;FRML;SBJV;SG;2;PRS
qidirmoq V;SG;1;PRS
qidirmoq V;FRML;SG;2;PRS
qidirmoq V;IND;PL;2;PST
qidirmoq V;PRF;SBJV;SG;1;PRS
qidirmoq V;IND;SG;2;INFM;PST
qidirmoq V;PROG;FRML;IND;SG;2;PRS
qidirmoq V;SG;3;PRS
qidirmoq V;PFV;IND;SG;1;PST
qidirmoq V;PRF;SBJV;SG;2;INFM;PRS
qidirmoq V;PFV;SBJV;SG;2;INFM;FUT
qidirmoq V;PL;3;PRS
qidirmoq V;PROG;COND;SG;3;PRS
qidirmoq V;PROG;IND;SG;3;PST
qidirmoq V;PFV;FH;PL;2
qidirmoq V;PFV;IND;SG;2;INFM;PST
qidirmoq V;PFV;FRML;SBJV;SG;2;FUT
qidirmoq V;PFV;FH;PL;1
qidirmoq V;PROG;IND;PL;1;PST
qidirmoq V;PROG;IND;SG;1;PRS
qidirmoq V;PROG;IND;PL;1;FUT
qidirmoq V;PL;1;PRS
qidirmoq V;PROG;IND;PL;2;PRS
qidirmoq V;PFV;FH;SG;1
qidirmoq V;FRML;IND;SG;2;PST
qidirmoq V;PL;2;PRS
qidirmoq V;PFV;FRML;FH;SG;2
qidirmoq V;PFV;IND;PL;1;PST
qidirmoq V;PROG;COND;SG;1;PRS
qidirmoq V;PROG;IND;SG;1;FUT
qidirmoq V;PFV;FH;SG;2
qidirmoq V;PRF;SBJV;PL;2;PRS
qidirmoq V;PRF+PROG;COND;SG;1;PRS
qidirmoq V;PROG;FRML;IND;SG;2;PST
qidirmoq V;PFV;FH;SG;3
qidirmoq V;PFV;IND;SG;3;PST
qidirmoq V;PROG;IND;PL;2;FUT
qidirmoq V;PFV;SBJV;PL;3;FUT
qidirmoq V;FRML;COND;SG;2;PRS
qidirmoq V;COND;PL;1;PRS
qidirmoq V;PRF;SBJV;PL;3;PRS
qidirmoq V;IND;SG;1;PST
qidirmoq V;PROG;COND;PL;3;PRS
qidirmoq V;PRF+PROG;COND;PL;1;PRS
qidirmoq V;PFV;FH;PL;3
qidirmoq V;SBJV;SG;1;PRS
qidirmoq V;PFV;FRML;IND;SG;2;PST
qidirmoq V;PFV;SBJV;SG;3;FUT
qidirmoq V;COND;PL;3;PRS
qidirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qidirmoq V;COND;SG;3;PRS
qidirmoq V;PRF+PROG;COND;PL;3;PRS
qidirmoq V;PROG;IND;PL;3;PST
qidirmoq V;PRF;SBJV;SG;3;PRS
qidirmoq V;PROG;COND;PL;1;PRS
qidirmoq V;PRF+PROG;COND;SG;3;PRS
qidirmoq V;PROG;FRML;IND;SG;2;FUT
qidirmoq V;PROG;IND;PL;2;PST
qidirmoq V;SG;2;INFM;PRS
qidirmoq V;IND;PL;1;PST
qidirmoq V;PFV;IND;PL;2;PST
qidirmoq V;COND;SG;1;PRS
qidirmoq V;FRML;SBJV;SG;2;PRS
qidirmoq V;PROG;IND;SG;1;PST
qidirmoq V;PROG;IND;SG;2;INFM;PRS
qidirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qidirmoq V;COND;SG;2;INFM;PRS
qidirmoq V;PROG;IND;SG;3;PRS
qidirmoq V;PROG;IND;PL;1;PRS
qidirmoq V;SBJV;PL;2;PRS
qidirmoq V;SBJV;PL;1;PRS
qidirmoq V;PRF;SBJV;PL;1;PRS
qidirmoq V;PFV;SBJV;SG;1;FUT
qidirmoq V;PFV;SBJV;PL;1;FUT
qidirmoq V;PROG;COND;SG;2;PRS
qidirmoq V;PFV;SBJV;PL;2;FUT
qidirmoq V;IND;PL;3;PST
qidirmoq V;SBJV;PL;3;PRS
qidirmoq V;SBJV;SG;2;PRS
qidirmoq V;PROG;IND;SG;3;FUT
qidirmoq V;IND;SG;3;PST
qidirmoq V;PROG;IND;SG;2;INFM;FUT
qidirmoq V;PFV;IND;PL;3;PST
qidirmoq V;SBJV;SG;3;PRS
qidirmoq V;PROG;IND;PL;3;PRS
qidirmoq V;PROG;COND;PL;2;PRS
qidirmoq V;PROG;IND;PL;3;FUT
qidirmoq V;COND;PL;2;PRS
qidirmoq V;PRF+PROG;COND;PL;2;PRS
takror qo'ymoq V;PROG;IND;SG;3;PRS
takror qo'ymoq V;SG;2;INFM;PRS
takror qo'ymoq V;PROG;IND;PL;2;FUT
takror qo'ymoq V;COND;SG;1;PRS
takror qo'ymoq V;PRF+PROG;COND;PL;2;PRS
takror qo'ymoq V;PRF+PROG;COND;PL;3;PRS
takror qo'ymoq V;PFV;SBJV;SG;2;INFM;FUT
takror qo'ymoq V;PRF+PROG;COND;SG;3;PRS
takror qo'ymoq V;PFV;FH;SG;2
takror qo'ymoq V;PROG;IND;SG;3;PST
takror qo'ymoq V;IND;SG;3;PST
takror qo'ymoq V;COND;SG;2;INFM;PRS
takror qo'ymoq V;PRF;SBJV;PL;1;PRS
takror qo'ymoq V;PROG;IND;SG;1;PRS
takror qo'ymoq V;PROG;IND;PL;3;PRS
takror qo'ymoq V;PFV;FH;PL;2
takror qo'ymoq V;PROG;IND;PL;1;PRS
takror qo'ymoq V;PROG;IND;PL;2;PRS
takror qo'ymoq V;PRF;SBJV;PL;3;PRS
takror qo'ymoq V;PROG;FRML;IND;SG;2;FUT
takror qo'ymoq V;IND;PL;2;PST
takror qo'ymoq V;PFV;FH;PL;1
takror qo'ymoq V;PFV;FRML;FH;SG;2
takror qo'ymoq V;PROG;IND;PL;3;FUT
takror qo'ymoq V;PFV;IND;SG;1;PST
takror qo'ymoq V;PROG;COND;SG;1;PRS
takror qo'ymoq V;PRF+PROG;COND;PL;1;PRS
takror qo'ymoq V;PRF;SBJV;SG;1;PRS
takror qo'ymoq V;PFV;IND;SG;3;PST
takror qo'ymoq V;PROG;COND;PL;3;PRS
takror qo'ymoq V;PROG;IND;SG;2;INFM;PST
takror qo'ymoq V;PROG;IND;SG;2;INFM;FUT
takror qo'ymoq V;PROG;IND;SG;2;INFM;PRS
takror qo'ymoq V;PROG;IND;PL;2;PST
takror qo'ymoq V;PROG;IND;SG;1;PST
takror qo'ymoq V;FRML;SG;2;PRS
takror qo'ymoq V;PROG;FRML;IND;SG;2;PST
takror qo'ymoq V;PRF+PROG;COND;SG;2;INFM;PRS
takror qo'ymoq V;PFV;IND;PL;3;PST
takror qo'ymoq V;PRF+PROG;COND;SG;1;PRS
takror qo'ymoq V;COND;PL;1;PRS
takror qo'ymoq V;PROG;IND;SG;3;FUT
takror qo'ymoq V;PFV;FH;SG;3
takror qo'ymoq V;PROG;IND;PL;1;PST
takror qo'ymoq V;PFV;SBJV;SG;3;FUT
takror qo'ymoq V;PROG;IND;PL;3;PST
takror qo'ymoq V;FRML;COND;SG;2;PRS
takror qo'ymoq V;PRF;SBJV;SG;3;PRS
takror qo'ymoq V;PFV;FH;PL;3
takror qo'ymoq V;PL;1;PRS
takror qo'ymoq V;PFV;FH;SG;1
takror qo'ymoq V;IND;PL;3;PST
takror qo'ymoq V;PROG;IND;PL;1;FUT
takror qo'ymoq V;SG;1;PRS
takror qo'ymoq V;PROG;COND;SG;2;PRS
takror qo'ymoq V;SG;3;PRS
takror qo'ymoq V;PFV;IND;SG;2;INFM;PST
takror qo'ymoq V;IND;SG;1;PST
takror qo'ymoq V;PFV;SBJV;PL;3;FUT
takror qo'ymoq V;COND;SG;3;PRS
takror qo'ymoq V;PL;2;PRS
takror qo'ymoq V;PRF;SBJV;PL;2;PRS
takror qo'ymoq V;COND;PL;2;PRS
takror qo'ymoq V;PROG;IND;SG;1;FUT
takror qo'ymoq V;PFV;SBJV;PL;1;FUT
takror qo'ymoq V;PROG;FRML;IND;SG;2;PRS
takror qo'ymoq V;PRF;FRML;SBJV;SG;2;PRS
takror qo'ymoq V;PRF+PROG;FRML;COND;SG;2;PRS
takror qo'ymoq V;FRML;IND;SG;2;PST
takror qo'ymoq V;PROG;COND;PL;1;PRS
takror qo'ymoq V;PFV;SBJV;SG;1;FUT
takror qo'ymoq V;PFV;SBJV;PL;2;FUT
takror qo'ymoq V;IND;SG;2;INFM;PST
takror qo'ymoq V;PFV;FRML;IND;SG;2;PST
takror qo'ymoq V;PFV;IND;PL;1;PST
takror qo'ymoq V;PL;3;PRS
takror qo'ymoq V;PRF;SBJV;SG;2;INFM;PRS
takror qo'ymoq V;PROG;COND;SG;3;PRS
takror qo'ymoq V;COND;PL;3;PRS
takror qo'ymoq V;PFV;FRML;SBJV;SG;2;FUT
takror qo'ymoq V;PFV;IND;PL;2;PST
takror qo'ymoq V;IND;PL;1;PST
kemada suzmoq V;PFV;SBJV;PL;3;FUT
kemada suzmoq V;PROG;COND;SG;1;PRS
kemada suzmoq V;PROG;IND;PL;1;PST
kemada suzmoq V;PL;1;PRS
kemada suzmoq V;PFV;IND;PL;1;PST
kemada suzmoq V;PRF;SBJV;PL;3;PRS
kemada suzmoq V;IND;PL;2;PST
kemada suzmoq V;PROG;IND;SG;1;PRS
kemada suzmoq V;PFV;FH;SG;2
kemada suzmoq V;IND;PL;1;PST
kemada suzmoq V;PFV;IND;PL;2;PST
kemada suzmoq V;FRML;SG;2;PRS
kemada suzmoq V;PFV;FH;PL;3
kemada suzmoq V;PROG;IND;SG;1;FUT
kemada suzmoq V;PROG;COND;SG;2;PRS
kemada suzmoq V;PROG;IND;SG;2;INFM;PST
kemada suzmoq V;PROG;IND;SG;3;PST
kemada suzmoq V;PROG;IND;SG;3;PRS
kemada suzmoq V;PFV;IND;SG;1;PST
kemada suzmoq V;PROG;COND;PL;3;PRS
kemada suzmoq V;IND;SG;2;INFM;PST
kemada suzmoq V;PROG;IND;SG;3;FUT
kemada suzmoq V;PFV;FRML;IND;SG;2;PST
kemada suzmoq V;PFV;IND;SG;3;PST
kemada suzmoq V;IND;PL;3;PST
kemada suzmoq V;PRF+PROG;COND;PL;2;PRS
kemada suzmoq V;PROG;FRML;IND;SG;2;FUT
kemada suzmoq V;PROG;IND;PL;1;FUT
kemada suzmoq V;PROG;FRML;IND;SG;2;PRS
kemada suzmoq V;PRF+PROG;COND;SG;1;PRS
kemada suzmoq V;PFV;FH;SG;1
kemada suzmoq V;PFV;IND;SG;2;INFM;PST
kemada suzmoq V;SG;3;PRS
kemada suzmoq V;PROG;IND;SG;2;INFM;FUT
kemada suzmoq V;PFV;SBJV;PL;2;FUT
kemada suzmoq V;PL;3;PRS
kemada suzmoq V;PROG;IND;PL;2;PST
kemada suzmoq V;PFV;FRML;FH;SG;2
kemada suzmoq V;PRF+PROG;COND;SG;2;INFM;PRS
kemada suzmoq V;PFV;SBJV;SG;1;FUT
kemada suzmoq V;PRF;SBJV;SG;2;INFM;PRS
kemada suzmoq V;PROG;COND;PL;1;PRS
kemada suzmoq V;PRF+PROG;COND;PL;3;PRS
kemada suzmoq V;FRML;IND;SG;2;PST
kemada suzmoq V;PRF;SBJV;PL;2;PRS
kemada suzmoq V;PROG;IND;PL;3;PST
kemada suzmoq V;PFV;SBJV;SG;3;FUT
kemada suzmoq V;PROG;FRML;IND;SG;2;PST
kemada suzmoq V;PRF;FRML;SBJV;SG;2;PRS
kemada suzmoq V;SG;2;INFM;PRS
kemada suzmoq V;PROG;IND;SG;1;PST
kemada suzmoq V;PRF;SBJV;SG;1;PRS
kemada suzmoq V;COND;SG;1;PRS
kemada suzmoq V;PRF;SBJV;SG;3;PRS
kemada suzmoq V;COND;SG;2;INFM;PRS
kemada suzmoq V;PFV;SBJV;PL;1;FUT
kemada suzmoq V;PROG;IND;PL;3;FUT
kemada suzmoq V;FRML;COND;SG;2;PRS
kemada suzmoq V;PFV;FH;PL;2
kemada suzmoq V;SG;1;PRS
kemada suzmoq V;PROG;IND;PL;3;PRS
kemada suzmoq V;PRF+PROG;FRML;COND;SG;2;PRS
kemada suzmoq V;PROG;IND;PL;2;PRS
kemada suzmoq V;PRF+PROG;COND;PL;1;PRS
kemada suzmoq V;COND;PL;2;PRS
kemada suzmoq V;IND;SG;1;PST
kemada suzmoq V;IND;SG;3;PST
kemada suzmoq V;PFV;FRML;SBJV;SG;2;FUT
kemada suzmoq V;COND;PL;1;PRS
kemada suzmoq V;PL;2;PRS
kemada suzmoq V;PFV;FH;PL;1
kemada suzmoq V;COND;SG;3;PRS
kemada suzmoq V;PFV;FH;SG;3
kemada suzmoq V;PRF+PROG;COND;SG;3;PRS
kemada suzmoq V;PFV;SBJV;SG;2;INFM;FUT
kemada suzmoq V;PROG;IND;PL;1;PRS
kemada suzmoq V;PROG;COND;SG;3;PRS
kemada suzmoq V;PRF;SBJV;PL;1;PRS
kemada suzmoq V;COND;PL;3;PRS
kemada suzmoq V;PFV;IND;PL;3;PST
kemada suzmoq V;PROG;IND;SG;2;INFM;PRS
kemada suzmoq V;PROG;IND;PL;2;FUT
chopmoq V;COND;PL;1;PRS
chopmoq V;PFV;IND;PL;2;PST
chopmoq V;PROG;FRML;IND;SG;2;PRS
chopmoq V;PRF+PROG;FRML;COND;SG;2;PRS
chopmoq V;SBJV;SG;2;PRS
chopmoq V;FRML;SBJV;SG;2;PRS
chopmoq V;PFV;IND;SG;2;INFM;PST
chopmoq V;PFV;FH;PL;2
chopmoq V;PROG;IND;SG;1;PRS
chopmoq V;IND;PL;1;PST
chopmoq V;PRF;SBJV;SG;2;INFM;PRS
chopmoq V;PRF;FRML;SBJV;SG;2;PRS
chopmoq V;PFV;FRML;FH;SG;2
chopmoq V;COND;SG;1;PRS
chopmoq V;PFV;FH;SG;1
chopmoq V;PFV;IND;PL;3;PST
chopmoq V;PROG;FRML;COND;SG;2;PRS
chopmoq V;SBJV;SG;1;PRS
chopmoq V;SG;2;INFM;PRS
chopmoq V;COND;PL;3;PRS
chopmoq V;PROG;IND;SG;2;INFM;FUT
chopmoq V;PROG;IND;SG;3;FUT
chopmoq V;PROG;IND;PL;2;PST
chopmoq V;SBJV;SG;3;PRS
chopmoq V;PL;1;PRS
chopmoq V;FRML;SG;2;PRS
chopmoq V;PROG;COND;SG;3;PRS
chopmoq V;PROG;IND;SG;2;INFM;PRS
chopmoq V;PROG;IND;PL;1;PST
chopmoq V;SBJV;PL;1;PRS
chopmoq V;PFV;FH;PL;3
chopmoq V;PRF+PROG;COND;SG;1;PRS
chopmoq V;PFV;FH;PL;1
chopmoq V;PRF+PROG;COND;PL;3;PRS
chopmoq V;PFV;SBJV;PL;3;FUT
chopmoq V;PROG;IND;PL;3;FUT
chopmoq V;SBJV;PL;2;PRS
chopmoq V;PROG;COND;SG;1;PRS
chopmoq V;IND;PL;3;PST
chopmoq V;PRF;SBJV;SG;3;PRS
chopmoq V;PROG;IND;PL;3;PST
chopmoq V;PROG;IND;PL;1;PRS
chopmoq V;COND;PL;2;PRS
chopmoq V;PRF+PROG;COND;SG;3;PRS
chopmoq V;PROG;IND;SG;1;FUT
chopmoq V;PFV;IND;SG;1;PST
chopmoq V;PL;3;PRS
chopmoq V;SBJV;PL;3;PRS
chopmoq V;PROG;IND;SG;3;PRS
chopmoq V;IND;SG;3;PST
chopmoq V;PRF;SBJV;PL;3;PRS
chopmoq V;PRF;SBJV;PL;1;PRS
chopmoq V;PFV;IND;SG;3;PST
chopmoq V;PROG;IND;PL;2;PRS
chopmoq V;PROG;IND;PL;2;FUT
chopmoq V;PROG;COND;SG;2;PRS
chopmoq V;SG;3;PRS
chopmoq V;PROG;COND;PL;3;PRS
chopmoq V;PFV;FRML;IND;SG;2;PST
chopmoq V;IND;PL;2;PST
chopmoq V;COND;SG;2;INFM;PRS
chopmoq V;PROG;FRML;IND;SG;2;PST
chopmoq V;PROG;IND;PL;1;FUT
chopmoq V;PROG;FRML;IND;SG;2;FUT
chopmoq V;PL;2;PRS
chopmoq V;PROG;COND;PL;2;PRS
chopmoq V;FRML;IND;SG;2;PST
chopmoq V;PFV;FH;SG;2
chopmoq V;PRF;SBJV;PL;2;PRS
chopmoq V;PRF;SBJV;SG;1;PRS
chopmoq V;PFV;SBJV;SG;1;FUT
chopmoq V;SG;1;PRS
chopmoq V;PFV;FH;SG;3
chopmoq V;PRF+PROG;COND;PL;2;PRS
chopmoq V;PFV;SBJV;PL;2;FUT
chopmoq V;PFV;IND;PL;1;PST
chopmoq V;PFV;SBJV;SG;3;FUT
chopmoq V;IND;SG;1;PST
chopmoq V;PRF+PROG;COND;PL;1;PRS
chopmoq V;PROG;IND;SG;3;PST
chopmoq V;PFV;SBJV;SG;2;INFM;FUT
chopmoq V;PFV;SBJV;PL;1;FUT
chopmoq V;PROG;IND;SG;2;INFM;PST
chopmoq V;PROG;IND;SG;1;PST
chopmoq V;COND;SG;3;PRS
chopmoq V;IND;SG;2;INFM;PST
chopmoq V;FRML;COND;SG;2;PRS
chopmoq V;PROG;COND;PL;1;PRS
chopmoq V;PROG;IND;PL;3;PRS
chopmoq V;PFV;FRML;SBJV;SG;2;FUT
chopmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yaralamoq V;PRF+PROG;COND;PL;1;PRS
yaralamoq V;PL;3;PRS
yaralamoq V;PROG;IND;PL;2;PST
yaralamoq V;COND;PL;2;PRS
yaralamoq V;PROG;FRML;IND;SG;2;FUT
yaralamoq V;PRF;SBJV;PL;2;PRS
yaralamoq V;FRML;COND;SG;2;PRS
yaralamoq V;PROG;IND;SG;1;FUT
yaralamoq V;PRF;FRML;SBJV;SG;2;PRS
yaralamoq V;PFV;IND;PL;1;PST
yaralamoq V;PROG;IND;PL;2;FUT
yaralamoq V;PRF;SBJV;PL;1;PRS
yaralamoq V;PROG;IND;SG;1;PST
yaralamoq V;PFV;FH;SG;3
yaralamoq V;PROG;IND;PL;3;PST
yaralamoq V;FRML;IND;SG;2;PST
yaralamoq V;COND;PL;1;PRS
yaralamoq V;PFV;FH;PL;3
yaralamoq V;PROG;IND;PL;3;FUT
yaralamoq V;PFV;SBJV;PL;1;FUT
yaralamoq V;PROG;IND;PL;1;PST
yaralamoq V;SG;1;PRS
yaralamoq V;PL;1;PRS
yaralamoq V;PROG;IND;SG;1;PRS
yaralamoq V;PRF+PROG;COND;PL;2;PRS
yaralamoq V;COND;SG;3;PRS
yaralamoq V;IND;PL;2;PST
yaralamoq V;PROG;IND;SG;2;INFM;PST
yaralamoq V;PRF;SBJV;SG;2;INFM;PRS
yaralamoq V;PRF;SBJV;SG;3;PRS
yaralamoq V;COND;SG;2;INFM;PRS
yaralamoq V;PFV;IND;PL;2;PST
yaralamoq V;PROG;FRML;IND;SG;2;PST
yaralamoq V;PROG;IND;SG;2;INFM;PRS
yaralamoq V;PRF;SBJV;PL;3;PRS
yaralamoq V;IND;SG;2;INFM;PST
yaralamoq V;PROG;IND;SG;3;PRS
yaralamoq V;PFV;SBJV;PL;2;FUT
yaralamoq V;IND;PL;3;PST
yaralamoq V;PRF+PROG;FRML;COND;SG;2;PRS
yaralamoq V;COND;SG;1;PRS
yaralamoq V;PROG;IND;PL;1;PRS
yaralamoq V;SG;2;INFM;PRS
yaralamoq V;PROG;IND;SG;2;INFM;FUT
yaralamoq V;PRF;SBJV;SG;1;PRS
yaralamoq V;FRML;SG;2;PRS
yaralamoq V;PROG;COND;SG;3;PRS
yaralamoq V;SG;3;PRS
yaralamoq V;IND;SG;3;PST
yaralamoq V;PROG;IND;SG;3;PST
yaralamoq V;PFV;IND;SG;3;PST
yaralamoq V;PFV;SBJV;PL;3;FUT
yaralamoq V;PROG;COND;PL;3;PRS
yaralamoq V;PFV;SBJV;SG;1;FUT
yaralamoq V;PFV;SBJV;SG;2;INFM;FUT
yaralamoq V;PFV;FRML;SBJV;SG;2;FUT
yaralamoq V;PFV;FRML;IND;SG;2;PST
yaralamoq V;PFV;SBJV;SG;3;FUT
yaralamoq V;IND;SG;1;PST
yaralamoq V;PROG;FRML;IND;SG;2;PRS
yaralamoq V;PFV;FH;PL;2
yaralamoq V;PFV;FH;PL;1
yaralamoq V;PFV;IND;SG;2;INFM;PST
yaralamoq V;PROG;COND;PL;1;PRS
yaralamoq V;PFV;FRML;FH;SG;2
yaralamoq V;PRF+PROG;COND;PL;3;PRS
yaralamoq V;COND;PL;3;PRS
yaralamoq V;PFV;FH;SG;2
yaralamoq V;PROG;COND;SG;1;PRS
yaralamoq V;PROG;IND;SG;3;FUT
yaralamoq V;PL;2;PRS
yaralamoq V;PRF+PROG;COND;SG;3;PRS
yaralamoq V;PROG;IND;PL;2;PRS
yaralamoq V;PROG;IND;PL;1;FUT
yaralamoq V;PROG;IND;PL;3;PRS
yaralamoq V;PROG;COND;SG;2;PRS
yaralamoq V;PRF+PROG;COND;SG;1;PRS
yaralamoq V;PFV;FH;SG;1
yaralamoq V;PFV;IND;PL;3;PST
yaralamoq V;PRF+PROG;COND;SG;2;INFM;PRS
yaralamoq V;IND;PL;1;PST
yaralamoq V;PFV;IND;SG;1;PST
jiringlamoq V;SG;3;PRS
jiringlamoq V;PRF;SBJV;PL;1;PRS
jiringlamoq V;PROG;FRML;IND;SG;2;PST
jiringlamoq V;PROG;IND;SG;2;INFM;PST
jiringlamoq V;PROG;IND;PL;2;PST
jiringlamoq V;PROG;COND;SG;2;PRS
jiringlamoq V;PFV;IND;SG;3;PST
jiringlamoq V;PFV;SBJV;PL;2;FUT
jiringlamoq V;PFV;IND;PL;1;PST
jiringlamoq V;PROG;FRML;IND;SG;2;PRS
jiringlamoq V;PFV;IND;PL;3;PST
jiringlamoq V;PROG;IND;PL;1;FUT
jiringlamoq V;IND;PL;2;PST
jiringlamoq V;PFV;FH;SG;1
jiringlamoq V;PRF;SBJV;PL;2;PRS
jiringlamoq V;PROG;IND;SG;1;PRS
jiringlamoq V;COND;PL;1;PRS
jiringlamoq V;PFV;FH;SG;3
jiringlamoq V;PROG;IND;SG;1;FUT
jiringlamoq V;COND;PL;3;PRS
jiringlamoq V;PFV;FRML;SBJV;SG;2;FUT
jiringlamoq V;PFV;SBJV;SG;3;FUT
jiringlamoq V;PROG;COND;SG;1;PRS
jiringlamoq V;PROG;IND;PL;1;PST
jiringlamoq V;COND;SG;2;INFM;PRS
jiringlamoq V;PRF;SBJV;SG;3;PRS
jiringlamoq V;PFV;IND;PL;2;PST
jiringlamoq V;IND;SG;2;INFM;PST
jiringlamoq V;COND;SG;1;PRS
jiringlamoq V;PROG;IND;PL;1;PRS
jiringlamoq V;PRF+PROG;COND;PL;1;PRS
jiringlamoq V;PROG;IND;SG;3;FUT
jiringlamoq V;PL;1;PRS
jiringlamoq V;FRML;COND;SG;2;PRS
jiringlamoq V;PRF+PROG;COND;PL;3;PRS
jiringlamoq V;PFV;IND;SG;1;PST
jiringlamoq V;PROG;IND;SG;1;PST
jiringlamoq V;PL;3;PRS
jiringlamoq V;PRF;FRML;SBJV;SG;2;PRS
jiringlamoq V;IND;PL;3;PST
jiringlamoq V;PL;2;PRS
jiringlamoq V;IND;SG;3;PST
jiringlamoq V;COND;SG;3;PRS
jiringlamoq V;PROG;IND;PL;2;FUT
jiringlamoq V;PFV;SBJV;SG;1;FUT
jiringlamoq V;PRF;SBJV;PL;3;PRS
jiringlamoq V;PFV;FRML;FH;SG;2
jiringlamoq V;PFV;IND;SG;2;INFM;PST
jiringlamoq V;SG;1;PRS
jiringlamoq V;PFV;FH;PL;2
jiringlamoq V;PRF+PROG;COND;PL;2;PRS
jiringlamoq V;PROG;IND;PL;2;PRS
jiringlamoq V;PFV;FRML;IND;SG;2;PST
jiringlamoq V;PROG;IND;PL;3;PST
jiringlamoq V;PRF;SBJV;SG;1;PRS
jiringlamoq V;PROG;FRML;IND;SG;2;FUT
jiringlamoq V;PRF+PROG;COND;SG;1;PRS
jiringlamoq V;PROG;IND;SG;2;INFM;FUT
jiringlamoq V;PROG;IND;PL;3;PRS
jiringlamoq V;PROG;COND;SG;3;PRS
jiringlamoq V;PFV;FH;SG;2
jiringlamoq V;PRF;SBJV;SG;2;INFM;PRS
jiringlamoq V;COND;PL;2;PRS
jiringlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
jiringlamoq V;PROG;IND;SG;3;PST
jiringlamoq V;PFV;SBJV;SG;2;INFM;FUT
jiringlamoq V;FRML;SG;2;PRS
jiringlamoq V;PFV;SBJV;PL;3;FUT
jiringlamoq V;PRF+PROG;COND;SG;3;PRS
jiringlamoq V;PFV;FH;PL;3
jiringlamoq V;FRML;IND;SG;2;PST
jiringlamoq V;SG;2;INFM;PRS
jiringlamoq V;PROG;IND;SG;2;INFM;PRS
jiringlamoq V;PROG;COND;PL;1;PRS
jiringlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
jiringlamoq V;IND;SG;1;PST
jiringlamoq V;PROG;IND;SG;3;PRS
jiringlamoq V;PFV;SBJV;PL;1;FUT
jiringlamoq V;IND;PL;1;PST
jiringlamoq V;PROG;COND;PL;3;PRS
jiringlamoq V;PROG;IND;PL;3;FUT
jiringlamoq V;PFV;FH;PL;1
tikilmoq V;PL;2;PRS
tikilmoq V;PRF;SBJV;SG;3;PRS
tikilmoq V;PFV;FH;SG;2
tikilmoq V;PRF+PROG;COND;PL;1;PRS
tikilmoq V;PRF+PROG;COND;PL;2;PRS
tikilmoq V;PRF;FRML;SBJV;SG;2;PRS
tikilmoq V;PROG;IND;SG;3;FUT
tikilmoq V;PRF+PROG;COND;SG;3;PRS
tikilmoq V;PL;1;PRS
tikilmoq V;PFV;SBJV;PL;2;FUT
tikilmoq V;PROG;FRML;IND;SG;2;PST
tikilmoq V;PROG;IND;PL;3;PST
tikilmoq V;IND;PL;1;PST
tikilmoq V;PROG;COND;SG;3;PRS
tikilmoq V;FRML;IND;SG;2;PST
tikilmoq V;PROG;IND;SG;1;FUT
tikilmoq V;SG;3;PRS
tikilmoq V;COND;PL;1;PRS
tikilmoq V;PFV;FRML;SBJV;SG;2;FUT
tikilmoq V;IND;SG;2;INFM;PST
tikilmoq V;PFV;FRML;FH;SG;2
tikilmoq V;PFV;SBJV;SG;1;FUT
tikilmoq V;PROG;IND;SG;1;PST
tikilmoq V;PRF+PROG;COND;SG;1;PRS
tikilmoq V;PROG;COND;PL;3;PRS
tikilmoq V;PFV;SBJV;SG;3;FUT
tikilmoq V;PL;3;PRS
tikilmoq V;PFV;IND;PL;1;PST
tikilmoq V;PRF;SBJV;SG;1;PRS
tikilmoq V;PRF;SBJV;PL;1;PRS
tikilmoq V;PROG;IND;PL;2;FUT
tikilmoq V;SG;2;INFM;PRS
tikilmoq V;PROG;IND;PL;1;PRS
tikilmoq V;PFV;IND;SG;1;PST
tikilmoq V;PFV;SBJV;PL;3;FUT
tikilmoq V;PFV;SBJV;SG;2;INFM;FUT
tikilmoq V;COND;PL;2;PRS
tikilmoq V;PROG;IND;SG;3;PST
tikilmoq V;SG;1;PRS
tikilmoq V;PROG;IND;PL;1;PST
tikilmoq V;PFV;IND;PL;3;PST
tikilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tikilmoq V;PFV;IND;SG;3;PST
tikilmoq V;FRML;SG;2;PRS
tikilmoq V;PROG;IND;PL;3;FUT
tikilmoq V;IND;PL;2;PST
tikilmoq V;COND;SG;1;PRS
tikilmoq V;PROG;IND;SG;2;INFM;PST
tikilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tikilmoq V;COND;SG;2;INFM;PRS
tikilmoq V;PFV;FH;PL;2
tikilmoq V;PRF;SBJV;PL;2;PRS
tikilmoq V;PRF+PROG;COND;PL;3;PRS
tikilmoq V;IND;SG;1;PST
tikilmoq V;PROG;IND;SG;2;INFM;PRS
tikilmoq V;PFV;FH;SG;3
tikilmoq V;PROG;COND;SG;1;PRS
tikilmoq V;PRF;SBJV;PL;3;PRS
tikilmoq V;PROG;IND;PL;3;PRS
tikilmoq V;PFV;SBJV;PL;1;FUT
tikilmoq V;PFV;FH;SG;1
tikilmoq V;PROG;IND;PL;1;FUT
tikilmoq V;PROG;IND;PL;2;PRS
tikilmoq V;IND;PL;3;PST
tikilmoq V;PFV;IND;PL;2;PST
tikilmoq V;PFV;FH;PL;1
tikilmoq V;PROG;IND;SG;3;PRS
tikilmoq V;PROG;FRML;IND;SG;2;FUT
tikilmoq V;PROG;COND;SG;2;PRS
tikilmoq V;PROG;FRML;IND;SG;2;PRS
tikilmoq V;PFV;FH;PL;3
tikilmoq V;PROG;IND;SG;1;PRS
tikilmoq V;PRF;SBJV;SG;2;INFM;PRS
tikilmoq V;COND;PL;3;PRS
tikilmoq V;PROG;IND;SG;2;INFM;FUT
tikilmoq V;FRML;COND;SG;2;PRS
tikilmoq V;IND;SG;3;PST
tikilmoq V;PFV;IND;SG;2;INFM;PST
tikilmoq V;COND;SG;3;PRS
tikilmoq V;PFV;FRML;IND;SG;2;PST
tikilmoq V;PROG;IND;PL;2;PST
tikilmoq V;PROG;COND;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;SG;2;INFM;PRS
g'ashini keltirmoq V;PFV;SBJV;PL;2;FUT
g'ashini keltirmoq V;PROG;IND;SG;3;PST
g'ashini keltirmoq V;IND;SG;1;PST
g'ashini keltirmoq V;PROG;COND;PL;1;PRS
g'ashini keltirmoq V;IND;SG;2;INFM;PST
g'ashini keltirmoq V;COND;PL;2;PRS
g'ashini keltirmoq V;PFV;IND;PL;1;PST
g'ashini keltirmoq V;PROG;FRML;IND;SG;2;PST
g'ashini keltirmoq V;FRML;COND;SG;2;PRS
g'ashini keltirmoq V;PFV;SBJV;PL;3;FUT
g'ashini keltirmoq V;PL;3;PRS
g'ashini keltirmoq V;PFV;FH;SG;1
g'ashini keltirmoq V;PROG;COND;SG;3;PRS
g'ashini keltirmoq V;COND;SG;2;INFM;PRS
g'ashini keltirmoq V;PRF;SBJV;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;SG;3;FUT
g'ashini keltirmoq V;SG;2;INFM;PRS
g'ashini keltirmoq V;PFV;FH;SG;3
g'ashini keltirmoq V;COND;SG;3;PRS
g'ashini keltirmoq V;PFV;FRML;SBJV;SG;2;FUT
g'ashini keltirmoq V;PROG;IND;PL;2;FUT
g'ashini keltirmoq V;PROG;IND;SG;1;PRS
g'ashini keltirmoq V;PRF;SBJV;SG;2;INFM;PRS
g'ashini keltirmoq V;PROG;COND;SG;1;PRS
g'ashini keltirmoq V;PRF;SBJV;SG;1;PRS
g'ashini keltirmoq V;PROG;IND;PL;2;PRS
g'ashini keltirmoq V;PROG;IND;PL;2;PST
g'ashini keltirmoq V;FRML;IND;SG;2;PST
g'ashini keltirmoq V;IND;PL;3;PST
g'ashini keltirmoq V;PROG;IND;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;PL;3;PRS
g'ashini keltirmoq V;PFV;FH;PL;2
g'ashini keltirmoq V;SG;3;PRS
g'ashini keltirmoq V;PFV;FRML;FH;SG;2
g'ashini keltirmoq V;PRF+PROG;COND;SG;1;PRS
g'ashini keltirmoq V;PROG;IND;PL;1;PST
g'ashini keltirmoq V;PROG;COND;PL;3;PRS
g'ashini keltirmoq V;COND;SG;1;PRS
g'ashini keltirmoq V;PRF+PROG;COND;PL;2;PRS
g'ashini keltirmoq V;PFV;SBJV;PL;1;FUT
g'ashini keltirmoq V;PROG;COND;SG;2;PRS
g'ashini keltirmoq V;PFV;IND;SG;1;PST
g'ashini keltirmoq V;PROG;IND;SG;1;FUT
g'ashini keltirmoq V;PFV;SBJV;SG;1;FUT
g'ashini keltirmoq V;PROG;FRML;IND;SG;2;PRS
g'ashini keltirmoq V;PFV;SBJV;SG;2;INFM;FUT
g'ashini keltirmoq V;FRML;SG;2;PRS
g'ashini keltirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
g'ashini keltirmoq V;PROG;IND;PL;3;FUT
g'ashini keltirmoq V;IND;SG;3;PST
g'ashini keltirmoq V;PROG;IND;PL;1;FUT
g'ashini keltirmoq V;PRF;SBJV;SG;3;PRS
g'ashini keltirmoq V;PFV;SBJV;SG;3;FUT
g'ashini keltirmoq V;SG;1;PRS
g'ashini keltirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
g'ashini keltirmoq V;PROG;FRML;IND;SG;2;FUT
g'ashini keltirmoq V;PROG;IND;SG;1;PST
g'ashini keltirmoq V;PFV;FH;PL;3
g'ashini keltirmoq V;PRF+PROG;COND;PL;3;PRS
g'ashini keltirmoq V;PFV;IND;PL;3;PST
g'ashini keltirmoq V;PL;1;PRS
g'ashini keltirmoq V;PROG;IND;PL;3;PST
g'ashini keltirmoq V;PRF;SBJV;PL;2;PRS
g'ashini keltirmoq V;IND;PL;2;PST
g'ashini keltirmoq V;PROG;IND;SG;2;INFM;PST
g'ashini keltirmoq V;PL;2;PRS
g'ashini keltirmoq V;PFV;FH;PL;1
g'ashini keltirmoq V;PRF;SBJV;PL;3;PRS
g'ashini keltirmoq V;COND;PL;3;PRS
g'ashini keltirmoq V;PFV;IND;PL;2;PST
g'ashini keltirmoq V;IND;PL;1;PST
g'ashini keltirmoq V;PFV;FRML;IND;SG;2;PST
g'ashini keltirmoq V;COND;PL;1;PRS
g'ashini keltirmoq V;PFV;FH;SG;2
g'ashini keltirmoq V;PROG;IND;SG;2;INFM;FUT
g'ashini keltirmoq V;PRF+PROG;COND;PL;1;PRS
g'ashini keltirmoq V;PFV;IND;SG;2;INFM;PST
g'ashini keltirmoq V;PRF+PROG;COND;SG;3;PRS
g'ashini keltirmoq V;PFV;IND;SG;3;PST
g'ashini keltirmoq V;PROG;IND;SG;3;PRS
g'ashini keltirmoq V;PRF;FRML;SBJV;SG;2;PRS
o'zgartirmoq V;PFV;SBJV;PL;2;FUT
o'zgartirmoq V;PROG;IND;SG;2;INFM;PST
o'zgartirmoq V;PROG;COND;SG;1;PRS
o'zgartirmoq V;COND;PL;1;PRS
o'zgartirmoq V;FRML;SG;2;PRS
o'zgartirmoq V;COND;SG;1;PRS
o'zgartirmoq V;IND;PL;3;PST
o'zgartirmoq V;PFV;FH;PL;1
o'zgartirmoq V;PROG;COND;SG;3;PRS
o'zgartirmoq V;IND;SG;3;PST
o'zgartirmoq V;PL;2;PRS
o'zgartirmoq V;PROG;IND;SG;3;PRS
o'zgartirmoq V;PROG;FRML;IND;SG;2;FUT
o'zgartirmoq V;PFV;FRML;IND;SG;2;PST
o'zgartirmoq V;PFV;SBJV;PL;1;FUT
o'zgartirmoq V;PRF+PROG;COND;SG;3;PRS
o'zgartirmoq V;PROG;IND;SG;3;PST
o'zgartirmoq V;PFV;IND;SG;1;PST
o'zgartirmoq V;PROG;IND;PL;3;FUT
o'zgartirmoq V;PFV;SBJV;SG;2;INFM;FUT
o'zgartirmoq V;PFV;FH;SG;1
o'zgartirmoq V;PFV;SBJV;PL;3;FUT
o'zgartirmoq V;PRF+PROG;COND;PL;3;PRS
o'zgartirmoq V;PFV;FH;PL;3
o'zgartirmoq V;FRML;COND;SG;2;PRS
o'zgartirmoq V;IND;PL;1;PST
o'zgartirmoq V;PRF;SBJV;PL;3;PRS
o'zgartirmoq V;PRF;SBJV;SG;2;INFM;PRS
o'zgartirmoq V;SG;2;INFM;PRS
o'zgartirmoq V;COND;SG;2;INFM;PRS
o'zgartirmoq V;PROG;COND;SG;2;PRS
o'zgartirmoq V;PROG;IND;PL;1;PRS
o'zgartirmoq V;PROG;IND;SG;2;INFM;FUT
o'zgartirmoq V;PL;1;PRS
o'zgartirmoq V;PROG;IND;SG;1;PST
o'zgartirmoq V;PROG;IND;PL;3;PRS
o'zgartirmoq V;PFV;FRML;SBJV;SG;2;FUT
o'zgartirmoq V;PFV;FH;PL;2
o'zgartirmoq V;PRF;FRML;SBJV;SG;2;PRS
o'zgartirmoq V;PROG;IND;SG;2;INFM;PRS
o'zgartirmoq V;PRF;SBJV;PL;2;PRS
o'zgartirmoq V;PRF;SBJV;SG;3;PRS
o'zgartirmoq V;COND;SG;3;PRS
o'zgartirmoq V;PROG;IND;PL;3;PST
o'zgartirmoq V;PFV;SBJV;SG;1;FUT
o'zgartirmoq V;PFV;IND;PL;1;PST
o'zgartirmoq V;PRF;SBJV;PL;1;PRS
o'zgartirmoq V;SG;3;PRS
o'zgartirmoq V;PROG;FRML;IND;SG;2;PRS
o'zgartirmoq V;PFV;IND;SG;3;PST
o'zgartirmoq V;IND;PL;2;PST
o'zgartirmoq V;PRF+PROG;COND;PL;2;PRS
o'zgartirmoq V;SG;1;PRS
o'zgartirmoq V;PROG;IND;SG;3;FUT
o'zgartirmoq V;PROG;IND;PL;1;PST
o'zgartirmoq V;FRML;IND;SG;2;PST
o'zgartirmoq V;PRF+PROG;COND;PL;1;PRS
o'zgartirmoq V;PROG;COND;PL;3;PRS
o'zgartirmoq V;PROG;IND;SG;1;PRS
o'zgartirmoq V;PROG;COND;PL;1;PRS
o'zgartirmoq V;PROG;IND;PL;2;PRS
o'zgartirmoq V;IND;SG;1;PST
o'zgartirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'zgartirmoq V;PL;3;PRS
o'zgartirmoq V;PFV;IND;PL;2;PST
o'zgartirmoq V;PFV;FH;SG;2
o'zgartirmoq V;PFV;FH;SG;3
o'zgartirmoq V;PROG;IND;PL;2;FUT
o'zgartirmoq V;PRF+PROG;COND;SG;1;PRS
o'zgartirmoq V;PFV;FRML;FH;SG;2
o'zgartirmoq V;COND;PL;2;PRS
o'zgartirmoq V;PFV;SBJV;SG;3;FUT
o'zgartirmoq V;PRF;SBJV;SG;1;PRS
o'zgartirmoq V;PROG;IND;SG;1;FUT
o'zgartirmoq V;PROG;FRML;IND;SG;2;PST
o'zgartirmoq V;COND;PL;3;PRS
o'zgartirmoq V;PROG;IND;PL;2;PST
o'zgartirmoq V;PFV;IND;PL;3;PST
o'zgartirmoq V;IND;SG;2;INFM;PST
o'zgartirmoq V;PROG;IND;PL;1;FUT
o'zgartirmoq V;PFV;IND;SG;2;INFM;PST
o'zgartirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
dush qabul qilmoq V;IND;PL;2;PST
dush qabul qilmoq V;PRF;SBJV;SG;3;PRS
dush qabul qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
dush qabul qilmoq V;PROG;IND;SG;2;INFM;PRS
dush qabul qilmoq V;PFV;FRML;FH;SG;2
dush qabul qilmoq V;PFV;IND;PL;3;PST
dush qabul qilmoq V;PROG;COND;PL;3;PRS
dush qabul qilmoq V;PROG;IND;PL;2;PST
dush qabul qilmoq V;COND;SG;3;PRS
dush qabul qilmoq V;PFV;IND;PL;2;PST
dush qabul qilmoq V;PFV;IND;SG;2;INFM;PST
dush qabul qilmoq V;PFV;IND;PL;1;PST
dush qabul qilmoq V;IND;SG;3;PST
dush qabul qilmoq V;PFV;FH;PL;3
dush qabul qilmoq V;PROG;COND;SG;3;PRS
dush qabul qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
dush qabul qilmoq V;PFV;SBJV;PL;2;FUT
dush qabul qilmoq V;PL;2;PRS
dush qabul qilmoq V;PFV;FRML;SBJV;SG;2;FUT
dush qabul qilmoq V;COND;PL;3;PRS
dush qabul qilmoq V;PRF+PROG;COND;SG;1;PRS
dush qabul qilmoq V;PFV;SBJV;PL;1;FUT
dush qabul qilmoq V;PFV;SBJV;SG;1;FUT
dush qabul qilmoq V;PROG;IND;SG;1;PRS
dush qabul qilmoq V;IND;PL;3;PST
dush qabul qilmoq V;COND;SG;1;PRS
dush qabul qilmoq V;PROG;IND;SG;2;INFM;PST
dush qabul qilmoq V;PFV;SBJV;SG;3;FUT
dush qabul qilmoq V;PROG;FRML;IND;SG;2;FUT
dush qabul qilmoq V;PROG;IND;SG;3;PST
dush qabul qilmoq V;PROG;FRML;IND;SG;2;PRS
dush qabul qilmoq V;COND;PL;1;PRS
dush qabul qilmoq V;PRF+PROG;COND;PL;3;PRS
dush qabul qilmoq V;PFV;FH;SG;3
dush qabul qilmoq V;SG;2;INFM;PRS
dush qabul qilmoq V;PFV;IND;SG;1;PST
dush qabul qilmoq V;COND;PL;2;PRS
dush qabul qilmoq V;PROG;IND;PL;3;FUT
dush qabul qilmoq V;PRF+PROG;COND;SG;3;PRS
dush qabul qilmoq V;PRF;SBJV;PL;3;PRS
dush qabul qilmoq V;PFV;FH;PL;2
dush qabul qilmoq V;PROG;IND;SG;1;FUT
dush qabul qilmoq V;FRML;IND;SG;2;PST
dush qabul qilmoq V;PRF;SBJV;SG;2;INFM;PRS
dush qabul qilmoq V;FRML;SG;2;PRS
dush qabul qilmoq V;PFV;FRML;IND;SG;2;PST
dush qabul qilmoq V;PROG;IND;PL;2;PRS
dush qabul qilmoq V;PFV;SBJV;PL;3;FUT
dush qabul qilmoq V;PROG;IND;SG;1;PST
dush qabul qilmoq V;PROG;IND;SG;2;INFM;FUT
dush qabul qilmoq V;PROG;IND;PL;1;PRS
dush qabul qilmoq V;PROG;IND;PL;3;PRS
dush qabul qilmoq V;PRF+PROG;COND;PL;2;PRS
dush qabul qilmoq V;PROG;IND;PL;1;FUT
dush qabul qilmoq V;PRF;SBJV;SG;1;PRS
dush qabul qilmoq V;IND;PL;1;PST
dush qabul qilmoq V;PRF;FRML;SBJV;SG;2;PRS
dush qabul qilmoq V;PROG;COND;PL;1;PRS
dush qabul qilmoq V;PFV;IND;SG;3;PST
dush qabul qilmoq V;PL;3;PRS
dush qabul qilmoq V;PROG;COND;SG;2;PRS
dush qabul qilmoq V;IND;SG;2;INFM;PST
dush qabul qilmoq V;PROG;IND;PL;1;PST
dush qabul qilmoq V;PROG;FRML;IND;SG;2;PST
dush qabul qilmoq V;PRF;SBJV;PL;2;PRS
dush qabul qilmoq V;FRML;COND;SG;2;PRS
dush qabul qilmoq V;PROG;COND;SG;1;PRS
dush qabul qilmoq V;PROG;IND;PL;3;PST
dush qabul qilmoq V;PFV;SBJV;SG;2;INFM;FUT
dush qabul qilmoq V;COND;SG;2;INFM;PRS
dush qabul qilmoq V;PROG;IND;PL;2;FUT
dush qabul qilmoq V;PRF;SBJV;PL;1;PRS
dush qabul qilmoq V;SG;1;PRS
dush qabul qilmoq V;IND;SG;1;PST
dush qabul qilmoq V;PROG;IND;SG;3;FUT
dush qabul qilmoq V;PFV;FH;SG;1
dush qabul qilmoq V;PRF+PROG;COND;PL;1;PRS
dush qabul qilmoq V;PFV;FH;PL;1
dush qabul qilmoq V;SG;3;PRS
dush qabul qilmoq V;PL;1;PRS
dush qabul qilmoq V;PFV;FH;SG;2
dush qabul qilmoq V;PROG;IND;SG;3;PRS
artmoq V;PL;1;PRS
artmoq V;COND;PL;3;PRS
artmoq V;COND;SG;2;INFM;PRS
artmoq V;PROG;FRML;IND;SG;2;FUT
artmoq V;PL;3;PRS
artmoq V;PRF;SBJV;SG;1;PRS
artmoq V;PFV;IND;SG;1;PST
artmoq V;PROG;COND;PL;2;PRS
artmoq V;PROG;IND;SG;3;PST
artmoq V;PROG;COND;PL;1;PRS
artmoq V;SG;1;PRS
artmoq V;PROG;FRML;IND;SG;2;PRS
artmoq V;PRF;SBJV;PL;3;PRS
artmoq V;PFV;FRML;FH;SG;2
artmoq V;PROG;IND;SG;3;FUT
artmoq V;PROG;COND;SG;2;PRS
artmoq V;SBJV;PL;3;PRS
artmoq V;IND;PL;1;PST
artmoq V;PFV;SBJV;SG;3;FUT
artmoq V;COND;SG;1;PRS
artmoq V;PROG;IND;SG;1;PRS
artmoq V;PROG;IND;PL;1;PST
artmoq V;SBJV;SG;2;PRS
artmoq V;PRF+PROG;COND;SG;1;PRS
artmoq V;PFV;FH;SG;1
artmoq V;PROG;IND;PL;3;PST
artmoq V;IND;PL;3;PST
artmoq V;PFV;FH;PL;1
artmoq V;PROG;IND;PL;2;PRS
artmoq V;PROG;IND;SG;1;PST
artmoq V;PRF;SBJV;SG;2;INFM;PRS
artmoq V;PROG;IND;PL;3;PRS
artmoq V;PFV;IND;PL;3;PST
artmoq V;SBJV;SG;1;PRS
artmoq V;FRML;COND;SG;2;PRS
artmoq V;PROG;IND;PL;1;FUT
artmoq V;IND;PL;2;PST
artmoq V;PROG;IND;SG;2;INFM;PST
artmoq V;FRML;SBJV;SG;2;PRS
artmoq V;SG;3;PRS
artmoq V;COND;SG;3;PRS
artmoq V;PROG;FRML;COND;SG;2;PRS
artmoq V;PROG;COND;SG;1;PRS
artmoq V;PFV;SBJV;SG;2;INFM;FUT
artmoq V;PFV;FH;SG;2
artmoq V;IND;SG;2;INFM;PST
artmoq V;SBJV;PL;2;PRS
artmoq V;PRF;SBJV;PL;1;PRS
artmoq V;PRF+PROG;COND;SG;3;PRS
artmoq V;PFV;FH;PL;3
artmoq V;PFV;FRML;IND;SG;2;PST
artmoq V;PFV;IND;SG;2;INFM;PST
artmoq V;PRF+PROG;COND;PL;2;PRS
artmoq V;PFV;IND;SG;3;PST
artmoq V;IND;SG;1;PST
artmoq V;PROG;IND;PL;2;FUT
artmoq V;PRF+PROG;COND;SG;2;INFM;PRS
artmoq V;PROG;IND;PL;2;PST
artmoq V;SBJV;PL;1;PRS
artmoq V;SBJV;SG;3;PRS
artmoq V;PRF+PROG;COND;PL;1;PRS
artmoq V;PROG;IND;SG;1;FUT
artmoq V;COND;PL;1;PRS
artmoq V;PROG;IND;SG;2;INFM;PRS
artmoq V;PRF+PROG;FRML;COND;SG;2;PRS
artmoq V;FRML;SG;2;PRS
artmoq V;PL;2;PRS
artmoq V;COND;PL;2;PRS
artmoq V;PFV;SBJV;SG;1;FUT
artmoq V;PFV;IND;PL;1;PST
artmoq V;PFV;FH;PL;2
artmoq V;PROG;COND;PL;3;PRS
artmoq V;PROG;COND;SG;3;PRS
artmoq V;PROG;IND;PL;3;FUT
artmoq V;FRML;IND;SG;2;PST
artmoq V;PFV;IND;PL;2;PST
artmoq V;PRF;SBJV;SG;3;PRS
artmoq V;PROG;FRML;IND;SG;2;PST
artmoq V;PROG;IND;SG;2;INFM;FUT
artmoq V;PFV;SBJV;PL;3;FUT
artmoq V;PROG;IND;SG;3;PRS
artmoq V;PRF;FRML;SBJV;SG;2;PRS
artmoq V;PFV;FH;SG;3
artmoq V;PFV;SBJV;PL;2;FUT
artmoq V;PRF+PROG;COND;PL;3;PRS
artmoq V;PRF;SBJV;PL;2;PRS
artmoq V;IND;SG;3;PST
artmoq V;PROG;IND;PL;1;PRS
artmoq V;PFV;SBJV;PL;1;FUT
artmoq V;SG;2;INFM;PRS
artmoq V;PFV;FRML;SBJV;SG;2;FUT
ishontirmoq V;PROG;IND;SG;3;PRS
ishontirmoq V;PROG;IND;SG;2;INFM;PST
ishontirmoq V;COND;PL;1;PRS
ishontirmoq V;PROG;COND;SG;1;PRS
ishontirmoq V;PFV;FH;PL;2
ishontirmoq V;PRF;SBJV;PL;3;PRS
ishontirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ishontirmoq V;PFV;SBJV;PL;3;FUT
ishontirmoq V;IND;SG;1;PST
ishontirmoq V;PROG;IND;PL;1;PST
ishontirmoq V;PROG;IND;SG;3;PST
ishontirmoq V;COND;PL;3;PRS
ishontirmoq V;PRF+PROG;COND;PL;2;PRS
ishontirmoq V;PFV;IND;SG;2;INFM;PST
ishontirmoq V;FRML;SBJV;SG;2;PRS
ishontirmoq V;PROG;IND;SG;3;FUT
ishontirmoq V;SBJV;PL;1;PRS
ishontirmoq V;IND;SG;3;PST
ishontirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ishontirmoq V;PRF;SBJV;SG;3;PRS
ishontirmoq V;FRML;COND;SG;2;PRS
ishontirmoq V;SBJV;SG;1;PRS
ishontirmoq V;COND;SG;3;PRS
ishontirmoq V;IND;SG;2;INFM;PST
ishontirmoq V;PFV;SBJV;SG;2;INFM;FUT
ishontirmoq V;PFV;SBJV;PL;2;FUT
ishontirmoq V;PFV;FH;SG;3
ishontirmoq V;PRF+PROG;COND;PL;3;PRS
ishontirmoq V;SG;1;PRS
ishontirmoq V;PL;3;PRS
ishontirmoq V;PFV;IND;PL;2;PST
ishontirmoq V;PFV;SBJV;PL;1;FUT
ishontirmoq V;SBJV;SG;3;PRS
ishontirmoq V;PROG;FRML;COND;SG;2;PRS
ishontirmoq V;IND;PL;1;PST
ishontirmoq V;PRF;FRML;SBJV;SG;2;PRS
ishontirmoq V;PROG;COND;PL;1;PRS
ishontirmoq V;PROG;IND;SG;2;INFM;PRS
ishontirmoq V;PROG;COND;SG;3;PRS
ishontirmoq V;PROG;IND;PL;1;FUT
ishontirmoq V;PL;2;PRS
ishontirmoq V;PROG;COND;SG;2;PRS
ishontirmoq V;PROG;IND;PL;2;PST
ishontirmoq V;IND;PL;3;PST
ishontirmoq V;PRF+PROG;COND;PL;1;PRS
ishontirmoq V;PROG;IND;PL;3;FUT
ishontirmoq V;PROG;COND;PL;2;PRS
ishontirmoq V;FRML;SG;2;PRS
ishontirmoq V;COND;SG;2;INFM;PRS
ishontirmoq V;PROG;IND;SG;1;PRS
ishontirmoq V;PFV;FRML;FH;SG;2
ishontirmoq V;COND;PL;2;PRS
ishontirmoq V;PROG;IND;PL;1;PRS
ishontirmoq V;PROG;FRML;IND;SG;2;FUT
ishontirmoq V;PFV;IND;SG;3;PST
ishontirmoq V;PROG;FRML;IND;SG;2;PRS
ishontirmoq V;PL;1;PRS
ishontirmoq V;PFV;FRML;SBJV;SG;2;FUT
ishontirmoq V;PRF;SBJV;SG;1;PRS
ishontirmoq V;PFV;IND;SG;1;PST
ishontirmoq V;PRF;SBJV;SG;2;INFM;PRS
ishontirmoq V;PROG;IND;SG;1;PST
ishontirmoq V;PFV;FRML;IND;SG;2;PST
ishontirmoq V;PRF+PROG;COND;SG;3;PRS
ishontirmoq V;PRF;SBJV;PL;2;PRS
ishontirmoq V;SBJV;SG;2;PRS
ishontirmoq V;PROG;IND;PL;3;PST
ishontirmoq V;PFV;SBJV;SG;1;FUT
ishontirmoq V;PFV;FH;SG;2
ishontirmoq V;PRF;SBJV;PL;1;PRS
ishontirmoq V;FRML;IND;SG;2;PST
ishontirmoq V;SG;2;INFM;PRS
ishontirmoq V;PFV;IND;PL;1;PST
ishontirmoq V;COND;SG;1;PRS
ishontirmoq V;PFV;IND;PL;3;PST
ishontirmoq V;PFV;FH;SG;1
ishontirmoq V;PFV;FH;PL;1
ishontirmoq V;PROG;COND;PL;3;PRS
ishontirmoq V;SBJV;PL;3;PRS
ishontirmoq V;PROG;FRML;IND;SG;2;PST
ishontirmoq V;PROG;IND;PL;2;PRS
ishontirmoq V;SBJV;PL;2;PRS
ishontirmoq V;SG;3;PRS
ishontirmoq V;PROG;IND;PL;2;FUT
ishontirmoq V;PFV;SBJV;SG;3;FUT
ishontirmoq V;PROG;IND;PL;3;PRS
ishontirmoq V;IND;PL;2;PST
ishontirmoq V;PFV;FH;PL;3
ishontirmoq V;PROG;IND;SG;2;INFM;FUT
ishontirmoq V;PRF+PROG;COND;SG;1;PRS
ishontirmoq V;PROG;IND;SG;1;FUT
g'amgin his etmoq V;PROG;IND;PL;2;PRS
g'amgin his etmoq V;PL;3;PRS
g'amgin his etmoq V;PROG;IND;SG;3;PRS
g'amgin his etmoq V;PROG;IND;SG;1;PRS
g'amgin his etmoq V;PROG;COND;SG;2;PRS
g'amgin his etmoq V;PRF;SBJV;PL;3;PRS
g'amgin his etmoq V;PRF+PROG;COND;SG;3;PRS
g'amgin his etmoq V;PROG;IND;PL;2;PST
g'amgin his etmoq V;PRF+PROG;COND;SG;1;PRS
g'amgin his etmoq V;PROG;IND;SG;3;FUT
g'amgin his etmoq V;PROG;IND;PL;1;PRS
g'amgin his etmoq V;SG;3;PRS
g'amgin his etmoq V;PFV;IND;SG;2;INFM;PST
g'amgin his etmoq V;IND;SG;1;PST
g'amgin his etmoq V;COND;SG;3;PRS
g'amgin his etmoq V;PRF+PROG;COND;PL;1;PRS
g'amgin his etmoq V;PROG;COND;SG;3;PRS
g'amgin his etmoq V;PFV;FH;SG;1
g'amgin his etmoq V;PL;1;PRS
g'amgin his etmoq V;COND;PL;2;PRS
g'amgin his etmoq V;PFV;FRML;FH;SG;2
g'amgin his etmoq V;COND;SG;1;PRS
g'amgin his etmoq V;PRF;FRML;SBJV;SG;2;PRS
g'amgin his etmoq V;PFV;SBJV;PL;1;FUT
g'amgin his etmoq V;PFV;FH;PL;2
g'amgin his etmoq V;PROG;COND;PL;3;PRS
g'amgin his etmoq V;PRF;SBJV;SG;3;PRS
g'amgin his etmoq V;PFV;IND;SG;3;PST
g'amgin his etmoq V;PFV;IND;SG;1;PST
g'amgin his etmoq V;PROG;FRML;IND;SG;2;PRS
g'amgin his etmoq V;PFV;FH;SG;3
g'amgin his etmoq V;PRF+PROG;FRML;COND;SG;2;PRS
g'amgin his etmoq V;IND;PL;3;PST
g'amgin his etmoq V;PFV;FRML;SBJV;SG;2;FUT
g'amgin his etmoq V;PRF;SBJV;PL;1;PRS
g'amgin his etmoq V;PFV;IND;PL;3;PST
g'amgin his etmoq V;PFV;SBJV;PL;2;FUT
g'amgin his etmoq V;FRML;COND;SG;2;PRS
g'amgin his etmoq V;PROG;IND;SG;3;PST
g'amgin his etmoq V;PROG;IND;SG;2;INFM;PST
g'amgin his etmoq V;FRML;IND;SG;2;PST
g'amgin his etmoq V;PL;2;PRS
g'amgin his etmoq V;PFV;SBJV;PL;3;FUT
g'amgin his etmoq V;PRF;SBJV;PL;2;PRS
g'amgin his etmoq V;PROG;IND;PL;3;PST
g'amgin his etmoq V;PROG;FRML;IND;SG;2;FUT
g'amgin his etmoq V;PROG;IND;PL;1;PST
g'amgin his etmoq V;PFV;FH;PL;1
g'amgin his etmoq V;PROG;IND;PL;3;PRS
g'amgin his etmoq V;PFV;SBJV;SG;1;FUT
g'amgin his etmoq V;PRF;SBJV;SG;1;PRS
g'amgin his etmoq V;FRML;SG;2;PRS
g'amgin his etmoq V;PFV;SBJV;SG;2;INFM;FUT
g'amgin his etmoq V;PFV;FH;PL;3
g'amgin his etmoq V;COND;PL;3;PRS
g'amgin his etmoq V;PROG;IND;PL;2;FUT
g'amgin his etmoq V;SG;1;PRS
g'amgin his etmoq V;COND;SG;2;INFM;PRS
g'amgin his etmoq V;PFV;IND;PL;2;PST
g'amgin his etmoq V;PFV;IND;PL;1;PST
g'amgin his etmoq V;IND;PL;2;PST
g'amgin his etmoq V;PFV;SBJV;SG;3;FUT
g'amgin his etmoq V;IND;SG;2;INFM;PST
g'amgin his etmoq V;PROG;FRML;IND;SG;2;PST
g'amgin his etmoq V;PROG;IND;SG;2;INFM;FUT
g'amgin his etmoq V;PRF+PROG;COND;PL;2;PRS
g'amgin his etmoq V;IND;PL;1;PST
g'amgin his etmoq V;PFV;FH;SG;2
g'amgin his etmoq V;PRF+PROG;COND;SG;2;INFM;PRS
g'amgin his etmoq V;PRF;SBJV;SG;2;INFM;PRS
g'amgin his etmoq V;PROG;IND;SG;2;INFM;PRS
g'amgin his etmoq V;PROG;IND;PL;1;FUT
g'amgin his etmoq V;PROG;IND;SG;1;PST
g'amgin his etmoq V;PROG;COND;SG;1;PRS
g'amgin his etmoq V;PFV;FRML;IND;SG;2;PST
g'amgin his etmoq V;PROG;IND;PL;3;FUT
g'amgin his etmoq V;PRF+PROG;COND;PL;3;PRS
g'amgin his etmoq V;SG;2;INFM;PRS
g'amgin his etmoq V;COND;PL;1;PRS
g'amgin his etmoq V;PROG;COND;PL;1;PRS
g'amgin his etmoq V;IND;SG;3;PST
g'amgin his etmoq V;PROG;IND;SG;1;FUT
o'ldirmoq V;IND;PL;3;PST
o'ldirmoq V;PFV;FRML;IND;SG;2;PST
o'ldirmoq V;PROG;IND;PL;1;FUT
o'ldirmoq V;PFV;IND;SG;2;INFM;PST
o'ldirmoq V;PRF;SBJV;PL;1;PRS
o'ldirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'ldirmoq V;PROG;IND;PL;2;PRS
o'ldirmoq V;IND;SG;2;INFM;PST
o'ldirmoq V;PL;1;PRS
o'ldirmoq V;IND;PL;2;PST
o'ldirmoq V;PFV;IND;PL;2;PST
o'ldirmoq V;IND;SG;3;PST
o'ldirmoq V;PFV;FRML;SBJV;SG;2;FUT
o'ldirmoq V;SBJV;PL;2;PRS
o'ldirmoq V;PROG;COND;SG;3;PRS
o'ldirmoq V;PRF+PROG;COND;SG;3;PRS
o'ldirmoq V;PFV;SBJV;PL;1;FUT
o'ldirmoq V;SBJV;PL;3;PRS
o'ldirmoq V;PROG;IND;SG;3;PRS
o'ldirmoq V;PROG;IND;SG;1;PRS
o'ldirmoq V;PFV;IND;SG;3;PST
o'ldirmoq V;PROG;FRML;IND;SG;2;FUT
o'ldirmoq V;PFV;SBJV;PL;3;FUT
o'ldirmoq V;SG;1;PRS
o'ldirmoq V;PFV;FH;SG;1
o'ldirmoq V;PROG;FRML;IND;SG;2;PRS
o'ldirmoq V;PFV;SBJV;SG;2;INFM;FUT
o'ldirmoq V;SBJV;SG;3;PRS
o'ldirmoq V;PRF+PROG;COND;PL;3;PRS
o'ldirmoq V;PROG;FRML;COND;SG;2;PRS
o'ldirmoq V;PRF;SBJV;PL;3;PRS
o'ldirmoq V;PFV;IND;SG;1;PST
o'ldirmoq V;PROG;IND;PL;3;PST
o'ldirmoq V;PL;3;PRS
o'ldirmoq V;PFV;FRML;FH;SG;2
o'ldirmoq V;PROG;IND;SG;1;FUT
o'ldirmoq V;SG;3;PRS
o'ldirmoq V;COND;SG;3;PRS
o'ldirmoq V;FRML;IND;SG;2;PST
o'ldirmoq V;PFV;FH;SG;3
o'ldirmoq V;PFV;FH;SG;2
o'ldirmoq V;PROG;IND;PL;1;PST
o'ldirmoq V;PROG;FRML;IND;SG;2;PST
o'ldirmoq V;SBJV;SG;1;PRS
o'ldirmoq V;SG;2;INFM;PRS
o'ldirmoq V;PFV;SBJV;SG;3;FUT
o'ldirmoq V;PRF+PROG;COND;PL;2;PRS
o'ldirmoq V;PROG;IND;SG;3;FUT
o'ldirmoq V;PROG;COND;SG;2;PRS
o'ldirmoq V;PROG;IND;SG;2;INFM;PST
o'ldirmoq V;PROG;IND;SG;2;INFM;FUT
o'ldirmoq V;PROG;IND;PL;2;PST
o'ldirmoq V;COND;SG;1;PRS
o'ldirmoq V;PROG;IND;SG;3;PST
o'ldirmoq V;IND;SG;1;PST
o'ldirmoq V;SBJV;SG;2;PRS
o'ldirmoq V;PRF+PROG;COND;PL;1;PRS
o'ldirmoq V;COND;PL;3;PRS
o'ldirmoq V;PROG;COND;SG;1;PRS
o'ldirmoq V;PRF;SBJV;SG;1;PRS
o'ldirmoq V;SBJV;PL;1;PRS
o'ldirmoq V;PRF;SBJV;SG;3;PRS
o'ldirmoq V;PROG;IND;SG;1;PST
o'ldirmoq V;PROG;IND;SG;2;INFM;PRS
o'ldirmoq V;FRML;COND;SG;2;PRS
o'ldirmoq V;PFV;SBJV;PL;2;FUT
o'ldirmoq V;PFV;FH;PL;3
o'ldirmoq V;PFV;IND;PL;3;PST
o'ldirmoq V;COND;SG;2;INFM;PRS
o'ldirmoq V;PFV;SBJV;SG;1;FUT
o'ldirmoq V;PRF;SBJV;PL;2;PRS
o'ldirmoq V;PFV;IND;PL;1;PST
o'ldirmoq V;PFV;FH;PL;2
o'ldirmoq V;PFV;FH;PL;1
o'ldirmoq V;PRF;SBJV;SG;2;INFM;PRS
o'ldirmoq V;PROG;COND;PL;2;PRS
o'ldirmoq V;FRML;SBJV;SG;2;PRS
o'ldirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'ldirmoq V;PROG;IND;PL;1;PRS
o'ldirmoq V;IND;PL;1;PST
o'ldirmoq V;FRML;SG;2;PRS
o'ldirmoq V;PRF;FRML;SBJV;SG;2;PRS
o'ldirmoq V;COND;PL;1;PRS
o'ldirmoq V;PROG;COND;PL;3;PRS
o'ldirmoq V;PROG;IND;PL;3;PRS
o'ldirmoq V;PROG;IND;PL;3;FUT
o'ldirmoq V;COND;PL;2;PRS
o'ldirmoq V;PROG;IND;PL;2;FUT
o'ldirmoq V;PRF+PROG;COND;SG;1;PRS
o'ldirmoq V;PROG;COND;PL;1;PRS
o'ldirmoq V;PL;2;PRS
xiyonat qilmoq V;PROG;IND;SG;3;PRS
xiyonat qilmoq V;PROG;COND;SG;3;PRS
xiyonat qilmoq V;PROG;IND;PL;1;PST
xiyonat qilmoq V;PROG;IND;PL;2;PST
xiyonat qilmoq V;PROG;COND;SG;1;PRS
xiyonat qilmoq V;PROG;IND;SG;3;FUT
xiyonat qilmoq V;COND;PL;2;PRS
xiyonat qilmoq V;PFV;IND;SG;2;INFM;PST
xiyonat qilmoq V;PFV;FH;SG;3
xiyonat qilmoq V;IND;PL;3;PST
xiyonat qilmoq V;PROG;IND;SG;1;PRS
xiyonat qilmoq V;PRF+PROG;COND;SG;1;PRS
xiyonat qilmoq V;PFV;SBJV;SG;2;INFM;FUT
xiyonat qilmoq V;PROG;IND;SG;3;PST
xiyonat qilmoq V;IND;PL;1;PST
xiyonat qilmoq V;PROG;IND;PL;3;FUT
xiyonat qilmoq V;PROG;COND;SG;2;PRS
xiyonat qilmoq V;PFV;FH;SG;2
xiyonat qilmoq V;PROG;IND;PL;2;PRS
xiyonat qilmoq V;PROG;IND;PL;3;PST
xiyonat qilmoq V;PFV;SBJV;SG;1;FUT
xiyonat qilmoq V;PFV;FH;SG;1
xiyonat qilmoq V;FRML;IND;SG;2;PST
xiyonat qilmoq V;FRML;SG;2;PRS
xiyonat qilmoq V;PRF;SBJV;PL;3;PRS
xiyonat qilmoq V;PROG;IND;PL;3;PRS
xiyonat qilmoq V;PROG;IND;SG;2;INFM;PST
xiyonat qilmoq V;PFV;SBJV;PL;1;FUT
xiyonat qilmoq V;PRF;SBJV;PL;2;PRS
xiyonat qilmoq V;PFV;IND;PL;1;PST
xiyonat qilmoq V;PRF;SBJV;SG;1;PRS
xiyonat qilmoq V;PL;2;PRS
xiyonat qilmoq V;COND;PL;3;PRS
xiyonat qilmoq V;PFV;SBJV;PL;2;FUT
xiyonat qilmoq V;PFV;FRML;SBJV;SG;2;FUT
xiyonat qilmoq V;PRF;SBJV;PL;1;PRS
xiyonat qilmoq V;PROG;IND;SG;2;INFM;PRS
xiyonat qilmoq V;PFV;FH;PL;1
xiyonat qilmoq V;PFV;IND;SG;3;PST
xiyonat qilmoq V;PROG;IND;PL;2;FUT
xiyonat qilmoq V;PRF+PROG;COND;PL;2;PRS
xiyonat qilmoq V;PRF;SBJV;SG;3;PRS
xiyonat qilmoq V;PFV;IND;PL;2;PST
xiyonat qilmoq V;PROG;COND;PL;1;PRS
xiyonat qilmoq V;PROG;IND;PL;1;PRS
xiyonat qilmoq V;PROG;COND;PL;3;PRS
xiyonat qilmoq V;COND;SG;1;PRS
xiyonat qilmoq V;PRF+PROG;COND;PL;3;PRS
xiyonat qilmoq V;SG;1;PRS
xiyonat qilmoq V;PFV;FH;PL;2
xiyonat qilmoq V;COND;SG;3;PRS
xiyonat qilmoq V;PFV;FRML;IND;SG;2;PST
xiyonat qilmoq V;PROG;FRML;IND;SG;2;FUT
xiyonat qilmoq V;IND;PL;2;PST
xiyonat qilmoq V;PRF+PROG;COND;PL;1;PRS
xiyonat qilmoq V;PL;3;PRS
xiyonat qilmoq V;PROG;IND;SG;1;PST
xiyonat qilmoq V;COND;PL;1;PRS
xiyonat qilmoq V;PFV;FH;PL;3
xiyonat qilmoq V;COND;SG;2;INFM;PRS
xiyonat qilmoq V;FRML;COND;SG;2;PRS
xiyonat qilmoq V;PL;1;PRS
xiyonat qilmoq V;PRF+PROG;COND;SG;3;PRS
xiyonat qilmoq V;PROG;IND;PL;1;FUT
xiyonat qilmoq V;PRF;SBJV;SG;2;INFM;PRS
xiyonat qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
xiyonat qilmoq V;IND;SG;3;PST
xiyonat qilmoq V;PFV;IND;SG;1;PST
xiyonat qilmoq V;PROG;IND;SG;2;INFM;FUT
xiyonat qilmoq V;SG;3;PRS
xiyonat qilmoq V;PFV;SBJV;PL;3;FUT
xiyonat qilmoq V;PFV;SBJV;SG;3;FUT
xiyonat qilmoq V;SG;2;INFM;PRS
xiyonat qilmoq V;PROG;IND;SG;1;FUT
xiyonat qilmoq V;PRF;FRML;SBJV;SG;2;PRS
xiyonat qilmoq V;PFV;IND;PL;3;PST
xiyonat qilmoq V;PROG;FRML;IND;SG;2;PRS
xiyonat qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
xiyonat qilmoq V;IND;SG;2;INFM;PST
xiyonat qilmoq V;PFV;FRML;FH;SG;2
xiyonat qilmoq V;PROG;FRML;IND;SG;2;PST
xiyonat qilmoq V;IND;SG;1;PST
tasvirlamoq V;PROG;IND;SG;3;PST
tasvirlamoq V;COND;PL;3;PRS
tasvirlamoq V;PROG;IND;PL;2;PRS
tasvirlamoq V;PROG;IND;PL;2;PST
tasvirlamoq V;PFV;IND;SG;2;INFM;PST
tasvirlamoq V;PFV;FH;PL;2
tasvirlamoq V;PL;3;PRS
tasvirlamoq V;PRF+PROG;COND;SG;3;PRS
tasvirlamoq V;PFV;FH;PL;1
tasvirlamoq V;COND;PL;2;PRS
tasvirlamoq V;PRF+PROG;COND;PL;1;PRS
tasvirlamoq V;PROG;COND;SG;3;PRS
tasvirlamoq V;SG;1;PRS
tasvirlamoq V;PROG;FRML;IND;SG;2;PST
tasvirlamoq V;PFV;SBJV;PL;2;FUT
tasvirlamoq V;SG;3;PRS
tasvirlamoq V;PRF;SBJV;SG;2;INFM;PRS
tasvirlamoq V;PFV;FRML;IND;SG;2;PST
tasvirlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
tasvirlamoq V;PROG;IND;PL;1;FUT
tasvirlamoq V;IND;SG;3;PST
tasvirlamoq V;PROG;IND;PL;1;PRS
tasvirlamoq V;PFV;FH;SG;3
tasvirlamoq V;PROG;COND;PL;3;PRS
tasvirlamoq V;IND;PL;3;PST
tasvirlamoq V;SG;2;INFM;PRS
tasvirlamoq V;PROG;COND;SG;2;PRS
tasvirlamoq V;PROG;IND;PL;1;PST
tasvirlamoq V;PL;2;PRS
tasvirlamoq V;PROG;COND;SG;1;PRS
tasvirlamoq V;PFV;IND;SG;1;PST
tasvirlamoq V;PFV;SBJV;PL;3;FUT
tasvirlamoq V;PROG;FRML;IND;SG;2;PRS
tasvirlamoq V;PROG;IND;SG;1;FUT
tasvirlamoq V;IND;PL;1;PST
tasvirlamoq V;PROG;IND;PL;2;FUT
tasvirlamoq V;COND;SG;1;PRS
tasvirlamoq V;PROG;IND;SG;1;PRS
tasvirlamoq V;PFV;IND;SG;3;PST
tasvirlamoq V;PROG;IND;PL;3;FUT
tasvirlamoq V;PFV;IND;PL;1;PST
tasvirlamoq V;PFV;IND;PL;3;PST
tasvirlamoq V;PROG;IND;SG;1;PST
tasvirlamoq V;PFV;SBJV;PL;1;FUT
tasvirlamoq V;PL;1;PRS
tasvirlamoq V;PRF;SBJV;PL;3;PRS
tasvirlamoq V;PRF+PROG;COND;PL;3;PRS
tasvirlamoq V;PROG;FRML;IND;SG;2;FUT
tasvirlamoq V;COND;PL;1;PRS
tasvirlamoq V;COND;SG;3;PRS
tasvirlamoq V;PRF;SBJV;SG;1;PRS
tasvirlamoq V;PFV;FH;SG;1
tasvirlamoq V;PFV;FH;SG;2
tasvirlamoq V;FRML;COND;SG;2;PRS
tasvirlamoq V;IND;SG;2;INFM;PST
tasvirlamoq V;PRF+PROG;COND;PL;2;PRS
tasvirlamoq V;PFV;IND;PL;2;PST
tasvirlamoq V;COND;SG;2;INFM;PRS
tasvirlamoq V;PRF;SBJV;SG;3;PRS
tasvirlamoq V;PROG;IND;PL;3;PRS
tasvirlamoq V;PROG;IND;SG;2;INFM;PRS
tasvirlamoq V;PFV;SBJV;SG;3;FUT
tasvirlamoq V;PROG;COND;PL;1;PRS
tasvirlamoq V;PFV;FH;PL;3
tasvirlamoq V;IND;SG;1;PST
tasvirlamoq V;PRF;SBJV;PL;1;PRS
tasvirlamoq V;FRML;IND;SG;2;PST
tasvirlamoq V;PROG;IND;SG;3;PRS
tasvirlamoq V;IND;PL;2;PST
tasvirlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tasvirlamoq V;FRML;SG;2;PRS
tasvirlamoq V;PROG;IND;SG;2;INFM;FUT
tasvirlamoq V;PRF;SBJV;PL;2;PRS
tasvirlamoq V;PFV;SBJV;SG;1;FUT
tasvirlamoq V;PFV;SBJV;SG;2;INFM;FUT
tasvirlamoq V;PROG;IND;SG;2;INFM;PST
tasvirlamoq V;PFV;FRML;FH;SG;2
tasvirlamoq V;PRF;FRML;SBJV;SG;2;PRS
tasvirlamoq V;PROG;IND;SG;3;FUT
tasvirlamoq V;PROG;IND;PL;3;PST
tasvirlamoq V;PFV;FRML;SBJV;SG;2;FUT
tasvirlamoq V;PRF+PROG;COND;SG;1;PRS
o'pmoq V;IND;PL;1;PST
o'pmoq V;PFV;SBJV;PL;3;FUT
o'pmoq V;PFV;FH;PL;2
o'pmoq V;PROG;FRML;IND;SG;2;PRS
o'pmoq V;PRF;SBJV;PL;1;PRS
o'pmoq V;COND;SG;2;INFM;PRS
o'pmoq V;PFV;IND;SG;2;INFM;PST
o'pmoq V;PFV;FH;PL;3
o'pmoq V;SG;3;PRS
o'pmoq V;PRF+PROG;COND;SG;1;PRS
o'pmoq V;PROG;IND;PL;3;PRS
o'pmoq V;PFV;IND;PL;1;PST
o'pmoq V;PRF;FRML;SBJV;SG;2;PRS
o'pmoq V;PFV;SBJV;SG;2;INFM;FUT
o'pmoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'pmoq V;PRF+PROG;COND;PL;2;PRS
o'pmoq V;COND;PL;3;PRS
o'pmoq V;PRF+PROG;COND;PL;3;PRS
o'pmoq V;COND;SG;1;PRS
o'pmoq V;IND;SG;1;PST
o'pmoq V;PL;3;PRS
o'pmoq V;PRF+PROG;COND;PL;1;PRS
o'pmoq V;IND;SG;2;INFM;PST
o'pmoq V;PROG;IND;SG;1;FUT
o'pmoq V;PRF;SBJV;SG;1;PRS
o'pmoq V;IND;PL;3;PST
o'pmoq V;PRF;SBJV;SG;3;PRS
o'pmoq V;PFV;IND;PL;2;PST
o'pmoq V;PFV;FH;PL;1
o'pmoq V;PFV;FH;SG;2
o'pmoq V;PRF;SBJV;PL;2;PRS
o'pmoq V;PRF+PROG;COND;SG;3;PRS
o'pmoq V;PROG;IND;SG;2;INFM;FUT
o'pmoq V;COND;SG;3;PRS
o'pmoq V;PFV;SBJV;PL;1;FUT
o'pmoq V;PROG;FRML;IND;SG;2;FUT
o'pmoq V;PROG;IND;PL;2;PRS
o'pmoq V;PFV;IND;SG;3;PST
o'pmoq V;COND;PL;1;PRS
o'pmoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'pmoq V;PROG;IND;PL;2;FUT
o'pmoq V;PFV;SBJV;SG;1;FUT
o'pmoq V;PROG;IND;SG;1;PRS
o'pmoq V;PROG;IND;PL;3;FUT
o'pmoq V;PROG;IND;PL;1;FUT
o'pmoq V;PROG;IND;SG;3;PST
o'pmoq V;PRF;SBJV;PL;3;PRS
o'pmoq V;PL;1;PRS
o'pmoq V;FRML;SG;2;PRS
o'pmoq V;PROG;FRML;IND;SG;2;PST
o'pmoq V;FRML;IND;SG;2;PST
o'pmoq V;PFV;FRML;FH;SG;2
o'pmoq V;PFV;FH;SG;3
o'pmoq V;PROG;IND;SG;1;PST
o'pmoq V;PROG;COND;SG;3;PRS
o'pmoq V;PFV;IND;PL;3;PST
o'pmoq V;PFV;IND;SG;1;PST
o'pmoq V;PFV;SBJV;SG;3;FUT
o'pmoq V;PFV;FH;SG;1
o'pmoq V;PROG;COND;SG;2;PRS
o'pmoq V;PROG;IND;SG;3;PRS
o'pmoq V;PROG;IND;PL;1;PRS
o'pmoq V;PROG;COND;PL;3;PRS
o'pmoq V;IND;PL;2;PST
o'pmoq V;PROG;IND;PL;3;PST
o'pmoq V;PFV;FRML;SBJV;SG;2;FUT
o'pmoq V;IND;SG;3;PST
o'pmoq V;PROG;IND;PL;1;PST
o'pmoq V;COND;PL;2;PRS
o'pmoq V;PROG;IND;SG;2;INFM;PRS
o'pmoq V;PROG;IND;SG;2;INFM;PST
o'pmoq V;PL;2;PRS
o'pmoq V;SG;1;PRS
o'pmoq V;PRF;SBJV;SG;2;INFM;PRS
o'pmoq V;SG;2;INFM;PRS
o'pmoq V;PROG;IND;PL;2;PST
o'pmoq V;PROG;COND;SG;1;PRS
o'pmoq V;FRML;COND;SG;2;PRS
o'pmoq V;PROG;IND;SG;3;FUT
o'pmoq V;PFV;FRML;IND;SG;2;PST
o'pmoq V;PROG;COND;PL;1;PRS
o'pmoq V;PFV;SBJV;PL;2;FUT
uyalmoq V;SG;2;INFM;PRS
uyalmoq V;PRF+PROG;COND;SG;2;INFM;PRS
uyalmoq V;PFV;IND;SG;1;PST
uyalmoq V;PROG;IND;PL;3;FUT
uyalmoq V;PFV;FH;PL;3
uyalmoq V;COND;PL;2;PRS
uyalmoq V;PROG;IND;SG;1;PRS
uyalmoq V;PRF;SBJV;PL;3;PRS
uyalmoq V;COND;PL;3;PRS
uyalmoq V;PFV;FRML;FH;SG;2
uyalmoq V;PROG;FRML;IND;SG;2;PRS
uyalmoq V;PROG;IND;PL;3;PRS
uyalmoq V;PFV;SBJV;SG;1;FUT
uyalmoq V;PRF+PROG;COND;PL;2;PRS
uyalmoq V;IND;PL;3;PST
uyalmoq V;SG;3;PRS
uyalmoq V;PFV;FH;PL;2
uyalmoq V;COND;SG;3;PRS
uyalmoq V;IND;SG;3;PST
uyalmoq V;PFV;FRML;IND;SG;2;PST
uyalmoq V;PFV;IND;PL;2;PST
uyalmoq V;PROG;IND;PL;3;PST
uyalmoq V;PROG;IND;PL;2;FUT
uyalmoq V;PFV;SBJV;PL;1;FUT
uyalmoq V;PFV;SBJV;SG;3;FUT
uyalmoq V;PFV;FH;SG;2
uyalmoq V;PFV;IND;SG;3;PST
uyalmoq V;PFV;SBJV;PL;2;FUT
uyalmoq V;PL;3;PRS
uyalmoq V;PROG;IND;SG;3;PST
uyalmoq V;PFV;IND;PL;3;PST
uyalmoq V;SG;1;PRS
uyalmoq V;PRF;SBJV;PL;1;PRS
uyalmoq V;PROG;FRML;IND;SG;2;PST
uyalmoq V;PFV;SBJV;SG;2;INFM;FUT
uyalmoq V;PROG;IND;SG;2;INFM;PST
uyalmoq V;PFV;FH;SG;1
uyalmoq V;PRF+PROG;COND;SG;1;PRS
uyalmoq V;PFV;IND;PL;1;PST
uyalmoq V;PROG;IND;PL;2;PST
uyalmoq V;PROG;COND;PL;3;PRS
uyalmoq V;PROG;IND;PL;1;FUT
uyalmoq V;PROG;IND;SG;3;FUT
uyalmoq V;PROG;IND;PL;2;PRS
uyalmoq V;PFV;FH;SG;3
uyalmoq V;PRF;FRML;SBJV;SG;2;PRS
uyalmoq V;PRF+PROG;COND;PL;3;PRS
uyalmoq V;IND;PL;2;PST
uyalmoq V;PFV;SBJV;PL;3;FUT
uyalmoq V;FRML;SG;2;PRS
uyalmoq V;PRF+PROG;COND;SG;3;PRS
uyalmoq V;PFV;FH;PL;1
uyalmoq V;PFV;FRML;SBJV;SG;2;FUT
uyalmoq V;PROG;IND;PL;1;PST
uyalmoq V;PROG;FRML;IND;SG;2;FUT
uyalmoq V;PRF;SBJV;SG;2;INFM;PRS
uyalmoq V;PROG;COND;SG;3;PRS
uyalmoq V;PL;1;PRS
uyalmoq V;FRML;IND;SG;2;PST
uyalmoq V;PROG;IND;SG;2;INFM;FUT
uyalmoq V;PROG;IND;SG;1;PST
uyalmoq V;PROG;IND;SG;3;PRS
uyalmoq V;PRF;SBJV;PL;2;PRS
uyalmoq V;IND;PL;1;PST
uyalmoq V;COND;SG;1;PRS
uyalmoq V;PRF;SBJV;SG;3;PRS
uyalmoq V;PRF+PROG;FRML;COND;SG;2;PRS
uyalmoq V;PFV;IND;SG;2;INFM;PST
uyalmoq V;IND;SG;2;INFM;PST
uyalmoq V;COND;SG;2;INFM;PRS
uyalmoq V;COND;PL;1;PRS
uyalmoq V;PROG;COND;PL;1;PRS
uyalmoq V;PROG;IND;SG;1;FUT
uyalmoq V;IND;SG;1;PST
uyalmoq V;PRF;SBJV;SG;1;PRS
uyalmoq V;PROG;IND;SG;2;INFM;PRS
uyalmoq V;PROG;COND;SG;1;PRS
uyalmoq V;PROG;IND;PL;1;PRS
uyalmoq V;PROG;COND;SG;2;PRS
uyalmoq V;PRF+PROG;COND;PL;1;PRS
uyalmoq V;PL;2;PRS
uyalmoq V;FRML;COND;SG;2;PRS
to'lamoq V;PROG;IND;PL;3;PRS
to'lamoq V;PRF+PROG;FRML;COND;SG;2;PRS
to'lamoq V;PROG;IND;SG;3;FUT
to'lamoq V;PROG;FRML;IND;SG;2;FUT
to'lamoq V;PFV;IND;SG;1;PST
to'lamoq V;PRF;SBJV;PL;3;PRS
to'lamoq V;PRF;SBJV;PL;2;PRS
to'lamoq V;PROG;COND;SG;1;PRS
to'lamoq V;PFV;SBJV;SG;2;INFM;FUT
to'lamoq V;COND;SG;1;PRS
to'lamoq V;PFV;FH;SG;3
to'lamoq V;PFV;FRML;FH;SG;2
to'lamoq V;IND;SG;1;PST
to'lamoq V;PROG;IND;PL;3;PST
to'lamoq V;PFV;FRML;SBJV;SG;2;FUT
to'lamoq V;PROG;IND;SG;2;INFM;PST
to'lamoq V;PRF;SBJV;SG;3;PRS
to'lamoq V;IND;SG;2;INFM;PST
to'lamoq V;PRF+PROG;COND;SG;3;PRS
to'lamoq V;PFV;FH;SG;1
to'lamoq V;PRF+PROG;COND;PL;3;PRS
to'lamoq V;PFV;SBJV;SG;3;FUT
to'lamoq V;COND;PL;1;PRS
to'lamoq V;IND;PL;3;PST
to'lamoq V;PROG;IND;SG;3;PRS
to'lamoq V;IND;PL;1;PST
to'lamoq V;PFV;SBJV;PL;2;FUT
to'lamoq V;PRF+PROG;COND;SG;2;INFM;PRS
to'lamoq V;SG;2;INFM;PRS
to'lamoq V;PRF+PROG;COND;PL;1;PRS
to'lamoq V;PL;1;PRS
to'lamoq V;PROG;COND;SG;3;PRS
to'lamoq V;PRF+PROG;COND;SG;1;PRS
to'lamoq V;PROG;IND;PL;3;FUT
to'lamoq V;PROG;IND;PL;1;PRS
to'lamoq V;PROG;FRML;IND;SG;2;PRS
to'lamoq V;PFV;IND;PL;1;PST
to'lamoq V;PL;2;PRS
to'lamoq V;PROG;IND;PL;2;FUT
to'lamoq V;PRF;SBJV;SG;1;PRS
to'lamoq V;PRF;SBJV;PL;1;PRS
to'lamoq V;PL;3;PRS
to'lamoq V;PROG;IND;PL;2;PRS
to'lamoq V;PFV;FH;PL;1
to'lamoq V;PFV;IND;SG;3;PST
to'lamoq V;PFV;SBJV;PL;1;FUT
to'lamoq V;PROG;IND;SG;1;PST
to'lamoq V;PROG;IND;SG;2;INFM;PRS
to'lamoq V;FRML;IND;SG;2;PST
to'lamoq V;PFV;IND;PL;3;PST
to'lamoq V;IND;SG;3;PST
to'lamoq V;PROG;FRML;IND;SG;2;PST
to'lamoq V;PRF;FRML;SBJV;SG;2;PRS
to'lamoq V;SG;1;PRS
to'lamoq V;PROG;COND;PL;1;PRS
to'lamoq V;IND;PL;2;PST
to'lamoq V;COND;PL;2;PRS
to'lamoq V;FRML;SG;2;PRS
to'lamoq V;SG;3;PRS
to'lamoq V;PFV;FH;PL;2
to'lamoq V;PROG;IND;PL;1;FUT
to'lamoq V;COND;SG;2;INFM;PRS
to'lamoq V;PFV;FH;SG;2
to'lamoq V;PFV;SBJV;PL;3;FUT
to'lamoq V;PROG;IND;SG;1;FUT
to'lamoq V;PFV;IND;SG;2;INFM;PST
to'lamoq V;COND;PL;3;PRS
to'lamoq V;FRML;COND;SG;2;PRS
to'lamoq V;PROG;IND;PL;2;PST
to'lamoq V;PROG;COND;PL;3;PRS
to'lamoq V;PRF;SBJV;SG;2;INFM;PRS
to'lamoq V;PROG;IND;SG;2;INFM;FUT
to'lamoq V;PFV;FRML;IND;SG;2;PST
to'lamoq V;PROG;IND;PL;1;PST
to'lamoq V;PFV;FH;PL;3
to'lamoq V;PROG;IND;SG;3;PST
to'lamoq V;PRF+PROG;COND;PL;2;PRS
to'lamoq V;PFV;SBJV;SG;1;FUT
to'lamoq V;COND;SG;3;PRS
to'lamoq V;PFV;IND;PL;2;PST
to'lamoq V;PROG;IND;SG;1;PRS
to'lamoq V;PROG;COND;SG;2;PRS
intervyu olmoq V;PRF;SBJV;PL;3;PRS
intervyu olmoq V;PROG;FRML;IND;SG;2;FUT
intervyu olmoq V;PRF+PROG;FRML;COND;SG;2;PRS
intervyu olmoq V;PROG;IND;PL;3;PST
intervyu olmoq V;PROG;IND;PL;2;FUT
intervyu olmoq V;SBJV;PL;1;PRS
intervyu olmoq V;IND;SG;1;PST
intervyu olmoq V;COND;PL;3;PRS
intervyu olmoq V;PFV;FH;SG;2
intervyu olmoq V;PROG;IND;SG;3;PRS
intervyu olmoq V;PFV;IND;SG;3;PST
intervyu olmoq V;PROG;IND;PL;1;FUT
intervyu olmoq V;PRF+PROG;COND;SG;1;PRS
intervyu olmoq V;PROG;COND;SG;2;PRS
intervyu olmoq V;PROG;FRML;IND;SG;2;PST
intervyu olmoq V;PROG;FRML;IND;SG;2;PRS
intervyu olmoq V;PFV;FH;SG;3
intervyu olmoq V;PFV;SBJV;SG;3;FUT
intervyu olmoq V;FRML;SG;2;PRS
intervyu olmoq V;IND;SG;3;PST
intervyu olmoq V;IND;PL;2;PST
intervyu olmoq V;PRF+PROG;COND;SG;3;PRS
intervyu olmoq V;PL;3;PRS
intervyu olmoq V;COND;SG;2;INFM;PRS
intervyu olmoq V;PFV;FH;PL;1
intervyu olmoq V;PFV;SBJV;PL;2;FUT
intervyu olmoq V;PROG;IND;SG;1;PST
intervyu olmoq V;IND;PL;1;PST
intervyu olmoq V;PROG;IND;SG;2;INFM;FUT
intervyu olmoq V;PROG;IND;PL;1;PRS
intervyu olmoq V;PROG;IND;SG;1;PRS
intervyu olmoq V;COND;PL;1;PRS
intervyu olmoq V;PFV;IND;PL;1;PST
intervyu olmoq V;PRF+PROG;COND;PL;1;PRS
intervyu olmoq V;PFV;IND;SG;2;INFM;PST
intervyu olmoq V;PFV;SBJV;SG;2;INFM;FUT
intervyu olmoq V;SBJV;SG;1;PRS
intervyu olmoq V;PROG;COND;SG;3;PRS
intervyu olmoq V;PROG;IND;PL;3;PRS
intervyu olmoq V;PROG;IND;PL;3;FUT
intervyu olmoq V;PRF+PROG;COND;SG;2;INFM;PRS
intervyu olmoq V;PROG;IND;SG;2;INFM;PRS
intervyu olmoq V;SBJV;PL;3;PRS
intervyu olmoq V;COND;PL;2;PRS
intervyu olmoq V;PROG;COND;SG;1;PRS
intervyu olmoq V;IND;SG;2;INFM;PST
intervyu olmoq V;PL;2;PRS
intervyu olmoq V;SG;3;PRS
intervyu olmoq V;PROG;IND;SG;3;PST
intervyu olmoq V;PRF;SBJV;SG;2;INFM;PRS
intervyu olmoq V;SBJV;SG;2;PRS
intervyu olmoq V;PROG;IND;SG;3;FUT
intervyu olmoq V;PROG;IND;PL;2;PST
intervyu olmoq V;PFV;FH;PL;3
intervyu olmoq V;FRML;COND;SG;2;PRS
intervyu olmoq V;PFV;IND;SG;1;PST
intervyu olmoq V;PFV;FRML;SBJV;SG;2;FUT
intervyu olmoq V;PROG;IND;SG;1;FUT
intervyu olmoq V;PFV;FH;PL;2
intervyu olmoq V;FRML;IND;SG;2;PST
intervyu olmoq V;PROG;COND;PL;1;PRS
intervyu olmoq V;PFV;FRML;IND;SG;2;PST
intervyu olmoq V;PROG;COND;PL;3;PRS
intervyu olmoq V;PFV;IND;PL;2;PST
intervyu olmoq V;FRML;SBJV;SG;2;PRS
intervyu olmoq V;PFV;SBJV;SG;1;FUT
intervyu olmoq V;PFV;FH;SG;1
intervyu olmoq V;PFV;FRML;FH;SG;2
intervyu olmoq V;SG;2;INFM;PRS
intervyu olmoq V;PRF+PROG;COND;PL;2;PRS
intervyu olmoq V;COND;SG;3;PRS
intervyu olmoq V;PFV;SBJV;PL;1;FUT
intervyu olmoq V;PL;1;PRS
intervyu olmoq V;PRF;SBJV;PL;1;PRS
intervyu olmoq V;PRF+PROG;COND;PL;3;PRS
intervyu olmoq V;PFV;IND;PL;3;PST
intervyu olmoq V;SBJV;SG;3;PRS
intervyu olmoq V;PRF;SBJV;SG;3;PRS
intervyu olmoq V;PFV;SBJV;PL;3;FUT
intervyu olmoq V;PROG;IND;SG;2;INFM;PST
intervyu olmoq V;PROG;IND;PL;1;PST
intervyu olmoq V;IND;PL;3;PST
intervyu olmoq V;PRF;FRML;SBJV;SG;2;PRS
intervyu olmoq V;SG;1;PRS
intervyu olmoq V;PRF;SBJV;SG;1;PRS
intervyu olmoq V;PROG;IND;PL;2;PRS
intervyu olmoq V;COND;SG;1;PRS
intervyu olmoq V;SBJV;PL;2;PRS
intervyu olmoq V;PRF;SBJV;PL;2;PRS
sog'inmoq V;PFV;FRML;SBJV;SG;2;FUT
sog'inmoq V;PFV;FH;PL;1
sog'inmoq V;SBJV;PL;1;PRS
sog'inmoq V;COND;SG;3;PRS
sog'inmoq V;PRF;SBJV;PL;1;PRS
sog'inmoq V;PROG;IND;PL;3;FUT
sog'inmoq V;FRML;IND;SG;2;PST
sog'inmoq V;PROG;IND;PL;3;PRS
sog'inmoq V;SBJV;SG;2;PRS
sog'inmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sog'inmoq V;PFV;IND;SG;3;PST
sog'inmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sog'inmoq V;PRF;FRML;SBJV;SG;2;PRS
sog'inmoq V;PROG;IND;SG;1;PST
sog'inmoq V;FRML;SBJV;SG;2;PRS
sog'inmoq V;PROG;IND;PL;3;PST
sog'inmoq V;IND;SG;1;PST
sog'inmoq V;PFV;IND;PL;3;PST
sog'inmoq V;COND;SG;2;INFM;PRS
sog'inmoq V;PFV;IND;SG;1;PST
sog'inmoq V;PROG;COND;SG;2;PRS
sog'inmoq V;PROG;FRML;COND;SG;2;PRS
sog'inmoq V;PFV;FH;SG;2
sog'inmoq V;PRF+PROG;COND;SG;3;PRS
sog'inmoq V;COND;PL;3;PRS
sog'inmoq V;PFV;IND;SG;2;INFM;PST
sog'inmoq V;PROG;FRML;IND;SG;2;PST
sog'inmoq V;SG;3;PRS
sog'inmoq V;COND;PL;1;PRS
sog'inmoq V;COND;SG;1;PRS
sog'inmoq V;PROG;IND;PL;1;FUT
sog'inmoq V;SBJV;PL;3;PRS
sog'inmoq V;PRF;SBJV;SG;2;INFM;PRS
sog'inmoq V;PFV;FRML;FH;SG;2
sog'inmoq V;IND;PL;1;PST
sog'inmoq V;PROG;IND;SG;3;PST
sog'inmoq V;SBJV;SG;1;PRS
sog'inmoq V;IND;SG;3;PST
sog'inmoq V;PROG;IND;SG;3;FUT
sog'inmoq V;PFV;SBJV;PL;1;FUT
sog'inmoq V;FRML;SG;2;PRS
sog'inmoq V;PFV;FH;SG;3
sog'inmoq V;PRF;SBJV;SG;1;PRS
sog'inmoq V;PROG;IND;PL;1;PST
sog'inmoq V;PRF+PROG;COND;PL;1;PRS
sog'inmoq V;SBJV;PL;2;PRS
sog'inmoq V;PFV;IND;PL;2;PST
sog'inmoq V;PFV;FRML;IND;SG;2;PST
sog'inmoq V;PROG;IND;PL;2;PST
sog'inmoq V;PROG;IND;SG;2;INFM;FUT
sog'inmoq V;PROG;IND;SG;2;INFM;PST
sog'inmoq V;PFV;FH;SG;1
sog'inmoq V;COND;PL;2;PRS
sog'inmoq V;PRF+PROG;COND;SG;1;PRS
sog'inmoq V;PROG;IND;PL;2;PRS
sog'inmoq V;PFV;IND;PL;1;PST
sog'inmoq V;PRF;SBJV;PL;3;PRS
sog'inmoq V;PROG;IND;PL;2;FUT
sog'inmoq V;PFV;SBJV;SG;1;FUT
sog'inmoq V;PFV;SBJV;SG;3;FUT
sog'inmoq V;PROG;COND;SG;3;PRS
sog'inmoq V;PFV;FH;PL;3
sog'inmoq V;PROG;COND;PL;1;PRS
sog'inmoq V;PROG;IND;SG;1;FUT
sog'inmoq V;IND;SG;2;INFM;PST
sog'inmoq V;PROG;IND;SG;1;PRS
sog'inmoq V;PROG;COND;PL;3;PRS
sog'inmoq V;SBJV;SG;3;PRS
sog'inmoq V;PROG;IND;PL;1;PRS
sog'inmoq V;PFV;FH;PL;2
sog'inmoq V;PRF;SBJV;PL;2;PRS
sog'inmoq V;PRF+PROG;COND;PL;3;PRS
sog'inmoq V;PRF;SBJV;SG;3;PRS
sog'inmoq V;PFV;SBJV;SG;2;INFM;FUT
sog'inmoq V;PL;1;PRS
sog'inmoq V;PFV;SBJV;PL;2;FUT
sog'inmoq V;FRML;COND;SG;2;PRS
sog'inmoq V;IND;PL;2;PST
sog'inmoq V;PROG;COND;PL;2;PRS
sog'inmoq V;PFV;SBJV;PL;3;FUT
sog'inmoq V;PROG;IND;SG;3;PRS
sog'inmoq V;PROG;IND;SG;2;INFM;PRS
sog'inmoq V;IND;PL;3;PST
sog'inmoq V;SG;1;PRS
sog'inmoq V;PRF+PROG;COND;PL;2;PRS
sog'inmoq V;PROG;FRML;IND;SG;2;FUT
sog'inmoq V;PROG;COND;SG;1;PRS
sog'inmoq V;PL;3;PRS
sog'inmoq V;SG;2;INFM;PRS
sog'inmoq V;PROG;FRML;IND;SG;2;PRS
sog'inmoq V;PL;2;PRS
ijaraga bermoq V;PFV;SBJV;PL;2;FUT
ijaraga bermoq V;PFV;FH;PL;2
ijaraga bermoq V;PFV;FH;SG;3
ijaraga bermoq V;PROG;IND;PL;1;FUT
ijaraga bermoq V;PROG;IND;SG;3;PST
ijaraga bermoq V;SG;3;PRS
ijaraga bermoq V;PROG;COND;PL;1;PRS
ijaraga bermoq V;COND;SG;3;PRS
ijaraga bermoq V;PFV;FRML;SBJV;SG;2;FUT
ijaraga bermoq V;FRML;SG;2;PRS
ijaraga bermoq V;PFV;FH;SG;2
ijaraga bermoq V;SBJV;SG;3;PRS
ijaraga bermoq V;PL;3;PRS
ijaraga bermoq V;PROG;COND;PL;3;PRS
ijaraga bermoq V;PROG;COND;SG;1;PRS
ijaraga bermoq V;PROG;IND;SG;3;PRS
ijaraga bermoq V;PROG;IND;SG;2;INFM;FUT
ijaraga bermoq V;PRF;SBJV;PL;1;PRS
ijaraga bermoq V;PROG;IND;SG;2;INFM;PST
ijaraga bermoq V;PROG;IND;PL;3;PRS
ijaraga bermoq V;PFV;FH;PL;1
ijaraga bermoq V;PROG;COND;SG;3;PRS
ijaraga bermoq V;PRF+PROG;COND;PL;1;PRS
ijaraga bermoq V;PRF;SBJV;PL;2;PRS
ijaraga bermoq V;PFV;IND;SG;1;PST
ijaraga bermoq V;IND;PL;2;PST
ijaraga bermoq V;FRML;SBJV;SG;2;PRS
ijaraga bermoq V;SG;1;PRS
ijaraga bermoq V;PRF+PROG;COND;SG;1;PRS
ijaraga bermoq V;PROG;IND;SG;3;FUT
ijaraga bermoq V;PFV;FH;SG;1
ijaraga bermoq V;SBJV;PL;3;PRS
ijaraga bermoq V;FRML;COND;SG;2;PRS
ijaraga bermoq V;PROG;IND;SG;1;PST
ijaraga bermoq V;PRF;SBJV;SG;2;INFM;PRS
ijaraga bermoq V;PROG;FRML;IND;SG;2;PST
ijaraga bermoq V;PROG;IND;SG;2;INFM;PRS
ijaraga bermoq V;PRF+PROG;COND;PL;2;PRS
ijaraga bermoq V;PROG;FRML;IND;SG;2;FUT
ijaraga bermoq V;FRML;IND;SG;2;PST
ijaraga bermoq V;PFV;SBJV;SG;2;INFM;FUT
ijaraga bermoq V;PROG;IND;PL;3;PST
ijaraga bermoq V;COND;PL;3;PRS
ijaraga bermoq V;PFV;FH;PL;3
ijaraga bermoq V;PRF;SBJV;PL;3;PRS
ijaraga bermoq V;PRF+PROG;COND;SG;2;INFM;PRS
ijaraga bermoq V;IND;SG;1;PST
ijaraga bermoq V;IND;SG;3;PST
ijaraga bermoq V;PFV;IND;PL;1;PST
ijaraga bermoq V;PROG;IND;PL;2;FUT
ijaraga bermoq V;PFV;IND;SG;3;PST
ijaraga bermoq V;PFV;IND;SG;2;INFM;PST
ijaraga bermoq V;SBJV;PL;2;PRS
ijaraga bermoq V;PFV;FRML;IND;SG;2;PST
ijaraga bermoq V;PRF+PROG;COND;PL;3;PRS
ijaraga bermoq V;PFV;SBJV;PL;1;FUT
ijaraga bermoq V;PFV;IND;PL;3;PST
ijaraga bermoq V;PROG;IND;PL;1;PRS
ijaraga bermoq V;PL;2;PRS
ijaraga bermoq V;PROG;IND;SG;1;PRS
ijaraga bermoq V;PFV;SBJV;SG;3;FUT
ijaraga bermoq V;PRF;SBJV;SG;1;PRS
ijaraga bermoq V;PROG;IND;PL;1;PST
ijaraga bermoq V;COND;PL;1;PRS
ijaraga bermoq V;PROG;COND;SG;2;PRS
ijaraga bermoq V;IND;PL;1;PST
ijaraga bermoq V;PRF;SBJV;SG;3;PRS
ijaraga bermoq V;PFV;SBJV;PL;3;FUT
ijaraga bermoq V;PROG;IND;SG;1;FUT
ijaraga bermoq V;SBJV;PL;1;PRS
ijaraga bermoq V;PFV;IND;PL;2;PST
ijaraga bermoq V;IND;SG;2;INFM;PST
ijaraga bermoq V;PRF+PROG;FRML;COND;SG;2;PRS
ijaraga bermoq V;COND;SG;2;INFM;PRS
ijaraga bermoq V;PFV;SBJV;SG;1;FUT
ijaraga bermoq V;PFV;FRML;FH;SG;2
ijaraga bermoq V;PRF;FRML;SBJV;SG;2;PRS
ijaraga bermoq V;SG;2;INFM;PRS
ijaraga bermoq V;PROG;IND;PL;3;FUT
ijaraga bermoq V;PROG;FRML;IND;SG;2;PRS
ijaraga bermoq V;SBJV;SG;1;PRS
ijaraga bermoq V;PL;1;PRS
ijaraga bermoq V;SBJV;SG;2;PRS
ijaraga bermoq V;PROG;IND;PL;2;PST
ijaraga bermoq V;PRF+PROG;COND;SG;3;PRS
ijaraga bermoq V;COND;SG;1;PRS
ijaraga bermoq V;PROG;IND;PL;2;PRS
ijaraga bermoq V;COND;PL;2;PRS
ijaraga bermoq V;IND;PL;3;PST
osilmoq V;PRF;SBJV;PL;2;PRS
osilmoq V;IND;SG;3;PST
osilmoq V;PROG;COND;SG;2;PRS
osilmoq V;PROG;IND;PL;1;PRS
osilmoq V;PFV;IND;SG;1;PST
osilmoq V;PROG;COND;PL;2;PRS
osilmoq V;PFV;FRML;SBJV;SG;2;FUT
osilmoq V;PRF+PROG;COND;PL;2;PRS
osilmoq V;SG;1;PRS
osilmoq V;PFV;IND;SG;3;PST
osilmoq V;PROG;COND;SG;3;PRS
osilmoq V;PROG;IND;PL;3;FUT
osilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
osilmoq V;PROG;IND;SG;3;PST
osilmoq V;PRF;SBJV;SG;1;PRS
osilmoq V;PROG;COND;SG;1;PRS
osilmoq V;IND;SG;2;INFM;PST
osilmoq V;FRML;SBJV;SG;2;PRS
osilmoq V;IND;SG;1;PST
osilmoq V;COND;PL;2;PRS
osilmoq V;PRF;SBJV;PL;1;PRS
osilmoq V;PROG;IND;SG;2;INFM;PST
osilmoq V;COND;PL;3;PRS
osilmoq V;PFV;FRML;IND;SG;2;PST
osilmoq V;PFV;IND;PL;2;PST
osilmoq V;PL;2;PRS
osilmoq V;PROG;FRML;IND;SG;2;FUT
osilmoq V;PFV;FH;PL;2
osilmoq V;PFV;SBJV;PL;1;FUT
osilmoq V;SG;3;PRS
osilmoq V;PFV;IND;PL;3;PST
osilmoq V;PROG;COND;PL;1;PRS
osilmoq V;PROG;IND;SG;1;PRS
osilmoq V;PFV;FRML;FH;SG;2
osilmoq V;PROG;COND;PL;3;PRS
osilmoq V;PFV;FH;SG;1
osilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
osilmoq V;PFV;SBJV;SG;2;INFM;FUT
osilmoq V;PROG;IND;SG;1;FUT
osilmoq V;PROG;IND;SG;3;FUT
osilmoq V;PFV;FH;SG;2
osilmoq V;COND;SG;2;INFM;PRS
osilmoq V;PROG;IND;PL;2;PRS
osilmoq V;PFV;FH;SG;3
osilmoq V;PL;1;PRS
osilmoq V;PRF+PROG;COND;PL;3;PRS
osilmoq V;PROG;IND;SG;1;PST
osilmoq V;FRML;SG;2;PRS
osilmoq V;PROG;FRML;COND;SG;2;PRS
osilmoq V;PFV;IND;PL;1;PST
osilmoq V;PRF+PROG;COND;SG;3;PRS
osilmoq V;COND;SG;1;PRS
osilmoq V;SBJV;SG;2;PRS
osilmoq V;SBJV;SG;1;PRS
osilmoq V;PROG;IND;SG;2;INFM;PRS
osilmoq V;PRF+PROG;COND;PL;1;PRS
osilmoq V;PROG;IND;PL;3;PRS
osilmoq V;PROG;IND;PL;2;PST
osilmoq V;PFV;SBJV;SG;1;FUT
osilmoq V;FRML;COND;SG;2;PRS
osilmoq V;PRF+PROG;COND;SG;1;PRS
osilmoq V;PRF;SBJV;PL;3;PRS
osilmoq V;IND;PL;3;PST
osilmoq V;PFV;SBJV;PL;2;FUT
osilmoq V;PFV;IND;SG;2;INFM;PST
osilmoq V;PROG;IND;PL;1;PST
osilmoq V;COND;SG;3;PRS
osilmoq V;PRF;SBJV;SG;3;PRS
osilmoq V;PROG;IND;PL;2;FUT
osilmoq V;SG;2;INFM;PRS
osilmoq V;PFV;FH;PL;1
osilmoq V;PFV;SBJV;PL;3;FUT
osilmoq V;IND;PL;2;PST
osilmoq V;IND;PL;1;PST
osilmoq V;PROG;IND;SG;3;PRS
osilmoq V;PFV;SBJV;SG;3;FUT
osilmoq V;SBJV;PL;2;PRS
osilmoq V;PROG;FRML;IND;SG;2;PRS
osilmoq V;PROG;IND;PL;1;FUT
osilmoq V;SBJV;PL;1;PRS
osilmoq V;PRF;FRML;SBJV;SG;2;PRS
osilmoq V;SBJV;SG;3;PRS
osilmoq V;PRF;SBJV;SG;2;INFM;PRS
osilmoq V;PROG;IND;SG;2;INFM;FUT
osilmoq V;FRML;IND;SG;2;PST
osilmoq V;SBJV;PL;3;PRS
osilmoq V;COND;PL;1;PRS
osilmoq V;PROG;FRML;IND;SG;2;PST
osilmoq V;PROG;IND;PL;3;PST
osilmoq V;PFV;FH;PL;3
osilmoq V;PL;3;PRS
rozi bo'lmoq V;PROG;IND;PL;3;PST
rozi bo'lmoq V;PROG;COND;PL;1;PRS
rozi bo'lmoq V;PROG;IND;SG;1;FUT
rozi bo'lmoq V;PROG;IND;SG;2;INFM;FUT
rozi bo'lmoq V;PL;2;PRS
rozi bo'lmoq V;PROG;COND;SG;1;PRS
rozi bo'lmoq V;PRF;SBJV;PL;1;PRS
rozi bo'lmoq V;SG;1;PRS
rozi bo'lmoq V;SG;2;INFM;PRS
rozi bo'lmoq V;PROG;COND;SG;2;PRS
rozi bo'lmoq V;PRF;FRML;SBJV;SG;2;PRS
rozi bo'lmoq V;PROG;IND;PL;3;FUT
rozi bo'lmoq V;PRF;SBJV;PL;3;PRS
rozi bo'lmoq V;SG;3;PRS
rozi bo'lmoq V;PFV;FRML;IND;SG;2;PST
rozi bo'lmoq V;PFV;SBJV;PL;1;FUT
rozi bo'lmoq V;PRF+PROG;COND;PL;2;PRS
rozi bo'lmoq V;PFV;SBJV;SG;2;INFM;FUT
rozi bo'lmoq V;PROG;IND;SG;1;PRS
rozi bo'lmoq V;PL;1;PRS
rozi bo'lmoq V;IND;SG;1;PST
rozi bo'lmoq V;PFV;IND;SG;1;PST
rozi bo'lmoq V;PROG;COND;SG;3;PRS
rozi bo'lmoq V;PFV;SBJV;PL;2;FUT
rozi bo'lmoq V;PROG;IND;PL;2;PRS
rozi bo'lmoq V;PFV;FH;SG;1
rozi bo'lmoq V;PFV;SBJV;SG;3;FUT
rozi bo'lmoq V;IND;PL;1;PST
rozi bo'lmoq V;PROG;FRML;IND;SG;2;PRS
rozi bo'lmoq V;PFV;FH;SG;3
rozi bo'lmoq V;PROG;IND;PL;2;PST
rozi bo'lmoq V;COND;PL;3;PRS
rozi bo'lmoq V;PFV;IND;SG;3;PST
rozi bo'lmoq V;IND;PL;3;PST
rozi bo'lmoq V;PFV;IND;PL;2;PST
rozi bo'lmoq V;PFV;FRML;FH;SG;2
rozi bo'lmoq V;PRF+PROG;COND;SG;2;INFM;PRS
rozi bo'lmoq V;FRML;SG;2;PRS
rozi bo'lmoq V;PROG;IND;PL;1;FUT
rozi bo'lmoq V;COND;SG;3;PRS
rozi bo'lmoq V;PFV;FRML;SBJV;SG;2;FUT
rozi bo'lmoq V;IND;SG;2;INFM;PST
rozi bo'lmoq V;IND;SG;3;PST
rozi bo'lmoq V;PRF+PROG;COND;SG;1;PRS
rozi bo'lmoq V;PRF;SBJV;SG;1;PRS
rozi bo'lmoq V;PROG;IND;SG;2;INFM;PRS
rozi bo'lmoq V;PROG;IND;PL;1;PST
rozi bo'lmoq V;COND;SG;1;PRS
rozi bo'lmoq V;PRF;SBJV;SG;2;INFM;PRS
rozi bo'lmoq V;COND;PL;1;PRS
rozi bo'lmoq V;PROG;IND;SG;3;PRS
rozi bo'lmoq V;PFV;FH;PL;1
rozi bo'lmoq V;PROG;FRML;IND;SG;2;FUT
rozi bo'lmoq V;PFV;FH;PL;2
rozi bo'lmoq V;PL;3;PRS
rozi bo'lmoq V;PROG;IND;PL;2;FUT
rozi bo'lmoq V;PROG;COND;PL;3;PRS
rozi bo'lmoq V;IND;PL;2;PST
rozi bo'lmoq V;PFV;FH;PL;3
rozi bo'lmoq V;PRF;SBJV;SG;3;PRS
rozi bo'lmoq V;PRF+PROG;COND;SG;3;PRS
rozi bo'lmoq V;PROG;IND;SG;1;PST
rozi bo'lmoq V;FRML;IND;SG;2;PST
rozi bo'lmoq V;PRF+PROG;COND;PL;3;PRS
rozi bo'lmoq V;FRML;COND;SG;2;PRS
rozi bo'lmoq V;PROG;IND;SG;3;PST
rozi bo'lmoq V;PFV;IND;SG;2;INFM;PST
rozi bo'lmoq V;PRF;SBJV;PL;2;PRS
rozi bo'lmoq V;COND;PL;2;PRS
rozi bo'lmoq V;PROG;IND;SG;2;INFM;PST
rozi bo'lmoq V;PFV;SBJV;SG;1;FUT
rozi bo'lmoq V;PFV;FH;SG;2
rozi bo'lmoq V;PFV;IND;PL;3;PST
rozi bo'lmoq V;PRF+PROG;FRML;COND;SG;2;PRS
rozi bo'lmoq V;PROG;FRML;IND;SG;2;PST
rozi bo'lmoq V;PROG;IND;SG;3;FUT
rozi bo'lmoq V;COND;SG;2;INFM;PRS
rozi bo'lmoq V;PFV;IND;PL;1;PST
rozi bo'lmoq V;PRF+PROG;COND;PL;1;PRS
rozi bo'lmoq V;PROG;IND;PL;3;PRS
rozi bo'lmoq V;PFV;SBJV;PL;3;FUT
rozi bo'lmoq V;PROG;IND;PL;1;PRS
xafa qilmoq V;PFV;IND;PL;3;PST
xafa qilmoq V;PFV;FRML;SBJV;SG;2;FUT
xafa qilmoq V;PROG;IND;PL;2;PRS
xafa qilmoq V;PRF+PROG;COND;PL;1;PRS
xafa qilmoq V;PROG;COND;SG;1;PRS
xafa qilmoq V;PRF;SBJV;SG;1;PRS
xafa qilmoq V;FRML;COND;SG;2;PRS
xafa qilmoq V;PROG;FRML;IND;SG;2;PRS
xafa qilmoq V;PROG;IND;SG;2;INFM;PRS
xafa qilmoq V;PROG;IND;SG;1;PRS
xafa qilmoq V;PRF;SBJV;PL;1;PRS
xafa qilmoq V;IND;PL;2;PST
xafa qilmoq V;PFV;IND;PL;1;PST
xafa qilmoq V;COND;PL;1;PRS
xafa qilmoq V;PRF+PROG;COND;SG;3;PRS
xafa qilmoq V;PROG;IND;PL;1;FUT
xafa qilmoq V;PROG;IND;SG;2;INFM;PST
xafa qilmoq V;PFV;FH;PL;2
xafa qilmoq V;PRF;SBJV;PL;2;PRS
xafa qilmoq V;PROG;IND;PL;3;PST
xafa qilmoq V;PFV;SBJV;PL;3;FUT
xafa qilmoq V;PFV;SBJV;SG;3;FUT
xafa qilmoq V;PROG;COND;SG;3;PRS
xafa qilmoq V;PRF;SBJV;PL;3;PRS
xafa qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
xafa qilmoq V;PROG;IND;SG;3;FUT
xafa qilmoq V;PRF;FRML;SBJV;SG;2;PRS
xafa qilmoq V;PROG;IND;SG;3;PST
xafa qilmoq V;IND;PL;3;PST
xafa qilmoq V;FRML;IND;SG;2;PST
xafa qilmoq V;PFV;IND;PL;2;PST
xafa qilmoq V;PRF+PROG;COND;PL;3;PRS
xafa qilmoq V;SG;3;PRS
xafa qilmoq V;COND;PL;3;PRS
xafa qilmoq V;PFV;IND;SG;1;PST
xafa qilmoq V;PROG;IND;SG;3;PRS
xafa qilmoq V;PFV;SBJV;PL;1;FUT
xafa qilmoq V;PFV;FRML;FH;SG;2
xafa qilmoq V;PROG;IND;PL;1;PST
xafa qilmoq V;PFV;FH;SG;1
xafa qilmoq V;PROG;IND;PL;3;FUT
xafa qilmoq V;PFV;IND;SG;3;PST
xafa qilmoq V;PFV;SBJV;SG;2;INFM;FUT
xafa qilmoq V;PROG;IND;PL;2;FUT
xafa qilmoq V;PROG;IND;SG;1;PST
xafa qilmoq V;PL;2;PRS
xafa qilmoq V;PROG;IND;PL;1;PRS
xafa qilmoq V;PRF;SBJV;SG;2;INFM;PRS
xafa qilmoq V;IND;PL;1;PST
xafa qilmoq V;SG;2;INFM;PRS
xafa qilmoq V;PFV;IND;SG;2;INFM;PST
xafa qilmoq V;FRML;SG;2;PRS
xafa qilmoq V;SG;1;PRS
xafa qilmoq V;PROG;COND;PL;3;PRS
xafa qilmoq V;PROG;COND;SG;2;PRS
xafa qilmoq V;PFV;FH;PL;3
xafa qilmoq V;PROG;COND;PL;1;PRS
xafa qilmoq V;PRF+PROG;COND;PL;2;PRS
xafa qilmoq V;PROG;IND;PL;3;PRS
xafa qilmoq V;PROG;IND;SG;2;INFM;FUT
xafa qilmoq V;PFV;FH;PL;1
xafa qilmoq V;PROG;FRML;IND;SG;2;PST
xafa qilmoq V;PFV;FH;SG;3
xafa qilmoq V;PL;3;PRS
xafa qilmoq V;PRF;SBJV;SG;3;PRS
xafa qilmoq V;PROG;IND;SG;1;FUT
xafa qilmoq V;COND;SG;2;INFM;PRS
xafa qilmoq V;PL;1;PRS
xafa qilmoq V;PRF+PROG;COND;SG;1;PRS
xafa qilmoq V;PFV;SBJV;PL;2;FUT
xafa qilmoq V;IND;SG;3;PST
xafa qilmoq V;IND;SG;2;INFM;PST
xafa qilmoq V;IND;SG;1;PST
xafa qilmoq V;COND;SG;1;PRS
xafa qilmoq V;PFV;SBJV;SG;1;FUT
xafa qilmoq V;COND;PL;2;PRS
xafa qilmoq V;PFV;FH;SG;2
xafa qilmoq V;PROG;FRML;IND;SG;2;FUT
xafa qilmoq V;PFV;FRML;IND;SG;2;PST
xafa qilmoq V;COND;SG;3;PRS
xafa qilmoq V;PROG;IND;PL;2;PST
xafa qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
uylamoq V;PFV;IND;SG;1;PST
uylamoq V;PROG;COND;PL;3;PRS
uylamoq V;IND;PL;2;PST
uylamoq V;PROG;IND;PL;3;PST
uylamoq V;COND;PL;2;PRS
uylamoq V;PROG;FRML;IND;SG;2;FUT
uylamoq V;PFV;SBJV;PL;1;FUT
uylamoq V;COND;SG;2;INFM;PRS
uylamoq V;PROG;IND;SG;3;PRS
uylamoq V;SG;3;PRS
uylamoq V;PFV;FH;SG;1
uylamoq V;FRML;SG;2;PRS
uylamoq V;FRML;IND;SG;2;PST
uylamoq V;PFV;IND;PL;2;PST
uylamoq V;PROG;FRML;COND;SG;2;PRS
uylamoq V;SBJV;SG;2;PRS
uylamoq V;PFV;SBJV;SG;3;FUT
uylamoq V;PFV;IND;PL;3;PST
uylamoq V;PROG;FRML;IND;SG;2;PST
uylamoq V;COND;SG;1;PRS
uylamoq V;PROG;COND;SG;3;PRS
uylamoq V;PROG;IND;PL;3;PRS
uylamoq V;FRML;SBJV;SG;2;PRS
uylamoq V;PRF+PROG;COND;SG;3;PRS
uylamoq V;PRF+PROG;COND;PL;1;PRS
uylamoq V;PRF;SBJV;SG;1;PRS
uylamoq V;PROG;IND;PL;1;PRS
uylamoq V;COND;SG;3;PRS
uylamoq V;PFV;FH;SG;2
uylamoq V;PRF;SBJV;SG;2;INFM;PRS
uylamoq V;SBJV;SG;1;PRS
uylamoq V;PROG;IND;PL;3;FUT
uylamoq V;PL;1;PRS
uylamoq V;PFV;FRML;SBJV;SG;2;FUT
uylamoq V;PROG;COND;PL;1;PRS
uylamoq V;PROG;COND;SG;1;PRS
uylamoq V;PRF;SBJV;SG;3;PRS
uylamoq V;PROG;IND;PL;2;FUT
uylamoq V;PROG;IND;SG;2;INFM;FUT
uylamoq V;PROG;IND;PL;2;PRS
uylamoq V;SBJV;PL;2;PRS
uylamoq V;PL;2;PRS
uylamoq V;PRF;SBJV;PL;1;PRS
uylamoq V;PFV;IND;SG;3;PST
uylamoq V;PL;3;PRS
uylamoq V;PROG;IND;SG;2;INFM;PST
uylamoq V;PFV;SBJV;PL;3;FUT
uylamoq V;IND;SG;1;PST
uylamoq V;PROG;IND;SG;1;PST
uylamoq V;PFV;FRML;FH;SG;2
uylamoq V;PRF+PROG;COND;SG;2;INFM;PRS
uylamoq V;PFV;SBJV;PL;2;FUT
uylamoq V;PRF;SBJV;PL;2;PRS
uylamoq V;COND;PL;3;PRS
uylamoq V;PROG;FRML;IND;SG;2;PRS
uylamoq V;PFV;SBJV;SG;1;FUT
uylamoq V;PROG;IND;SG;2;INFM;PRS
uylamoq V;FRML;COND;SG;2;PRS
uylamoq V;PROG;IND;PL;2;PST
uylamoq V;PRF+PROG;FRML;COND;SG;2;PRS
uylamoq V;PRF+PROG;COND;SG;1;PRS
uylamoq V;PROG;COND;PL;2;PRS
uylamoq V;IND;PL;3;PST
uylamoq V;SBJV;SG;3;PRS
uylamoq V;PROG;IND;SG;3;FUT
uylamoq V;SG;1;PRS
uylamoq V;PRF+PROG;COND;PL;3;PRS
uylamoq V;PRF;SBJV;PL;3;PRS
uylamoq V;IND;SG;3;PST
uylamoq V;IND;SG;2;INFM;PST
uylamoq V;PRF;FRML;SBJV;SG;2;PRS
uylamoq V;PFV;SBJV;SG;2;INFM;FUT
uylamoq V;SG;2;INFM;PRS
uylamoq V;PROG;IND;SG;1;PRS
uylamoq V;PROG;IND;SG;1;FUT
uylamoq V;PROG;IND;SG;3;PST
uylamoq V;PFV;FH;PL;1
uylamoq V;PFV;FH;SG;3
uylamoq V;PFV;IND;SG;2;INFM;PST
uylamoq V;PFV;FRML;IND;SG;2;PST
uylamoq V;SBJV;PL;3;PRS
uylamoq V;PROG;IND;PL;1;FUT
uylamoq V;IND;PL;1;PST
uylamoq V;PROG;IND;PL;1;PST
uylamoq V;PROG;COND;SG;2;PRS
uylamoq V;PFV;FH;PL;2
uylamoq V;COND;PL;1;PRS
uylamoq V;PFV;IND;PL;1;PST
uylamoq V;SBJV;PL;1;PRS
uylamoq V;PFV;FH;PL;3
uylamoq V;PRF+PROG;COND;PL;2;PRS
hisoblamoq V;PFV;IND;SG;1;PST
hisoblamoq V;PROG;IND;PL;1;FUT
hisoblamoq V;PROG;COND;SG;2;PRS
hisoblamoq V;PFV;SBJV;PL;1;FUT
hisoblamoq V;IND;PL;1;PST
hisoblamoq V;PFV;FRML;IND;SG;2;PST
hisoblamoq V;PFV;SBJV;PL;2;FUT
hisoblamoq V;PRF+PROG;COND;PL;3;PRS
hisoblamoq V;PROG;COND;SG;3;PRS
hisoblamoq V;PFV;SBJV;SG;3;FUT
hisoblamoq V;IND;SG;2;INFM;PST
hisoblamoq V;PROG;IND;SG;2;INFM;PRS
hisoblamoq V;IND;SG;3;PST
hisoblamoq V;PROG;IND;PL;3;FUT
hisoblamoq V;PROG;FRML;IND;SG;2;FUT
hisoblamoq V;FRML;SG;2;PRS
hisoblamoq V;FRML;IND;SG;2;PST
hisoblamoq V;SG;2;INFM;PRS
hisoblamoq V;PROG;IND;PL;1;PRS
hisoblamoq V;PRF;SBJV;SG;2;INFM;PRS
hisoblamoq V;PFV;IND;SG;3;PST
hisoblamoq V;PFV;FRML;FH;SG;2
hisoblamoq V;PROG;IND;PL;1;PST
hisoblamoq V;PRF+PROG;COND;SG;3;PRS
hisoblamoq V;COND;PL;3;PRS
hisoblamoq V;PROG;COND;PL;3;PRS
hisoblamoq V;PROG;FRML;IND;SG;2;PRS
hisoblamoq V;PRF+PROG;COND;PL;1;PRS
hisoblamoq V;SG;3;PRS
hisoblamoq V;PROG;IND;SG;1;PST
hisoblamoq V;COND;PL;2;PRS
hisoblamoq V;COND;SG;1;PRS
hisoblamoq V;PRF;SBJV;PL;2;PRS
hisoblamoq V;PRF;SBJV;PL;1;PRS
hisoblamoq V;PROG;COND;PL;1;PRS
hisoblamoq V;PROG;FRML;IND;SG;2;PST
hisoblamoq V;PFV;IND;PL;1;PST
hisoblamoq V;PL;3;PRS
hisoblamoq V;PFV;SBJV;SG;2;INFM;FUT
hisoblamoq V;PROG;IND;SG;2;INFM;FUT
hisoblamoq V;COND;SG;3;PRS
hisoblamoq V;PFV;FH;PL;1
hisoblamoq V;PROG;IND;SG;3;FUT
hisoblamoq V;COND;SG;2;INFM;PRS
hisoblamoq V;PFV;FH;SG;1
hisoblamoq V;PROG;IND;SG;2;INFM;PST
hisoblamoq V;PROG;IND;SG;3;PST
hisoblamoq V;PROG;IND;PL;2;PRS
hisoblamoq V;PRF;FRML;SBJV;SG;2;PRS
hisoblamoq V;PFV;SBJV;PL;3;FUT
hisoblamoq V;PROG;IND;PL;2;FUT
hisoblamoq V;PRF+PROG;COND;PL;2;PRS
hisoblamoq V;PFV;SBJV;SG;1;FUT
hisoblamoq V;PFV;FRML;SBJV;SG;2;FUT
hisoblamoq V;PFV;FH;PL;3
hisoblamoq V;PFV;FH;SG;3
hisoblamoq V;PRF;SBJV;SG;1;PRS
hisoblamoq V;IND;PL;2;PST
hisoblamoq V;PRF;SBJV;SG;3;PRS
hisoblamoq V;PRF+PROG;FRML;COND;SG;2;PRS
hisoblamoq V;PFV;IND;PL;2;PST
hisoblamoq V;IND;SG;1;PST
hisoblamoq V;PROG;IND;PL;2;PST
hisoblamoq V;PRF;SBJV;PL;3;PRS
hisoblamoq V;PL;1;PRS
hisoblamoq V;PFV;IND;SG;2;INFM;PST
hisoblamoq V;PFV;IND;PL;3;PST
hisoblamoq V;SG;1;PRS
hisoblamoq V;PFV;FH;SG;2
hisoblamoq V;COND;PL;1;PRS
hisoblamoq V;PROG;COND;SG;1;PRS
hisoblamoq V;PRF+PROG;COND;SG;2;INFM;PRS
hisoblamoq V;PL;2;PRS
hisoblamoq V;PFV;FH;PL;2
hisoblamoq V;PROG;IND;PL;3;PST
hisoblamoq V;PROG;IND;SG;1;FUT
hisoblamoq V;PROG;IND;SG;1;PRS
hisoblamoq V;FRML;COND;SG;2;PRS
hisoblamoq V;IND;PL;3;PST
hisoblamoq V;PROG;IND;PL;3;PRS
hisoblamoq V;PRF+PROG;COND;SG;1;PRS
hisoblamoq V;PROG;IND;SG;3;PRS
tutmoq V;IND;PL;3;PST
tutmoq V;PFV;IND;SG;2;INFM;PST
tutmoq V;PRF;SBJV;SG;2;INFM;PRS
tutmoq V;PRF+PROG;COND;PL;2;PRS
tutmoq V;PFV;IND;SG;1;PST
tutmoq V;PROG;FRML;IND;SG;2;PST
tutmoq V;PFV;FH;SG;3
tutmoq V;PROG;IND;SG;3;PST
tutmoq V;PROG;IND;SG;2;INFM;PRS
tutmoq V;PRF+PROG;COND;PL;1;PRS
tutmoq V;IND;SG;2;INFM;PST
tutmoq V;FRML;SG;2;PRS
tutmoq V;PRF;FRML;SBJV;SG;2;PRS
tutmoq V;PFV;FH;PL;2
tutmoq V;PROG;IND;PL;2;FUT
tutmoq V;PROG;FRML;IND;SG;2;PRS
tutmoq V;COND;SG;3;PRS
tutmoq V;PROG;COND;PL;1;PRS
tutmoq V;COND;PL;3;PRS
tutmoq V;IND;PL;2;PST
tutmoq V;PROG;IND;PL;2;PRS
tutmoq V;PROG;IND;SG;3;FUT
tutmoq V;PFV;SBJV;PL;2;FUT
tutmoq V;PROG;IND;PL;3;PRS
tutmoq V;PFV;FRML;FH;SG;2
tutmoq V;PROG;IND;SG;2;INFM;PST
tutmoq V;PRF+PROG;COND;SG;3;PRS
tutmoq V;PFV;FH;PL;1
tutmoq V;PROG;IND;SG;1;PST
tutmoq V;PRF;SBJV;PL;3;PRS
tutmoq V;PROG;IND;PL;1;FUT
tutmoq V;SG;2;INFM;PRS
tutmoq V;PROG;IND;PL;3;PST
tutmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tutmoq V;SG;3;PRS
tutmoq V;PRF;SBJV;PL;1;PRS
tutmoq V;PFV;SBJV;SG;1;FUT
tutmoq V;PROG;IND;SG;2;INFM;FUT
tutmoq V;IND;SG;3;PST
tutmoq V;IND;PL;1;PST
tutmoq V;PFV;IND;PL;3;PST
tutmoq V;FRML;IND;SG;2;PST
tutmoq V;PL;3;PRS
tutmoq V;PROG;IND;PL;1;PST
tutmoq V;PROG;IND;SG;1;PRS
tutmoq V;FRML;COND;SG;2;PRS
tutmoq V;COND;SG;1;PRS
tutmoq V;PRF+PROG;COND;SG;1;PRS
tutmoq V;PFV;IND;PL;1;PST
tutmoq V;PROG;IND;PL;1;PRS
tutmoq V;PROG;COND;SG;1;PRS
tutmoq V;COND;PL;2;PRS
tutmoq V;SG;1;PRS
tutmoq V;PRF;SBJV;SG;1;PRS
tutmoq V;PFV;FH;SG;2
tutmoq V;PROG;COND;SG;2;PRS
tutmoq V;PROG;IND;PL;2;PST
tutmoq V;PROG;COND;SG;3;PRS
tutmoq V;PFV;SBJV;PL;3;FUT
tutmoq V;PFV;FRML;IND;SG;2;PST
tutmoq V;PL;2;PRS
tutmoq V;COND;PL;1;PRS
tutmoq V;PROG;FRML;IND;SG;2;FUT
tutmoq V;PROG;IND;PL;3;FUT
tutmoq V;PFV;FRML;SBJV;SG;2;FUT
tutmoq V;PRF;SBJV;PL;2;PRS
tutmoq V;PROG;IND;SG;3;PRS
tutmoq V;PFV;IND;PL;2;PST
tutmoq V;PFV;FH;PL;3
tutmoq V;PFV;IND;SG;3;PST
tutmoq V;IND;SG;1;PST
tutmoq V;PFV;SBJV;SG;3;FUT
tutmoq V;PRF+PROG;COND;PL;3;PRS
tutmoq V;PRF;SBJV;SG;3;PRS
tutmoq V;PFV;FH;SG;1
tutmoq V;PFV;SBJV;PL;1;FUT
tutmoq V;COND;SG;2;INFM;PRS
tutmoq V;PROG;IND;SG;1;FUT
tutmoq V;PL;1;PRS
tutmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tutmoq V;PROG;COND;PL;3;PRS
tutmoq V;PFV;SBJV;SG;2;INFM;FUT
hidlamoq V;FRML;SBJV;SG;2;PRS
hidlamoq V;PROG;IND;PL;3;PST
hidlamoq V;FRML;SG;2;PRS
hidlamoq V;PFV;IND;SG;1;PST
hidlamoq V;PROG;IND;SG;2;INFM;PST
hidlamoq V;PROG;FRML;IND;SG;2;FUT
hidlamoq V;PROG;IND;PL;1;PRS
hidlamoq V;SBJV;PL;1;PRS
hidlamoq V;PFV;FH;PL;3
hidlamoq V;PFV;SBJV;PL;1;FUT
hidlamoq V;PROG;IND;PL;1;FUT
hidlamoq V;PFV;IND;PL;1;PST
hidlamoq V;PRF;SBJV;PL;2;PRS
hidlamoq V;PFV;FH;SG;3
hidlamoq V;PROG;IND;SG;3;PST
hidlamoq V;PFV;FH;SG;1
hidlamoq V;PROG;COND;SG;3;PRS
hidlamoq V;PROG;COND;SG;1;PRS
hidlamoq V;SG;2;INFM;PRS
hidlamoq V;PROG;IND;PL;3;PRS
hidlamoq V;PFV;FH;SG;2
hidlamoq V;PL;2;PRS
hidlamoq V;PRF+PROG;COND;SG;1;PRS
hidlamoq V;COND;SG;1;PRS
hidlamoq V;PROG;IND;SG;3;FUT
hidlamoq V;IND;PL;1;PST
hidlamoq V;PRF;SBJV;SG;2;INFM;PRS
hidlamoq V;PFV;IND;PL;2;PST
hidlamoq V;PL;3;PRS
hidlamoq V;PFV;SBJV;PL;2;FUT
hidlamoq V;IND;PL;3;PST
hidlamoq V;PRF;SBJV;SG;3;PRS
hidlamoq V;PROG;IND;SG;1;FUT
hidlamoq V;SBJV;SG;2;PRS
hidlamoq V;PFV;SBJV;SG;1;FUT
hidlamoq V;COND;SG;2;INFM;PRS
hidlamoq V;PROG;IND;PL;1;PST
hidlamoq V;COND;PL;2;PRS
hidlamoq V;SBJV;PL;2;PRS
hidlamoq V;PROG;IND;SG;1;PRS
hidlamoq V;PROG;IND;SG;1;PST
hidlamoq V;SG;1;PRS
hidlamoq V;PFV;FH;PL;2
hidlamoq V;PROG;IND;SG;2;INFM;PRS
hidlamoq V;PFV;SBJV;SG;2;INFM;FUT
hidlamoq V;PFV;FRML;IND;SG;2;PST
hidlamoq V;PL;1;PRS
hidlamoq V;PFV;FRML;FH;SG;2
hidlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
hidlamoq V;PRF;SBJV;PL;1;PRS
hidlamoq V;PROG;IND;PL;2;PST
hidlamoq V;PROG;COND;PL;3;PRS
hidlamoq V;FRML;COND;SG;2;PRS
hidlamoq V;COND;SG;3;PRS
hidlamoq V;PFV;IND;PL;3;PST
hidlamoq V;PRF+PROG;COND;PL;2;PRS
hidlamoq V;PFV;FH;PL;1
hidlamoq V;PRF+PROG;COND;PL;3;PRS
hidlamoq V;PROG;FRML;IND;SG;2;PST
hidlamoq V;PRF;FRML;SBJV;SG;2;PRS
hidlamoq V;PROG;COND;PL;2;PRS
hidlamoq V;SBJV;SG;1;PRS
hidlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
hidlamoq V;PROG;FRML;COND;SG;2;PRS
hidlamoq V;PROG;IND;PL;2;PRS
hidlamoq V;PROG;IND;SG;2;INFM;FUT
hidlamoq V;IND;PL;2;PST
hidlamoq V;PFV;IND;SG;2;INFM;PST
hidlamoq V;IND;SG;1;PST
hidlamoq V;PFV;IND;SG;3;PST
hidlamoq V;PRF;SBJV;SG;1;PRS
hidlamoq V;PFV;SBJV;SG;3;FUT
hidlamoq V;SBJV;PL;3;PRS
hidlamoq V;SG;3;PRS
hidlamoq V;PROG;IND;SG;3;PRS
hidlamoq V;SBJV;SG;3;PRS
hidlamoq V;PROG;IND;PL;3;FUT
hidlamoq V;PFV;SBJV;PL;3;FUT
hidlamoq V;COND;PL;3;PRS
hidlamoq V;PFV;FRML;SBJV;SG;2;FUT
hidlamoq V;PROG;FRML;IND;SG;2;PRS
hidlamoq V;PROG;COND;SG;2;PRS
hidlamoq V;PROG;COND;PL;1;PRS
hidlamoq V;COND;PL;1;PRS
hidlamoq V;PRF+PROG;COND;SG;3;PRS
hidlamoq V;PRF+PROG;COND;PL;1;PRS
hidlamoq V;IND;SG;3;PST
hidlamoq V;IND;SG;2;INFM;PST
hidlamoq V;PROG;IND;PL;2;FUT
hidlamoq V;FRML;IND;SG;2;PST
hidlamoq V;PRF;SBJV;PL;3;PRS
qarshilantirmoq V;PROG;IND;PL;3;FUT
qarshilantirmoq V;PRF+PROG;COND;SG;1;PRS
qarshilantirmoq V;PROG;IND;SG;1;FUT
qarshilantirmoq V;PROG;FRML;IND;SG;2;PST
qarshilantirmoq V;IND;SG;2;INFM;PST
qarshilantirmoq V;COND;SG;1;PRS
qarshilantirmoq V;PRF+PROG;COND;PL;1;PRS
qarshilantirmoq V;PRF;SBJV;PL;3;PRS
qarshilantirmoq V;SG;1;PRS
qarshilantirmoq V;PROG;IND;PL;2;PST
qarshilantirmoq V;IND;PL;3;PST
qarshilantirmoq V;PFV;FH;SG;3
qarshilantirmoq V;PFV;IND;SG;1;PST
qarshilantirmoq V;PFV;SBJV;PL;1;FUT
qarshilantirmoq V;IND;PL;1;PST
qarshilantirmoq V;PRF+PROG;COND;SG;3;PRS
qarshilantirmoq V;PFV;FRML;IND;SG;2;PST
qarshilantirmoq V;PFV;FRML;FH;SG;2
qarshilantirmoq V;COND;SG;2;INFM;PRS
qarshilantirmoq V;PFV;SBJV;SG;1;FUT
qarshilantirmoq V;PROG;COND;SG;1;PRS
qarshilantirmoq V;PFV;IND;SG;3;PST
qarshilantirmoq V;PRF;SBJV;SG;1;PRS
qarshilantirmoq V;PFV;IND;PL;1;PST
qarshilantirmoq V;PROG;IND;SG;2;INFM;FUT
qarshilantirmoq V;PL;1;PRS
qarshilantirmoq V;FRML;COND;SG;2;PRS
qarshilantirmoq V;PFV;SBJV;PL;3;FUT
qarshilantirmoq V;PFV;SBJV;SG;3;FUT
qarshilantirmoq V;PFV;IND;SG;2;INFM;PST
qarshilantirmoq V;PFV;FH;PL;3
qarshilantirmoq V;PL;2;PRS
qarshilantirmoq V;PROG;IND;SG;2;INFM;PRS
qarshilantirmoq V;PROG;IND;SG;2;INFM;PST
qarshilantirmoq V;PROG;IND;SG;3;PRS
qarshilantirmoq V;FRML;SG;2;PRS
qarshilantirmoq V;PROG;COND;PL;3;PRS
qarshilantirmoq V;SG;2;INFM;PRS
qarshilantirmoq V;PRF;SBJV;PL;1;PRS
qarshilantirmoq V;PFV;IND;PL;2;PST
qarshilantirmoq V;PFV;FH;PL;2
qarshilantirmoq V;PRF+PROG;COND;PL;2;PRS
qarshilantirmoq V;PROG;IND;SG;1;PST
qarshilantirmoq V;PROG;FRML;IND;SG;2;PRS
qarshilantirmoq V;PROG;IND;PL;1;FUT
qarshilantirmoq V;PROG;IND;SG;1;PRS
qarshilantirmoq V;PFV;FH;SG;2
qarshilantirmoq V;COND;SG;3;PRS
qarshilantirmoq V;IND;SG;3;PST
qarshilantirmoq V;PROG;IND;PL;2;FUT
qarshilantirmoq V;PROG;FRML;IND;SG;2;FUT
qarshilantirmoq V;PFV;SBJV;PL;2;FUT
qarshilantirmoq V;PRF;SBJV;SG;2;INFM;PRS
qarshilantirmoq V;PROG;COND;PL;1;PRS
qarshilantirmoq V;PROG;COND;SG;2;PRS
qarshilantirmoq V;IND;SG;1;PST
qarshilantirmoq V;PL;3;PRS
qarshilantirmoq V;COND;PL;2;PRS
qarshilantirmoq V;PROG;IND;SG;3;FUT
qarshilantirmoq V;PROG;IND;PL;2;PRS
qarshilantirmoq V;PFV;FRML;SBJV;SG;2;FUT
qarshilantirmoq V;PROG;IND;PL;3;PRS
qarshilantirmoq V;PRF;SBJV;SG;3;PRS
qarshilantirmoq V;IND;PL;2;PST
qarshilantirmoq V;PRF;FRML;SBJV;SG;2;PRS
qarshilantirmoq V;PRF;SBJV;PL;2;PRS
qarshilantirmoq V;PFV;IND;PL;3;PST
qarshilantirmoq V;COND;PL;1;PRS
qarshilantirmoq V;PRF+PROG;COND;PL;3;PRS
qarshilantirmoq V;PROG;COND;SG;3;PRS
qarshilantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qarshilantirmoq V;PROG;IND;PL;1;PRS
qarshilantirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qarshilantirmoq V;PFV;FH;SG;1
qarshilantirmoq V;COND;PL;3;PRS
qarshilantirmoq V;PFV;SBJV;SG;2;INFM;FUT
qarshilantirmoq V;PFV;FH;PL;1
qarshilantirmoq V;PROG;IND;SG;3;PST
qarshilantirmoq V;FRML;IND;SG;2;PST
qarshilantirmoq V;PROG;IND;PL;1;PST
qarshilantirmoq V;SG;3;PRS
qarshilantirmoq V;PROG;IND;PL;3;PST
sakramoq V;PFV;IND;PL;1;PST
sakramoq V;FRML;IND;SG;2;PST
sakramoq V;SG;3;PRS
sakramoq V;PROG;IND;SG;3;PRS
sakramoq V;PFV;SBJV;PL;1;FUT
sakramoq V;PRF;SBJV;SG;1;PRS
sakramoq V;PRF;SBJV;PL;3;PRS
sakramoq V;PRF+PROG;COND;PL;3;PRS
sakramoq V;PRF+PROG;COND;PL;2;PRS
sakramoq V;PFV;IND;SG;3;PST
sakramoq V;PFV;FRML;FH;SG;2
sakramoq V;PL;1;PRS
sakramoq V;PROG;COND;SG;1;PRS
sakramoq V;PROG;IND;PL;1;PRS
sakramoq V;PFV;FH;PL;2
sakramoq V;PROG;IND;SG;2;INFM;PST
sakramoq V;COND;SG;3;PRS
sakramoq V;PRF+PROG;COND;SG;2;INFM;PRS
sakramoq V;SG;2;INFM;PRS
sakramoq V;PROG;IND;PL;2;FUT
sakramoq V;PROG;IND;SG;1;PRS
sakramoq V;PFV;FH;SG;2
sakramoq V;PFV;FH;SG;3
sakramoq V;FRML;SBJV;SG;2;PRS
sakramoq V;PROG;IND;SG;2;INFM;FUT
sakramoq V;PROG;IND;SG;3;PST
sakramoq V;PL;2;PRS
sakramoq V;PRF+PROG;COND;SG;3;PRS
sakramoq V;PRF+PROG;COND;SG;1;PRS
sakramoq V;PROG;IND;PL;2;PST
sakramoq V;PROG;FRML;COND;SG;2;PRS
sakramoq V;PROG;FRML;IND;SG;2;PST
sakramoq V;PROG;FRML;IND;SG;2;FUT
sakramoq V;PROG;FRML;IND;SG;2;PRS
sakramoq V;PFV;SBJV;PL;2;FUT
sakramoq V;PRF;SBJV;PL;2;PRS
sakramoq V;COND;PL;1;PRS
sakramoq V;PRF;FRML;SBJV;SG;2;PRS
sakramoq V;PROG;IND;PL;3;PST
sakramoq V;PROG;IND;SG;1;FUT
sakramoq V;FRML;COND;SG;2;PRS
sakramoq V;PRF+PROG;COND;PL;1;PRS
sakramoq V;PROG;COND;SG;2;PRS
sakramoq V;SBJV;PL;1;PRS
sakramoq V;PFV;FH;PL;1
sakramoq V;PROG;COND;PL;2;PRS
sakramoq V;SBJV;SG;1;PRS
sakramoq V;SBJV;SG;3;PRS
sakramoq V;PFV;IND;SG;1;PST
sakramoq V;PROG;COND;PL;3;PRS
sakramoq V;PFV;FRML;IND;SG;2;PST
sakramoq V;PROG;COND;PL;1;PRS
sakramoq V;PL;3;PRS
sakramoq V;PFV;IND;SG;2;INFM;PST
sakramoq V;IND;PL;3;PST
sakramoq V;PROG;COND;SG;3;PRS
sakramoq V;PRF;SBJV;PL;1;PRS
sakramoq V;PRF;SBJV;SG;3;PRS
sakramoq V;COND;PL;3;PRS
sakramoq V;IND;SG;1;PST
sakramoq V;PRF+PROG;FRML;COND;SG;2;PRS
sakramoq V;PFV;SBJV;SG;2;INFM;FUT
sakramoq V;PROG;IND;PL;3;PRS
sakramoq V;SG;1;PRS
sakramoq V;COND;PL;2;PRS
sakramoq V;PROG;IND;PL;2;PRS
sakramoq V;PROG;IND;PL;3;FUT
sakramoq V;IND;SG;2;INFM;PST
sakramoq V;PFV;SBJV;SG;3;FUT
sakramoq V;PFV;IND;PL;3;PST
sakramoq V;PROG;IND;SG;1;PST
sakramoq V;PFV;FH;PL;3
sakramoq V;IND;SG;3;PST
sakramoq V;IND;PL;1;PST
sakramoq V;PRF;SBJV;SG;2;INFM;PRS
sakramoq V;SBJV;PL;3;PRS
sakramoq V;PFV;IND;PL;2;PST
sakramoq V;PFV;SBJV;PL;3;FUT
sakramoq V;PFV;FH;SG;1
sakramoq V;SBJV;PL;2;PRS
sakramoq V;IND;PL;2;PST
sakramoq V;PROG;IND;PL;1;FUT
sakramoq V;PROG;IND;SG;2;INFM;PRS
sakramoq V;FRML;SG;2;PRS
sakramoq V;COND;SG;1;PRS
sakramoq V;PFV;SBJV;SG;1;FUT
sakramoq V;PFV;FRML;SBJV;SG;2;FUT
sakramoq V;COND;SG;2;INFM;PRS
sakramoq V;PROG;IND;PL;1;PST
sakramoq V;SBJV;SG;2;PRS
o'xshamoq V;PROG;IND;PL;1;PRS
o'xshamoq V;PROG;IND;SG;2;INFM;FUT
o'xshamoq V;SG;1;PRS
o'xshamoq V;PFV;IND;PL;2;PST
o'xshamoq V;PROG;COND;SG;3;PRS
o'xshamoq V;PROG;COND;SG;2;PRS
o'xshamoq V;PRF+PROG;COND;PL;2;PRS
o'xshamoq V;IND;PL;3;PST
o'xshamoq V;COND;PL;3;PRS
o'xshamoq V;COND;PL;1;PRS
o'xshamoq V;COND;SG;1;PRS
o'xshamoq V;FRML;IND;SG;2;PST
o'xshamoq V;PROG;IND;PL;1;PST
o'xshamoq V;PRF;SBJV;SG;1;PRS
o'xshamoq V;PRF;SBJV;SG;2;INFM;PRS
o'xshamoq V;IND;PL;2;PST
o'xshamoq V;PFV;SBJV;PL;2;FUT
o'xshamoq V;PRF+PROG;COND;SG;2;INFM;PRS
o'xshamoq V;PRF;SBJV;PL;2;PRS
o'xshamoq V;PRF+PROG;COND;SG;1;PRS
o'xshamoq V;PROG;COND;SG;1;PRS
o'xshamoq V;PROG;COND;PL;1;PRS
o'xshamoq V;PFV;IND;SG;3;PST
o'xshamoq V;COND;SG;2;INFM;PRS
o'xshamoq V;IND;SG;3;PST
o'xshamoq V;PROG;IND;PL;2;PST
o'xshamoq V;PFV;FH;PL;1
o'xshamoq V;PRF+PROG;COND;PL;3;PRS
o'xshamoq V;PFV;SBJV;SG;2;INFM;FUT
o'xshamoq V;PRF;SBJV;PL;1;PRS
o'xshamoq V;FRML;COND;SG;2;PRS
o'xshamoq V;PFV;FH;PL;2
o'xshamoq V;PFV;FRML;SBJV;SG;2;FUT
o'xshamoq V;IND;SG;2;INFM;PST
o'xshamoq V;PROG;FRML;IND;SG;2;PRS
o'xshamoq V;PROG;IND;PL;3;FUT
o'xshamoq V;PRF;FRML;SBJV;SG;2;PRS
o'xshamoq V;PROG;COND;PL;3;PRS
o'xshamoq V;IND;PL;1;PST
o'xshamoq V;PROG;IND;SG;2;INFM;PST
o'xshamoq V;SG;2;INFM;PRS
o'xshamoq V;PROG;IND;PL;3;PRS
o'xshamoq V;IND;SG;1;PST
o'xshamoq V;PFV;IND;SG;2;INFM;PST
o'xshamoq V;PFV;SBJV;SG;3;FUT
o'xshamoq V;PROG;IND;SG;1;FUT
o'xshamoq V;PL;2;PRS
o'xshamoq V;PROG;IND;SG;2;INFM;PRS
o'xshamoq V;PROG;IND;SG;3;FUT
o'xshamoq V;COND;PL;2;PRS
o'xshamoq V;PROG;IND;SG;3;PRS
o'xshamoq V;PFV;IND;PL;3;PST
o'xshamoq V;FRML;SG;2;PRS
o'xshamoq V;PRF;SBJV;PL;3;PRS
o'xshamoq V;PFV;FRML;IND;SG;2;PST
o'xshamoq V;PROG;IND;PL;2;FUT
o'xshamoq V;PRF;SBJV;SG;3;PRS
o'xshamoq V;PFV;IND;SG;1;PST
o'xshamoq V;COND;SG;3;PRS
o'xshamoq V;PROG;IND;SG;1;PST
o'xshamoq V;PFV;FH;SG;3
o'xshamoq V;PFV;SBJV;PL;1;FUT
o'xshamoq V;PFV;IND;PL;1;PST
o'xshamoq V;PFV;FH;SG;2
o'xshamoq V;PROG;IND;SG;1;PRS
o'xshamoq V;PFV;FH;PL;3
o'xshamoq V;SG;3;PRS
o'xshamoq V;PRF+PROG;FRML;COND;SG;2;PRS
o'xshamoq V;PROG;IND;PL;2;PRS
o'xshamoq V;PRF+PROG;COND;PL;1;PRS
o'xshamoq V;PL;3;PRS
o'xshamoq V;PFV;SBJV;SG;1;FUT
o'xshamoq V;PROG;FRML;IND;SG;2;PST
o'xshamoq V;PFV;FRML;FH;SG;2
o'xshamoq V;PROG;IND;PL;1;FUT
o'xshamoq V;PRF+PROG;COND;SG;3;PRS
o'xshamoq V;PROG;IND;SG;3;PST
o'xshamoq V;PROG;FRML;IND;SG;2;FUT
o'xshamoq V;PL;1;PRS
o'xshamoq V;PFV;SBJV;PL;3;FUT
o'xshamoq V;PROG;IND;PL;3;PST
o'xshamoq V;PFV;FH;SG;1
qimor o'ynamoq V;PROG;IND;PL;1;PRS
qimor o'ynamoq V;PFV;IND;PL;1;PST
qimor o'ynamoq V;PFV;FH;PL;2
qimor o'ynamoq V;PROG;COND;SG;2;PRS
qimor o'ynamoq V;PROG;IND;PL;1;PST
qimor o'ynamoq V;FRML;COND;SG;2;PRS
qimor o'ynamoq V;PRF;FRML;SBJV;SG;2;PRS
qimor o'ynamoq V;PROG;IND;SG;1;FUT
qimor o'ynamoq V;IND;SG;3;PST
qimor o'ynamoq V;SG;3;PRS
qimor o'ynamoq V;COND;PL;2;PRS
qimor o'ynamoq V;PRF+PROG;COND;PL;1;PRS
qimor o'ynamoq V;PFV;FRML;FH;SG;2
qimor o'ynamoq V;PFV;IND;PL;3;PST
qimor o'ynamoq V;PROG;IND;PL;2;FUT
qimor o'ynamoq V;PROG;COND;PL;1;PRS
qimor o'ynamoq V;PROG;IND;PL;1;FUT
qimor o'ynamoq V;PROG;IND;SG;3;FUT
qimor o'ynamoq V;PL;2;PRS
qimor o'ynamoq V;PRF;SBJV;PL;1;PRS
qimor o'ynamoq V;PROG;COND;SG;3;PRS
qimor o'ynamoq V;PROG;FRML;IND;SG;2;PRS
qimor o'ynamoq V;PRF;SBJV;SG;1;PRS
qimor o'ynamoq V;PFV;IND;SG;1;PST
qimor o'ynamoq V;PFV;IND;PL;2;PST
qimor o'ynamoq V;PFV;FH;SG;3
qimor o'ynamoq V;PROG;IND;SG;1;PST
qimor o'ynamoq V;PFV;IND;SG;2;INFM;PST
qimor o'ynamoq V;PFV;IND;SG;3;PST
qimor o'ynamoq V;IND;PL;1;PST
qimor o'ynamoq V;PL;1;PRS
qimor o'ynamoq V;PROG;IND;SG;3;PST
qimor o'ynamoq V;PL;3;PRS
qimor o'ynamoq V;PFV;SBJV;SG;3;FUT
qimor o'ynamoq V;PRF+PROG;COND;SG;2;INFM;PRS
qimor o'ynamoq V;PROG;IND;SG;2;INFM;PRS
qimor o'ynamoq V;PROG;IND;PL;3;PST
qimor o'ynamoq V;PROG;IND;SG;2;INFM;PST
qimor o'ynamoq V;IND;SG;1;PST
qimor o'ynamoq V;PFV;FH;SG;1
qimor o'ynamoq V;PFV;SBJV;PL;1;FUT
qimor o'ynamoq V;PROG;IND;PL;2;PRS
qimor o'ynamoq V;FRML;IND;SG;2;PST
qimor o'ynamoq V;PROG;IND;PL;3;PRS
qimor o'ynamoq V;PFV;FH;PL;3
qimor o'ynamoq V;PFV;SBJV;PL;3;FUT
qimor o'ynamoq V;IND;SG;2;INFM;PST
qimor o'ynamoq V;PROG;FRML;IND;SG;2;PST
qimor o'ynamoq V;COND;SG;3;PRS
qimor o'ynamoq V;PFV;FRML;SBJV;SG;2;FUT
qimor o'ynamoq V;PRF;SBJV;SG;2;INFM;PRS
qimor o'ynamoq V;COND;PL;3;PRS
qimor o'ynamoq V;PFV;SBJV;SG;1;FUT
qimor o'ynamoq V;PROG;COND;SG;1;PRS
qimor o'ynamoq V;PRF;SBJV;SG;3;PRS
qimor o'ynamoq V;PRF+PROG;COND;PL;2;PRS
qimor o'ynamoq V;PFV;FRML;IND;SG;2;PST
qimor o'ynamoq V;PRF;SBJV;PL;3;PRS
qimor o'ynamoq V;PRF;SBJV;PL;2;PRS
qimor o'ynamoq V;PROG;IND;PL;2;PST
qimor o'ynamoq V;COND;SG;1;PRS
qimor o'ynamoq V;SG;2;INFM;PRS
qimor o'ynamoq V;PRF+PROG;COND;PL;3;PRS
qimor o'ynamoq V;FRML;SG;2;PRS
qimor o'ynamoq V;PROG;IND;PL;3;FUT
qimor o'ynamoq V;PROG;IND;SG;2;INFM;FUT
qimor o'ynamoq V;COND;PL;1;PRS
qimor o'ynamoq V;PFV;FH;PL;1
qimor o'ynamoq V;SG;1;PRS
qimor o'ynamoq V;PROG;COND;PL;3;PRS
qimor o'ynamoq V;COND;SG;2;INFM;PRS
qimor o'ynamoq V;PROG;IND;SG;3;PRS
qimor o'ynamoq V;PRF+PROG;COND;SG;3;PRS
qimor o'ynamoq V;PROG;FRML;IND;SG;2;FUT
qimor o'ynamoq V;IND;PL;3;PST
qimor o'ynamoq V;PFV;FH;SG;2
qimor o'ynamoq V;IND;PL;2;PST
qimor o'ynamoq V;PFV;SBJV;PL;2;FUT
qimor o'ynamoq V;PROG;IND;SG;1;PRS
qimor o'ynamoq V;PFV;SBJV;SG;2;INFM;FUT
qimor o'ynamoq V;PRF+PROG;COND;SG;1;PRS
qimor o'ynamoq V;PRF+PROG;FRML;COND;SG;2;PRS
yiqilmoq V;PROG;IND;PL;2;PST
yiqilmoq V;PRF;SBJV;PL;3;PRS
yiqilmoq V;PRF+PROG;COND;PL;2;PRS
yiqilmoq V;PROG;COND;SG;2;PRS
yiqilmoq V;SG;2;INFM;PRS
yiqilmoq V;PFV;FH;PL;2
yiqilmoq V;PRF;FRML;SBJV;SG;2;PRS
yiqilmoq V;FRML;COND;SG;2;PRS
yiqilmoq V;FRML;SG;2;PRS
yiqilmoq V;PFV;FRML;SBJV;SG;2;FUT
yiqilmoq V;PRF;SBJV;SG;3;PRS
yiqilmoq V;PFV;FH;SG;2
yiqilmoq V;PFV;IND;PL;1;PST
yiqilmoq V;PROG;IND;PL;3;FUT
yiqilmoq V;PRF;SBJV;PL;1;PRS
yiqilmoq V;COND;PL;2;PRS
yiqilmoq V;PROG;FRML;IND;SG;2;PRS
yiqilmoq V;PFV;IND;SG;1;PST
yiqilmoq V;PFV;IND;PL;3;PST
yiqilmoq V;PROG;IND;SG;3;PST
yiqilmoq V;PROG;FRML;IND;SG;2;PST
yiqilmoq V;PRF;SBJV;SG;2;INFM;PRS
yiqilmoq V;PFV;FRML;IND;SG;2;PST
yiqilmoq V;IND;PL;1;PST
yiqilmoq V;PROG;IND;PL;3;PST
yiqilmoq V;PFV;SBJV;PL;3;FUT
yiqilmoq V;PFV;FRML;FH;SG;2
yiqilmoq V;PROG;COND;SG;1;PRS
yiqilmoq V;PROG;IND;PL;1;PST
yiqilmoq V;COND;SG;2;INFM;PRS
yiqilmoq V;PFV;FH;SG;1
yiqilmoq V;PROG;IND;SG;1;PST
yiqilmoq V;COND;PL;3;PRS
yiqilmoq V;PL;3;PRS
yiqilmoq V;IND;SG;1;PST
yiqilmoq V;PROG;IND;PL;1;FUT
yiqilmoq V;PROG;IND;PL;3;PRS
yiqilmoq V;PROG;IND;SG;2;INFM;PST
yiqilmoq V;PFV;SBJV;SG;2;INFM;FUT
yiqilmoq V;FRML;IND;SG;2;PST
yiqilmoq V;PROG;IND;SG;1;PRS
yiqilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yiqilmoq V;PFV;FH;PL;3
yiqilmoq V;PL;2;PRS
yiqilmoq V;PROG;IND;PL;1;PRS
yiqilmoq V;PROG;COND;PL;1;PRS
yiqilmoq V;SG;3;PRS
yiqilmoq V;PRF+PROG;COND;SG;3;PRS
yiqilmoq V;PFV;FH;SG;3
yiqilmoq V;PRF;SBJV;PL;2;PRS
yiqilmoq V;PRF+PROG;COND;SG;1;PRS
yiqilmoq V;COND;PL;1;PRS
yiqilmoq V;IND;SG;2;INFM;PST
yiqilmoq V;PROG;IND;SG;3;PRS
yiqilmoq V;PFV;SBJV;PL;1;FUT
yiqilmoq V;PROG;IND;PL;2;FUT
yiqilmoq V;PRF;SBJV;SG;1;PRS
yiqilmoq V;PFV;FH;PL;1
yiqilmoq V;PFV;SBJV;SG;1;FUT
yiqilmoq V;PFV;SBJV;SG;3;FUT
yiqilmoq V;IND;SG;3;PST
yiqilmoq V;IND;PL;2;PST
yiqilmoq V;PFV;IND;SG;3;PST
yiqilmoq V;SG;1;PRS
yiqilmoq V;PROG;COND;PL;3;PRS
yiqilmoq V;PROG;IND;SG;2;INFM;FUT
yiqilmoq V;PROG;FRML;IND;SG;2;FUT
yiqilmoq V;PRF+PROG;COND;PL;3;PRS
yiqilmoq V;PROG;COND;SG;3;PRS
yiqilmoq V;PFV;IND;PL;2;PST
yiqilmoq V;PFV;SBJV;PL;2;FUT
yiqilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yiqilmoq V;IND;PL;3;PST
yiqilmoq V;PL;1;PRS
yiqilmoq V;PRF+PROG;COND;PL;1;PRS
yiqilmoq V;PROG;IND;PL;2;PRS
yiqilmoq V;PROG;IND;SG;2;INFM;PRS
yiqilmoq V;COND;SG;3;PRS
yiqilmoq V;COND;SG;1;PRS
yiqilmoq V;PROG;IND;SG;3;FUT
yiqilmoq V;PFV;IND;SG;2;INFM;PST
yiqilmoq V;PROG;IND;SG;1;FUT
tashakkur aytmoq V;IND;SG;1;PST
tashakkur aytmoq V;PROG;IND;SG;1;PRS
tashakkur aytmoq V;PRF;SBJV;SG;1;PRS
tashakkur aytmoq V;PROG;IND;SG;3;FUT
tashakkur aytmoq V;PFV;FH;PL;1
tashakkur aytmoq V;PROG;IND;PL;3;PRS
tashakkur aytmoq V;PL;1;PRS
tashakkur aytmoq V;IND;PL;1;PST
tashakkur aytmoq V;PROG;IND;PL;3;FUT
tashakkur aytmoq V;PROG;IND;SG;3;PRS
tashakkur aytmoq V;COND;PL;3;PRS
tashakkur aytmoq V;PROG;COND;SG;2;PRS
tashakkur aytmoq V;PRF;FRML;SBJV;SG;2;PRS
tashakkur aytmoq V;PFV;FH;SG;1
tashakkur aytmoq V;PROG;IND;SG;3;PST
tashakkur aytmoq V;FRML;SG;2;PRS
tashakkur aytmoq V;IND;PL;3;PST
tashakkur aytmoq V;PFV;IND;PL;1;PST
tashakkur aytmoq V;PFV;FRML;FH;SG;2
tashakkur aytmoq V;SG;2;INFM;PRS
tashakkur aytmoq V;PFV;IND;SG;1;PST
tashakkur aytmoq V;PROG;FRML;IND;SG;2;PST
tashakkur aytmoq V;FRML;IND;SG;2;PST
tashakkur aytmoq V;PRF;SBJV;SG;2;INFM;PRS
tashakkur aytmoq V;PROG;COND;PL;3;PRS
tashakkur aytmoq V;IND;SG;3;PST
tashakkur aytmoq V;PRF;SBJV;PL;3;PRS
tashakkur aytmoq V;COND;SG;1;PRS
tashakkur aytmoq V;IND;PL;2;PST
tashakkur aytmoq V;PFV;IND;PL;3;PST
tashakkur aytmoq V;COND;SG;3;PRS
tashakkur aytmoq V;COND;PL;2;PRS
tashakkur aytmoq V;SG;1;PRS
tashakkur aytmoq V;IND;SG;2;INFM;PST
tashakkur aytmoq V;PROG;IND;SG;2;INFM;PRS
tashakkur aytmoq V;PFV;SBJV;PL;3;FUT
tashakkur aytmoq V;PFV;FH;SG;2
tashakkur aytmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tashakkur aytmoq V;FRML;COND;SG;2;PRS
tashakkur aytmoq V;PRF;SBJV;PL;1;PRS
tashakkur aytmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tashakkur aytmoq V;PRF+PROG;COND;PL;3;PRS
tashakkur aytmoq V;PRF+PROG;COND;SG;1;PRS
tashakkur aytmoq V;PROG;FRML;IND;SG;2;PRS
tashakkur aytmoq V;PRF;SBJV;SG;3;PRS
tashakkur aytmoq V;PFV;FH;SG;3
tashakkur aytmoq V;PFV;SBJV;SG;2;INFM;FUT
tashakkur aytmoq V;PFV;SBJV;SG;3;FUT
tashakkur aytmoq V;PFV;IND;SG;2;INFM;PST
tashakkur aytmoq V;PROG;IND;SG;2;INFM;FUT
tashakkur aytmoq V;PRF+PROG;COND;SG;3;PRS
tashakkur aytmoq V;PROG;COND;PL;1;PRS
tashakkur aytmoq V;PL;2;PRS
tashakkur aytmoq V;PROG;COND;SG;3;PRS
tashakkur aytmoq V;PFV;SBJV;PL;1;FUT
tashakkur aytmoq V;PFV;FH;PL;2
tashakkur aytmoq V;PROG;IND;SG;1;FUT
tashakkur aytmoq V;PFV;SBJV;PL;2;FUT
tashakkur aytmoq V;PROG;FRML;IND;SG;2;FUT
tashakkur aytmoq V;PFV;IND;PL;2;PST
tashakkur aytmoq V;PROG;IND;PL;2;PST
tashakkur aytmoq V;PROG;IND;PL;2;FUT
tashakkur aytmoq V;PRF;SBJV;PL;2;PRS
tashakkur aytmoq V;PROG;IND;PL;3;PST
tashakkur aytmoq V;PROG;IND;PL;1;PRS
tashakkur aytmoq V;PRF+PROG;COND;PL;2;PRS
tashakkur aytmoq V;PROG;IND;PL;2;PRS
tashakkur aytmoq V;PL;3;PRS
tashakkur aytmoq V;PFV;FH;PL;3
tashakkur aytmoq V;PFV;IND;SG;3;PST
tashakkur aytmoq V;COND;PL;1;PRS
tashakkur aytmoq V;PFV;FRML;SBJV;SG;2;FUT
tashakkur aytmoq V;PROG;COND;SG;1;PRS
tashakkur aytmoq V;PRF+PROG;COND;PL;1;PRS
tashakkur aytmoq V;SG;3;PRS
tashakkur aytmoq V;PFV;SBJV;SG;1;FUT
tashakkur aytmoq V;PROG;IND;PL;1;FUT
tashakkur aytmoq V;PROG;IND;SG;2;INFM;PST
tashakkur aytmoq V;PROG;IND;PL;1;PST
tashakkur aytmoq V;PROG;IND;SG;1;PST
tashakkur aytmoq V;PFV;FRML;IND;SG;2;PST
tashakkur aytmoq V;COND;SG;2;INFM;PRS
qadoqlamoq V;PROG;FRML;IND;SG;2;PRS
qadoqlamoq V;SG;2;INFM;PRS
qadoqlamoq V;PROG;COND;SG;3;PRS
qadoqlamoq V;COND;SG;2;INFM;PRS
qadoqlamoq V;PROG;COND;SG;1;PRS
qadoqlamoq V;PFV;SBJV;PL;1;FUT
qadoqlamoq V;PROG;COND;PL;1;PRS
qadoqlamoq V;PFV;SBJV;SG;3;FUT
qadoqlamoq V;PFV;FH;PL;1
qadoqlamoq V;IND;PL;3;PST
qadoqlamoq V;PROG;IND;SG;2;INFM;FUT
qadoqlamoq V;PRF;SBJV;PL;1;PRS
qadoqlamoq V;PFV;SBJV;SG;1;FUT
qadoqlamoq V;PFV;FRML;FH;SG;2
qadoqlamoq V;PROG;IND;PL;1;PRS
qadoqlamoq V;PFV;SBJV;PL;2;FUT
qadoqlamoq V;PRF;SBJV;SG;3;PRS
qadoqlamoq V;SG;3;PRS
qadoqlamoq V;PROG;IND;PL;3;PRS
qadoqlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
qadoqlamoq V;PROG;FRML;IND;SG;2;FUT
qadoqlamoq V;IND;PL;2;PST
qadoqlamoq V;PROG;IND;PL;2;PST
qadoqlamoq V;PFV;SBJV;PL;3;FUT
qadoqlamoq V;PRF;FRML;SBJV;SG;2;PRS
qadoqlamoq V;PRF;SBJV;SG;1;PRS
qadoqlamoq V;PFV;FRML;SBJV;SG;2;FUT
qadoqlamoq V;PROG;IND;PL;1;PST
qadoqlamoq V;PRF+PROG;COND;PL;2;PRS
qadoqlamoq V;PROG;COND;PL;3;PRS
qadoqlamoq V;PROG;IND;PL;3;FUT
qadoqlamoq V;PROG;IND;PL;3;PST
qadoqlamoq V;PFV;FH;SG;2
qadoqlamoq V;PRF;SBJV;SG;2;INFM;PRS
qadoqlamoq V;COND;PL;3;PRS
qadoqlamoq V;PFV;SBJV;SG;2;INFM;FUT
qadoqlamoq V;IND;SG;1;PST
qadoqlamoq V;PFV;IND;PL;1;PST
qadoqlamoq V;PFV;FH;SG;1
qadoqlamoq V;SG;1;PRS
qadoqlamoq V;PFV;IND;SG;2;INFM;PST
qadoqlamoq V;IND;SG;3;PST
qadoqlamoq V;PROG;IND;PL;2;PRS
qadoqlamoq V;PROG;FRML;IND;SG;2;PST
qadoqlamoq V;PROG;IND;SG;3;FUT
qadoqlamoq V;PRF+PROG;COND;PL;3;PRS
qadoqlamoq V;COND;PL;2;PRS
qadoqlamoq V;PROG;IND;PL;2;FUT
qadoqlamoq V;PROG;IND;PL;1;FUT
qadoqlamoq V;PFV;IND;SG;1;PST
qadoqlamoq V;COND;SG;1;PRS
qadoqlamoq V;PROG;IND;SG;1;PRS
qadoqlamoq V;PFV;FH;PL;3
qadoqlamoq V;PROG;IND;SG;2;INFM;PRS
qadoqlamoq V;IND;PL;1;PST
qadoqlamoq V;PL;2;PRS
qadoqlamoq V;PL;3;PRS
qadoqlamoq V;PFV;FH;SG;3
qadoqlamoq V;PROG;IND;SG;1;PST
qadoqlamoq V;IND;SG;2;INFM;PST
qadoqlamoq V;FRML;COND;SG;2;PRS
qadoqlamoq V;PRF;SBJV;PL;2;PRS
qadoqlamoq V;PROG;IND;SG;1;FUT
qadoqlamoq V;PFV;FH;PL;2
qadoqlamoq V;PL;1;PRS
qadoqlamoq V;PFV;IND;PL;3;PST
qadoqlamoq V;COND;SG;3;PRS
qadoqlamoq V;PROG;IND;SG;2;INFM;PST
qadoqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
qadoqlamoq V;PRF+PROG;COND;PL;1;PRS
qadoqlamoq V;PRF+PROG;COND;SG;1;PRS
qadoqlamoq V;PROG;IND;SG;3;PRS
qadoqlamoq V;FRML;SG;2;PRS
qadoqlamoq V;PRF+PROG;COND;SG;3;PRS
qadoqlamoq V;FRML;IND;SG;2;PST
qadoqlamoq V;PROG;COND;SG;2;PRS
qadoqlamoq V;COND;PL;1;PRS
qadoqlamoq V;PROG;IND;SG;3;PST
qadoqlamoq V;PRF;SBJV;PL;3;PRS
qadoqlamoq V;PFV;IND;PL;2;PST
qadoqlamoq V;PFV;FRML;IND;SG;2;PST
qadoqlamoq V;PFV;IND;SG;3;PST
mug'ombirlik qilmoq V;PL;2;PRS
mug'ombirlik qilmoq V;COND;PL;2;PRS
mug'ombirlik qilmoq V;SG;3;PRS
mug'ombirlik qilmoq V;PROG;COND;SG;2;PRS
mug'ombirlik qilmoq V;PFV;FH;SG;2
mug'ombirlik qilmoq V;PROG;FRML;IND;SG;2;PRS
mug'ombirlik qilmoq V;PROG;FRML;IND;SG;2;PST
mug'ombirlik qilmoq V;PROG;IND;PL;1;FUT
mug'ombirlik qilmoq V;PRF;SBJV;SG;2;INFM;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;3;FUT
mug'ombirlik qilmoq V;PFV;SBJV;SG;1;FUT
mug'ombirlik qilmoq V;PFV;FH;SG;3
mug'ombirlik qilmoq V;IND;PL;3;PST
mug'ombirlik qilmoq V;PRF;FRML;SBJV;SG;2;PRS
mug'ombirlik qilmoq V;IND;SG;2;INFM;PST
mug'ombirlik qilmoq V;PROG;IND;PL;3;FUT
mug'ombirlik qilmoq V;PROG;COND;PL;3;PRS
mug'ombirlik qilmoq V;PFV;IND;SG;1;PST
mug'ombirlik qilmoq V;PRF;SBJV;PL;1;PRS
mug'ombirlik qilmoq V;PROG;IND;PL;3;PRS
mug'ombirlik qilmoq V;FRML;SG;2;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;1;PST
mug'ombirlik qilmoq V;PFV;SBJV;SG;3;FUT
mug'ombirlik qilmoq V;PFV;IND;PL;2;PST
mug'ombirlik qilmoq V;PROG;COND;SG;1;PRS
mug'ombirlik qilmoq V;PROG;IND;PL;2;PST
mug'ombirlik qilmoq V;SG;2;INFM;PRS
mug'ombirlik qilmoq V;PFV;FH;PL;1
mug'ombirlik qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
mug'ombirlik qilmoq V;PROG;FRML;IND;SG;2;FUT
mug'ombirlik qilmoq V;PFV;SBJV;PL;1;FUT
mug'ombirlik qilmoq V;IND;SG;1;PST
mug'ombirlik qilmoq V;PROG;IND;PL;2;FUT
mug'ombirlik qilmoq V;PFV;FRML;FH;SG;2
mug'ombirlik qilmoq V;COND;SG;2;INFM;PRS
mug'ombirlik qilmoq V;FRML;COND;SG;2;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;1;FUT
mug'ombirlik qilmoq V;PFV;SBJV;SG;2;INFM;FUT
mug'ombirlik qilmoq V;PFV;FH;PL;3
mug'ombirlik qilmoq V;PRF+PROG;COND;PL;3;PRS
mug'ombirlik qilmoq V;COND;PL;1;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;3;PST
mug'ombirlik qilmoq V;PRF+PROG;COND;PL;2;PRS
mug'ombirlik qilmoq V;PROG;IND;PL;1;PST
mug'ombirlik qilmoq V;PL;3;PRS
mug'ombirlik qilmoq V;PFV;SBJV;PL;2;FUT
mug'ombirlik qilmoq V;PROG;COND;PL;1;PRS
mug'ombirlik qilmoq V;PRF;SBJV;SG;1;PRS
mug'ombirlik qilmoq V;IND;PL;2;PST
mug'ombirlik qilmoq V;COND;SG;3;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;1;PRS
mug'ombirlik qilmoq V;PFV;FH;SG;1
mug'ombirlik qilmoq V;PFV;IND;SG;2;INFM;PST
mug'ombirlik qilmoq V;SG;1;PRS
mug'ombirlik qilmoq V;PFV;FH;PL;2
mug'ombirlik qilmoq V;PRF;SBJV;PL;3;PRS
mug'ombirlik qilmoq V;PFV;IND;PL;3;PST
mug'ombirlik qilmoq V;FRML;IND;SG;2;PST
mug'ombirlik qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
mug'ombirlik qilmoq V;COND;PL;3;PRS
mug'ombirlik qilmoq V;COND;SG;1;PRS
mug'ombirlik qilmoq V;PFV;FRML;IND;SG;2;PST
mug'ombirlik qilmoq V;PROG;COND;SG;3;PRS
mug'ombirlik qilmoq V;PFV;SBJV;PL;3;FUT
mug'ombirlik qilmoq V;PRF;SBJV;PL;2;PRS
mug'ombirlik qilmoq V;PRF+PROG;COND;SG;3;PRS
mug'ombirlik qilmoq V;PRF+PROG;COND;SG;1;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;3;PRS
mug'ombirlik qilmoq V;PROG;IND;PL;1;PRS
mug'ombirlik qilmoq V;PFV;IND;PL;1;PST
mug'ombirlik qilmoq V;PFV;FRML;SBJV;SG;2;FUT
mug'ombirlik qilmoq V;IND;PL;1;PST
mug'ombirlik qilmoq V;PL;1;PRS
mug'ombirlik qilmoq V;PRF+PROG;COND;PL;1;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;FUT
mug'ombirlik qilmoq V;PFV;IND;SG;3;PST
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;PST
mug'ombirlik qilmoq V;IND;SG;3;PST
mug'ombirlik qilmoq V;PROG;IND;PL;3;PST
mug'ombirlik qilmoq V;PROG;IND;PL;2;PRS
mug'ombirlik qilmoq V;PRF;SBJV;SG;3;PRS
mug'ombirlik qilmoq V;PROG;IND;SG;2;INFM;PRS
e'lon qilmoq V;PFV;IND;SG;3;PST
e'lon qilmoq V;PFV;FRML;IND;SG;2;PST
e'lon qilmoq V;PRF+PROG;COND;SG;1;PRS
e'lon qilmoq V;PRF;FRML;SBJV;SG;2;PRS
e'lon qilmoq V;COND;PL;1;PRS
e'lon qilmoq V;PFV;SBJV;PL;1;FUT
e'lon qilmoq V;PFV;IND;SG;2;INFM;PST
e'lon qilmoq V;IND;PL;3;PST
e'lon qilmoq V;PFV;IND;SG;1;PST
e'lon qilmoq V;PROG;COND;SG;1;PRS
e'lon qilmoq V;PRF+PROG;COND;PL;3;PRS
e'lon qilmoq V;PFV;FRML;SBJV;SG;2;FUT
e'lon qilmoq V;PROG;FRML;IND;SG;2;PST
e'lon qilmoq V;PROG;COND;PL;1;PRS
e'lon qilmoq V;PROG;IND;PL;3;PRS
e'lon qilmoq V;PFV;FRML;FH;SG;2
e'lon qilmoq V;IND;PL;2;PST
e'lon qilmoq V;SG;2;INFM;PRS
e'lon qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
e'lon qilmoq V;FRML;IND;SG;2;PST
e'lon qilmoq V;PROG;FRML;IND;SG;2;FUT
e'lon qilmoq V;SG;1;PRS
e'lon qilmoq V;PRF;SBJV;SG;1;PRS
e'lon qilmoq V;PFV;SBJV;PL;2;FUT
e'lon qilmoq V;PRF;SBJV;SG;3;PRS
e'lon qilmoq V;PRF+PROG;COND;PL;2;PRS
e'lon qilmoq V;PROG;COND;SG;2;PRS
e'lon qilmoq V;PFV;FH;SG;2
e'lon qilmoq V;PROG;IND;SG;1;PRS
e'lon qilmoq V;IND;SG;2;INFM;PST
e'lon qilmoq V;IND;PL;1;PST
e'lon qilmoq V;PROG;IND;SG;2;INFM;PRS
e'lon qilmoq V;PFV;FH;PL;3
e'lon qilmoq V;PFV;FH;PL;2
e'lon qilmoq V;PROG;FRML;IND;SG;2;PRS
e'lon qilmoq V;PRF+PROG;COND;SG;3;PRS
e'lon qilmoq V;PROG;COND;PL;3;PRS
e'lon qilmoq V;PROG;IND;SG;3;FUT
e'lon qilmoq V;PFV;SBJV;SG;1;FUT
e'lon qilmoq V;COND;SG;2;INFM;PRS
e'lon qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
e'lon qilmoq V;PFV;SBJV;PL;3;FUT
e'lon qilmoq V;PRF;SBJV;PL;1;PRS
e'lon qilmoq V;PROG;IND;SG;3;PRS
e'lon qilmoq V;IND;SG;1;PST
e'lon qilmoq V;PROG;IND;PL;3;PST
e'lon qilmoq V;COND;SG;1;PRS
e'lon qilmoq V;PFV;SBJV;SG;3;FUT
e'lon qilmoq V;PROG;IND;SG;3;PST
e'lon qilmoq V;PROG;COND;SG;3;PRS
e'lon qilmoq V;COND;PL;3;PRS
e'lon qilmoq V;PROG;IND;PL;2;FUT
e'lon qilmoq V;PFV;IND;PL;2;PST
e'lon qilmoq V;PROG;IND;PL;2;PST
e'lon qilmoq V;PROG;IND;SG;2;INFM;PST
e'lon qilmoq V;PROG;IND;PL;1;PRS
e'lon qilmoq V;PFV;FH;SG;1
e'lon qilmoq V;PFV;FH;PL;1
e'lon qilmoq V;COND;PL;2;PRS
e'lon qilmoq V;PRF;SBJV;PL;3;PRS
e'lon qilmoq V;PFV;IND;PL;1;PST
e'lon qilmoq V;PFV;IND;PL;3;PST
e'lon qilmoq V;PL;2;PRS
e'lon qilmoq V;PFV;FH;SG;3
e'lon qilmoq V;COND;SG;3;PRS
e'lon qilmoq V;PROG;IND;SG;1;FUT
e'lon qilmoq V;PL;3;PRS
e'lon qilmoq V;PROG;IND;PL;2;PRS
e'lon qilmoq V;FRML;SG;2;PRS
e'lon qilmoq V;PROG;IND;SG;2;INFM;FUT
e'lon qilmoq V;PROG;IND;SG;1;PST
e'lon qilmoq V;PROG;IND;PL;3;FUT
e'lon qilmoq V;PL;1;PRS
e'lon qilmoq V;PRF;SBJV;SG;2;INFM;PRS
e'lon qilmoq V;PFV;SBJV;SG;2;INFM;FUT
e'lon qilmoq V;IND;SG;3;PST
e'lon qilmoq V;SG;3;PRS
e'lon qilmoq V;FRML;COND;SG;2;PRS
e'lon qilmoq V;PROG;IND;PL;1;PST
e'lon qilmoq V;PRF+PROG;COND;PL;1;PRS
e'lon qilmoq V;PRF;SBJV;PL;2;PRS
e'lon qilmoq V;PROG;IND;PL;1;FUT
savdo qilmoq V;PROG;COND;SG;1;PRS
savdo qilmoq V;PL;3;PRS
savdo qilmoq V;PROG;IND;PL;2;PRS
savdo qilmoq V;PROG;IND;SG;1;PRS
savdo qilmoq V;PFV;SBJV;SG;2;INFM;FUT
savdo qilmoq V;COND;SG;2;INFM;PRS
savdo qilmoq V;PFV;SBJV;PL;1;FUT
savdo qilmoq V;PFV;FRML;SBJV;SG;2;FUT
savdo qilmoq V;IND;PL;3;PST
savdo qilmoq V;PROG;IND;PL;1;FUT
savdo qilmoq V;PROG;IND;PL;3;FUT
savdo qilmoq V;PFV;IND;PL;3;PST
savdo qilmoq V;PROG;IND;SG;1;FUT
savdo qilmoq V;PFV;FH;SG;1
savdo qilmoq V;PFV;FH;PL;2
savdo qilmoq V;PRF+PROG;COND;PL;1;PRS
savdo qilmoq V;PFV;IND;SG;2;INFM;PST
savdo qilmoq V;PROG;IND;SG;2;INFM;FUT
savdo qilmoq V;FRML;IND;SG;2;PST
savdo qilmoq V;PROG;IND;PL;3;PRS
savdo qilmoq V;PL;2;PRS
savdo qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
savdo qilmoq V;PFV;IND;PL;2;PST
savdo qilmoq V;PRF+PROG;COND;SG;1;PRS
savdo qilmoq V;PRF;SBJV;PL;1;PRS
savdo qilmoq V;PRF+PROG;COND;PL;3;PRS
savdo qilmoq V;PROG;IND;SG;3;PRS
savdo qilmoq V;IND;PL;2;PST
savdo qilmoq V;PROG;COND;SG;2;PRS
savdo qilmoq V;IND;SG;3;PST
savdo qilmoq V;PFV;FH;SG;2
savdo qilmoq V;PROG;COND;PL;1;PRS
savdo qilmoq V;PRF+PROG;COND;PL;2;PRS
savdo qilmoq V;PROG;IND;SG;1;PST
savdo qilmoq V;PFV;FH;PL;3
savdo qilmoq V;PROG;FRML;IND;SG;2;PST
savdo qilmoq V;PFV;FRML;FH;SG;2
savdo qilmoq V;PFV;FRML;IND;SG;2;PST
savdo qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
savdo qilmoq V;PFV;SBJV;SG;3;FUT
savdo qilmoq V;PRF;SBJV;SG;2;INFM;PRS
savdo qilmoq V;PROG;IND;PL;2;FUT
savdo qilmoq V;PROG;IND;SG;3;FUT
savdo qilmoq V;SG;3;PRS
savdo qilmoq V;PFV;IND;PL;1;PST
savdo qilmoq V;PRF;SBJV;PL;3;PRS
savdo qilmoq V;PROG;FRML;IND;SG;2;FUT
savdo qilmoq V;PROG;IND;SG;2;INFM;PST
savdo qilmoq V;PFV;SBJV;PL;2;FUT
savdo qilmoq V;PRF;SBJV;SG;1;PRS
savdo qilmoq V;IND;SG;2;INFM;PST
savdo qilmoq V;FRML;SG;2;PRS
savdo qilmoq V;COND;SG;1;PRS
savdo qilmoq V;PRF;FRML;SBJV;SG;2;PRS
savdo qilmoq V;IND;SG;1;PST
savdo qilmoq V;COND;SG;3;PRS
savdo qilmoq V;PFV;SBJV;PL;3;FUT
savdo qilmoq V;IND;PL;1;PST
savdo qilmoq V;PFV;SBJV;SG;1;FUT
savdo qilmoq V;PROG;IND;PL;2;PST
savdo qilmoq V;PROG;COND;SG;3;PRS
savdo qilmoq V;PRF;SBJV;SG;3;PRS
savdo qilmoq V;FRML;COND;SG;2;PRS
savdo qilmoq V;PRF;SBJV;PL;2;PRS
savdo qilmoq V;PFV;FH;SG;3
savdo qilmoq V;SG;2;INFM;PRS
savdo qilmoq V;PL;1;PRS
savdo qilmoq V;PROG;IND;PL;3;PST
savdo qilmoq V;COND;PL;1;PRS
savdo qilmoq V;COND;PL;2;PRS
savdo qilmoq V;PFV;IND;SG;3;PST
savdo qilmoq V;PRF+PROG;COND;SG;3;PRS
savdo qilmoq V;PROG;IND;PL;1;PST
savdo qilmoq V;PROG;IND;SG;2;INFM;PRS
savdo qilmoq V;PFV;IND;SG;1;PST
savdo qilmoq V;COND;PL;3;PRS
savdo qilmoq V;PROG;FRML;IND;SG;2;PRS
savdo qilmoq V;PROG;COND;PL;3;PRS
savdo qilmoq V;PROG;IND;SG;3;PST
savdo qilmoq V;PFV;FH;PL;1
savdo qilmoq V;PROG;IND;PL;1;PRS
savdo qilmoq V;SG;1;PRS
sanatmoq V;PRF+PROG;COND;PL;1;PRS
sanatmoq V;PRF;FRML;SBJV;SG;2;PRS
sanatmoq V;FRML;COND;SG;2;PRS
sanatmoq V;PROG;IND;PL;3;FUT
sanatmoq V;FRML;SBJV;SG;2;PRS
sanatmoq V;IND;PL;1;PST
sanatmoq V;PROG;IND;PL;3;PRS
sanatmoq V;IND;PL;2;PST
sanatmoq V;PRF;SBJV;PL;1;PRS
sanatmoq V;IND;SG;3;PST
sanatmoq V;PFV;SBJV;SG;3;FUT
sanatmoq V;SBJV;SG;1;PRS
sanatmoq V;SG;1;PRS
sanatmoq V;PROG;IND;PL;3;PST
sanatmoq V;PFV;FH;PL;2
sanatmoq V;PROG;IND;SG;1;PST
sanatmoq V;PFV;IND;PL;3;PST
sanatmoq V;SBJV;PL;3;PRS
sanatmoq V;PROG;IND;SG;2;INFM;FUT
sanatmoq V;COND;PL;1;PRS
sanatmoq V;PROG;IND;SG;1;PRS
sanatmoq V;PROG;COND;SG;2;PRS
sanatmoq V;PFV;SBJV;SG;2;INFM;FUT
sanatmoq V;IND;SG;1;PST
sanatmoq V;PRF;SBJV;PL;3;PRS
sanatmoq V;SG;3;PRS
sanatmoq V;PROG;COND;PL;2;PRS
sanatmoq V;PROG;IND;SG;2;INFM;PRS
sanatmoq V;PFV;SBJV;PL;2;FUT
sanatmoq V;COND;SG;1;PRS
sanatmoq V;PFV;IND;SG;2;INFM;PST
sanatmoq V;PROG;IND;PL;2;PST
sanatmoq V;PL;3;PRS
sanatmoq V;PROG;IND;PL;2;PRS
sanatmoq V;PROG;IND;SG;1;FUT
sanatmoq V;PROG;FRML;COND;SG;2;PRS
sanatmoq V;PL;2;PRS
sanatmoq V;PROG;IND;SG;2;INFM;PST
sanatmoq V;COND;PL;2;PRS
sanatmoq V;PRF+PROG;COND;SG;3;PRS
sanatmoq V;PFV;FH;PL;1
sanatmoq V;PRF+PROG;COND;SG;1;PRS
sanatmoq V;PROG;FRML;IND;SG;2;PRS
sanatmoq V;PRF;SBJV;SG;3;PRS
sanatmoq V;COND;PL;3;PRS
sanatmoq V;SBJV;PL;1;PRS
sanatmoq V;PFV;FRML;IND;SG;2;PST
sanatmoq V;PFV;FH;SG;1
sanatmoq V;PROG;IND;SG;3;PRS
sanatmoq V;PFV;IND;SG;3;PST
sanatmoq V;PFV;SBJV;PL;1;FUT
sanatmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sanatmoq V;PROG;COND;SG;1;PRS
sanatmoq V;PFV;FRML;SBJV;SG;2;FUT
sanatmoq V;PROG;FRML;IND;SG;2;PST
sanatmoq V;PFV;FH;SG;3
sanatmoq V;PROG;COND;SG;3;PRS
sanatmoq V;COND;SG;2;INFM;PRS
sanatmoq V;PFV;SBJV;SG;1;FUT
sanatmoq V;FRML;SG;2;PRS
sanatmoq V;PROG;IND;PL;2;FUT
sanatmoq V;SBJV;PL;2;PRS
sanatmoq V;IND;PL;3;PST
sanatmoq V;PROG;IND;SG;3;PST
sanatmoq V;PRF;SBJV;PL;2;PRS
sanatmoq V;PROG;IND;SG;3;FUT
sanatmoq V;PROG;IND;PL;1;PST
sanatmoq V;SBJV;SG;2;PRS
sanatmoq V;PRF;SBJV;SG;1;PRS
sanatmoq V;COND;SG;3;PRS
sanatmoq V;IND;SG;2;INFM;PST
sanatmoq V;PFV;IND;PL;1;PST
sanatmoq V;PROG;FRML;IND;SG;2;FUT
sanatmoq V;PFV;FH;PL;3
sanatmoq V;PFV;FRML;FH;SG;2
sanatmoq V;PRF;SBJV;SG;2;INFM;PRS
sanatmoq V;PROG;IND;PL;1;PRS
sanatmoq V;SBJV;SG;3;PRS
sanatmoq V;PROG;COND;PL;3;PRS
sanatmoq V;PL;1;PRS
sanatmoq V;SG;2;INFM;PRS
sanatmoq V;PRF+PROG;COND;PL;3;PRS
sanatmoq V;FRML;IND;SG;2;PST
sanatmoq V;PFV;FH;SG;2
sanatmoq V;PROG;COND;PL;1;PRS
sanatmoq V;PFV;SBJV;PL;3;FUT
sanatmoq V;PFV;IND;PL;2;PST
sanatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sanatmoq V;PRF+PROG;COND;PL;2;PRS
sanatmoq V;PROG;IND;PL;1;FUT
sanatmoq V;PFV;IND;SG;1;PST
taqiqlamoq V;PROG;IND;PL;3;PRS
taqiqlamoq V;PROG;COND;SG;1;PRS
taqiqlamoq V;PFV;FH;SG;3
taqiqlamoq V;SG;3;PRS
taqiqlamoq V;PFV;IND;PL;3;PST
taqiqlamoq V;PFV;IND;SG;3;PST
taqiqlamoq V;PROG;IND;PL;3;PST
taqiqlamoq V;PROG;IND;PL;2;PRS
taqiqlamoq V;PROG;FRML;IND;SG;2;PRS
taqiqlamoq V;PFV;FH;PL;1
taqiqlamoq V;PL;2;PRS
taqiqlamoq V;PL;1;PRS
taqiqlamoq V;PROG;COND;PL;1;PRS
taqiqlamoq V;PFV;SBJV;SG;1;FUT
taqiqlamoq V;PRF;SBJV;PL;1;PRS
taqiqlamoq V;PRF;FRML;SBJV;SG;2;PRS
taqiqlamoq V;FRML;IND;SG;2;PST
taqiqlamoq V;COND;SG;1;PRS
taqiqlamoq V;PROG;IND;SG;3;FUT
taqiqlamoq V;PFV;IND;SG;1;PST
taqiqlamoq V;PROG;IND;SG;3;PST
taqiqlamoq V;PRF+PROG;COND;SG;3;PRS
taqiqlamoq V;PROG;IND;PL;1;PRS
taqiqlamoq V;PROG;IND;SG;2;INFM;PST
taqiqlamoq V;PROG;COND;SG;2;PRS
taqiqlamoq V;PRF;SBJV;SG;1;PRS
taqiqlamoq V;PFV;SBJV;PL;2;FUT
taqiqlamoq V;PRF;SBJV;PL;3;PRS
taqiqlamoq V;PFV;FH;PL;3
taqiqlamoq V;PFV;SBJV;SG;3;FUT
taqiqlamoq V;PROG;FRML;IND;SG;2;FUT
taqiqlamoq V;IND;PL;2;PST
taqiqlamoq V;PROG;IND;PL;3;FUT
taqiqlamoq V;PROG;COND;PL;3;PRS
taqiqlamoq V;IND;PL;1;PST
taqiqlamoq V;PROG;IND;PL;2;FUT
taqiqlamoq V;SG;2;INFM;PRS
taqiqlamoq V;PRF+PROG;COND;PL;2;PRS
taqiqlamoq V;PRF;SBJV;SG;2;INFM;PRS
taqiqlamoq V;COND;PL;1;PRS
taqiqlamoq V;PROG;IND;PL;1;PST
taqiqlamoq V;PROG;IND;SG;1;PST
taqiqlamoq V;COND;SG;2;INFM;PRS
taqiqlamoq V;PRF;SBJV;SG;3;PRS
taqiqlamoq V;IND;SG;2;INFM;PST
taqiqlamoq V;PFV;FH;SG;1
taqiqlamoq V;PFV;FRML;IND;SG;2;PST
taqiqlamoq V;PROG;IND;SG;3;PRS
taqiqlamoq V;PROG;IND;PL;1;FUT
taqiqlamoq V;PRF+PROG;COND;PL;1;PRS
taqiqlamoq V;PRF+PROG;COND;SG;1;PRS
taqiqlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
taqiqlamoq V;PROG;IND;PL;2;PST
taqiqlamoq V;PRF;SBJV;PL;2;PRS
taqiqlamoq V;PROG;IND;SG;1;PRS
taqiqlamoq V;PROG;FRML;IND;SG;2;PST
taqiqlamoq V;PROG;IND;SG;2;INFM;PRS
taqiqlamoq V;PFV;IND;PL;1;PST
taqiqlamoq V;IND;SG;3;PST
taqiqlamoq V;PFV;IND;SG;2;INFM;PST
taqiqlamoq V;PFV;SBJV;SG;2;INFM;FUT
taqiqlamoq V;PFV;FRML;FH;SG;2
taqiqlamoq V;PRF+PROG;COND;PL;3;PRS
taqiqlamoq V;PROG;IND;SG;1;FUT
taqiqlamoq V;PFV;FH;PL;2
taqiqlamoq V;COND;PL;2;PRS
taqiqlamoq V;IND;PL;3;PST
taqiqlamoq V;PFV;FH;SG;2
taqiqlamoq V;COND;PL;3;PRS
taqiqlamoq V;FRML;SG;2;PRS
taqiqlamoq V;PFV;SBJV;PL;3;FUT
taqiqlamoq V;PL;3;PRS
taqiqlamoq V;PROG;COND;SG;3;PRS
taqiqlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
taqiqlamoq V;SG;1;PRS
taqiqlamoq V;COND;SG;3;PRS
taqiqlamoq V;PFV;SBJV;PL;1;FUT
taqiqlamoq V;PROG;IND;SG;2;INFM;FUT
taqiqlamoq V;PFV;FRML;SBJV;SG;2;FUT
taqiqlamoq V;FRML;COND;SG;2;PRS
taqiqlamoq V;IND;SG;1;PST
taqiqlamoq V;PFV;IND;PL;2;PST
tushunmoq V;PROG;IND;SG;2;INFM;PRS
tushunmoq V;COND;SG;2;INFM;PRS
tushunmoq V;PROG;FRML;COND;SG;2;PRS
tushunmoq V;PFV;IND;PL;3;PST
tushunmoq V;PL;1;PRS
tushunmoq V;PROG;IND;SG;2;INFM;FUT
tushunmoq V;PFV;FH;SG;1
tushunmoq V;PFV;SBJV;SG;3;FUT
tushunmoq V;IND;PL;3;PST
tushunmoq V;SBJV;PL;1;PRS
tushunmoq V;PFV;FRML;IND;SG;2;PST
tushunmoq V;PFV;IND;PL;1;PST
tushunmoq V;PROG;COND;SG;1;PRS
tushunmoq V;PFV;SBJV;SG;1;FUT
tushunmoq V;SBJV;SG;3;PRS
tushunmoq V;SG;3;PRS
tushunmoq V;COND;SG;1;PRS
tushunmoq V;PROG;IND;SG;3;PRS
tushunmoq V;PRF+PROG;COND;PL;1;PRS
tushunmoq V;PFV;FRML;SBJV;SG;2;FUT
tushunmoq V;PL;2;PRS
tushunmoq V;SG;1;PRS
tushunmoq V;PRF;SBJV;SG;3;PRS
tushunmoq V;PROG;FRML;IND;SG;2;FUT
tushunmoq V;PFV;IND;SG;1;PST
tushunmoq V;PFV;FH;PL;2
tushunmoq V;PRF;SBJV;SG;2;INFM;PRS
tushunmoq V;COND;PL;1;PRS
tushunmoq V;FRML;COND;SG;2;PRS
tushunmoq V;FRML;SG;2;PRS
tushunmoq V;PL;3;PRS
tushunmoq V;PFV;FH;SG;2
tushunmoq V;PROG;IND;PL;2;PST
tushunmoq V;PFV;SBJV;PL;1;FUT
tushunmoq V;PROG;IND;PL;1;PST
tushunmoq V;COND;PL;3;PRS
tushunmoq V;PROG;IND;SG;2;INFM;PST
tushunmoq V;PROG;FRML;IND;SG;2;PRS
tushunmoq V;FRML;IND;SG;2;PST
tushunmoq V;PRF+PROG;COND;PL;3;PRS
tushunmoq V;PFV;IND;PL;2;PST
tushunmoq V;PRF;SBJV;PL;2;PRS
tushunmoq V;PROG;IND;PL;3;FUT
tushunmoq V;SBJV;PL;3;PRS
tushunmoq V;PROG;IND;PL;2;FUT
tushunmoq V;PFV;FH;PL;1
tushunmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tushunmoq V;IND;SG;1;PST
tushunmoq V;FRML;SBJV;SG;2;PRS
tushunmoq V;IND;SG;3;PST
tushunmoq V;COND;PL;2;PRS
tushunmoq V;IND;PL;2;PST
tushunmoq V;PROG;IND;SG;1;PRS
tushunmoq V;PROG;IND;PL;1;FUT
tushunmoq V;PRF;SBJV;PL;3;PRS
tushunmoq V;PROG;IND;PL;1;PRS
tushunmoq V;PFV;IND;SG;3;PST
tushunmoq V;PFV;SBJV;PL;2;FUT
tushunmoq V;PROG;IND;PL;3;PST
tushunmoq V;PROG;IND;PL;3;PRS
tushunmoq V;PROG;IND;PL;2;PRS
tushunmoq V;PROG;COND;PL;1;PRS
tushunmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tushunmoq V;IND;PL;1;PST
tushunmoq V;PRF+PROG;COND;SG;1;PRS
tushunmoq V;PROG;IND;SG;3;FUT
tushunmoq V;PROG;FRML;IND;SG;2;PST
tushunmoq V;SBJV;SG;2;PRS
tushunmoq V;PRF+PROG;COND;SG;3;PRS
tushunmoq V;PFV;SBJV;SG;2;INFM;FUT
tushunmoq V;COND;SG;3;PRS
tushunmoq V;PFV;SBJV;PL;3;FUT
tushunmoq V;PROG;COND;SG;2;PRS
tushunmoq V;PROG;IND;SG;1;PST
tushunmoq V;PRF;SBJV;SG;1;PRS
tushunmoq V;IND;SG;2;INFM;PST
tushunmoq V;PFV;FH;SG;3
tushunmoq V;PRF+PROG;COND;PL;2;PRS
tushunmoq V;SG;2;INFM;PRS
tushunmoq V;PRF;FRML;SBJV;SG;2;PRS
tushunmoq V;PROG;COND;PL;3;PRS
tushunmoq V;PRF;SBJV;PL;1;PRS
tushunmoq V;PROG;COND;PL;2;PRS
tushunmoq V;SBJV;SG;1;PRS
tushunmoq V;PROG;IND;SG;3;PST
tushunmoq V;PFV;FRML;FH;SG;2
tushunmoq V;PROG;IND;SG;1;FUT
tushunmoq V;SBJV;PL;2;PRS
tushunmoq V;PFV;IND;SG;2;INFM;PST
tushunmoq V;PFV;FH;PL;3
tushunmoq V;PROG;COND;SG;3;PRS
tortmoq V;PFV;FH;SG;3
tortmoq V;COND;SG;3;PRS
tortmoq V;PROG;IND;PL;1;FUT
tortmoq V;COND;SG;2;INFM;PRS
tortmoq V;FRML;IND;SG;2;PST
tortmoq V;PROG;FRML;IND;SG;2;PRS
tortmoq V;PROG;IND;SG;1;FUT
tortmoq V;PRF+PROG;COND;SG;1;PRS
tortmoq V;PROG;IND;SG;3;FUT
tortmoq V;PROG;COND;PL;1;PRS
tortmoq V;PL;2;PRS
tortmoq V;COND;PL;1;PRS
tortmoq V;IND;PL;1;PST
tortmoq V;PFV;FH;SG;2
tortmoq V;PFV;SBJV;SG;2;INFM;FUT
tortmoq V;PROG;IND;PL;1;PST
tortmoq V;PFV;SBJV;SG;3;FUT
tortmoq V;PROG;FRML;IND;SG;2;FUT
tortmoq V;PFV;IND;SG;3;PST
tortmoq V;PROG;IND;PL;3;PST
tortmoq V;PRF;SBJV;SG;3;PRS
tortmoq V;IND;SG;2;INFM;PST
tortmoq V;PRF;SBJV;SG;1;PRS
tortmoq V;FRML;COND;SG;2;PRS
tortmoq V;PRF+PROG;COND;PL;3;PRS
tortmoq V;COND;SG;1;PRS
tortmoq V;PRF+PROG;COND;PL;2;PRS
tortmoq V;PROG;COND;SG;1;PRS
tortmoq V;PFV;FRML;SBJV;SG;2;FUT
tortmoq V;PRF+PROG;COND;SG;3;PRS
tortmoq V;PROG;IND;PL;3;FUT
tortmoq V;PROG;IND;SG;1;PST
tortmoq V;PFV;IND;SG;1;PST
tortmoq V;PROG;COND;PL;3;PRS
tortmoq V;PROG;IND;PL;2;PST
tortmoq V;PFV;FRML;FH;SG;2
tortmoq V;PROG;COND;SG;2;PRS
tortmoq V;PROG;IND;SG;2;INFM;PRS
tortmoq V;SG;3;PRS
tortmoq V;PRF;SBJV;PL;2;PRS
tortmoq V;FRML;SG;2;PRS
tortmoq V;PFV;FH;SG;1
tortmoq V;PFV;FH;PL;3
tortmoq V;IND;PL;3;PST
tortmoq V;PFV;SBJV;SG;1;FUT
tortmoq V;COND;PL;2;PRS
tortmoq V;PL;3;PRS
tortmoq V;PROG;IND;SG;2;INFM;PST
tortmoq V;PRF;FRML;SBJV;SG;2;PRS
tortmoq V;PFV;IND;SG;2;INFM;PST
tortmoq V;PROG;IND;SG;3;PRS
tortmoq V;PL;1;PRS
tortmoq V;PROG;IND;PL;2;PRS
tortmoq V;PFV;SBJV;PL;2;FUT
tortmoq V;IND;SG;1;PST
tortmoq V;IND;PL;2;PST
tortmoq V;PROG;IND;PL;2;FUT
tortmoq V;SG;2;INFM;PRS
tortmoq V;PFV;IND;PL;2;PST
tortmoq V;PROG;COND;SG;3;PRS
tortmoq V;IND;SG;3;PST
tortmoq V;PFV;SBJV;PL;3;FUT
tortmoq V;PFV;IND;PL;3;PST
tortmoq V;PROG;IND;SG;1;PRS
tortmoq V;PRF+PROG;COND;PL;1;PRS
tortmoq V;PROG;FRML;IND;SG;2;PST
tortmoq V;PRF;SBJV;SG;2;INFM;PRS
tortmoq V;PROG;IND;SG;3;PST
tortmoq V;PROG;IND;PL;3;PRS
tortmoq V;PFV;FRML;IND;SG;2;PST
tortmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tortmoq V;PROG;IND;PL;1;PRS
tortmoq V;PFV;SBJV;PL;1;FUT
tortmoq V;SG;1;PRS
tortmoq V;COND;PL;3;PRS
tortmoq V;PFV;IND;PL;1;PST
tortmoq V;PFV;FH;PL;1
tortmoq V;PFV;FH;PL;2
tortmoq V;PROG;IND;SG;2;INFM;FUT
tortmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tortmoq V;PRF;SBJV;PL;1;PRS
tortmoq V;PRF;SBJV;PL;3;PRS
bormoq V;PROG;IND;SG;3;PRS
bormoq V;IND;SG;3;PST
bormoq V;PROG;IND;SG;1;PST
bormoq V;PROG;IND;PL;3;PRS
bormoq V;PL;3;PRS
bormoq V;PROG;IND;SG;2;INFM;PRS
bormoq V;COND;SG;1;PRS
bormoq V;IND;PL;1;PST
bormoq V;PROG;IND;PL;1;PST
bormoq V;PROG;COND;SG;3;PRS
bormoq V;COND;SG;3;PRS
bormoq V;PFV;IND;SG;2;INFM;PST
bormoq V;PFV;FRML;IND;SG;2;PST
bormoq V;PROG;IND;SG;2;INFM;PST
bormoq V;PRF;SBJV;SG;3;PRS
bormoq V;PRF+PROG;COND;PL;1;PRS
bormoq V;PFV;FH;PL;1
bormoq V;PROG;IND;PL;3;FUT
bormoq V;FRML;SG;2;PRS
bormoq V;PRF;FRML;SBJV;SG;2;PRS
bormoq V;PFV;FH;SG;3
bormoq V;PRF+PROG;COND;SG;2;INFM;PRS
bormoq V;FRML;COND;SG;2;PRS
bormoq V;PROG;COND;PL;2;PRS
bormoq V;PROG;COND;SG;2;PRS
bormoq V;PRF;SBJV;PL;3;PRS
bormoq V;PROG;IND;PL;2;FUT
bormoq V;PROG;COND;SG;1;PRS
bormoq V;PROG;FRML;COND;SG;2;PRS
bormoq V;FRML;IND;SG;2;PST
bormoq V;COND;PL;1;PRS
bormoq V;PRF+PROG;COND;PL;2;PRS
bormoq V;PROG;IND;SG;1;FUT
bormoq V;PROG;COND;PL;3;PRS
bormoq V;PFV;FRML;SBJV;SG;2;FUT
bormoq V;IND;PL;3;PST
bormoq V;PFV;SBJV;PL;2;FUT
bormoq V;PFV;IND;SG;1;PST
bormoq V;PROG;IND;PL;3;PST
bormoq V;PRF+PROG;FRML;COND;SG;2;PRS
bormoq V;PROG;FRML;IND;SG;2;FUT
bormoq V;PL;1;PRS
bormoq V;PROG;IND;PL;2;PST
bormoq V;PL;2;PRS
bormoq V;PROG;IND;SG;2;INFM;FUT
bormoq V;PROG;IND;PL;2;PRS
bormoq V;PROG;IND;PL;1;FUT
bormoq V;PFV;SBJV;SG;1;FUT
bormoq V;PRF;SBJV;SG;2;INFM;PRS
bormoq V;PFV;SBJV;SG;3;FUT
bormoq V;PFV;FRML;FH;SG;2
bormoq V;PFV;IND;PL;3;PST
bormoq V;COND;PL;2;PRS
bormoq V;PRF;SBJV;PL;1;PRS
bormoq V;PROG;FRML;IND;SG;2;PRS
bormoq V;PFV;IND;PL;1;PST
bormoq V;PROG;IND;PL;1;PRS
bormoq V;SG;1;PRS
bormoq V;PFV;IND;PL;2;PST
bormoq V;PFV;FH;PL;3
bormoq V;COND;PL;3;PRS
bormoq V;PRF+PROG;COND;SG;1;PRS
bormoq V;PFV;FH;PL;2
bormoq V;PRF+PROG;COND;PL;3;PRS
bormoq V;IND;PL;2;PST
bormoq V;PFV;FH;SG;1
bormoq V;PRF+PROG;COND;SG;3;PRS
bormoq V;PRF;SBJV;PL;2;PRS
bormoq V;PROG;IND;SG;1;PRS
bormoq V;PROG;IND;SG;3;PST
bormoq V;SG;3;PRS
bormoq V;SG;2;INFM;PRS
bormoq V;PRF;SBJV;SG;1;PRS
bormoq V;PFV;SBJV;PL;1;FUT
bormoq V;PROG;COND;PL;1;PRS
bormoq V;IND;SG;1;PST
bormoq V;PFV;FH;SG;2
bormoq V;PFV;IND;SG;3;PST
bormoq V;IND;SG;2;INFM;PST
bormoq V;PFV;SBJV;PL;3;FUT
bormoq V;PROG;IND;SG;3;FUT
bormoq V;PROG;FRML;IND;SG;2;PST
bormoq V;COND;SG;2;INFM;PRS
bormoq V;PFV;SBJV;SG;2;INFM;FUT
ta'minlamoq V;PRF;SBJV;SG;1;PRS
ta'minlamoq V;PFV;IND;PL;1;PST
ta'minlamoq V;PFV;FH;PL;3
ta'minlamoq V;PROG;IND;SG;2;INFM;PST
ta'minlamoq V;PFV;FH;SG;2
ta'minlamoq V;IND;SG;3;PST
ta'minlamoq V;PRF;SBJV;SG;2;INFM;PRS
ta'minlamoq V;IND;SG;2;INFM;PST
ta'minlamoq V;IND;PL;1;PST
ta'minlamoq V;PROG;COND;SG;3;PRS
ta'minlamoq V;PROG;IND;PL;1;PRS
ta'minlamoq V;PROG;IND;SG;2;INFM;PRS
ta'minlamoq V;COND;SG;3;PRS
ta'minlamoq V;PRF+PROG;COND;PL;2;PRS
ta'minlamoq V;PFV;IND;SG;3;PST
ta'minlamoq V;FRML;IND;SG;2;PST
ta'minlamoq V;PROG;FRML;IND;SG;2;PST
ta'minlamoq V;PROG;IND;SG;3;PRS
ta'minlamoq V;IND;SG;1;PST
ta'minlamoq V;SG;3;PRS
ta'minlamoq V;SG;2;INFM;PRS
ta'minlamoq V;PFV;IND;PL;3;PST
ta'minlamoq V;PRF+PROG;COND;PL;3;PRS
ta'minlamoq V;PROG;IND;SG;3;FUT
ta'minlamoq V;COND;PL;2;PRS
ta'minlamoq V;PL;2;PRS
ta'minlamoq V;PROG;COND;SG;1;PRS
ta'minlamoq V;COND;SG;2;INFM;PRS
ta'minlamoq V;PROG;IND;PL;2;PST
ta'minlamoq V;PROG;IND;PL;3;PST
ta'minlamoq V;PL;1;PRS
ta'minlamoq V;FRML;COND;SG;2;PRS
ta'minlamoq V;PFV;FH;PL;2
ta'minlamoq V;PROG;COND;PL;1;PRS
ta'minlamoq V;PFV;SBJV;PL;1;FUT
ta'minlamoq V;PRF;FRML;SBJV;SG;2;PRS
ta'minlamoq V;PRF;SBJV;PL;2;PRS
ta'minlamoq V;PROG;FRML;IND;SG;2;FUT
ta'minlamoq V;PROG;IND;SG;1;PST
ta'minlamoq V;PROG;COND;SG;2;PRS
ta'minlamoq V;PROG;IND;PL;2;PRS
ta'minlamoq V;PRF;SBJV;PL;3;PRS
ta'minlamoq V;PROG;IND;SG;3;PST
ta'minlamoq V;PFV;SBJV;SG;2;INFM;FUT
ta'minlamoq V;SG;1;PRS
ta'minlamoq V;PROG;IND;PL;1;PST
ta'minlamoq V;PROG;IND;SG;2;INFM;FUT
ta'minlamoq V;PFV;FRML;FH;SG;2
ta'minlamoq V;PFV;FH;SG;1
ta'minlamoq V;PRF+PROG;COND;SG;1;PRS
ta'minlamoq V;PRF;SBJV;SG;3;PRS
ta'minlamoq V;PFV;SBJV;SG;3;FUT
ta'minlamoq V;PROG;IND;PL;1;FUT
ta'minlamoq V;PFV;FRML;SBJV;SG;2;FUT
ta'minlamoq V;PROG;FRML;IND;SG;2;PRS
ta'minlamoq V;COND;PL;3;PRS
ta'minlamoq V;PFV;SBJV;PL;2;FUT
ta'minlamoq V;PFV;SBJV;PL;3;FUT
ta'minlamoq V;PFV;FRML;IND;SG;2;PST
ta'minlamoq V;COND;PL;1;PRS
ta'minlamoq V;IND;PL;2;PST
ta'minlamoq V;PROG;IND;PL;2;FUT
ta'minlamoq V;PROG;IND;SG;1;FUT
ta'minlamoq V;IND;PL;3;PST
ta'minlamoq V;PROG;COND;PL;3;PRS
ta'minlamoq V;PROG;IND;PL;3;FUT
ta'minlamoq V;PRF+PROG;COND;PL;1;PRS
ta'minlamoq V;PFV;IND;SG;2;INFM;PST
ta'minlamoq V;PFV;IND;SG;1;PST
ta'minlamoq V;PRF;SBJV;PL;1;PRS
ta'minlamoq V;PFV;FH;SG;3
ta'minlamoq V;PFV;FH;PL;1
ta'minlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
ta'minlamoq V;COND;SG;1;PRS
ta'minlamoq V;PROG;IND;SG;1;PRS
ta'minlamoq V;PROG;IND;PL;3;PRS
ta'minlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
ta'minlamoq V;PFV;IND;PL;2;PST
ta'minlamoq V;FRML;SG;2;PRS
ta'minlamoq V;PL;3;PRS
ta'minlamoq V;PFV;SBJV;SG;1;FUT
ta'minlamoq V;PRF+PROG;COND;SG;3;PRS
qilmoq V;PL;3;PRS
qilmoq V;PFV;IND;SG;1;PST
qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qilmoq V;SG;2;INFM;PRS
qilmoq V;IND;PL;2;PST
qilmoq V;COND;SG;2;INFM;PRS
qilmoq V;FRML;IND;SG;2;PST
qilmoq V;PROG;FRML;IND;SG;2;PST
qilmoq V;PROG;IND;SG;2;INFM;FUT
qilmoq V;PROG;IND;SG;2;INFM;PST
qilmoq V;PROG;COND;SG;3;PRS
qilmoq V;PROG;COND;SG;1;PRS
qilmoq V;PFV;SBJV;PL;3;FUT
qilmoq V;PROG;IND;PL;2;PST
qilmoq V;PFV;FH;SG;3
qilmoq V;PRF;SBJV;PL;1;PRS
qilmoq V;PROG;IND;PL;2;PRS
qilmoq V;IND;SG;2;INFM;PST
qilmoq V;PFV;SBJV;PL;1;FUT
qilmoq V;COND;PL;2;PRS
qilmoq V;SG;3;PRS
qilmoq V;PFV;IND;PL;3;PST
qilmoq V;PRF;FRML;SBJV;SG;2;PRS
qilmoq V;PFV;IND;SG;2;INFM;PST
qilmoq V;PRF+PROG;COND;PL;2;PRS
qilmoq V;PRF+PROG;COND;PL;1;PRS
qilmoq V;PFV;IND;PL;1;PST
qilmoq V;PROG;IND;SG;1;PST
qilmoq V;PFV;FH;SG;1
qilmoq V;PFV;SBJV;SG;3;FUT
qilmoq V;PFV;SBJV;PL;2;FUT
qilmoq V;PROG;IND;PL;1;FUT
qilmoq V;PRF+PROG;COND;SG;1;PRS
qilmoq V;FRML;COND;SG;2;PRS
qilmoq V;PRF;SBJV;PL;3;PRS
qilmoq V;FRML;SG;2;PRS
qilmoq V;PFV;SBJV;SG;2;INFM;FUT
qilmoq V;PRF;SBJV;PL;2;PRS
qilmoq V;PFV;FH;PL;3
qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qilmoq V;PFV;FRML;SBJV;SG;2;FUT
qilmoq V;PRF+PROG;COND;PL;3;PRS
qilmoq V;PRF;SBJV;SG;3;PRS
qilmoq V;PROG;IND;SG;1;FUT
qilmoq V;PROG;IND;PL;1;PST
qilmoq V;PFV;FRML;FH;SG;2
qilmoq V;PROG;COND;PL;1;PRS
qilmoq V;PROG;IND;PL;1;PRS
qilmoq V;PROG;FRML;IND;SG;2;FUT
qilmoq V;PROG;IND;SG;3;PRS
qilmoq V;PRF+PROG;COND;SG;3;PRS
qilmoq V;PROG;IND;PL;3;PST
qilmoq V;COND;PL;3;PRS
qilmoq V;IND;SG;1;PST
qilmoq V;PRF;SBJV;SG;1;PRS
qilmoq V;PL;2;PRS
qilmoq V;PFV;SBJV;SG;1;FUT
qilmoq V;PROG;IND;PL;3;FUT
qilmoq V;PROG;IND;SG;2;INFM;PRS
qilmoq V;IND;PL;1;PST
qilmoq V;PROG;IND;SG;3;FUT
qilmoq V;PROG;COND;PL;3;PRS
qilmoq V;PFV;FRML;IND;SG;2;PST
qilmoq V;PL;1;PRS
qilmoq V;PFV;FH;PL;2
qilmoq V;IND;SG;3;PST
qilmoq V;COND;SG;1;PRS
qilmoq V;PFV;IND;PL;2;PST
qilmoq V;SG;1;PRS
qilmoq V;PROG;IND;PL;3;PRS
qilmoq V;IND;PL;3;PST
qilmoq V;COND;SG;3;PRS
qilmoq V;COND;PL;1;PRS
qilmoq V;PRF;SBJV;SG;2;INFM;PRS
qilmoq V;PFV;FH;SG;2
qilmoq V;PFV;IND;SG;3;PST
qilmoq V;PFV;FH;PL;1
qilmoq V;PROG;COND;SG;2;PRS
qilmoq V;PROG;IND;PL;2;FUT
qilmoq V;PROG;IND;SG;1;PRS
qilmoq V;PROG;FRML;IND;SG;2;PRS
qilmoq V;PROG;IND;SG;3;PST
buzmoq V;PROG;IND;PL;3;FUT
buzmoq V;PROG;IND;PL;1;FUT
buzmoq V;PRF+PROG;COND;SG;2;INFM;PRS
buzmoq V;SG;2;INFM;PRS
buzmoq V;COND;PL;2;PRS
buzmoq V;PFV;FRML;IND;SG;2;PST
buzmoq V;PRF;SBJV;SG;3;PRS
buzmoq V;PFV;FH;SG;3
buzmoq V;PFV;IND;PL;1;PST
buzmoq V;PFV;FH;SG;1
buzmoq V;IND;SG;1;PST
buzmoq V;SBJV;PL;1;PRS
buzmoq V;PL;3;PRS
buzmoq V;SG;1;PRS
buzmoq V;PROG;COND;PL;3;PRS
buzmoq V;PROG;IND;SG;2;INFM;FUT
buzmoq V;PROG;IND;SG;2;INFM;PRS
buzmoq V;FRML;COND;SG;2;PRS
buzmoq V;PRF+PROG;COND;PL;1;PRS
buzmoq V;PFV;IND;SG;1;PST
buzmoq V;PFV;FH;PL;2
buzmoq V;PROG;FRML;IND;SG;2;PST
buzmoq V;PRF+PROG;COND;PL;2;PRS
buzmoq V;PROG;IND;SG;1;PST
buzmoq V;PRF+PROG;COND;SG;1;PRS
buzmoq V;COND;PL;3;PRS
buzmoq V;IND;PL;2;PST
buzmoq V;PFV;IND;PL;3;PST
buzmoq V;SBJV;SG;1;PRS
buzmoq V;IND;SG;3;PST
buzmoq V;FRML;SG;2;PRS
buzmoq V;PFV;IND;SG;2;INFM;PST
buzmoq V;PROG;IND;PL;2;PST
buzmoq V;PROG;COND;PL;1;PRS
buzmoq V;PFV;SBJV;PL;3;FUT
buzmoq V;COND;SG;1;PRS
buzmoq V;PROG;IND;SG;3;PST
buzmoq V;COND;PL;1;PRS
buzmoq V;SBJV;SG;3;PRS
buzmoq V;PL;2;PRS
buzmoq V;FRML;IND;SG;2;PST
buzmoq V;PFV;SBJV;SG;3;FUT
buzmoq V;PRF;SBJV;PL;1;PRS
buzmoq V;COND;SG;3;PRS
buzmoq V;PRF+PROG;COND;PL;3;PRS
buzmoq V;PROG;COND;SG;2;PRS
buzmoq V;PRF+PROG;FRML;COND;SG;2;PRS
buzmoq V;FRML;SBJV;SG;2;PRS
buzmoq V;SG;3;PRS
buzmoq V;PFV;FH;PL;1
buzmoq V;IND;PL;1;PST
buzmoq V;PROG;IND;PL;3;PST
buzmoq V;PROG;IND;PL;2;PRS
buzmoq V;PROG;IND;SG;1;FUT
buzmoq V;PROG;COND;SG;1;PRS
buzmoq V;PROG;COND;SG;3;PRS
buzmoq V;PRF;SBJV;SG;1;PRS
buzmoq V;PROG;IND;SG;3;PRS
buzmoq V;PFV;SBJV;PL;2;FUT
buzmoq V;IND;PL;3;PST
buzmoq V;PRF;SBJV;PL;2;PRS
buzmoq V;PFV;IND;SG;3;PST
buzmoq V;PROG;IND;PL;1;PST
buzmoq V;PROG;IND;PL;1;PRS
buzmoq V;PFV;FH;PL;3
buzmoq V;PROG;IND;SG;2;INFM;PST
buzmoq V;SBJV;PL;3;PRS
buzmoq V;PFV;FRML;FH;SG;2
buzmoq V;PFV;SBJV;SG;2;INFM;FUT
buzmoq V;IND;SG;2;INFM;PST
buzmoq V;PFV;FRML;SBJV;SG;2;FUT
buzmoq V;PRF;SBJV;SG;2;INFM;PRS
buzmoq V;PROG;FRML;IND;SG;2;FUT
buzmoq V;PFV;SBJV;SG;1;FUT
buzmoq V;PROG;IND;PL;2;FUT
buzmoq V;PROG;FRML;IND;SG;2;PRS
buzmoq V;PROG;IND;SG;3;FUT
buzmoq V;PRF;SBJV;PL;3;PRS
buzmoq V;PRF;FRML;SBJV;SG;2;PRS
buzmoq V;SBJV;PL;2;PRS
buzmoq V;PROG;IND;PL;3;PRS
buzmoq V;PFV;FH;SG;2
buzmoq V;SBJV;SG;2;PRS
buzmoq V;PFV;IND;PL;2;PST
buzmoq V;PFV;SBJV;PL;1;FUT
buzmoq V;PRF+PROG;COND;SG;3;PRS
buzmoq V;COND;SG;2;INFM;PRS
buzmoq V;PROG;IND;SG;1;PRS
buzmoq V;PL;1;PRS
sarflamoq V;PRF;SBJV;PL;1;PRS
sarflamoq V;PFV;SBJV;PL;1;FUT
sarflamoq V;COND;SG;1;PRS
sarflamoq V;PRF;SBJV;SG;3;PRS
sarflamoq V;PRF+PROG;COND;SG;3;PRS
sarflamoq V;PROG;COND;PL;1;PRS
sarflamoq V;IND;PL;3;PST
sarflamoq V;PFV;FH;PL;1
sarflamoq V;PFV;SBJV;SG;3;FUT
sarflamoq V;COND;PL;2;PRS
sarflamoq V;PFV;SBJV;SG;1;FUT
sarflamoq V;PFV;FRML;IND;SG;2;PST
sarflamoq V;COND;PL;3;PRS
sarflamoq V;PROG;IND;SG;2;INFM;PST
sarflamoq V;FRML;IND;SG;2;PST
sarflamoq V;PFV;FH;SG;3
sarflamoq V;PROG;IND;PL;1;PST
sarflamoq V;IND;SG;2;INFM;PST
sarflamoq V;PROG;IND;SG;2;INFM;PRS
sarflamoq V;PFV;IND;PL;3;PST
sarflamoq V;PRF+PROG;COND;SG;1;PRS
sarflamoq V;PROG;IND;PL;3;PST
sarflamoq V;PRF;SBJV;SG;1;PRS
sarflamoq V;PROG;IND;PL;2;PRS
sarflamoq V;PFV;FH;SG;1
sarflamoq V;PROG;IND;PL;1;FUT
sarflamoq V;PFV;FH;SG;2
sarflamoq V;FRML;COND;SG;2;PRS
sarflamoq V;PFV;SBJV;PL;3;FUT
sarflamoq V;PROG;FRML;IND;SG;2;FUT
sarflamoq V;IND;SG;3;PST
sarflamoq V;SG;2;INFM;PRS
sarflamoq V;PRF;SBJV;SG;2;INFM;PRS
sarflamoq V;PRF+PROG;FRML;COND;SG;2;PRS
sarflamoq V;PROG;IND;SG;3;PST
sarflamoq V;PROG;IND;SG;1;PRS
sarflamoq V;PROG;COND;SG;2;PRS
sarflamoq V;PROG;FRML;IND;SG;2;PST
sarflamoq V;PROG;IND;PL;2;PST
sarflamoq V;PROG;IND;SG;3;PRS
sarflamoq V;PRF;FRML;SBJV;SG;2;PRS
sarflamoq V;IND;PL;1;PST
sarflamoq V;PL;2;PRS
sarflamoq V;PFV;IND;PL;1;PST
sarflamoq V;COND;SG;3;PRS
sarflamoq V;PRF+PROG;COND;PL;2;PRS
sarflamoq V;PFV;IND;SG;3;PST
sarflamoq V;PFV;SBJV;SG;2;INFM;FUT
sarflamoq V;COND;SG;2;INFM;PRS
sarflamoq V;PRF+PROG;COND;PL;1;PRS
sarflamoq V;PROG;FRML;IND;SG;2;PRS
sarflamoq V;PROG;IND;PL;3;FUT
sarflamoq V;COND;PL;1;PRS
sarflamoq V;IND;SG;1;PST
sarflamoq V;PROG;COND;PL;3;PRS
sarflamoq V;PFV;FH;PL;2
sarflamoq V;PFV;FRML;FH;SG;2
sarflamoq V;PROG;IND;SG;2;INFM;FUT
sarflamoq V;PFV;FH;PL;3
sarflamoq V;FRML;SG;2;PRS
sarflamoq V;PRF+PROG;COND;PL;3;PRS
sarflamoq V;PL;1;PRS
sarflamoq V;IND;PL;2;PST
sarflamoq V;PROG;IND;SG;1;PST
sarflamoq V;PROG;IND;PL;1;PRS
sarflamoq V;SG;3;PRS
sarflamoq V;PFV;IND;SG;2;INFM;PST
sarflamoq V;PROG;COND;SG;1;PRS
sarflamoq V;SG;1;PRS
sarflamoq V;PFV;IND;SG;1;PST
sarflamoq V;PROG;IND;PL;3;PRS
sarflamoq V;PFV;SBJV;PL;2;FUT
sarflamoq V;PROG;IND;SG;3;FUT
sarflamoq V;PROG;IND;SG;1;FUT
sarflamoq V;PRF+PROG;COND;SG;2;INFM;PRS
sarflamoq V;PROG;COND;SG;3;PRS
sarflamoq V;PL;3;PRS
sarflamoq V;PRF;SBJV;PL;3;PRS
sarflamoq V;PROG;IND;PL;2;FUT
sarflamoq V;PRF;SBJV;PL;2;PRS
sarflamoq V;PFV;IND;PL;2;PST
sarflamoq V;PFV;FRML;SBJV;SG;2;FUT
yetmoq V;PRF;SBJV;PL;3;PRS
yetmoq V;PROG;IND;SG;3;PRS
yetmoq V;FRML;COND;SG;2;PRS
yetmoq V;PFV;FH;SG;1
yetmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yetmoq V;PL;1;PRS
yetmoq V;PFV;SBJV;PL;2;FUT
yetmoq V;COND;PL;1;PRS
yetmoq V;PFV;IND;PL;3;PST
yetmoq V;PROG;IND;PL;3;PRS
yetmoq V;IND;SG;2;INFM;PST
yetmoq V;PFV;FH;PL;2
yetmoq V;PRF;FRML;SBJV;SG;2;PRS
yetmoq V;COND;PL;2;PRS
yetmoq V;PRF+PROG;COND;PL;1;PRS
yetmoq V;PFV;FH;PL;1
yetmoq V;IND;PL;1;PST
yetmoq V;PFV;SBJV;PL;1;FUT
yetmoq V;PFV;SBJV;SG;2;INFM;FUT
yetmoq V;PFV;FH;SG;3
yetmoq V;PRF+PROG;COND;SG;3;PRS
yetmoq V;PROG;COND;SG;2;PRS
yetmoq V;PFV;SBJV;PL;3;FUT
yetmoq V;PROG;IND;SG;1;PRS
yetmoq V;PFV;FRML;IND;SG;2;PST
yetmoq V;PROG;IND;SG;1;PST
yetmoq V;COND;SG;2;INFM;PRS
yetmoq V;PROG;IND;SG;2;INFM;PRS
yetmoq V;SG;2;INFM;PRS
yetmoq V;IND;PL;3;PST
yetmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yetmoq V;COND;SG;1;PRS
yetmoq V;PFV;IND;PL;2;PST
yetmoq V;IND;PL;2;PST
yetmoq V;PL;3;PRS
yetmoq V;FRML;IND;SG;2;PST
yetmoq V;PROG;FRML;IND;SG;2;PRS
yetmoq V;PRF;SBJV;PL;1;PRS
yetmoq V;PFV;FH;PL;3
yetmoq V;PROG;IND;PL;3;PST
yetmoq V;SG;1;PRS
yetmoq V;PROG;IND;PL;1;PRS
yetmoq V;PROG;COND;PL;3;PRS
yetmoq V;SG;3;PRS
yetmoq V;PROG;IND;SG;1;FUT
yetmoq V;PFV;IND;PL;1;PST
yetmoq V;PROG;IND;PL;2;PRS
yetmoq V;IND;SG;3;PST
yetmoq V;PROG;IND;SG;2;INFM;PST
yetmoq V;PROG;IND;PL;1;FUT
yetmoq V;PFV;IND;SG;3;PST
yetmoq V;PROG;COND;SG;3;PRS
yetmoq V;PROG;IND;PL;2;FUT
yetmoq V;PROG;IND;PL;3;FUT
yetmoq V;FRML;SG;2;PRS
yetmoq V;PROG;IND;SG;2;INFM;FUT
yetmoq V;PROG;COND;PL;1;PRS
yetmoq V;IND;SG;1;PST
yetmoq V;PRF+PROG;COND;SG;1;PRS
yetmoq V;PROG;IND;PL;1;PST
yetmoq V;PFV;SBJV;SG;3;FUT
yetmoq V;PFV;FRML;FH;SG;2
yetmoq V;PROG;FRML;IND;SG;2;FUT
yetmoq V;PFV;IND;SG;2;INFM;PST
yetmoq V;PROG;IND;SG;3;FUT
yetmoq V;PROG;FRML;IND;SG;2;PST
yetmoq V;PFV;IND;SG;1;PST
yetmoq V;PFV;SBJV;SG;1;FUT
yetmoq V;PROG;IND;SG;3;PST
yetmoq V;PRF+PROG;COND;PL;3;PRS
yetmoq V;PRF;SBJV;SG;1;PRS
yetmoq V;PRF;SBJV;SG;3;PRS
yetmoq V;PRF+PROG;COND;PL;2;PRS
yetmoq V;PROG;IND;PL;2;PST
yetmoq V;PFV;FRML;SBJV;SG;2;FUT
yetmoq V;PL;2;PRS
yetmoq V;COND;SG;3;PRS
yetmoq V;PRF;SBJV;PL;2;PRS
yetmoq V;PROG;COND;SG;1;PRS
yetmoq V;PFV;FH;SG;2
yetmoq V;COND;PL;3;PRS
yetmoq V;PRF;SBJV;SG;2;INFM;PRS
boshlamoq V;PROG;IND;PL;2;PRS
boshlamoq V;PROG;IND;SG;3;FUT
boshlamoq V;IND;PL;3;PST
boshlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
boshlamoq V;PROG;IND;PL;3;PRS
boshlamoq V;PRF;SBJV;SG;2;INFM;PRS
boshlamoq V;PROG;COND;SG;3;PRS
boshlamoq V;COND;SG;2;INFM;PRS
boshlamoq V;PROG;COND;SG;2;PRS
boshlamoq V;FRML;SG;2;PRS
boshlamoq V;PFV;SBJV;PL;1;FUT
boshlamoq V;PRF;SBJV;SG;1;PRS
boshlamoq V;IND;SG;3;PST
boshlamoq V;PRF+PROG;COND;PL;1;PRS
boshlamoq V;IND;SG;1;PST
boshlamoq V;COND;PL;1;PRS
boshlamoq V;PFV;IND;PL;3;PST
boshlamoq V;PL;3;PRS
boshlamoq V;PL;2;PRS
boshlamoq V;PFV;FH;PL;1
boshlamoq V;FRML;IND;SG;2;PST
boshlamoq V;PFV;SBJV;PL;2;FUT
boshlamoq V;PFV;SBJV;PL;3;FUT
boshlamoq V;PRF;FRML;SBJV;SG;2;PRS
boshlamoq V;PRF+PROG;COND;SG;1;PRS
boshlamoq V;PL;1;PRS
boshlamoq V;PFV;FRML;SBJV;SG;2;FUT
boshlamoq V;PFV;SBJV;SG;2;INFM;FUT
boshlamoq V;PRF+PROG;COND;PL;3;PRS
boshlamoq V;PROG;FRML;IND;SG;2;FUT
boshlamoq V;PROG;IND;SG;3;PST
boshlamoq V;PFV;SBJV;SG;1;FUT
boshlamoq V;PROG;COND;PL;1;PRS
boshlamoq V;PFV;FH;SG;1
boshlamoq V;PROG;IND;SG;1;PRS
boshlamoq V;PFV;IND;PL;2;PST
boshlamoq V;PFV;FRML;FH;SG;2
boshlamoq V;PROG;IND;SG;3;PRS
boshlamoq V;IND;PL;1;PST
boshlamoq V;PROG;IND;PL;1;PST
boshlamoq V;COND;SG;3;PRS
boshlamoq V;PFV;IND;SG;2;INFM;PST
boshlamoq V;PFV;SBJV;SG;3;FUT
boshlamoq V;COND;PL;3;PRS
boshlamoq V;PRF;SBJV;PL;2;PRS
boshlamoq V;FRML;COND;SG;2;PRS
boshlamoq V;PROG;COND;PL;3;PRS
boshlamoq V;PROG;FRML;IND;SG;2;PST
boshlamoq V;PROG;IND;PL;2;FUT
boshlamoq V;PFV;IND;SG;3;PST
boshlamoq V;SG;3;PRS
boshlamoq V;COND;PL;2;PRS
boshlamoq V;PRF;SBJV;PL;1;PRS
boshlamoq V;PFV;FH;SG;3
boshlamoq V;PROG;IND;PL;2;PST
boshlamoq V;PFV;FH;PL;2
boshlamoq V;PROG;IND;SG;2;INFM;PST
boshlamoq V;PFV;IND;SG;1;PST
boshlamoq V;PROG;IND;PL;1;FUT
boshlamoq V;IND;PL;2;PST
boshlamoq V;SG;2;INFM;PRS
boshlamoq V;PROG;COND;SG;1;PRS
boshlamoq V;PROG;IND;PL;3;PST
boshlamoq V;PRF+PROG;COND;SG;3;PRS
boshlamoq V;PROG;IND;SG;2;INFM;PRS
boshlamoq V;PRF;SBJV;SG;3;PRS
boshlamoq V;PFV;FH;SG;2
boshlamoq V;PRF+PROG;COND;PL;2;PRS
boshlamoq V;COND;SG;1;PRS
boshlamoq V;PROG;FRML;IND;SG;2;PRS
boshlamoq V;PROG;IND;SG;1;FUT
boshlamoq V;PROG;IND;SG;1;PST
boshlamoq V;PRF;SBJV;PL;3;PRS
boshlamoq V;PROG;IND;PL;3;FUT
boshlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
boshlamoq V;PFV;FH;PL;3
boshlamoq V;PFV;FRML;IND;SG;2;PST
boshlamoq V;PFV;IND;PL;1;PST
boshlamoq V;SG;1;PRS
boshlamoq V;IND;SG;2;INFM;PST
boshlamoq V;PROG;IND;SG;2;INFM;FUT
boshlamoq V;PROG;IND;PL;1;PRS
tishlamoq V;IND;PL;2;PST
tishlamoq V;COND;PL;2;PRS
tishlamoq V;SBJV;SG;3;PRS
tishlamoq V;PROG;COND;SG;1;PRS
tishlamoq V;PROG;IND;SG;3;FUT
tishlamoq V;PRF+PROG;COND;PL;2;PRS
tishlamoq V;PFV;FRML;FH;SG;2
tishlamoq V;PRF;SBJV;SG;2;INFM;PRS
tishlamoq V;PRF;FRML;SBJV;SG;2;PRS
tishlamoq V;PL;1;PRS
tishlamoq V;FRML;IND;SG;2;PST
tishlamoq V;PFV;FH;PL;2
tishlamoq V;PROG;IND;SG;1;FUT
tishlamoq V;PRF;SBJV;PL;2;PRS
tishlamoq V;PFV;SBJV;PL;1;FUT
tishlamoq V;PFV;SBJV;SG;3;FUT
tishlamoq V;PFV;SBJV;SG;2;INFM;FUT
tishlamoq V;PFV;FH;SG;2
tishlamoq V;FRML;SG;2;PRS
tishlamoq V;PROG;IND;PL;1;FUT
tishlamoq V;PFV;IND;SG;3;PST
tishlamoq V;PROG;IND;SG;2;INFM;FUT
tishlamoq V;PL;2;PRS
tishlamoq V;PROG;IND;SG;3;PRS
tishlamoq V;IND;SG;3;PST
tishlamoq V;PROG;COND;SG;2;PRS
tishlamoq V;PROG;IND;PL;1;PST
tishlamoq V;IND;SG;1;PST
tishlamoq V;PROG;FRML;IND;SG;2;PST
tishlamoq V;PROG;FRML;IND;SG;2;FUT
tishlamoq V;PFV;FRML;SBJV;SG;2;FUT
tishlamoq V;PROG;IND;SG;2;INFM;PST
tishlamoq V;PRF;SBJV;SG;1;PRS
tishlamoq V;PROG;IND;SG;2;INFM;PRS
tishlamoq V;FRML;SBJV;SG;2;PRS
tishlamoq V;PFV;SBJV;PL;2;FUT
tishlamoq V;COND;SG;1;PRS
tishlamoq V;PFV;IND;SG;1;PST
tishlamoq V;PROG;IND;PL;2;PRS
tishlamoq V;COND;PL;3;PRS
tishlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
tishlamoq V;COND;SG;3;PRS
tishlamoq V;PROG;IND;SG;1;PRS
tishlamoq V;SBJV;SG;1;PRS
tishlamoq V;PRF;SBJV;PL;1;PRS
tishlamoq V;SBJV;SG;2;PRS
tishlamoq V;PROG;COND;PL;3;PRS
tishlamoq V;PROG;IND;PL;1;PRS
tishlamoq V;PROG;FRML;IND;SG;2;PRS
tishlamoq V;PROG;IND;PL;2;PST
tishlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
tishlamoq V;SG;1;PRS
tishlamoq V;PRF;SBJV;PL;3;PRS
tishlamoq V;PROG;COND;PL;1;PRS
tishlamoq V;PROG;COND;SG;3;PRS
tishlamoq V;PFV;IND;PL;1;PST
tishlamoq V;IND;SG;2;INFM;PST
tishlamoq V;PROG;COND;PL;2;PRS
tishlamoq V;PFV;IND;PL;2;PST
tishlamoq V;COND;PL;1;PRS
tishlamoq V;FRML;COND;SG;2;PRS
tishlamoq V;PRF+PROG;COND;PL;3;PRS
tishlamoq V;PFV;FRML;IND;SG;2;PST
tishlamoq V;PFV;IND;PL;3;PST
tishlamoq V;PROG;IND;PL;2;FUT
tishlamoq V;PROG;IND;SG;3;PST
tishlamoq V;PROG;IND;SG;1;PST
tishlamoq V;PFV;FH;PL;1
tishlamoq V;PFV;FH;PL;3
tishlamoq V;PRF+PROG;COND;SG;1;PRS
tishlamoq V;PRF;SBJV;SG;3;PRS
tishlamoq V;SBJV;PL;1;PRS
tishlamoq V;PFV;SBJV;SG;1;FUT
tishlamoq V;SG;2;INFM;PRS
tishlamoq V;IND;PL;3;PST
tishlamoq V;PL;3;PRS
tishlamoq V;SG;3;PRS
tishlamoq V;PROG;IND;PL;3;PRS
tishlamoq V;PFV;IND;SG;2;INFM;PST
tishlamoq V;PFV;SBJV;PL;3;FUT
tishlamoq V;PFV;FH;SG;3
tishlamoq V;IND;PL;1;PST
tishlamoq V;PROG;IND;PL;3;PST
tishlamoq V;PROG;IND;PL;3;FUT
tishlamoq V;PRF+PROG;COND;SG;3;PRS
tishlamoq V;PRF+PROG;COND;PL;1;PRS
tishlamoq V;PFV;FH;SG;1
tishlamoq V;SBJV;PL;2;PRS
tishlamoq V;PROG;FRML;COND;SG;2;PRS
tishlamoq V;COND;SG;2;INFM;PRS
tishlamoq V;SBJV;PL;3;PRS
his qilmoq V;COND;SG;3;PRS
his qilmoq V;PROG;COND;SG;3;PRS
his qilmoq V;PROG;IND;PL;1;PST
his qilmoq V;IND;SG;3;PST
his qilmoq V;SBJV;PL;2;PRS
his qilmoq V;PRF;SBJV;PL;1;PRS
his qilmoq V;PFV;IND;PL;3;PST
his qilmoq V;PROG;IND;PL;1;PRS
his qilmoq V;PFV;FH;SG;3
his qilmoq V;SBJV;SG;2;PRS
his qilmoq V;PFV;IND;SG;1;PST
his qilmoq V;PFV;IND;SG;2;INFM;PST
his qilmoq V;PFV;IND;PL;2;PST
his qilmoq V;PFV;FRML;IND;SG;2;PST
his qilmoq V;IND;PL;1;PST
his qilmoq V;SBJV;SG;3;PRS
his qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
his qilmoq V;PROG;IND;SG;2;INFM;FUT
his qilmoq V;PROG;IND;PL;2;PST
his qilmoq V;PFV;SBJV;PL;2;FUT
his qilmoq V;PRF+PROG;COND;PL;3;PRS
his qilmoq V;COND;PL;3;PRS
his qilmoq V;PFV;FH;PL;1
his qilmoq V;PRF;SBJV;PL;3;PRS
his qilmoq V;PROG;COND;SG;1;PRS
his qilmoq V;PROG;IND;SG;2;INFM;PST
his qilmoq V;PRF;SBJV;SG;1;PRS
his qilmoq V;PRF;SBJV;SG;2;INFM;PRS
his qilmoq V;PRF+PROG;COND;SG;1;PRS
his qilmoq V;COND;PL;1;PRS
his qilmoq V;PFV;FRML;FH;SG;2
his qilmoq V;COND;SG;2;INFM;PRS
his qilmoq V;PROG;IND;SG;1;PRS
his qilmoq V;PFV;SBJV;SG;3;FUT
his qilmoq V;SBJV;SG;1;PRS
his qilmoq V;IND;SG;2;INFM;PST
his qilmoq V;IND;SG;1;PST
his qilmoq V;PFV;IND;PL;1;PST
his qilmoq V;PFV;SBJV;SG;2;INFM;FUT
his qilmoq V;SG;1;PRS
his qilmoq V;PL;3;PRS
his qilmoq V;PROG;IND;PL;2;FUT
his qilmoq V;FRML;SG;2;PRS
his qilmoq V;COND;PL;2;PRS
his qilmoq V;PL;2;PRS
his qilmoq V;SBJV;PL;1;PRS
his qilmoq V;PRF;SBJV;SG;3;PRS
his qilmoq V;PFV;FRML;SBJV;SG;2;FUT
his qilmoq V;PFV;SBJV;PL;3;FUT
his qilmoq V;FRML;COND;SG;2;PRS
his qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
his qilmoq V;PROG;COND;PL;3;PRS
his qilmoq V;PRF+PROG;COND;PL;1;PRS
his qilmoq V;PROG;IND;SG;3;PST
his qilmoq V;SBJV;PL;3;PRS
his qilmoq V;PFV;FH;SG;1
his qilmoq V;IND;PL;3;PST
his qilmoq V;PFV;FH;SG;2
his qilmoq V;PROG;IND;PL;3;FUT
his qilmoq V;PFV;SBJV;PL;1;FUT
his qilmoq V;PL;1;PRS
his qilmoq V;PROG;IND;SG;3;PRS
his qilmoq V;IND;PL;2;PST
his qilmoq V;PROG;IND;PL;1;FUT
his qilmoq V;PROG;IND;PL;2;PRS
his qilmoq V;COND;SG;1;PRS
his qilmoq V;PROG;IND;SG;1;PST
his qilmoq V;PROG;IND;PL;3;PRS
his qilmoq V;PRF+PROG;COND;PL;2;PRS
his qilmoq V;PROG;FRML;IND;SG;2;PRS
his qilmoq V;FRML;SBJV;SG;2;PRS
his qilmoq V;PROG;IND;PL;3;PST
his qilmoq V;SG;3;PRS
his qilmoq V;PROG;IND;SG;1;FUT
his qilmoq V;PROG;COND;PL;1;PRS
his qilmoq V;PRF;FRML;SBJV;SG;2;PRS
his qilmoq V;PFV;IND;SG;3;PST
his qilmoq V;PFV;SBJV;SG;1;FUT
his qilmoq V;PRF;SBJV;PL;2;PRS
his qilmoq V;PROG;IND;SG;3;FUT
his qilmoq V;FRML;IND;SG;2;PST
his qilmoq V;PRF+PROG;COND;SG;3;PRS
his qilmoq V;PROG;FRML;IND;SG;2;PST
his qilmoq V;PROG;IND;SG;2;INFM;PRS
his qilmoq V;PFV;FH;PL;3
his qilmoq V;PFV;FH;PL;2
his qilmoq V;SG;2;INFM;PRS
his qilmoq V;PROG;COND;SG;2;PRS
his qilmoq V;PROG;FRML;IND;SG;2;FUT
quvonmoq V;PROG;IND;PL;1;PST
quvonmoq V;PFV;SBJV;SG;2;INFM;FUT
quvonmoq V;PROG;IND;SG;2;INFM;FUT
quvonmoq V;PROG;IND;PL;3;PST
quvonmoq V;PROG;IND;SG;3;FUT
quvonmoq V;SBJV;PL;1;PRS
quvonmoq V;PL;3;PRS
quvonmoq V;IND;SG;3;PST
quvonmoq V;PROG;COND;SG;2;PRS
quvonmoq V;PRF+PROG;COND;SG;3;PRS
quvonmoq V;PROG;IND;SG;1;FUT
quvonmoq V;PFV;FH;PL;1
quvonmoq V;PROG;IND;PL;1;FUT
quvonmoq V;PROG;IND;SG;1;PRS
quvonmoq V;COND;PL;2;PRS
quvonmoq V;FRML;IND;SG;2;PST
quvonmoq V;COND;PL;3;PRS
quvonmoq V;IND;PL;1;PST
quvonmoq V;PROG;COND;PL;2;PRS
quvonmoq V;SG;3;PRS
quvonmoq V;PFV;FH;SG;3
quvonmoq V;PROG;IND;SG;3;PST
quvonmoq V;SG;1;PRS
quvonmoq V;PROG;IND;PL;2;FUT
quvonmoq V;PFV;FH;SG;1
quvonmoq V;PRF+PROG;COND;PL;3;PRS
quvonmoq V;PROG;IND;SG;2;INFM;PST
quvonmoq V;SG;2;INFM;PRS
quvonmoq V;PROG;FRML;COND;SG;2;PRS
quvonmoq V;PRF;SBJV;SG;3;PRS
quvonmoq V;SBJV;SG;2;PRS
quvonmoq V;PROG;FRML;IND;SG;2;FUT
quvonmoq V;PROG;COND;SG;3;PRS
quvonmoq V;PRF;FRML;SBJV;SG;2;PRS
quvonmoq V;PROG;COND;PL;3;PRS
quvonmoq V;PROG;IND;SG;3;PRS
quvonmoq V;PROG;IND;SG;1;PST
quvonmoq V;PRF+PROG;COND;PL;2;PRS
quvonmoq V;PFV;FH;PL;3
quvonmoq V;PROG;COND;SG;1;PRS
quvonmoq V;IND;PL;2;PST
quvonmoq V;PROG;FRML;IND;SG;2;PRS
quvonmoq V;IND;SG;2;INFM;PST
quvonmoq V;PL;1;PRS
quvonmoq V;FRML;COND;SG;2;PRS
quvonmoq V;PFV;IND;SG;2;INFM;PST
quvonmoq V;PRF;SBJV;PL;3;PRS
quvonmoq V;PRF;SBJV;PL;2;PRS
quvonmoq V;PFV;IND;SG;1;PST
quvonmoq V;PROG;FRML;IND;SG;2;PST
quvonmoq V;PRF+PROG;COND;SG;1;PRS
quvonmoq V;PFV;SBJV;SG;1;FUT
quvonmoq V;COND;SG;3;PRS
quvonmoq V;PFV;IND;SG;3;PST
quvonmoq V;PFV;FH;SG;2
quvonmoq V;PRF;SBJV;SG;1;PRS
quvonmoq V;COND;PL;1;PRS
quvonmoq V;PROG;IND;PL;3;FUT
quvonmoq V;PROG;IND;SG;2;INFM;PRS
quvonmoq V;PROG;IND;PL;2;PST
quvonmoq V;PFV;IND;PL;1;PST
quvonmoq V;IND;PL;3;PST
quvonmoq V;PFV;SBJV;PL;1;FUT
quvonmoq V;PFV;FRML;FH;SG;2
quvonmoq V;PROG;IND;PL;1;PRS
quvonmoq V;PROG;IND;PL;3;PRS
quvonmoq V;PFV;FRML;SBJV;SG;2;FUT
quvonmoq V;FRML;SBJV;SG;2;PRS
quvonmoq V;PROG;IND;PL;2;PRS
quvonmoq V;PRF+PROG;COND;SG;2;INFM;PRS
quvonmoq V;IND;SG;1;PST
quvonmoq V;PFV;SBJV;PL;2;FUT
quvonmoq V;PRF;SBJV;PL;1;PRS
quvonmoq V;PRF;SBJV;SG;2;INFM;PRS
quvonmoq V;COND;SG;2;INFM;PRS
quvonmoq V;PFV;SBJV;SG;3;FUT
quvonmoq V;PRF+PROG;COND;PL;1;PRS
quvonmoq V;PL;2;PRS
quvonmoq V;COND;SG;1;PRS
quvonmoq V;PFV;IND;PL;3;PST
quvonmoq V;SBJV;PL;2;PRS
quvonmoq V;SBJV;PL;3;PRS
quvonmoq V;FRML;SG;2;PRS
quvonmoq V;PROG;COND;PL;1;PRS
quvonmoq V;SBJV;SG;1;PRS
quvonmoq V;PFV;FRML;IND;SG;2;PST
quvonmoq V;PFV;IND;PL;2;PST
quvonmoq V;SBJV;SG;3;PRS
quvonmoq V;PFV;FH;PL;2
quvonmoq V;PRF+PROG;FRML;COND;SG;2;PRS
quvonmoq V;PFV;SBJV;PL;3;FUT
yengillashtirmoq V;SG;2;INFM;PRS
yengillashtirmoq V;COND;SG;2;INFM;PRS
yengillashtirmoq V;PFV;FH;PL;2
yengillashtirmoq V;PROG;IND;SG;2;INFM;FUT
yengillashtirmoq V;PRF+PROG;COND;SG;1;PRS
yengillashtirmoq V;PROG;IND;SG;2;INFM;PRS
yengillashtirmoq V;PRF;SBJV;SG;2;INFM;PRS
yengillashtirmoq V;PRF;SBJV;PL;3;PRS
yengillashtirmoq V;PROG;IND;PL;3;FUT
yengillashtirmoq V;PFV;FH;SG;3
yengillashtirmoq V;PFV;IND;PL;2;PST
yengillashtirmoq V;PRF+PROG;COND;PL;3;PRS
yengillashtirmoq V;PROG;IND;PL;2;PRS
yengillashtirmoq V;PFV;IND;SG;1;PST
yengillashtirmoq V;PRF+PROG;COND;PL;2;PRS
yengillashtirmoq V;FRML;SG;2;PRS
yengillashtirmoq V;PROG;IND;SG;1;PRS
yengillashtirmoq V;PFV;FH;SG;1
yengillashtirmoq V;PFV;FH;PL;1
yengillashtirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yengillashtirmoq V;FRML;IND;SG;2;PST
yengillashtirmoq V;IND;PL;2;PST
yengillashtirmoq V;PRF+PROG;COND;SG;3;PRS
yengillashtirmoq V;PROG;IND;PL;2;PST
yengillashtirmoq V;SG;3;PRS
yengillashtirmoq V;PFV;SBJV;SG;3;FUT
yengillashtirmoq V;PRF;SBJV;SG;1;PRS
yengillashtirmoq V;PFV;SBJV;PL;3;FUT
yengillashtirmoq V;PFV;IND;SG;2;INFM;PST
yengillashtirmoq V;IND;SG;2;INFM;PST
yengillashtirmoq V;PROG;COND;SG;3;PRS
yengillashtirmoq V;PFV;IND;PL;3;PST
yengillashtirmoq V;IND;PL;1;PST
yengillashtirmoq V;PROG;IND;PL;1;PRS
yengillashtirmoq V;COND;PL;3;PRS
yengillashtirmoq V;PL;2;PRS
yengillashtirmoq V;PFV;SBJV;SG;1;FUT
yengillashtirmoq V;PRF;FRML;SBJV;SG;2;PRS
yengillashtirmoq V;PROG;IND;PL;1;FUT
yengillashtirmoq V;PROG;IND;PL;3;PST
yengillashtirmoq V;IND;PL;3;PST
yengillashtirmoq V;COND;SG;1;PRS
yengillashtirmoq V;PROG;COND;PL;1;PRS
yengillashtirmoq V;PFV;SBJV;PL;1;FUT
yengillashtirmoq V;PROG;COND;PL;3;PRS
yengillashtirmoq V;PROG;IND;SG;2;INFM;PST
yengillashtirmoq V;PROG;IND;SG;3;PST
yengillashtirmoq V;COND;SG;3;PRS
yengillashtirmoq V;PFV;IND;PL;1;PST
yengillashtirmoq V;PFV;FH;SG;2
yengillashtirmoq V;PFV;IND;SG;3;PST
yengillashtirmoq V;SG;1;PRS
yengillashtirmoq V;PROG;IND;SG;1;PST
yengillashtirmoq V;PFV;FRML;FH;SG;2
yengillashtirmoq V;PROG;IND;PL;2;FUT
yengillashtirmoq V;IND;SG;1;PST
yengillashtirmoq V;PROG;IND;SG;3;PRS
yengillashtirmoq V;PFV;SBJV;SG;2;INFM;FUT
yengillashtirmoq V;PFV;FH;PL;3
yengillashtirmoq V;PFV;FRML;IND;SG;2;PST
yengillashtirmoq V;PRF;SBJV;SG;3;PRS
yengillashtirmoq V;PROG;FRML;IND;SG;2;PST
yengillashtirmoq V;PROG;FRML;IND;SG;2;FUT
yengillashtirmoq V;COND;PL;1;PRS
yengillashtirmoq V;PROG;IND;SG;1;FUT
yengillashtirmoq V;PROG;IND;SG;3;FUT
yengillashtirmoq V;PRF+PROG;COND;PL;1;PRS
yengillashtirmoq V;IND;SG;3;PST
yengillashtirmoq V;COND;PL;2;PRS
yengillashtirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yengillashtirmoq V;PL;3;PRS
yengillashtirmoq V;PROG;COND;SG;1;PRS
yengillashtirmoq V;PRF;SBJV;PL;2;PRS
yengillashtirmoq V;PL;1;PRS
yengillashtirmoq V;PFV;SBJV;PL;2;FUT
yengillashtirmoq V;PRF;SBJV;PL;1;PRS
yengillashtirmoq V;PROG;FRML;IND;SG;2;PRS
yengillashtirmoq V;PROG;COND;SG;2;PRS
yengillashtirmoq V;PFV;FRML;SBJV;SG;2;FUT
yengillashtirmoq V;PROG;IND;PL;3;PRS
yengillashtirmoq V;FRML;COND;SG;2;PRS
yengillashtirmoq V;PROG;IND;PL;1;PST
sevmoq V;SG;2;INFM;PRS
sevmoq V;PRF+PROG;COND;PL;3;PRS
sevmoq V;IND;SG;1;PST
sevmoq V;PRF+PROG;COND;PL;1;PRS
sevmoq V;PRF;SBJV;SG;1;PRS
sevmoq V;PFV;SBJV;PL;1;FUT
sevmoq V;PROG;FRML;IND;SG;2;PST
sevmoq V;PROG;IND;PL;1;FUT
sevmoq V;PRF;SBJV;PL;3;PRS
sevmoq V;FRML;COND;SG;2;PRS
sevmoq V;PROG;FRML;COND;SG;2;PRS
sevmoq V;PFV;FH;PL;2
sevmoq V;SBJV;SG;2;PRS
sevmoq V;PL;1;PRS
sevmoq V;PROG;IND;PL;2;PST
sevmoq V;PRF+PROG;COND;PL;2;PRS
sevmoq V;PROG;IND;PL;1;PST
sevmoq V;PROG;IND;PL;3;PST
sevmoq V;COND;SG;3;PRS
sevmoq V;PROG;IND;SG;2;INFM;FUT
sevmoq V;PFV;SBJV;PL;2;FUT
sevmoq V;PROG;IND;SG;3;PST
sevmoq V;PRF;FRML;SBJV;SG;2;PRS
sevmoq V;PFV;FH;PL;3
sevmoq V;PROG;IND;SG;2;INFM;PRS
sevmoq V;IND;PL;1;PST
sevmoq V;PFV;SBJV;PL;3;FUT
sevmoq V;PROG;COND;SG;2;PRS
sevmoq V;SBJV;PL;2;PRS
sevmoq V;PRF+PROG;FRML;COND;SG;2;PRS
sevmoq V;PL;3;PRS
sevmoq V;SBJV;SG;1;PRS
sevmoq V;PFV;SBJV;SG;1;FUT
sevmoq V;PROG;IND;PL;2;FUT
sevmoq V;COND;SG;1;PRS
sevmoq V;PFV;FH;PL;1
sevmoq V;PFV;SBJV;SG;3;FUT
sevmoq V;PFV;FH;SG;1
sevmoq V;SBJV;SG;3;PRS
sevmoq V;PROG;IND;SG;3;PRS
sevmoq V;PFV;IND;SG;3;PST
sevmoq V;PFV;FRML;IND;SG;2;PST
sevmoq V;SBJV;PL;1;PRS
sevmoq V;PROG;COND;PL;1;PRS
sevmoq V;PFV;FRML;FH;SG;2
sevmoq V;COND;PL;3;PRS
sevmoq V;PRF;SBJV;PL;1;PRS
sevmoq V;PFV;FRML;SBJV;SG;2;FUT
sevmoq V;COND;SG;2;INFM;PRS
sevmoq V;PFV;IND;PL;1;PST
sevmoq V;PROG;IND;PL;1;PRS
sevmoq V;FRML;SBJV;SG;2;PRS
sevmoq V;IND;SG;3;PST
sevmoq V;IND;PL;3;PST
sevmoq V;COND;PL;2;PRS
sevmoq V;PROG;IND;SG;1;PRS
sevmoq V;PRF;SBJV;SG;3;PRS
sevmoq V;PROG;IND;PL;3;FUT
sevmoq V;PRF;SBJV;SG;2;INFM;PRS
sevmoq V;PFV;IND;PL;2;PST
sevmoq V;PROG;COND;SG;3;PRS
sevmoq V;PROG;IND;SG;2;INFM;PST
sevmoq V;FRML;IND;SG;2;PST
sevmoq V;PROG;COND;PL;2;PRS
sevmoq V;PROG;COND;SG;1;PRS
sevmoq V;IND;PL;2;PST
sevmoq V;PL;2;PRS
sevmoq V;COND;PL;1;PRS
sevmoq V;PROG;IND;SG;1;PST
sevmoq V;SBJV;PL;3;PRS
sevmoq V;SG;1;PRS
sevmoq V;PROG;COND;PL;3;PRS
sevmoq V;PROG;FRML;IND;SG;2;PRS
sevmoq V;PROG;IND;SG;3;FUT
sevmoq V;PFV;IND;SG;1;PST
sevmoq V;IND;SG;2;INFM;PST
sevmoq V;PROG;FRML;IND;SG;2;FUT
sevmoq V;PRF+PROG;COND;SG;3;PRS
sevmoq V;PRF;SBJV;PL;2;PRS
sevmoq V;PRF+PROG;COND;SG;1;PRS
sevmoq V;PROG;IND;SG;1;FUT
sevmoq V;SG;3;PRS
sevmoq V;PROG;IND;PL;3;PRS
sevmoq V;PRF+PROG;COND;SG;2;INFM;PRS
sevmoq V;PFV;FH;SG;3
sevmoq V;PFV;IND;PL;3;PST
sevmoq V;PFV;FH;SG;2
sevmoq V;PFV;IND;SG;2;INFM;PST
sevmoq V;PFV;SBJV;SG;2;INFM;FUT
sevmoq V;PROG;IND;PL;2;PRS
sevmoq V;FRML;SG;2;PRS
shamollamoq V;PRF+PROG;FRML;COND;SG;2;PRS
shamollamoq V;PROG;COND;PL;1;PRS
shamollamoq V;PROG;IND;SG;1;PST
shamollamoq V;PROG;IND;SG;1;PRS
shamollamoq V;PFV;SBJV;SG;2;INFM;FUT
shamollamoq V;PFV;FRML;FH;SG;2
shamollamoq V;IND;SG;2;INFM;PST
shamollamoq V;PFV;IND;PL;3;PST
shamollamoq V;PRF;SBJV;PL;3;PRS
shamollamoq V;PROG;COND;SG;1;PRS
shamollamoq V;PRF+PROG;COND;PL;3;PRS
shamollamoq V;SBJV;PL;1;PRS
shamollamoq V;IND;PL;2;PST
shamollamoq V;PROG;IND;PL;2;PRS
shamollamoq V;PROG;IND;SG;3;PST
shamollamoq V;SBJV;SG;1;PRS
shamollamoq V;IND;SG;3;PST
shamollamoq V;COND;SG;3;PRS
shamollamoq V;PRF;SBJV;SG;2;INFM;PRS
shamollamoq V;PROG;IND;SG;1;FUT
shamollamoq V;PROG;IND;PL;3;FUT
shamollamoq V;PFV;SBJV;SG;3;FUT
shamollamoq V;PFV;IND;PL;2;PST
shamollamoq V;SG;2;INFM;PRS
shamollamoq V;PRF;SBJV;SG;1;PRS
shamollamoq V;PRF+PROG;COND;PL;2;PRS
shamollamoq V;PFV;IND;PL;1;PST
shamollamoq V;PROG;COND;SG;2;PRS
shamollamoq V;PFV;FH;SG;1
shamollamoq V;COND;SG;1;PRS
shamollamoq V;FRML;SG;2;PRS
shamollamoq V;PFV;SBJV;SG;1;FUT
shamollamoq V;PL;1;PRS
shamollamoq V;PFV;IND;SG;1;PST
shamollamoq V;PFV;IND;SG;2;INFM;PST
shamollamoq V;PFV;FH;PL;1
shamollamoq V;PROG;IND;PL;3;PST
shamollamoq V;PROG;COND;SG;3;PRS
shamollamoq V;PRF+PROG;COND;SG;2;INFM;PRS
shamollamoq V;SG;1;PRS
shamollamoq V;PFV;SBJV;PL;1;FUT
shamollamoq V;IND;SG;1;PST
shamollamoq V;PROG;IND;SG;3;PRS
shamollamoq V;PRF;SBJV;PL;2;PRS
shamollamoq V;SBJV;PL;3;PRS
shamollamoq V;PROG;IND;SG;2;INFM;PST
shamollamoq V;PROG;IND;PL;1;FUT
shamollamoq V;FRML;SBJV;SG;2;PRS
shamollamoq V;SG;3;PRS
shamollamoq V;PROG;FRML;IND;SG;2;PRS
shamollamoq V;SBJV;SG;3;PRS
shamollamoq V;PROG;IND;PL;1;PST
shamollamoq V;PL;2;PRS
shamollamoq V;PFV;FRML;IND;SG;2;PST
shamollamoq V;PROG;COND;PL;2;PRS
shamollamoq V;PROG;IND;PL;2;PST
shamollamoq V;FRML;COND;SG;2;PRS
shamollamoq V;SBJV;PL;2;PRS
shamollamoq V;COND;PL;2;PRS
shamollamoq V;PROG;IND;PL;1;PRS
shamollamoq V;PRF+PROG;COND;SG;1;PRS
shamollamoq V;PROG;IND;SG;2;INFM;FUT
shamollamoq V;PFV;SBJV;PL;3;FUT
shamollamoq V;SBJV;SG;2;PRS
shamollamoq V;IND;PL;1;PST
shamollamoq V;PFV;SBJV;PL;2;FUT
shamollamoq V;PROG;IND;SG;2;INFM;PRS
shamollamoq V;PRF+PROG;COND;PL;1;PRS
shamollamoq V;COND;PL;1;PRS
shamollamoq V;PRF;SBJV;SG;3;PRS
shamollamoq V;PROG;IND;PL;2;FUT
shamollamoq V;COND;PL;3;PRS
shamollamoq V;FRML;IND;SG;2;PST
shamollamoq V;PROG;IND;PL;3;PRS
shamollamoq V;IND;PL;3;PST
shamollamoq V;PROG;FRML;IND;SG;2;PST
shamollamoq V;PROG;IND;SG;3;FUT
shamollamoq V;PFV;FRML;SBJV;SG;2;FUT
shamollamoq V;COND;SG;2;INFM;PRS
shamollamoq V;PFV;FH;SG;2
shamollamoq V;PRF;SBJV;PL;1;PRS
shamollamoq V;PFV;FH;PL;2
shamollamoq V;PROG;FRML;COND;SG;2;PRS
shamollamoq V;PFV;FH;SG;3
shamollamoq V;PRF+PROG;COND;SG;3;PRS
shamollamoq V;PROG;FRML;IND;SG;2;FUT
shamollamoq V;PROG;COND;PL;3;PRS
shamollamoq V;PRF;FRML;SBJV;SG;2;PRS
shamollamoq V;PL;3;PRS
shamollamoq V;PFV;FH;PL;3
shamollamoq V;PFV;IND;SG;3;PST
tavsiya qilmoq V;IND;SG;2;INFM;PST
tavsiya qilmoq V;PROG;IND;SG;2;INFM;PRS
tavsiya qilmoq V;PFV;FH;PL;1
tavsiya qilmoq V;PFV;FRML;SBJV;SG;2;FUT
tavsiya qilmoq V;PL;2;PRS
tavsiya qilmoq V;IND;PL;2;PST
tavsiya qilmoq V;PFV;SBJV;SG;3;FUT
tavsiya qilmoq V;PRF;SBJV;PL;3;PRS
tavsiya qilmoq V;PROG;IND;SG;1;PRS
tavsiya qilmoq V;PRF;SBJV;SG;2;INFM;PRS
tavsiya qilmoq V;PROG;IND;PL;3;PST
tavsiya qilmoq V;PFV;FH;PL;2
tavsiya qilmoq V;PFV;FH;SG;1
tavsiya qilmoq V;PROG;IND;SG;1;PST
tavsiya qilmoq V;PROG;IND;SG;1;FUT
tavsiya qilmoq V;PROG;IND;PL;1;PRS
tavsiya qilmoq V;PRF;SBJV;SG;3;PRS
tavsiya qilmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tavsiya qilmoq V;PRF;SBJV;PL;2;PRS
tavsiya qilmoq V;COND;PL;1;PRS
tavsiya qilmoq V;PFV;SBJV;PL;1;FUT
tavsiya qilmoq V;PROG;FRML;IND;SG;2;FUT
tavsiya qilmoq V;PFV;FRML;FH;SG;2
tavsiya qilmoq V;COND;SG;3;PRS
tavsiya qilmoq V;PROG;COND;SG;2;PRS
tavsiya qilmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tavsiya qilmoq V;COND;SG;2;INFM;PRS
tavsiya qilmoq V;PRF;SBJV;SG;1;PRS
tavsiya qilmoq V;PFV;FH;SG;2
tavsiya qilmoq V;PROG;IND;SG;3;PRS
tavsiya qilmoq V;COND;PL;2;PRS
tavsiya qilmoq V;PROG;IND;PL;2;PST
tavsiya qilmoq V;IND;SG;3;PST
tavsiya qilmoq V;SG;1;PRS
tavsiya qilmoq V;PRF;FRML;SBJV;SG;2;PRS
tavsiya qilmoq V;PFV;FH;SG;3
tavsiya qilmoq V;IND;SG;1;PST
tavsiya qilmoq V;PROG;IND;SG;2;INFM;PST
tavsiya qilmoq V;PFV;IND;SG;1;PST
tavsiya qilmoq V;SG;2;INFM;PRS
tavsiya qilmoq V;PFV;FRML;IND;SG;2;PST
tavsiya qilmoq V;PFV;SBJV;SG;2;INFM;FUT
tavsiya qilmoq V;PROG;COND;PL;3;PRS
tavsiya qilmoq V;PROG;IND;SG;2;INFM;FUT
tavsiya qilmoq V;PROG;FRML;IND;SG;2;PST
tavsiya qilmoq V;PROG;IND;PL;2;FUT
tavsiya qilmoq V;PRF;SBJV;PL;1;PRS
tavsiya qilmoq V;PROG;IND;SG;3;PST
tavsiya qilmoq V;PROG;FRML;IND;SG;2;PRS
tavsiya qilmoq V;FRML;SG;2;PRS
tavsiya qilmoq V;COND;SG;1;PRS
tavsiya qilmoq V;PL;1;PRS
tavsiya qilmoq V;PRF+PROG;COND;PL;1;PRS
tavsiya qilmoq V;PFV;IND;SG;3;PST
tavsiya qilmoq V;PROG;COND;PL;1;PRS
tavsiya qilmoq V;PRF+PROG;COND;SG;1;PRS
tavsiya qilmoq V;PRF+PROG;COND;SG;3;PRS
tavsiya qilmoq V;FRML;COND;SG;2;PRS
tavsiya qilmoq V;PRF+PROG;COND;PL;3;PRS
tavsiya qilmoq V;PRF+PROG;COND;PL;2;PRS
tavsiya qilmoq V;PFV;IND;SG;2;INFM;PST
tavsiya qilmoq V;PROG;IND;PL;3;PRS
tavsiya qilmoq V;PFV;FH;PL;3
tavsiya qilmoq V;PROG;IND;PL;1;FUT
tavsiya qilmoq V;PFV;SBJV;SG;1;FUT
tavsiya qilmoq V;PL;3;PRS
tavsiya qilmoq V;IND;PL;1;PST
tavsiya qilmoq V;PROG;COND;SG;3;PRS
tavsiya qilmoq V;PROG;IND;PL;1;PST
tavsiya qilmoq V;PFV;IND;PL;3;PST
tavsiya qilmoq V;IND;PL;3;PST
tavsiya qilmoq V;PROG;COND;SG;1;PRS
tavsiya qilmoq V;PFV;IND;PL;1;PST
tavsiya qilmoq V;PFV;IND;PL;2;PST
tavsiya qilmoq V;FRML;IND;SG;2;PST
tavsiya qilmoq V;PFV;SBJV;PL;3;FUT
tavsiya qilmoq V;PFV;SBJV;PL;2;FUT
tavsiya qilmoq V;COND;PL;3;PRS
tavsiya qilmoq V;PROG;IND;PL;2;PRS
tavsiya qilmoq V;PROG;IND;SG;3;FUT
tavsiya qilmoq V;PROG;IND;PL;3;FUT
tavsiya qilmoq V;SG;3;PRS
hayratlantirmoq V;SG;2;INFM;PRS
hayratlantirmoq V;PRF+PROG;COND;SG;3;PRS
hayratlantirmoq V;PROG;IND;SG;3;PRS
hayratlantirmoq V;PL;1;PRS
hayratlantirmoq V;PFV;SBJV;SG;3;FUT
hayratlantirmoq V;PL;3;PRS
hayratlantirmoq V;IND;SG;2;INFM;PST
hayratlantirmoq V;PRF;SBJV;SG;1;PRS
hayratlantirmoq V;PRF+PROG;COND;PL;3;PRS
hayratlantirmoq V;PROG;COND;SG;1;PRS
hayratlantirmoq V;PFV;IND;SG;2;INFM;PST
hayratlantirmoq V;PFV;IND;SG;1;PST
hayratlantirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
hayratlantirmoq V;COND;SG;3;PRS
hayratlantirmoq V;PFV;FH;PL;1
hayratlantirmoq V;PFV;FRML;FH;SG;2
hayratlantirmoq V;PROG;IND;SG;3;FUT
hayratlantirmoq V;PFV;FRML;IND;SG;2;PST
hayratlantirmoq V;PFV;FH;PL;2
hayratlantirmoq V;COND;PL;1;PRS
hayratlantirmoq V;PRF;SBJV;SG;2;INFM;PRS
hayratlantirmoq V;PFV;SBJV;PL;3;FUT
hayratlantirmoq V;PROG;IND;SG;1;PST
hayratlantirmoq V;PROG;FRML;IND;SG;2;FUT
hayratlantirmoq V;PROG;IND;SG;3;PST
hayratlantirmoq V;PFV;SBJV;PL;1;FUT
hayratlantirmoq V;PFV;IND;PL;1;PST
hayratlantirmoq V;PROG;IND;SG;1;FUT
hayratlantirmoq V;PRF;SBJV;SG;3;PRS
hayratlantirmoq V;PROG;COND;PL;3;PRS
hayratlantirmoq V;SG;3;PRS
hayratlantirmoq V;PRF+PROG;COND;PL;1;PRS
hayratlantirmoq V;PRF;SBJV;PL;2;PRS
hayratlantirmoq V;PFV;FH;SG;3
hayratlantirmoq V;PFV;SBJV;SG;1;FUT
hayratlantirmoq V;PROG;IND;PL;2;FUT
hayratlantirmoq V;IND;SG;3;PST
hayratlantirmoq V;SG;1;PRS
hayratlantirmoq V;PFV;FH;SG;2
hayratlantirmoq V;COND;SG;2;INFM;PRS
hayratlantirmoq V;PROG;COND;SG;3;PRS
hayratlantirmoq V;PROG;IND;SG;2;INFM;PST
hayratlantirmoq V;COND;PL;2;PRS
hayratlantirmoq V;PROG;IND;PL;1;PRS
hayratlantirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
hayratlantirmoq V;PRF;SBJV;PL;1;PRS
hayratlantirmoq V;PRF+PROG;COND;PL;2;PRS
hayratlantirmoq V;PFV;SBJV;SG;2;INFM;FUT
hayratlantirmoq V;PROG;IND;PL;3;PST
hayratlantirmoq V;PRF;SBJV;PL;3;PRS
hayratlantirmoq V;PRF+PROG;COND;SG;1;PRS
hayratlantirmoq V;PROG;COND;SG;2;PRS
hayratlantirmoq V;PFV;FH;PL;3
hayratlantirmoq V;PL;2;PRS
hayratlantirmoq V;PROG;IND;PL;2;PST
hayratlantirmoq V;PROG;IND;PL;3;FUT
hayratlantirmoq V;PROG;FRML;IND;SG;2;PRS
hayratlantirmoq V;IND;PL;3;PST
hayratlantirmoq V;PRF;FRML;SBJV;SG;2;PRS
hayratlantirmoq V;IND;SG;1;PST
hayratlantirmoq V;PROG;IND;PL;1;FUT
hayratlantirmoq V;FRML;IND;SG;2;PST
hayratlantirmoq V;PFV;FRML;SBJV;SG;2;FUT
hayratlantirmoq V;PROG;FRML;IND;SG;2;PST
hayratlantirmoq V;COND;PL;3;PRS
hayratlantirmoq V;PROG;IND;SG;2;INFM;PRS
hayratlantirmoq V;PFV;FH;SG;1
hayratlantirmoq V;IND;PL;2;PST
hayratlantirmoq V;FRML;COND;SG;2;PRS
hayratlantirmoq V;PFV;IND;PL;3;PST
hayratlantirmoq V;PROG;IND;SG;1;PRS
hayratlantirmoq V;FRML;SG;2;PRS
hayratlantirmoq V;PFV;IND;SG;3;PST
hayratlantirmoq V;IND;PL;1;PST
hayratlantirmoq V;PROG;IND;SG;2;INFM;FUT
hayratlantirmoq V;PFV;SBJV;PL;2;FUT
hayratlantirmoq V;PFV;IND;PL;2;PST
hayratlantirmoq V;COND;SG;1;PRS
hayratlantirmoq V;PROG;IND;PL;2;PRS
hayratlantirmoq V;PROG;COND;PL;1;PRS
hayratlantirmoq V;PROG;IND;PL;3;PRS
hayratlantirmoq V;PROG;IND;PL;1;PST
yonmoq V;PFV;FRML;SBJV;SG;2;FUT
yonmoq V;COND;SG;1;PRS
yonmoq V;PFV;IND;SG;2;INFM;PST
yonmoq V;PROG;COND;SG;3;PRS
yonmoq V;PRF+PROG;COND;PL;3;PRS
yonmoq V;PFV;FH;PL;1
yonmoq V;PROG;IND;SG;3;PRS
yonmoq V;IND;PL;3;PST
yonmoq V;PL;2;PRS
yonmoq V;PFV;SBJV;PL;2;FUT
yonmoq V;PFV;IND;PL;3;PST
yonmoq V;PRF+PROG;COND;PL;2;PRS
yonmoq V;PRF;FRML;SBJV;SG;2;PRS
yonmoq V;PROG;IND;PL;1;FUT
yonmoq V;PRF;SBJV;SG;2;INFM;PRS
yonmoq V;PROG;FRML;IND;SG;2;FUT
yonmoq V;SG;1;PRS
yonmoq V;COND;PL;1;PRS
yonmoq V;PROG;IND;PL;2;FUT
yonmoq V;PFV;SBJV;PL;3;FUT
yonmoq V;PROG;FRML;IND;SG;2;PST
yonmoq V;IND;SG;1;PST
yonmoq V;PRF;SBJV;SG;1;PRS
yonmoq V;PFV;IND;PL;1;PST
yonmoq V;PROG;IND;PL;1;PST
yonmoq V;PRF+PROG;FRML;COND;SG;2;PRS
yonmoq V;PROG;COND;PL;3;PRS
yonmoq V;PRF;SBJV;PL;2;PRS
yonmoq V;PROG;COND;SG;2;PRS
yonmoq V;PROG;IND;SG;2;INFM;PRS
yonmoq V;PROG;IND;PL;2;PST
yonmoq V;PRF+PROG;COND;SG;1;PRS
yonmoq V;PROG;IND;PL;3;PRS
yonmoq V;PFV;FH;SG;3
yonmoq V;PROG;IND;PL;3;FUT
yonmoq V;IND;SG;3;PST
yonmoq V;PFV;FH;SG;1
yonmoq V;COND;PL;2;PRS
yonmoq V;PFV;SBJV;SG;3;FUT
yonmoq V;IND;PL;1;PST
yonmoq V;PROG;IND;SG;1;PST
yonmoq V;COND;SG;3;PRS
yonmoq V;PROG;IND;SG;1;FUT
yonmoq V;PROG;COND;SG;1;PRS
yonmoq V;IND;SG;2;INFM;PST
yonmoq V;PROG;COND;PL;1;PRS
yonmoq V;PRF+PROG;COND;PL;1;PRS
yonmoq V;FRML;COND;SG;2;PRS
yonmoq V;PROG;IND;SG;2;INFM;PST
yonmoq V;PROG;IND;SG;3;FUT
yonmoq V;PFV;SBJV;SG;2;INFM;FUT
yonmoq V;PROG;IND;PL;1;PRS
yonmoq V;SG;2;INFM;PRS
yonmoq V;FRML;SG;2;PRS
yonmoq V;PL;1;PRS
yonmoq V;PFV;FH;PL;2
yonmoq V;PRF;SBJV;SG;3;PRS
yonmoq V;PFV;FRML;FH;SG;2
yonmoq V;PRF+PROG;COND;SG;3;PRS
yonmoq V;PRF;SBJV;PL;3;PRS
yonmoq V;PL;3;PRS
yonmoq V;PFV;SBJV;PL;1;FUT
yonmoq V;PROG;IND;PL;3;PST
yonmoq V;FRML;IND;SG;2;PST
yonmoq V;PFV;FRML;IND;SG;2;PST
yonmoq V;PRF+PROG;COND;SG;2;INFM;PRS
yonmoq V;PROG;IND;SG;2;INFM;FUT
yonmoq V;PROG;IND;PL;2;PRS
yonmoq V;PFV;IND;SG;3;PST
yonmoq V;SG;3;PRS
yonmoq V;PROG;IND;SG;1;PRS
yonmoq V;PFV;FH;SG;2
yonmoq V;PROG;IND;SG;3;PST
yonmoq V;PROG;FRML;IND;SG;2;PRS
yonmoq V;PRF;SBJV;PL;1;PRS
yonmoq V;COND;PL;3;PRS
yonmoq V;PFV;IND;SG;1;PST
yonmoq V;PFV;FH;PL;3
yonmoq V;COND;SG;2;INFM;PRS
yonmoq V;PFV;IND;PL;2;PST
yonmoq V;PFV;SBJV;SG;1;FUT
yonmoq V;IND;PL;2;PST
qo'yib yubormoq V;SG;3;PRS
qo'yib yubormoq V;PFV;FH;SG;2
qo'yib yubormoq V;PRF+PROG;COND;PL;3;PRS
qo'yib yubormoq V;COND;SG;1;PRS
qo'yib yubormoq V;PROG;IND;SG;2;INFM;FUT
qo'yib yubormoq V;PFV;IND;SG;1;PST
qo'yib yubormoq V;PROG;IND;PL;1;FUT
qo'yib yubormoq V;PRF;SBJV;SG;3;PRS
qo'yib yubormoq V;IND;SG;2;INFM;PST
qo'yib yubormoq V;PROG;IND;SG;3;PST
qo'yib yubormoq V;PRF;SBJV;PL;2;PRS
qo'yib yubormoq V;PFV;SBJV;SG;1;FUT
qo'yib yubormoq V;PFV;FH;PL;3
qo'yib yubormoq V;COND;SG;3;PRS
qo'yib yubormoq V;PROG;IND;SG;1;PRS
qo'yib yubormoq V;PROG;IND;PL;1;PST
qo'yib yubormoq V;PROG;IND;SG;2;INFM;PST
qo'yib yubormoq V;PROG;FRML;IND;SG;2;PST
qo'yib yubormoq V;PFV;IND;PL;2;PST
qo'yib yubormoq V;PFV;FRML;IND;SG;2;PST
qo'yib yubormoq V;PFV;IND;PL;3;PST
qo'yib yubormoq V;PROG;COND;SG;2;PRS
qo'yib yubormoq V;PROG;COND;PL;1;PRS
qo'yib yubormoq V;PRF;SBJV;SG;2;INFM;PRS
qo'yib yubormoq V;PROG;IND;SG;3;PRS
qo'yib yubormoq V;PROG;IND;PL;2;FUT
qo'yib yubormoq V;PRF+PROG;COND;PL;1;PRS
qo'yib yubormoq V;PL;3;PRS
qo'yib yubormoq V;PRF+PROG;COND;PL;2;PRS
qo'yib yubormoq V;PROG;IND;SG;1;PST
qo'yib yubormoq V;PFV;SBJV;SG;3;FUT
qo'yib yubormoq V;COND;PL;2;PRS
qo'yib yubormoq V;PROG;COND;PL;3;PRS
qo'yib yubormoq V;SG;2;INFM;PRS
qo'yib yubormoq V;PFV;FRML;FH;SG;2
qo'yib yubormoq V;PROG;FRML;IND;SG;2;FUT
qo'yib yubormoq V;PFV;FH;SG;3
qo'yib yubormoq V;PRF+PROG;COND;SG;1;PRS
qo'yib yubormoq V;PROG;IND;PL;2;PST
qo'yib yubormoq V;PRF;FRML;SBJV;SG;2;PRS
qo'yib yubormoq V;IND;SG;3;PST
qo'yib yubormoq V;COND;PL;1;PRS
qo'yib yubormoq V;COND;SG;2;INFM;PRS
qo'yib yubormoq V;PFV;IND;PL;1;PST
qo'yib yubormoq V;PFV;SBJV;PL;3;FUT
qo'yib yubormoq V;PL;2;PRS
qo'yib yubormoq V;PROG;IND;SG;3;FUT
qo'yib yubormoq V;FRML;COND;SG;2;PRS
qo'yib yubormoq V;PFV;FH;SG;1
qo'yib yubormoq V;IND;SG;1;PST
qo'yib yubormoq V;PROG;IND;PL;3;FUT
qo'yib yubormoq V;PRF;SBJV;PL;1;PRS
qo'yib yubormoq V;PFV;FH;PL;2
qo'yib yubormoq V;PROG;IND;PL;1;PRS
qo'yib yubormoq V;FRML;SG;2;PRS
qo'yib yubormoq V;PL;1;PRS
qo'yib yubormoq V;PRF+PROG;COND;SG;3;PRS
qo'yib yubormoq V;PROG;IND;SG;2;INFM;PRS
qo'yib yubormoq V;PROG;IND;PL;3;PST
qo'yib yubormoq V;PROG;COND;SG;1;PRS
qo'yib yubormoq V;FRML;IND;SG;2;PST
qo'yib yubormoq V;COND;PL;3;PRS
qo'yib yubormoq V;PFV;SBJV;PL;1;FUT
qo'yib yubormoq V;IND;PL;2;PST
qo'yib yubormoq V;PFV;SBJV;SG;2;INFM;FUT
qo'yib yubormoq V;PRF;SBJV;PL;3;PRS
qo'yib yubormoq V;PROG;IND;SG;1;FUT
qo'yib yubormoq V;PFV;FH;PL;1
qo'yib yubormoq V;PRF+PROG;FRML;COND;SG;2;PRS
qo'yib yubormoq V;PROG;COND;SG;3;PRS
qo'yib yubormoq V;IND;PL;1;PST
qo'yib yubormoq V;PFV;IND;SG;3;PST
qo'yib yubormoq V;PROG;IND;PL;2;PRS
qo'yib yubormoq V;PFV;IND;SG;2;INFM;PST
qo'yib yubormoq V;PFV;FRML;SBJV;SG;2;FUT
qo'yib yubormoq V;PRF;SBJV;SG;1;PRS
qo'yib yubormoq V;PFV;SBJV;PL;2;FUT
qo'yib yubormoq V;PRF+PROG;COND;SG;2;INFM;PRS
qo'yib yubormoq V;PROG;FRML;IND;SG;2;PRS
qo'yib yubormoq V;PROG;IND;PL;3;PRS
qo'yib yubormoq V;IND;PL;3;PST
qo'yib yubormoq V;SG;1;PRS
chiqarmoq V;PROG;COND;SG;1;PRS
chiqarmoq V;PROG;FRML;IND;SG;2;PRS
chiqarmoq V;PROG;COND;PL;3;PRS
chiqarmoq V;PRF+PROG;COND;SG;2;INFM;PRS
chiqarmoq V;PFV;IND;SG;2;INFM;PST
chiqarmoq V;PFV;IND;SG;3;PST
chiqarmoq V;PRF;SBJV;PL;2;PRS
chiqarmoq V;PRF;SBJV;PL;3;PRS
chiqarmoq V;PROG;IND;PL;1;PST
chiqarmoq V;COND;SG;3;PRS
chiqarmoq V;PFV;SBJV;PL;3;FUT
chiqarmoq V;SG;1;PRS
chiqarmoq V;COND;SG;2;INFM;PRS
chiqarmoq V;PFV;SBJV;PL;2;FUT
chiqarmoq V;PROG;IND;PL;2;PST
chiqarmoq V;PROG;IND;SG;1;PST
chiqarmoq V;IND;SG;2;INFM;PST
chiqarmoq V;PRF;SBJV;SG;1;PRS
chiqarmoq V;PROG;IND;PL;3;FUT
chiqarmoq V;PROG;COND;SG;3;PRS
chiqarmoq V;PL;1;PRS
chiqarmoq V;SG;2;INFM;PRS
chiqarmoq V;PFV;FH;PL;3
chiqarmoq V;PFV;FRML;FH;SG;2
chiqarmoq V;PRF+PROG;COND;PL;2;PRS
chiqarmoq V;PROG;IND;SG;1;PRS
chiqarmoq V;PROG;IND;SG;1;FUT
chiqarmoq V;PFV;IND;PL;3;PST
chiqarmoq V;PROG;IND;PL;1;PRS
chiqarmoq V;PRF;SBJV;SG;2;INFM;PRS
chiqarmoq V;IND;SG;1;PST
chiqarmoq V;PFV;SBJV;SG;3;FUT
chiqarmoq V;FRML;COND;SG;2;PRS
chiqarmoq V;COND;PL;2;PRS
chiqarmoq V;PROG;IND;PL;2;PRS
chiqarmoq V;COND;SG;1;PRS
chiqarmoq V;PROG;COND;PL;1;PRS
chiqarmoq V;PL;3;PRS
chiqarmoq V;IND;PL;1;PST
chiqarmoq V;IND;SG;3;PST
chiqarmoq V;PRF+PROG;COND;SG;3;PRS
chiqarmoq V;PFV;SBJV;SG;2;INFM;FUT
chiqarmoq V;IND;PL;3;PST
chiqarmoq V;PROG;IND;SG;2;INFM;PRS
chiqarmoq V;PRF+PROG;FRML;COND;SG;2;PRS
chiqarmoq V;PROG;FRML;IND;SG;2;PST
chiqarmoq V;PROG;FRML;IND;SG;2;FUT
chiqarmoq V;PROG;IND;PL;2;FUT
chiqarmoq V;PFV;IND;SG;1;PST
chiqarmoq V;PFV;FRML;SBJV;SG;2;FUT
chiqarmoq V;PFV;FH;SG;2
chiqarmoq V;PFV;IND;PL;1;PST
chiqarmoq V;COND;PL;1;PRS
chiqarmoq V;SG;3;PRS
chiqarmoq V;COND;PL;3;PRS
chiqarmoq V;PROG;IND;SG;3;FUT
chiqarmoq V;PFV;SBJV;PL;1;FUT
chiqarmoq V;FRML;SG;2;PRS
chiqarmoq V;PRF+PROG;COND;PL;1;PRS
chiqarmoq V;PRF+PROG;COND;SG;1;PRS
chiqarmoq V;PRF;FRML;SBJV;SG;2;PRS
chiqarmoq V;IND;PL;2;PST
chiqarmoq V;PFV;FH;SG;1
chiqarmoq V;PL;2;PRS
chiqarmoq V;PRF;SBJV;SG;3;PRS
chiqarmoq V;PROG;IND;SG;2;INFM;FUT
chiqarmoq V;PFV;SBJV;SG;1;FUT
chiqarmoq V;PROG;IND;PL;3;PRS
chiqarmoq V;PFV;FH;SG;3
chiqarmoq V;PFV;IND;PL;2;PST
chiqarmoq V;PFV;FRML;IND;SG;2;PST
chiqarmoq V;PROG;IND;PL;3;PST
chiqarmoq V;PROG;IND;SG;3;PST
chiqarmoq V;PFV;FH;PL;1
chiqarmoq V;PROG;IND;PL;1;FUT
chiqarmoq V;PROG;IND;SG;2;INFM;PST
chiqarmoq V;PROG;IND;SG;3;PRS
chiqarmoq V;PRF;SBJV;PL;1;PRS
chiqarmoq V;PRF+PROG;COND;PL;3;PRS
chiqarmoq V;FRML;IND;SG;2;PST
chiqarmoq V;PFV;FH;PL;2
chiqarmoq V;PROG;COND;SG;2;PRS
qochmoq V;PROG;COND;SG;3;PRS
qochmoq V;PRF+PROG;FRML;COND;SG;2;PRS
qochmoq V;IND;SG;2;INFM;PST
qochmoq V;SBJV;PL;1;PRS
qochmoq V;PROG;IND;SG;1;FUT
qochmoq V;PFV;SBJV;SG;1;FUT
qochmoq V;PROG;COND;PL;3;PRS
qochmoq V;PROG;IND;SG;1;PRS
qochmoq V;COND;PL;3;PRS
qochmoq V;IND;PL;1;PST
qochmoq V;FRML;COND;SG;2;PRS
qochmoq V;PFV;FH;PL;1
qochmoq V;PROG;COND;SG;1;PRS
qochmoq V;PFV;IND;SG;2;INFM;PST
qochmoq V;PFV;SBJV;PL;1;FUT
qochmoq V;PFV;IND;SG;1;PST
qochmoq V;SBJV;SG;3;PRS
qochmoq V;PRF;SBJV;PL;3;PRS
qochmoq V;PFV;FH;SG;2
qochmoq V;SBJV;SG;2;PRS
qochmoq V;PRF;SBJV;PL;2;PRS
qochmoq V;FRML;SBJV;SG;2;PRS
qochmoq V;PRF;SBJV;PL;1;PRS
qochmoq V;SBJV;SG;1;PRS
qochmoq V;PFV;FRML;SBJV;SG;2;FUT
qochmoq V;PROG;IND;SG;2;INFM;FUT
qochmoq V;PFV;FH;SG;3
qochmoq V;SBJV;PL;3;PRS
qochmoq V;PRF+PROG;COND;PL;3;PRS
qochmoq V;SG;3;PRS
qochmoq V;FRML;SG;2;PRS
qochmoq V;PL;3;PRS
qochmoq V;PFV;SBJV;PL;2;FUT
qochmoq V;COND;SG;3;PRS
qochmoq V;PROG;FRML;COND;SG;2;PRS
qochmoq V;PFV;FH;SG;1
qochmoq V;PRF+PROG;COND;SG;3;PRS
qochmoq V;FRML;IND;SG;2;PST
qochmoq V;PROG;IND;SG;2;INFM;PST
qochmoq V;SG;2;INFM;PRS
qochmoq V;IND;SG;3;PST
qochmoq V;PROG;FRML;IND;SG;2;PST
qochmoq V;PROG;IND;PL;3;FUT
qochmoq V;COND;PL;1;PRS
qochmoq V;SG;1;PRS
qochmoq V;PROG;IND;SG;2;INFM;PRS
qochmoq V;PFV;SBJV;SG;3;FUT
qochmoq V;PROG;IND;PL;2;PRS
qochmoq V;PRF;SBJV;SG;3;PRS
qochmoq V;PROG;IND;PL;2;FUT
qochmoq V;PFV;IND;PL;2;PST
qochmoq V;PROG;IND;PL;1;PRS
qochmoq V;COND;PL;2;PRS
qochmoq V;PROG;IND;PL;1;FUT
qochmoq V;PROG;IND;SG;1;PST
qochmoq V;PRF+PROG;COND;SG;1;PRS
qochmoq V;PFV;IND;SG;3;PST
qochmoq V;PFV;FH;PL;3
qochmoq V;PRF;SBJV;SG;1;PRS
qochmoq V;PRF;FRML;SBJV;SG;2;PRS
qochmoq V;PROG;FRML;IND;SG;2;PRS
qochmoq V;IND;SG;1;PST
qochmoq V;PROG;IND;PL;3;PRS
qochmoq V;SBJV;PL;2;PRS
qochmoq V;PRF+PROG;COND;PL;1;PRS
qochmoq V;PROG;COND;SG;2;PRS
qochmoq V;PFV;IND;PL;1;PST
qochmoq V;PROG;IND;SG;3;FUT
qochmoq V;PFV;FRML;FH;SG;2
qochmoq V;PFV;SBJV;PL;3;FUT
qochmoq V;PROG;IND;PL;3;PST
qochmoq V;PROG;IND;SG;3;PST
qochmoq V;IND;PL;3;PST
qochmoq V;PROG;FRML;IND;SG;2;FUT
qochmoq V;PFV;SBJV;SG;2;INFM;FUT
qochmoq V;COND;SG;2;INFM;PRS
qochmoq V;PRF+PROG;COND;PL;2;PRS
qochmoq V;PROG;COND;PL;1;PRS
qochmoq V;PROG;IND;SG;3;PRS
qochmoq V;PL;1;PRS
qochmoq V;PROG;IND;PL;1;PST
qochmoq V;PFV;FRML;IND;SG;2;PST
qochmoq V;PROG;IND;PL;2;PST
qochmoq V;PRF;SBJV;SG;2;INFM;PRS
qochmoq V;IND;PL;2;PST
qochmoq V;PL;2;PRS
qochmoq V;PROG;COND;PL;2;PRS
qochmoq V;PRF+PROG;COND;SG;2;INFM;PRS
qochmoq V;PFV;IND;PL;3;PST
qochmoq V;COND;SG;1;PRS
qochmoq V;PFV;FH;PL;2
ayblamoq V;PFV;FH;PL;3
ayblamoq V;PROG;COND;SG;3;PRS
ayblamoq V;PROG;IND;PL;2;FUT
ayblamoq V;PROG;IND;PL;2;PST
ayblamoq V;PROG;IND;SG;2;INFM;PST
ayblamoq V;FRML;IND;SG;2;PST
ayblamoq V;PRF+PROG;COND;SG;3;PRS
ayblamoq V;PROG;IND;SG;2;INFM;FUT
ayblamoq V;PROG;FRML;IND;SG;2;PRS
ayblamoq V;PRF;SBJV;SG;1;PRS
ayblamoq V;PRF;SBJV;SG;3;PRS
ayblamoq V;PROG;IND;PL;1;PST
ayblamoq V;PROG;IND;SG;2;INFM;PRS
ayblamoq V;PROG;COND;PL;1;PRS
ayblamoq V;PROG;IND;PL;3;PRS
ayblamoq V;PFV;SBJV;SG;2;INFM;FUT
ayblamoq V;PROG;COND;SG;1;PRS
ayblamoq V;PRF;SBJV;PL;3;PRS
ayblamoq V;PFV;FRML;IND;SG;2;PST
ayblamoq V;SG;3;PRS
ayblamoq V;IND;PL;3;PST
ayblamoq V;IND;PL;2;PST
ayblamoq V;PFV;IND;SG;3;PST
ayblamoq V;PFV;IND;PL;2;PST
ayblamoq V;PRF+PROG;COND;SG;2;INFM;PRS
ayblamoq V;PROG;FRML;IND;SG;2;PST
ayblamoq V;PL;2;PRS
ayblamoq V;PFV;FRML;SBJV;SG;2;FUT
ayblamoq V;COND;SG;3;PRS
ayblamoq V;PROG;IND;SG;3;PRS
ayblamoq V;PFV;FH;SG;1
ayblamoq V;PROG;IND;SG;1;PST
ayblamoq V;PROG;IND;SG;1;FUT
ayblamoq V;PROG;IND;SG;3;FUT
ayblamoq V;PFV;IND;SG;1;PST
ayblamoq V;SG;2;INFM;PRS
ayblamoq V;PROG;IND;SG;3;PST
ayblamoq V;FRML;COND;SG;2;PRS
ayblamoq V;PFV;FH;PL;1
ayblamoq V;COND;SG;1;PRS
ayblamoq V;IND;SG;1;PST
ayblamoq V;PFV;IND;PL;3;PST
ayblamoq V;PFV;FRML;FH;SG;2
ayblamoq V;PRF+PROG;COND;PL;2;PRS
ayblamoq V;PFV;IND;SG;2;INFM;PST
ayblamoq V;PRF;SBJV;PL;1;PRS
ayblamoq V;IND;SG;3;PST
ayblamoq V;IND;PL;1;PST
ayblamoq V;PFV;SBJV;SG;3;FUT
ayblamoq V;PRF;SBJV;PL;2;PRS
ayblamoq V;PRF;FRML;SBJV;SG;2;PRS
ayblamoq V;PROG;COND;SG;2;PRS
ayblamoq V;COND;PL;1;PRS
ayblamoq V;PFV;SBJV;PL;3;FUT
ayblamoq V;PROG;IND;PL;2;PRS
ayblamoq V;PRF+PROG;FRML;COND;SG;2;PRS
ayblamoq V;FRML;SG;2;PRS
ayblamoq V;PL;1;PRS
ayblamoq V;COND;PL;3;PRS
ayblamoq V;PROG;FRML;IND;SG;2;FUT
ayblamoq V;PFV;SBJV;PL;2;FUT
ayblamoq V;COND;SG;2;INFM;PRS
ayblamoq V;PFV;IND;PL;1;PST
ayblamoq V;PROG;IND;SG;1;PRS
ayblamoq V;PROG;IND;PL;1;FUT
ayblamoq V;IND;SG;2;INFM;PST
ayblamoq V;PROG;IND;PL;3;FUT
ayblamoq V;PFV;FH;PL;2
ayblamoq V;PFV;FH;SG;2
ayblamoq V;PFV;SBJV;PL;1;FUT
ayblamoq V;PRF+PROG;COND;PL;1;PRS
ayblamoq V;PFV;SBJV;SG;1;FUT
ayblamoq V;PFV;FH;SG;3
ayblamoq V;PRF+PROG;COND;SG;1;PRS
ayblamoq V;PROG;IND;PL;1;PRS
ayblamoq V;SG;1;PRS
ayblamoq V;PL;3;PRS
ayblamoq V;PROG;COND;PL;3;PRS
ayblamoq V;PRF;SBJV;SG;2;INFM;PRS
ayblamoq V;PROG;IND;PL;3;PST
ayblamoq V;PRF+PROG;COND;PL;3;PRS
ayblamoq V;COND;PL;2;PRS
qaramoq V;PROG;COND;PL;2;PRS
qaramoq V;PROG;IND;SG;1;PRS
qaramoq V;PROG;IND;PL;2;FUT
qaramoq V;PROG;COND;SG;1;PRS
qaramoq V;PRF;SBJV;PL;2;PRS
qaramoq V;PFV;SBJV;PL;3;FUT
qaramoq V;PRF;SBJV;SG;1;PRS
qaramoq V;PFV;SBJV;SG;1;FUT
qaramoq V;COND;PL;3;PRS
qaramoq V;PFV;IND;SG;3;PST
qaramoq V;COND;SG;2;INFM;PRS
qaramoq V;PFV;IND;PL;3;PST
qaramoq V;PRF+PROG;COND;PL;2;PRS
qaramoq V;PRF+PROG;COND;PL;1;PRS
qaramoq V;PFV;IND;SG;2;INFM;PST
qaramoq V;PRF+PROG;COND;SG;2;INFM;PRS
qaramoq V;PFV;SBJV;SG;2;INFM;FUT
qaramoq V;PROG;IND;SG;1;FUT
qaramoq V;SBJV;PL;1;PRS
qaramoq V;PRF;SBJV;SG;2;INFM;PRS
qaramoq V;PROG;FRML;IND;SG;2;FUT
qaramoq V;SG;3;PRS
qaramoq V;PROG;IND;PL;3;FUT
qaramoq V;PROG;IND;SG;3;PRS
qaramoq V;COND;SG;1;PRS
qaramoq V;PFV;FRML;IND;SG;2;PST
qaramoq V;PROG;IND;PL;2;PRS
qaramoq V;PFV;SBJV;SG;3;FUT
qaramoq V;PFV;IND;PL;2;PST
qaramoq V;PROG;COND;PL;3;PRS
qaramoq V;PROG;IND;SG;3;PST
qaramoq V;PROG;IND;PL;1;PRS
qaramoq V;PROG;IND;PL;3;PRS
qaramoq V;PRF+PROG;COND;SG;3;PRS
qaramoq V;PROG;IND;SG;3;FUT
qaramoq V;PROG;COND;PL;1;PRS
qaramoq V;PL;1;PRS
qaramoq V;PROG;IND;SG;2;INFM;FUT
qaramoq V;PL;2;PRS
qaramoq V;SBJV;PL;3;PRS
qaramoq V;PRF;SBJV;PL;3;PRS
qaramoq V;PRF;SBJV;SG;3;PRS
qaramoq V;IND;SG;2;INFM;PST
qaramoq V;PFV;FH;PL;1
qaramoq V;PROG;IND;PL;2;PST
qaramoq V;PRF;FRML;SBJV;SG;2;PRS
qaramoq V;IND;PL;2;PST
qaramoq V;PROG;IND;SG;1;PST
qaramoq V;PROG;COND;SG;2;PRS
qaramoq V;PROG;FRML;IND;SG;2;PST
qaramoq V;SBJV;SG;1;PRS
qaramoq V;FRML;SBJV;SG;2;PRS
qaramoq V;PROG;IND;SG;2;INFM;PST
qaramoq V;PRF+PROG;COND;PL;3;PRS
qaramoq V;IND;PL;3;PST
qaramoq V;PROG;COND;SG;3;PRS
qaramoq V;PFV;IND;PL;1;PST
qaramoq V;COND;PL;2;PRS
qaramoq V;PROG;FRML;COND;SG;2;PRS
qaramoq V;IND;SG;1;PST
qaramoq V;PFV;FH;SG;3
qaramoq V;PFV;IND;SG;1;PST
qaramoq V;COND;PL;1;PRS
qaramoq V;PFV;SBJV;PL;1;FUT
qaramoq V;PFV;FH;SG;1
qaramoq V;PFV;FH;SG;2
qaramoq V;SG;2;INFM;PRS
qaramoq V;PFV;FH;PL;2
qaramoq V;PROG;IND;PL;3;PST
qaramoq V;SBJV;PL;2;PRS
qaramoq V;COND;SG;3;PRS
qaramoq V;IND;PL;1;PST
qaramoq V;SG;1;PRS
qaramoq V;PROG;IND;PL;1;FUT
qaramoq V;FRML;IND;SG;2;PST
qaramoq V;PRF+PROG;FRML;COND;SG;2;PRS
qaramoq V;FRML;COND;SG;2;PRS
qaramoq V;PFV;FH;PL;3
qaramoq V;PROG;FRML;IND;SG;2;PRS
qaramoq V;FRML;SG;2;PRS
qaramoq V;PRF;SBJV;PL;1;PRS
qaramoq V;SBJV;SG;3;PRS
qaramoq V;PFV;FRML;FH;SG;2
qaramoq V;PFV;FRML;SBJV;SG;2;FUT
qaramoq V;PRF+PROG;COND;SG;1;PRS
qaramoq V;SBJV;SG;2;PRS
qaramoq V;PROG;IND;PL;1;PST
qaramoq V;PL;3;PRS
qaramoq V;IND;SG;3;PST
qaramoq V;PROG;IND;SG;2;INFM;PRS
qaramoq V;PFV;SBJV;PL;2;FUT
baqirmoq V;IND;SG;1;PST
baqirmoq V;PROG;IND;PL;3;FUT
baqirmoq V;PROG;IND;PL;3;PRS
baqirmoq V;PROG;IND;SG;2;INFM;FUT
baqirmoq V;PFV;IND;SG;2;INFM;PST
baqirmoq V;PRF;SBJV;SG;1;PRS
baqirmoq V;PROG;IND;SG;3;PST
baqirmoq V;IND;PL;1;PST
baqirmoq V;IND;SG;2;INFM;PST
baqirmoq V;PRF+PROG;COND;SG;3;PRS
baqirmoq V;PROG;IND;PL;1;FUT
baqirmoq V;PROG;COND;SG;3;PRS
baqirmoq V;PFV;SBJV;SG;1;FUT
baqirmoq V;PRF;SBJV;PL;2;PRS
baqirmoq V;COND;PL;3;PRS
baqirmoq V;PRF+PROG;COND;PL;1;PRS
baqirmoq V;PRF;SBJV;PL;3;PRS
baqirmoq V;PFV;FH;PL;1
baqirmoq V;COND;PL;2;PRS
baqirmoq V;PRF+PROG;COND;PL;2;PRS
baqirmoq V;FRML;COND;SG;2;PRS
baqirmoq V;PRF+PROG;FRML;COND;SG;2;PRS
baqirmoq V;PRF+PROG;COND;SG;1;PRS
baqirmoq V;PROG;COND;PL;3;PRS
baqirmoq V;PROG;IND;PL;1;PST
baqirmoq V;PROG;IND;SG;3;PRS
baqirmoq V;PROG;FRML;IND;SG;2;PST
baqirmoq V;PROG;FRML;IND;SG;2;FUT
baqirmoq V;PFV;FH;SG;2
baqirmoq V;PROG;COND;PL;1;PRS
baqirmoq V;FRML;SG;2;PRS
baqirmoq V;PROG;IND;SG;1;PST
baqirmoq V;PRF;SBJV;SG;3;PRS
baqirmoq V;PFV;IND;SG;1;PST
baqirmoq V;PROG;IND;SG;2;INFM;PST
baqirmoq V;PFV;FRML;FH;SG;2
baqirmoq V;PFV;FH;SG;3
baqirmoq V;IND;SG;3;PST
baqirmoq V;PFV;SBJV;SG;3;FUT
baqirmoq V;PFV;FH;PL;2
baqirmoq V;PFV;SBJV;SG;2;INFM;FUT
baqirmoq V;IND;PL;2;PST
baqirmoq V;PL;1;PRS
baqirmoq V;PROG;IND;SG;1;FUT
baqirmoq V;PROG;IND;SG;3;FUT
baqirmoq V;PFV;IND;PL;3;PST
baqirmoq V;PROG;IND;PL;3;PST
baqirmoq V;PFV;SBJV;PL;1;FUT
baqirmoq V;PROG;IND;PL;2;PST
baqirmoq V;PROG;IND;SG;1;PRS
baqirmoq V;PROG;FRML;IND;SG;2;PRS
baqirmoq V;PFV;IND;PL;1;PST
baqirmoq V;PRF;SBJV;SG;2;INFM;PRS
baqirmoq V;PFV;FH;PL;3
baqirmoq V;IND;PL;3;PST
baqirmoq V;PRF+PROG;COND;SG;2;INFM;PRS
baqirmoq V;PROG;IND;PL;2;FUT
baqirmoq V;FRML;IND;SG;2;PST
baqirmoq V;COND;SG;1;PRS
baqirmoq V;PROG;IND;SG;2;INFM;PRS
baqirmoq V;PL;3;PRS
baqirmoq V;PL;2;PRS
baqirmoq V;SG;1;PRS
baqirmoq V;PRF;SBJV;PL;1;PRS
baqirmoq V;PROG;COND;SG;2;PRS
baqirmoq V;PRF+PROG;COND;PL;3;PRS
baqirmoq V;PFV;FRML;IND;SG;2;PST
baqirmoq V;COND;PL;1;PRS
baqirmoq V;PROG;IND;PL;1;PRS
baqirmoq V;COND;SG;3;PRS
baqirmoq V;PFV;SBJV;PL;2;FUT
baqirmoq V;PFV;FH;SG;1
baqirmoq V;PROG;IND;PL;2;PRS
baqirmoq V;PROG;COND;SG;1;PRS
baqirmoq V;SG;3;PRS
baqirmoq V;PRF;FRML;SBJV;SG;2;PRS
baqirmoq V;PFV;SBJV;PL;3;FUT
baqirmoq V;COND;SG;2;INFM;PRS
baqirmoq V;PFV;IND;SG;3;PST
baqirmoq V;PFV;IND;PL;2;PST
baqirmoq V;PFV;FRML;SBJV;SG;2;FUT
baqirmoq V;SG;2;INFM;PRS
ko'tarib yurmoq V;PRF+PROG;COND;PL;1;PRS
ko'tarib yurmoq V;PFV;FRML;FH;SG;2
ko'tarib yurmoq V;PROG;IND;PL;3;PST
ko'tarib yurmoq V;PFV;FH;PL;3
ko'tarib yurmoq V;PFV;SBJV;SG;3;FUT
ko'tarib yurmoq V;PRF;SBJV;SG;1;PRS
ko'tarib yurmoq V;PL;2;PRS
ko'tarib yurmoq V;PRF+PROG;COND;PL;2;PRS
ko'tarib yurmoq V;PRF+PROG;COND;SG;2;INFM;PRS
ko'tarib yurmoq V;SG;1;PRS
ko'tarib yurmoq V;PRF;SBJV;PL;2;PRS
ko'tarib yurmoq V;PROG;COND;PL;3;PRS
ko'tarib yurmoq V;PFV;SBJV;PL;2;FUT
ko'tarib yurmoq V;PRF;FRML;SBJV;SG;2;PRS
ko'tarib yurmoq V;IND;PL;3;PST
ko'tarib yurmoq V;FRML;IND;SG;2;PST
ko'tarib yurmoq V;PFV;FH;SG;2
ko'tarib yurmoq V;PROG;IND;PL;3;FUT
ko'tarib yurmoq V;PROG;IND;PL;1;FUT
ko'tarib yurmoq V;IND;PL;2;PST
ko'tarib yurmoq V;PROG;IND;PL;1;PST
ko'tarib yurmoq V;PFV;IND;PL;3;PST
ko'tarib yurmoq V;PFV;FRML;IND;SG;2;PST
ko'tarib yurmoq V;PRF+PROG;FRML;COND;SG;2;PRS
ko'tarib yurmoq V;COND;SG;1;PRS
ko'tarib yurmoq V;IND;SG;3;PST
ko'tarib yurmoq V;PFV;FH;SG;3
ko'tarib yurmoq V;PROG;IND;SG;1;FUT
ko'tarib yurmoq V;PFV;SBJV;SG;2;INFM;FUT
ko'tarib yurmoq V;PROG;FRML;IND;SG;2;PST
ko'tarib yurmoq V;PROG;IND;SG;1;PRS
ko'tarib yurmoq V;FRML;SG;2;PRS
ko'tarib yurmoq V;PFV;IND;SG;2;INFM;PST
ko'tarib yurmoq V;PROG;IND;PL;2;PRS
ko'tarib yurmoq V;FRML;COND;SG;2;PRS
ko'tarib yurmoq V;PFV;FH;PL;2
ko'tarib yurmoq V;IND;PL;1;PST
ko'tarib yurmoq V;COND;PL;2;PRS
ko'tarib yurmoq V;PROG;COND;SG;2;PRS
ko'tarib yurmoq V;PROG;IND;SG;3;PRS
ko'tarib yurmoq V;PFV;FH;PL;1
ko'tarib yurmoq V;PROG;COND;SG;1;PRS
ko'tarib yurmoq V;SG;2;INFM;PRS
ko'tarib yurmoq V;PROG;IND;SG;3;PST
ko'tarib yurmoq V;IND;SG;2;INFM;PST
ko'tarib yurmoq V;PRF;SBJV;SG;3;PRS
ko'tarib yurmoq V;IND;SG;1;PST
ko'tarib yurmoq V;PROG;IND;PL;2;FUT
ko'tarib yurmoq V;PL;1;PRS
ko'tarib yurmoq V;PROG;COND;SG;3;PRS
ko'tarib yurmoq V;PRF+PROG;COND;SG;1;PRS
ko'tarib yurmoq V;PROG;COND;PL;1;PRS
ko'tarib yurmoq V;PFV;IND;SG;1;PST
ko'tarib yurmoq V;COND;PL;1;PRS
ko'tarib yurmoq V;PRF+PROG;COND;PL;3;PRS
ko'tarib yurmoq V;PROG;IND;SG;2;INFM;PRS
ko'tarib yurmoq V;PROG;FRML;IND;SG;2;PRS
ko'tarib yurmoq V;COND;PL;3;PRS
ko'tarib yurmoq V;PRF+PROG;COND;SG;3;PRS
ko'tarib yurmoq V;PROG;FRML;IND;SG;2;FUT
ko'tarib yurmoq V;PFV;FH;SG;1
ko'tarib yurmoq V;PRF;SBJV;PL;3;PRS
ko'tarib yurmoq V;PROG;IND;PL;3;PRS
ko'tarib yurmoq V;SG;3;PRS
ko'tarib yurmoq V;PFV;SBJV;PL;1;FUT
ko'tarib yurmoq V;PFV;IND;SG;3;PST
ko'tarib yurmoq V;PROG;IND;PL;1;PRS
ko'tarib yurmoq V;PROG;IND;SG;3;FUT
ko'tarib yurmoq V;PFV;FRML;SBJV;SG;2;FUT
ko'tarib yurmoq V;PFV;IND;PL;1;PST
ko'tarib yurmoq V;PROG;IND;SG;1;PST
ko'tarib yurmoq V;COND;SG;2;INFM;PRS
ko'tarib yurmoq V;PROG;IND;SG;2;INFM;FUT
ko'tarib yurmoq V;COND;SG;3;PRS
ko'tarib yurmoq V;PFV;SBJV;PL;3;FUT
ko'tarib yurmoq V;PL;3;PRS
ko'tarib yurmoq V;PRF;SBJV;PL;1;PRS
ko'tarib yurmoq V;PROG;IND;SG;2;INFM;PST
ko'tarib yurmoq V;PROG;IND;PL;2;PST
ko'tarib yurmoq V;PFV;IND;PL;2;PST
ko'tarib yurmoq V;PRF;SBJV;SG;2;INFM;PRS
ko'tarib yurmoq V;PFV;SBJV;SG;1;FUT
tegmoq V;COND;PL;2;PRS
tegmoq V;PRF;SBJV;PL;3;PRS
tegmoq V;PRF;SBJV;SG;3;PRS
tegmoq V;PROG;IND;SG;3;PST
tegmoq V;PROG;FRML;IND;SG;2;PRS
tegmoq V;IND;PL;3;PST
tegmoq V;PROG;COND;PL;1;PRS
tegmoq V;PFV;FH;SG;2
tegmoq V;IND;SG;2;INFM;PST
tegmoq V;PFV;FH;PL;2
tegmoq V;PFV;IND;SG;1;PST
tegmoq V;PROG;FRML;IND;SG;2;FUT
tegmoq V;PROG;IND;SG;1;FUT
tegmoq V;PROG;IND;PL;1;PST
tegmoq V;PROG;COND;SG;3;PRS
tegmoq V;PL;1;PRS
tegmoq V;SG;2;INFM;PRS
tegmoq V;PFV;IND;PL;2;PST
tegmoq V;IND;PL;2;PST
tegmoq V;PRF;FRML;SBJV;SG;2;PRS
tegmoq V;FRML;COND;SG;2;PRS
tegmoq V;PFV;SBJV;SG;1;FUT
tegmoq V;PRF+PROG;COND;PL;2;PRS
tegmoq V;PROG;COND;SG;1;PRS
tegmoq V;PRF+PROG;COND;PL;3;PRS
tegmoq V;PRF+PROG;COND;SG;3;PRS
tegmoq V;PFV;IND;SG;2;INFM;PST
tegmoq V;IND;SG;3;PST
tegmoq V;PFV;FH;PL;1
tegmoq V;COND;PL;1;PRS
tegmoq V;COND;PL;3;PRS
tegmoq V;PROG;COND;SG;2;PRS
tegmoq V;PFV;SBJV;PL;1;FUT
tegmoq V;PFV;FH;PL;3
tegmoq V;PROG;IND;PL;2;FUT
tegmoq V;PROG;IND;SG;2;INFM;FUT
tegmoq V;PROG;IND;PL;1;PRS
tegmoq V;PROG;IND;SG;2;INFM;PRS
tegmoq V;PROG;IND;SG;1;PRS
tegmoq V;PFV;SBJV;PL;2;FUT
tegmoq V;PFV;FRML;FH;SG;2
tegmoq V;PFV;IND;SG;3;PST
tegmoq V;PRF+PROG;COND;SG;1;PRS
tegmoq V;SG;3;PRS
tegmoq V;PFV;IND;PL;3;PST
tegmoq V;PRF+PROG;FRML;COND;SG;2;PRS
tegmoq V;PRF+PROG;COND;SG;2;INFM;PRS
tegmoq V;PRF;SBJV;SG;2;INFM;PRS
tegmoq V;FRML;IND;SG;2;PST
tegmoq V;SG;1;PRS
tegmoq V;PFV;FRML;SBJV;SG;2;FUT
tegmoq V;PL;2;PRS
tegmoq V;PROG;FRML;IND;SG;2;PST
tegmoq V;PROG;IND;SG;2;INFM;PST
tegmoq V;PL;3;PRS
tegmoq V;PROG;IND;PL;2;PRS
tegmoq V;PFV;FRML;IND;SG;2;PST
tegmoq V;PROG;IND;SG;1;PST
tegmoq V;PFV;SBJV;SG;3;FUT
tegmoq V;PFV;SBJV;SG;2;INFM;FUT
tegmoq V;PROG;IND;SG;3;FUT
tegmoq V;PFV;IND;PL;1;PST
tegmoq V;PROG;IND;PL;1;FUT
tegmoq V;COND;SG;3;PRS
tegmoq V;PFV;SBJV;PL;3;FUT
tegmoq V;PROG;IND;SG;3;PRS
tegmoq V;COND;SG;1;PRS
tegmoq V;PROG;IND;PL;2;PST
tegmoq V;IND;PL;1;PST
tegmoq V;PROG;IND;PL;3;PST
tegmoq V;COND;SG;2;INFM;PRS
tegmoq V;PRF;SBJV;PL;1;PRS
tegmoq V;PROG;IND;PL;3;FUT
tegmoq V;PROG;IND;PL;3;PRS
tegmoq V;IND;SG;1;PST
tegmoq V;PRF;SBJV;SG;1;PRS
tegmoq V;PRF+PROG;COND;PL;1;PRS
tegmoq V;PRF;SBJV;PL;2;PRS
tegmoq V;PFV;FH;SG;1
tegmoq V;FRML;SG;2;PRS
tegmoq V;PROG;COND;PL;3;PRS
tegmoq V;PFV;FH;SG;3
langar tashlamoq V;COND;SG;1;PRS
langar tashlamoq V;PRF+PROG;COND;PL;2;PRS
langar tashlamoq V;PFV;SBJV;PL;3;FUT
langar tashlamoq V;PRF+PROG;COND;PL;3;PRS
langar tashlamoq V;PFV;SBJV;PL;1;FUT
langar tashlamoq V;PROG;IND;PL;1;PRS
langar tashlamoq V;PFV;IND;PL;3;PST
langar tashlamoq V;PROG;IND;SG;1;PRS
langar tashlamoq V;PROG;COND;PL;3;PRS
langar tashlamoq V;PRF+PROG;COND;SG;2;INFM;PRS
langar tashlamoq V;PROG;FRML;IND;SG;2;FUT
langar tashlamoq V;PRF+PROG;COND;PL;1;PRS
langar tashlamoq V;PROG;COND;SG;2;PRS
langar tashlamoq V;PRF+PROG;COND;SG;3;PRS
langar tashlamoq V;IND;SG;1;PST
langar tashlamoq V;IND;PL;2;PST
langar tashlamoq V;PROG;IND;SG;2;INFM;FUT
langar tashlamoq V;PROG;FRML;IND;SG;2;PST
langar tashlamoq V;PROG;IND;SG;3;PRS
langar tashlamoq V;PRF;SBJV;PL;1;PRS
langar tashlamoq V;PROG;IND;PL;1;FUT
langar tashlamoq V;PFV;IND;PL;1;PST
langar tashlamoq V;PROG;IND;SG;2;INFM;PST
langar tashlamoq V;PROG;IND;PL;3;PST
langar tashlamoq V;SG;1;PRS
langar tashlamoq V;PROG;IND;PL;3;FUT
langar tashlamoq V;PROG;IND;SG;3;FUT
langar tashlamoq V;FRML;COND;SG;2;PRS
langar tashlamoq V;PFV;FH;PL;2
langar tashlamoq V;PROG;IND;PL;1;PST
langar tashlamoq V;PRF+PROG;COND;SG;1;PRS
langar tashlamoq V;COND;PL;2;PRS
langar tashlamoq V;PROG;COND;SG;3;PRS
langar tashlamoq V;FRML;IND;SG;2;PST
langar tashlamoq V;PRF;FRML;SBJV;SG;2;PRS
langar tashlamoq V;IND;SG;3;PST
langar tashlamoq V;PRF;SBJV;PL;3;PRS
langar tashlamoq V;FRML;SG;2;PRS
langar tashlamoq V;PRF+PROG;FRML;COND;SG;2;PRS
langar tashlamoq V;PROG;IND;PL;2;FUT
langar tashlamoq V;IND;PL;3;PST
langar tashlamoq V;PRF;SBJV;SG;1;PRS
langar tashlamoq V;PROG;IND;PL;2;PRS
langar tashlamoq V;PFV;IND;SG;2;INFM;PST
langar tashlamoq V;PROG;IND;SG;3;PST
langar tashlamoq V;PFV;FH;PL;1
langar tashlamoq V;COND;PL;1;PRS
langar tashlamoq V;PFV;FH;SG;2
langar tashlamoq V;PFV;SBJV;SG;3;FUT
langar tashlamoq V;PFV;IND;PL;2;PST
langar tashlamoq V;SG;2;INFM;PRS
langar tashlamoq V;PRF;SBJV;SG;3;PRS
langar tashlamoq V;COND;PL;3;PRS
langar tashlamoq V;PFV;FRML;FH;SG;2
langar tashlamoq V;PRF;SBJV;PL;2;PRS
langar tashlamoq V;PROG;IND;PL;3;PRS
langar tashlamoq V;PFV;FH;SG;3
langar tashlamoq V;PL;2;PRS
langar tashlamoq V;PFV;SBJV;SG;1;FUT
langar tashlamoq V;PRF;SBJV;SG;2;INFM;PRS
langar tashlamoq V;PFV;SBJV;SG;2;INFM;FUT
langar tashlamoq V;PFV;IND;SG;1;PST
langar tashlamoq V;PL;3;PRS
langar tashlamoq V;PFV;FRML;IND;SG;2;PST
langar tashlamoq V;COND;SG;3;PRS
langar tashlamoq V;SG;3;PRS
langar tashlamoq V;PFV;SBJV;PL;2;FUT
langar tashlamoq V;PROG;IND;SG;2;INFM;PRS
langar tashlamoq V;PROG;IND;PL;2;PST
langar tashlamoq V;PROG;FRML;IND;SG;2;PRS
langar tashlamoq V;PL;1;PRS
langar tashlamoq V;PROG;COND;PL;1;PRS
langar tashlamoq V;IND;PL;1;PST
langar tashlamoq V;COND;SG;2;INFM;PRS
langar tashlamoq V;PROG;IND;SG;1;PST
langar tashlamoq V;PFV;FH;SG;1
langar tashlamoq V;PROG;COND;SG;1;PRS
langar tashlamoq V;PFV;IND;SG;3;PST
langar tashlamoq V;IND;SG;2;INFM;PST
langar tashlamoq V;PFV;FH;PL;3
langar tashlamoq V;PFV;FRML;SBJV;SG;2;FUT
langar tashlamoq V;PROG;IND;SG;1;FUT
bo'shatmoq V;COND;PL;3;PRS
bo'shatmoq V;IND;PL;2;PST
bo'shatmoq V;PROG;COND;PL;2;PRS
bo'shatmoq V;IND;SG;1;PST
bo'shatmoq V;PROG;IND;SG;2;INFM;PST
bo'shatmoq V;PROG;IND;SG;3;FUT
bo'shatmoq V;PFV;FRML;SBJV;SG;2;FUT
bo'shatmoq V;PL;3;PRS
bo'shatmoq V;PROG;COND;SG;2;PRS
bo'shatmoq V;PL;2;PRS
bo'shatmoq V;PFV;FH;PL;2
bo'shatmoq V;PROG;IND;PL;2;PST
bo'shatmoq V;PRF+PROG;COND;PL;2;PRS
bo'shatmoq V;PROG;COND;SG;1;PRS
bo'shatmoq V;COND;SG;2;INFM;PRS
bo'shatmoq V;PFV;IND;SG;1;PST
bo'shatmoq V;PFV;FH;PL;3
bo'shatmoq V;PL;1;PRS
bo'shatmoq V;PROG;IND;SG;1;PRS
bo'shatmoq V;PRF;SBJV;SG;1;PRS
bo'shatmoq V;PROG;COND;PL;1;PRS
bo'shatmoq V;PROG;FRML;IND;SG;2;FUT
bo'shatmoq V;PROG;IND;PL;1;PST
bo'shatmoq V;FRML;IND;SG;2;PST
bo'shatmoq V;PFV;FH;SG;3
bo'shatmoq V;PFV;SBJV;SG;3;FUT
bo'shatmoq V;PFV;FH;PL;1
bo'shatmoq V;SBJV;SG;1;PRS
bo'shatmoq V;PROG;IND;SG;1;FUT
bo'shatmoq V;PRF;SBJV;PL;2;PRS
bo'shatmoq V;PFV;FRML;FH;SG;2
bo'shatmoq V;PFV;IND;PL;2;PST
bo'shatmoq V;PFV;FH;SG;2
bo'shatmoq V;FRML;SBJV;SG;2;PRS
bo'shatmoq V;PROG;IND;PL;3;PRS
bo'shatmoq V;PRF+PROG;COND;SG;2;INFM;PRS
bo'shatmoq V;PROG;COND;SG;3;PRS
bo'shatmoq V;COND;PL;1;PRS
bo'shatmoq V;SG;2;INFM;PRS
bo'shatmoq V;SBJV;SG;2;PRS
bo'shatmoq V;PRF+PROG;COND;PL;3;PRS
bo'shatmoq V;PROG;IND;PL;3;PST
bo'shatmoq V;PRF+PROG;FRML;COND;SG;2;PRS
bo'shatmoq V;PRF;FRML;SBJV;SG;2;PRS
bo'shatmoq V;IND;PL;1;PST
bo'shatmoq V;SBJV;PL;3;PRS
bo'shatmoq V;PROG;IND;SG;2;INFM;PRS
bo'shatmoq V;PRF+PROG;COND;PL;1;PRS
bo'shatmoq V;PROG;IND;PL;1;PRS
bo'shatmoq V;PFV;SBJV;PL;3;FUT
bo'shatmoq V;PROG;IND;PL;2;FUT
bo'shatmoq V;SBJV;PL;1;PRS
bo'shatmoq V;PROG;IND;SG;1;PST
bo'shatmoq V;PFV;FH;SG;1
bo'shatmoq V;COND;SG;3;PRS
bo'shatmoq V;PFV;IND;PL;3;PST
bo'shatmoq V;PRF+PROG;COND;SG;3;PRS
bo'shatmoq V;IND;SG;3;PST
bo'shatmoq V;PROG;IND;SG;3;PST
bo'shatmoq V;PROG;IND;PL;2;PRS
bo'shatmoq V;IND;PL;3;PST
bo'shatmoq V;COND;SG;1;PRS
bo'shatmoq V;IND;SG;2;INFM;PST
bo'shatmoq V;PROG;IND;PL;1;FUT
bo'shatmoq V;PFV;IND;SG;3;PST
bo'shatmoq V;PRF;SBJV;SG;2;INFM;PRS
bo'shatmoq V;PRF;SBJV;SG;3;PRS
bo'shatmoq V;PROG;COND;PL;3;PRS
bo'shatmoq V;PROG;IND;SG;2;INFM;FUT
bo'shatmoq V;PRF;SBJV;PL;3;PRS
bo'shatmoq V;PFV;SBJV;PL;1;FUT
bo'shatmoq V;COND;PL;2;PRS
bo'shatmoq V;FRML;COND;SG;2;PRS
bo'shatmoq V;PROG;FRML;IND;SG;2;PRS
bo'shatmoq V;SBJV;SG;3;PRS
bo'shatmoq V;SBJV;PL;2;PRS
bo'shatmoq V;PFV;IND;PL;1;PST
bo'shatmoq V;PROG;IND;PL;3;FUT
bo'shatmoq V;PROG;FRML;IND;SG;2;PST
bo'shatmoq V;SG;1;PRS
bo'shatmoq V;PRF;SBJV;PL;1;PRS
bo'shatmoq V;PFV;IND;SG;2;INFM;PST
bo'shatmoq V;PROG;IND;SG;3;PRS
bo'shatmoq V;PFV;FRML;IND;SG;2;PST
bo'shatmoq V;PFV;SBJV;SG;1;FUT
bo'shatmoq V;FRML;SG;2;PRS
bo'shatmoq V;PFV;SBJV;SG;2;INFM;FUT
bo'shatmoq V;PROG;FRML;COND;SG;2;PRS
bo'shatmoq V;PRF+PROG;COND;SG;1;PRS
bo'shatmoq V;PFV;SBJV;PL;2;FUT
bo'shatmoq V;SG;3;PRS
|
860f4777866fa7d5f730bb49f28c8dfa690aa29a | 82cdcedaf3c5229da7560895cc713520e3413f39 | /Códigos/Códigos Funcionais Scilab/Modelagem Funcional/cpg.sci | 5ec8b5dbb7970793e3c900cb15e9de76c1c9bae9 | [] | no_license | mpsdantas/cpg | 9b1ae66eeefb7f4cab970eab271ada56a673865c | aabd8a621131218d0ae68d5433caf70110c7b9e7 | refs/heads/master | 2021-03-22T04:40:28.689371 | 2018-03-12T22:58:25 | 2018-03-12T22:58:25 | 76,735,862 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,150 | sci | cpg.sci | tInicio = 0; // tempo de incio da simulação
tFim = 40; // tempo final da simulação
osciladores = 8; // número de osciladores
passo = 0.01; // intervalo de tempo entre cada interação da simulação
t = tInicio:passo:tFim
n = length(t);
R = [0.2 0.2 0.29132 0.2 0.2 0.2 0.2 0.2];
global r;
r = zeros(n,osciladores);
global m;
m = zeros(n,osciladores);
global X;
X = [0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0];
global x;
x = zeros(n,osciladores);
global exe;
exe = zeros(n,osciladores);
global FI;
FI = zeros(n,osciladores);
global tetha;
tetha = zeros(n,osciladores);
ar = 2;
ax = 2;
w = [10 10 10 10 10 10 10 10]
wij= [0 0.5 0 0 0 0 0 0;0 0 0.5 0 0 0 0 0;0 0 0 0.5 0 0 0 0;0.5 0 0 0 0 0 0 0; 0 0 0 0 0 0.5 0 05; 0 0 0 0 0.5 0 0.5 0; 0 0 0 0 0 0.5 0 0.5; 0 0 0 0 0.5 0 0.5 0];
phi = [0 %pi/2 0 0 0 0 0 0;0 0 %pi/2 0 0 0 0 0;0 0 0 %pi/2 0 0 0 0; %pi/2 0 0 0 0 0 0 0; 0 0 0 0 0 %pi/2 0 %pi/2; 0 0 0 0 %pi/2 0 %pi/2 0; 0 0 0 0 0 %pi/2 0 %pi/2; 0 0 0 0 %pi/2 0 %pi/2 0] // Matriz do deslocamento, exemplo se tivermos 12 osciladores teremos que ter 12 linhas e 12 colunas, 6, 6 linhas e 6 colunas.
//A seguinte função recebe uma matriz dr 1xn.
//Onde n é um número n>0 e corresponde ao número de osciladores
//A função devolve m onde m = dr.
function m = f(dr)
m = dr
endfunction
//A seguinte função recebe uma matriz dr 1xn.
//Onde n é um número n>0 e corresponde ao número de osciladores
//A função devolve m onde exe = dx.
function exe = p(dx)
exe = dx;
endfunction
//A seguinte função recebe:
//Um ar que é uma constante de amplitude determinada igual a 2rad/s
//Uma matriz R 1xn, onde n>0 e corresponde ao numero de osciladores, ar corresponde a amplitude max de cada oscilador.
//Um r 1xn, onde n>0 e corresponde ao numero de osciladores, r é amplitude em determinado t.
//Um m, 1xn, onde n> 0 e corresponde ao numero de osciladores, m é a derivada primeira da amplitude.
//Um n correspondente ao numero de osciladores
//A função devolve uma matriz 1xn, que correspondem as amplitudes dos osciladores em determinado tempo.
function dm = g(ar,R,r,m,n)
for i=1:n
dm(1,i) = ar.*((ar/4).*(R(i)-r(i)) - m(i))
end
endfunction
//A seguinte função recebe:
//Um ax que é uma constante de amplitude determinada igual a 2rad/s
//Uma matriz X 1xn, onde n>0 e corresponde ao numero de osciladores, ax corresponde ao deslocamento max
//Um x 1xn, onde n>0 e corresponde ao numero de osciladores, x é o deslocamento em determinado t.
//Um exe, 1xn, onde n> 0 e corresponde ao numero de osciladores, exe é a derivada primeira do deslocamento.
//Um n correspondente ao numero de osciladores
//A função devolve uma matriz 1xn, que correspondem aos deslocamentos dos osciladores em determinado tempo.
function dexe = v(ax,X,x,exe,n)
for i=1:n
dexe(1,i) = ax.*((ax/4).*(X(i)-x(i)) - exe(i))
end
endfunction
//A seguinte função recebe:
// Um n, n > 0, onde n corresponde ao numero de osciladores.
// A função devolve uma matriz nxn
function w=gerarMatrizW(n)
for i=1:n
for j=1:n
if (i==j) then
w(i,j) = 0;
else
w(i,j) = 0.5;
end
end
end
endfunction
//A seguinte função recebe:
// w uma matriz 1xn, onde n é o numero de osciladores.
// wij uma matriz nxn, onde n>0, n corresponde ao numero de osciladores.
// r, uma matriz 1xn, onde n corresponde ao numero de osciladores.
// fi, uma matriz 1xn onde n corresponde ao numero de osciladores.
// phi uma matriz nxn onde n corresponde ao numero de osciladores.
// n, n>0 n corresponde ao numero de osciladores
// A função devolve uma matriz 1xn onde n corresponde ao numero de osciladores.
function dphi = h(w, wij,r,fi,phi,n)
for i=1:n
dphi(1,i) = w(i);
for j=1:n
dphi(1,i) = dphi(1,i) + wij(i,j)*r(1,j)*sin(fi(1,j)- fi(1,i) - phi(i,j));
end
end
endfunction
//A seguinte função recebe:
//Um ar que é uma constante de amplitude determinada igual a 2rad/s
//Uma matriz R 1xn, onde n>0 e corresponde ao numero de osciladores, ar corresponde a amplitude max de cada oscilador.
//Um r0 1xn, onde n>0 e corresponde ao numero de osciladores, r0 são o conjunto de condições iniciais da amplitude.
//Um m0, 1xn, onde n> 0 e corresponde ao numero de osciladores, m0 é o conjunto de condições iniciais da primeira derivada
//Um osciladores correspondente ao numero de osciladores
//Um a correspondente ao inicio do periodo do calculo do tempo.
//Um b correspondente ao fim do periodo do calculo do tempo.
//Um correspondente ao tamanho do passo do intervalo a - b
//A função devolve uma matriz 3xn, que corresponde a amplitude de todos os osciladores em todo o espaço de tempo definido.
function [x,exe] = deslocamento(ax,X,x,exe,osciladores,i)
kdexe = v(ax,X,x(i,:),exe(i,:),osciladores);
kexe = p(exe(i,:));
exe(i+1,:) = exe(i,:) + kdexe*passo;
x(i+1,:) = x(i,:) + kexe*passo;
//end
endfunction
//A seguinte função recebe:
//Um ax que é uma constante de deslocamento determinada igual a 2rad/s
//Uma matriz X 1xn, onde n>0 e corresponde ao numero de osciladores, ax corresponde ao deslocamento max.
//Um x0 1xn, onde n>0 e corresponde ao numero de osciladores, rx são o conjunto de condições iniciais do deslocamento.
//Um exe0, 1xn, onde n> 0 e corresponde ao numero de osciladores, exe0 é o conjunto de condições iniciais da primeira derivada
//Um "osciladores" correspondente ao numero de osciladores
//Um a correspondente ao inicio do periodo do calculo do tempo.
//Um b correspondente ao fim do periodo do calculo do tempo.
//Um "passo" correspondente ao tamanho do passo do intervalo a - b
//A função devolve uma matriz 3xn, que corresponde ao deslocamento de todos os osciladores em todo o espaço de tempo definido.
function [r,m] = amplitude(ar,R,r,m,osciladores,i)
kdm = g(ar,R,r(i,:),m(i,:),osciladores);
km = f(m(i,:));
m(i+1,:) = m(i,:) + kdm*passo;
r(i+1,:) = r(i,:) + km*passo;
endfunction
//A seguinte função recebe:
// w uma matriz 1xn, onde n é o numero de osciladores.
// wij uma matriz nxn, onde n>0, n corresponde ao numero de osciladores.
// r, uma matriz 1xn, onde n corresponde ao numero de osciladores.
// fi, uma matriz 1xn onde n corresponde ao numero de osciladores.
// phi uma matriz nxn onde n corresponde ao numero de osciladores.
// osciladores, osciladores>0 n corresponde ao numero de osciladores
// A função devolve uma matriz 1xn onde n corresponde ao numero de osciladores.
//Um a correspondente ao inicio do periodo do calculo do tempo.
//Um b correspondente ao fim do periodo do calculo do tempo.
//Um passo correspondente ao tamanho do passo do intervalo a - b
// a função devolve uma matriz nx3 onde, n é o numero de osciladores
function FI = phase(w, wij,r,FI,phi,osciladores,i)
// h
dphi = zeros(1,osciladores)
for oi=1:osciladores
dphi(1,oi) = w(oi);
for j=1:osciladores
dphi(1,oi) = dphi(1,oi) + wij(oi,j)*r(i,j)*sin(FI(i,j)- FI(i,oi) - phi(oi,j));
//disp(r(i,j));
end
end
kdphi = dphi; //h(w, wij,r(i,:),FI(i,:),phi,osciladores);
FI(i+1,:) = FI(i,:) + kdphi*passo;
//end
endfunction
//A seguinte função recebe:
//FI uma matriz nx3, onde n é o numero de linhas calculada a partir de um metodo númerico.
//r uma matriz nx3, onde n é o numero de linhas calculada a partir de um metodo númerico.
//x uma matriz nx3, onde n é o numero de linhas calculada a partir de um metodo númerico.
//n numero de osciladores.
// a função devolve os angulos de todos os osciladores
function tetha = angulos(FI,r,x,n)
for i=1:n
tetha(:,i) = x(:,i)+r(:,i).*sin(FI(:,i));
end
endfunction
// calcula os valores das variáveis do sistema para cada iteração i
for i = 1:n-1
[x,exe] = deslocamento(ax,X,x,exe,osciladores,i);
[r,m] = amplitude(ar,R,r,m,osciladores,i);
FI = phase(w, wij,r,FI,phi,osciladores,i);
end
tetha = angulos(FI,r,x,osciladores);
tp = tInicio:passo:tFim
plot(tp,tetha);
//plot(tp,r);
//plot(tp,x)
|
66db55532992e8eacb37d2fdd64e84307b3c4ae8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2258/CH7/EX7.8/7_8.sce | db5de244af8803243b319652f8ecedeeb9d8da5c | [] | 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 | 7_8.sce | clc();
clear;
// To calculate the concentration of intrinsic charge carriers
KB=1.38*10^-23;
T=300; //temp in K
h=6.626*10^-34;
m0=9.11*10^-31;
mh=m0;
me=m0;
EgeV=0.7; //energy gap in eV
Eg=EgeV*1.6*10^-19; //in J
A=((2*%pi*KB/(h^2))^(3/2))*(me*mh)^(3/4);
B=T^(3/2);
C=exp(-Eg/(2*KB*T));
ni=2*A*B*C;
printf("concentration of intrinsic charge carriers per cubic metre is");
disp(ni);
|
b19ad502d57ff2b7f6e2d550598282b87043cfbf | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH4/EX4.10/Ex4_10.sce | fbc0b8fa735961f9b26671edd5fbdefe292a192c | [] | 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,018 | sce | Ex4_10.sce |
// Examle 4.10
// From Diagram 4.12
P=25; // Power
Rl=8; // Load resistance
Vth=P*4*Rl; // Thevenin's equivalent voltage
// If Load is Short-ckt (RL=0)
Vo=0; // Voltage
IL=1; // load current
Po1=Vo*IL; // O/p power
// If Load is Open-ckt ( RL=infinity )
IL1=0; // Load current
Vo1=1; // Voltage
Po2=Vo1*IL1; // O/p power
x=[0 2 4 6 8 16 32 ]; // Diffrent value of RL
y=[0 16 22.22 24.49 25 22.22 16 ] // Value of Power
plot2d(x,y); // To plot graph
xlabel('RL (in Ohms )--->'); // For X-Label
ylabel('Po (in W ---->') // For Y-Label
// View p 115 4.10
|
18a3e07047c57564b95cef9fbf07ab99069a4394 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1109/CH2/EX2.11/2_11.sce | 3001a535d986eda50f2e9c00a02f1fb4d0751150 | [] | 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 | 675 | sce | 2_11.sce | clear;
clc;
f=20*(10^6);Zoc=1390;Zsc=4.61;l=5;
lo=(3*(10^8))/f; //lo=wavelength
Zo=sqrt(Zoc*Zsc);
printf("-Characteristic impedance = %f ohms\n",round(Zo));
er=(lo/l)^2; //er=relative permittivity of dielectric
printf("-Relative permittivity of dielectric = %f\n",er);
P=fix(((atanh(sqrt(Zsc/Zoc)))/l)*10000)/10000;
a=P*8.686;
printf("-a = %f db/m\n",fix(a*10000)/10000);
Vp=(3*(10^8))/(sqrt(er)*10^8);
printf("-Velocity of propagation = %f * 10^8 m/sec",Vp);
//the difference in result of attenuation constant is due to erroneous value in textbook.
disp("The difference in result of the value of attenuation constant is due to erroneous value in textbook")
|
c8b34aa3c6f9260136d1d59db3808289fd9fbb37 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/percent/%lssns.sci | e04e64b065f689396c62bd8164cf4f3649c8be05 | [
"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 | 162 | sci | %lssns.sci | //[r]=%lssns(s1,s2)
//%lssns(s1,s2) effectue le test d'inegalite entre systeme d'etat et gain
//correspond a l'operation s1<>s2
//!
r=s1(2)<>[]|s1(5)<>s2
//end
|
d61e1c122f18218338db7ce3444fedf90d18931c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2492/CH8/EX8.1/ex8_1.sce | 8d48771cbdbfbe8e1adbb12c6e7d2dee79e507ba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 417 | sce | ex8_1.sce | // Exa 8.1
format('v',9)
clc;
clear;
close;
// Given data
str= '3BF';// given number in hexadecimal to convert into binary
str_in_dec= hex2dec(str);// decimal equivalent
str_in_bin= dec2bin(str_in_dec);// binary equivalent
disp(str_in_bin,"The binary equivalent of 3BF is : ")
// Note : The answer in the book is wrong because binary equivalent of B = 1011 and in the book they used 1101 which is wrong.
|
10d1d2300690154a971fbd9f06de3a6c3be0dfe3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1309/CH8/EX8.6/ch8_6.sce | 81c659432caa00285f17c751c91ee77eef411927 | [] | 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,532 | sce | ch8_6.sce | clc;
clear;
printf("\t\t\tChapter8_example6\n\n\n");
// determination of heat lost from the insulation by convection
// properties of air at (50 + 5)/2 = 27.5 degree C = 300 K from appendix table D1
rou= 1.177; // density in kg/cu.m
cp= 1005.7; // specific heat in J/(kg*K)
v= 15.68e-6; // viscosity in sq.m/s
Pr =0.708; // Prandtl Number
kf= 0.02624; // thermal conductivity in W/(m.K)
a = 0.22160e-4; // diffusivity in sq.m/s
g=9.81;
L=4; // length in m
D=15/100; // diameter in m
T_inf=5; // ambient air temperature in degree C
Tw=50; // outside surface temperature in degree C
Beta=1/(T_inf+273); // volumetric thermal expansion coefficient in per K
printf("\nThe volumetric thermal expansion coefficient is %.5f /K",Beta);
Ra=(g*Beta*(Tw-T_inf)*D^3)/(v*a);
printf("\nThe Rayleigh Number is %.2e ",Ra);
// for horizontal pipe, the convective coefficient is determined as follows
hc_h=(kf/D)*(0.60+(0.387*Ra^(1/6))/(1+(0.559/Pr)^(9/16))^(8/27))^2;
printf("\nThe convection coefficient for horizontal length is %.2f W/(sq.m.K)",hc_h);
As=%pi*D*L;
q_hor=hc_h*As*(Tw-T_inf);
printf("\nThe heat transferred from the horizontal length of 4 m is %d W",q_hor);
// for vertical pipe, the convective coefficient is determined as follows
hc_v=(kf/D)*0.6*(Ra*(D/L))^(1/4);
printf("\nThe convection coefficient for vertical length is %.2f W/(sq.m.K)",hc_v);
q_ver=hc_v*As*(Tw-T_inf);
printf("\nThe heat transferred from the vertical length of 4 m is %d W",q_ver);
q=q_ver+q_hor;
printf("\nThe total heat lost from the pipe is %d W",q);
|
4c090ecc0d035e28be72c05a518feb12afaf1edc | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Simp Bolt Punish.sce | 15540b171c241b5f889e1edf0f044be8a12bdbb5 | [] | 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 | 126,528 | sce | Simp Bolt Punish.sce | Name=Simp Bolt Punish
PlayerCharacters=SimpQuaker
BotCharacters=Quaker Bot Close.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=SimpQuaker
AddedBots=Quaker Bot Close.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=SimpVert.map
MapScale=3.8125
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=1.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=Reflex
WeaponHeroTag=Rockets, RL, Lightning Gun, LG, Railgun, RG, Bolt, BR
DifficultyTag=2
AuthorsTag=KovaaK
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=true
BlockFCT=false
Description=Target spawns up high, and you have all the main Reflex weapons available to punish him as he falls. Gain score by doing damage, lose score by taking damage.
GameVersion=1.0.4
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
[Aim Profile]
Name=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=Quaker Bot Close
DodgeProfileNames=Long Strafes 2
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Low Skill;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quaker
SeeThroughWalls=false
[Character Profile]
Name=SimpQuaker
MaxHealth=10000.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=4.5
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
[Character Profile]
Name=Quaker
MaxHealth=300.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=4.5
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
[Dodge Profile]
Name=Long Strafes 2
MaxTargetDistance=1750.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.5
MaxFBTimeChange=1.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
[Weapon Profile]
Name=Railgun
Type=Hitscan
ShotsPerClick=1
DamagePerShot=80.0
KnockbackFactor=10.0
TimeBetweenShots=1.0
Pierces=true
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Beam
ProjectileGraphic=Ball
VisualLifetime=0.5
WallParticleEffect=None
HitParticleEffect=Blood
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=10.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Rocket Launcher
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=14.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5090.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Rocket
VisualLifetime=0.1
WallParticleEffect=Flare
HitParticleEffect=Flare
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=14.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=14.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
CooldownType=InfiniteUse
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
CooldownTimer=5.0
MaxCharges=3
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
HitscanVisualEffect=Tracer
ProjectileGraphic=Ball
VisualLifetime=0.05
WallParticleEffect=None
HitParticleEffect=None
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileWorldHitRadius=1.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomFactor=0.7
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
ShootSound=Shot
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=14.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
ProjectileTrail=None
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Overwatch
ADSAllowUserOverrideFOV=true
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera score
ColourXRGB32 fogColor ff1a6073
Float fogDistanceEnd 9999.000000
Float fogHeightTop 170.000000
Float fogHeightBottom -200.000000
String256 title Simplicity
UInt8 playersMax 6
brush
vertices
-224.000000 144.000000 640.000000
-160.000000 144.000000 640.000000
-160.000000 144.000000 576.000000
-224.000000 136.000000 640.000000
-160.000000 136.000000 576.000000
-160.000000 136.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff000000 common/materials/fabric/cotton
brush
vertices
96.000000 480.000000 862.000000
128.000000 480.000000 862.000000
128.000000 480.000000 830.000000
96.000000 472.000000 862.000000
128.000000 472.000000 830.000000
128.000000 472.000000 862.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 90.000000 3 0 2 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 1 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 856.000000
-304.000000 504.000000 856.000000
-304.000000 504.000000 848.000000
-312.000000 496.000000 856.000000
-312.000000 504.000000 848.000000
-312.000000 496.000000 848.000000
-304.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 856.000000
-240.000000 504.000000 856.000000
-240.000000 504.000000 848.000000
-312.000000 496.000000 856.000000
-240.000000 496.000000 856.000000
-312.000000 504.000000 848.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-240.000000 504.000000 856.000000
-232.000000 504.000000 856.000000
-232.000000 504.000000 848.000000
-240.000000 496.000000 856.000000
-240.000000 504.000000 848.000000
-232.000000 496.000000 848.000000
-232.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-304.000000 504.000000 736.000000
-240.000000 504.000000 736.000000
-240.000000 504.000000 728.000000
-304.000000 496.000000 728.000000
-240.000000 496.000000 728.000000
-304.000000 504.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 3 5 0xff302929 common/materials/stone/stone
brush
vertices
-240.000000 504.000000 736.000000
-232.000000 504.000000 736.000000
-232.000000 504.000000 728.000000
-240.000000 496.000000 728.000000
-240.000000 504.000000 728.000000
-232.000000 496.000000 728.000000
-232.000000 496.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 736.000000
-304.000000 504.000000 736.000000
-304.000000 504.000000 728.000000
-312.000000 496.000000 736.000000
-312.000000 504.000000 728.000000
-304.000000 496.000000 728.000000
-312.000000 496.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 5 3 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 0 4 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 2 5 6 0xff000000 common/materials/fabric/cotton
brush
vertices
-312.000000 504.000000 848.000000
-304.000000 504.000000 848.000000
-304.000000 504.000000 736.000000
-312.000000 496.000000 848.000000
-312.000000 496.000000 736.000000
-312.000000 504.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-240.000000 504.000000 848.000000
-232.000000 504.000000 848.000000
-232.000000 504.000000 736.000000
-232.000000 496.000000 848.000000
-232.000000 496.000000 736.000000
-240.000000 504.000000 736.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 5 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 0 5 0xff000000 common/materials/fabric/cotton
brush
vertices
465.000000 271.000000 706.000000
479.000000 271.000000 706.000000
479.000000 271.000000 704.000000
465.000000 271.000000 704.000000
465.000000 257.000000 706.000000
479.000000 257.000000 706.000000
479.000000 257.000000 704.000000
465.000000 257.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 832.000000
-296.000000 512.000000 832.000000
-296.000000 512.000000 816.000000
-304.000000 512.000000 816.000000
-304.000000 504.000000 832.000000
-296.000000 504.000000 832.000000
-296.000000 504.000000 816.000000
-304.000000 504.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 768.000000
-296.000000 512.000000 768.000000
-296.000000 512.000000 752.000000
-304.000000 512.000000 752.000000
-304.000000 504.000000 768.000000
-296.000000 504.000000 768.000000
-296.000000 504.000000 752.000000
-304.000000 504.000000 752.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-304.000000 512.000000 800.000000
-296.000000 512.000000 800.000000
-296.000000 512.000000 784.000000
-304.000000 512.000000 784.000000
-304.000000 504.000000 800.000000
-296.000000 504.000000 800.000000
-296.000000 504.000000 784.000000
-304.000000 504.000000 784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 832.000000
-240.000000 512.000000 832.000000
-240.000000 512.000000 816.000000
-248.000000 512.000000 816.000000
-248.000000 504.000000 832.000000
-240.000000 504.000000 832.000000
-240.000000 504.000000 816.000000
-248.000000 504.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 800.000000
-240.000000 512.000000 800.000000
-240.000000 512.000000 784.000000
-248.000000 512.000000 784.000000
-248.000000 504.000000 800.000000
-240.000000 504.000000 800.000000
-240.000000 504.000000 784.000000
-248.000000 504.000000 784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-248.000000 512.000000 768.000000
-240.000000 512.000000 768.000000
-240.000000 512.000000 752.000000
-248.000000 512.000000 752.000000
-248.000000 504.000000 768.000000
-240.000000 504.000000 768.000000
-240.000000 504.000000 752.000000
-248.000000 504.000000 752.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-296.000000 512.000000 768.000000
-248.000000 512.000000 768.000000
-248.000000 512.000000 752.000000
-296.000000 512.000000 752.000000
-296.000000 510.000000 768.000000
-248.000000 510.000000 768.000000
-248.000000 510.000000 752.000000
-296.000000 510.000000 752.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-296.000000 512.000000 800.000000
-248.000000 512.000000 800.000000
-248.000000 512.000000 784.000000
-296.000000 512.000000 784.000000
-296.000000 510.000000 800.000000
-248.000000 510.000000 800.000000
-248.000000 510.000000 784.000000
-296.000000 510.000000 784.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-296.000000 512.000000 832.000000
-248.000000 512.000000 832.000000
-248.000000 512.000000 816.000000
-296.000000 512.000000 816.000000
-296.000000 510.000000 832.000000
-248.000000 510.000000 832.000000
-248.000000 510.000000 816.000000
-296.000000 510.000000 816.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
-296.000000 510.000000 830.000000
-248.000000 510.000000 830.000000
-248.000000 510.000000 818.000000
-296.000000 510.000000 818.000000
-296.000000 506.000000 830.000000
-248.000000 506.000000 830.000000
-248.000000 506.000000 818.000000
-296.000000 506.000000 818.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
-296.000000 510.000000 798.000000
-248.000000 510.000000 798.000000
-248.000000 510.000000 786.000000
-296.000000 510.000000 786.000000
-296.000000 506.000000 798.000000
-248.000000 506.000000 798.000000
-248.000000 506.000000 786.000000
-296.000000 506.000000 786.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
256.000000 144.000000 704.000000
258.000000 144.000000 704.000000
258.000000 144.000000 696.000000
256.000000 144.000000 696.000000
256.000000 142.000000 704.000000
258.000000 142.000000 704.000000
258.000000 142.000000 696.000000
256.000000 142.000000 696.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-320.000000 512.000000 848.000000
-304.000000 512.000000 848.000000
-304.000000 512.000000 736.000000
-320.000000 512.000000 736.000000
-320.000000 504.000000 848.000000
-304.000000 504.000000 848.000000
-304.000000 504.000000 736.000000
-320.000000 504.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-80.000000 112.000000 688.000000
-4.000000 112.000000 688.000000
-4.000000 112.000000 672.000000
-80.000000 112.000000 672.000000
-80.000000 96.000000 688.000000
-4.000000 96.000000 688.000000
-4.000000 96.000000 672.000000
-80.000000 96.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-296.000000 510.000000 766.000000
-248.000000 510.000000 766.000000
-248.000000 510.000000 754.000000
-296.000000 510.000000 754.000000
-296.000000 506.000000 766.000000
-248.000000 506.000000 766.000000
-248.000000 506.000000 754.000000
-296.000000 506.000000 754.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/effects/energy
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/effects/energy
brush
vertices
-78.000000 22.000000 484.000000
78.000000 22.000000 484.000000
78.000000 22.000000 224.000000
-78.000000 22.000000 224.000000
-78.000000 20.000000 484.000000
78.000000 20.000000 484.000000
78.000000 20.000000 224.000000
-78.000000 20.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-416.000000 864.000000 880.000000
496.000000 864.000000 880.000000
496.000000 864.000000 864.000000
-416.000000 864.000000 864.000000
-416.000000 144.000000 880.000000
496.000000 144.000000 880.000000
496.000000 144.000000 864.000000
-416.000000 144.000000 864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
254.000000 462.000000 706.000000
464.000000 462.000000 706.000000
464.000000 462.000000 224.000000
254.000000 462.000000 224.000000
254.000000 144.000000 706.000000
464.000000 144.000000 706.000000
464.000000 144.000000 224.000000
254.000000 144.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
464.000000 414.000000 864.000000
480.000000 414.000000 864.000000
480.000000 414.000000 706.000000
464.000000 414.000000 706.000000
464.000000 256.000000 864.000000
480.000000 256.000000 864.000000
480.000000 256.000000 706.000000
464.000000 256.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
254.000000 462.000000 864.000000
464.000000 462.000000 864.000000
464.000000 462.000000 706.000000
254.000000 462.000000 706.000000
254.000000 414.000000 864.000000
464.000000 414.000000 864.000000
464.000000 414.000000 706.000000
254.000000 414.000000 706.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
288.000000 864.000000 864.000000
304.000000 864.000000 864.000000
304.000000 864.000000 224.000000
288.000000 864.000000 224.000000
288.000000 488.000000 864.000000
304.000000 488.000000 864.000000
304.000000 488.000000 224.000000
288.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
128.000000 488.000000 864.000000
288.000000 488.000000 864.000000
288.000000 488.000000 386.000000
128.000000 488.000000 386.000000
128.000000 462.000000 864.000000
288.000000 462.000000 864.000000
288.000000 462.000000 386.000000
128.000000 462.000000 386.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-77.999985 864.000000 224.000000
288.000000 864.000000 224.000000
288.000000 864.000000 208.000000
-77.999985 864.000000 208.000000
-77.999985 462.000000 224.000000
288.000000 462.000000 224.000000
288.000000 462.000000 208.000000
-77.999985 462.000000 208.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-78.000000 488.000000 386.000000
288.000000 488.000000 386.000000
288.000000 488.000000 224.000000
-78.000000 488.000000 224.000000
-78.000000 462.000000 386.000000
288.000000 462.000000 386.000000
288.000000 462.000000 224.000000
-78.000000 462.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
80.000000 496.000000 386.000000
96.000000 496.000000 386.000000
96.000000 496.000000 224.000000
80.000000 496.000000 224.000000
80.000000 488.000000 386.000000
96.000000 488.000000 386.000000
96.000000 488.000000 224.000000
80.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
64.000000 504.000000 386.000000
80.000000 504.000000 386.000000
80.000000 504.000000 224.000000
64.000000 504.000000 224.000000
64.000000 488.000000 386.000000
80.000000 488.000000 386.000000
80.000000 488.000000 224.000000
64.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
48.000000 512.000000 386.000000
64.000000 512.000000 386.000000
64.000000 512.000000 224.000000
48.000000 512.000000 224.000000
48.000000 488.000000 386.000000
64.000000 488.000000 386.000000
64.000000 488.000000 224.000000
48.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
32.000000 520.000000 386.000000
48.000000 520.000000 386.000000
48.000000 520.000000 224.000000
32.000000 520.000000 224.000000
32.000000 488.000000 386.000000
48.000000 488.000000 386.000000
48.000000 488.000000 224.000000
32.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
16.000000 528.000000 386.000000
32.000000 528.000000 386.000000
32.000000 528.000000 224.000000
16.000000 528.000000 224.000000
16.000000 488.000000 386.000000
32.000000 488.000000 386.000000
32.000000 488.000000 224.000000
16.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
0.000000 536.000000 386.000000
16.000000 536.000000 386.000000
16.000000 536.000000 224.000000
0.000000 536.000000 224.000000
0.000000 488.000000 386.000000
16.000000 488.000000 386.000000
16.000000 488.000000 224.000000
0.000000 488.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-384.000000 496.000000 864.000000
-368.000000 496.000000 864.000000
-368.000000 496.000000 720.000000
-384.000000 496.000000 720.000000
-384.000000 224.000000 864.000000
-368.000000 224.000000 864.000000
-368.000000 224.000000 720.000000
-384.000000 224.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-384.000000 224.000000 864.000000
-368.000000 224.000000 864.000000
-368.000000 224.000000 720.000000
-384.000000 224.000000 720.000000
-384.000000 208.000000 864.000000
-368.000000 208.000000 864.000000
-368.000000 208.000000 720.000000
-384.000000 208.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-368.000000 216.000000 864.000000
-352.000000 216.000000 864.000000
-352.000000 216.000000 720.000000
-368.000000 216.000000 720.000000
-368.000000 200.000000 864.000000
-352.000000 200.000000 864.000000
-352.000000 200.000000 720.000000
-368.000000 200.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-352.000000 208.000000 864.000000
-336.000000 208.000000 864.000000
-336.000000 208.000000 720.000000
-352.000000 208.000000 720.000000
-352.000000 192.000000 864.000000
-336.000000 192.000000 864.000000
-336.000000 192.000000 720.000000
-352.000000 192.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-336.000000 200.000000 864.000000
-320.000000 200.000000 864.000000
-320.000000 200.000000 720.000000
-336.000000 200.000000 720.000000
-336.000000 184.000000 864.000000
-320.000000 184.000000 864.000000
-320.000000 184.000000 720.000000
-336.000000 184.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-320.000000 192.000000 864.000000
-304.000000 192.000000 864.000000
-304.000000 192.000000 720.000000
-320.000000 192.000000 720.000000
-320.000000 176.000000 864.000000
-304.000000 176.000000 864.000000
-304.000000 176.000000 720.000000
-320.000000 176.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-304.000000 184.000000 864.000000
-288.000000 184.000000 864.000000
-288.000000 184.000000 720.000000
-304.000000 184.000000 720.000000
-304.000000 168.000000 864.000000
-288.000000 168.000000 864.000000
-288.000000 168.000000 720.000000
-304.000000 168.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-288.000000 176.000000 864.000000
-272.000000 176.000000 864.000000
-272.000000 176.000000 720.000000
-288.000000 176.000000 720.000000
-288.000000 160.000000 864.000000
-272.000000 160.000000 864.000000
-272.000000 160.000000 720.000000
-288.000000 160.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-272.000000 168.000000 864.000000
-256.000000 168.000000 864.000000
-256.000000 168.000000 720.000000
-272.000000 168.000000 720.000000
-272.000000 152.000000 864.000000
-256.000000 152.000000 864.000000
-256.000000 152.000000 720.000000
-272.000000 152.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-256.000000 160.000000 864.000000
-240.000000 160.000000 864.000000
-240.000000 160.000000 720.000000
-256.000000 160.000000 720.000000
-256.000000 144.000000 864.000000
-240.000000 144.000000 864.000000
-240.000000 144.000000 720.000000
-256.000000 144.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-240.000000 152.000000 864.000000
-224.000000 152.000000 864.000000
-224.000000 152.000000 720.000000
-240.000000 152.000000 720.000000
-240.000000 136.000000 864.000000
-224.000000 136.000000 864.000000
-224.000000 136.000000 720.000000
-240.000000 136.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-224.000000 144.000000 864.000000
256.000000 144.000000 864.000000
256.000000 144.000000 736.000000
-224.000000 144.000000 736.000000
-224.000000 128.000000 864.000000
256.000000 128.000000 864.000000
256.000000 128.000000 736.000000
-224.000000 128.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-80.000000 136.000000 736.000000
80.000000 136.000000 736.000000
80.000000 136.000000 720.000000
-80.000000 136.000000 720.000000
-80.000000 120.000000 736.000000
80.000000 120.000000 736.000000
80.000000 120.000000 720.000000
-80.000000 120.000000 720.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 128.000000 720.000000
80.000000 128.000000 720.000000
80.000000 128.000000 704.000000
-80.000000 128.000000 704.000000
-80.000000 112.000000 720.000000
80.000000 112.000000 720.000000
80.000000 112.000000 704.000000
-80.000000 112.000000 704.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 120.000000 704.000000
80.000000 120.000000 704.000000
80.000000 120.000000 688.000000
-80.000000 120.000000 688.000000
-80.000000 104.000000 704.000000
80.000000 104.000000 704.000000
80.000000 104.000000 688.000000
-80.000000 104.000000 688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 112.000000 688.000000
80.000000 112.000000 688.000000
80.000000 112.000000 672.000000
-80.000000 112.000000 672.000000
-80.000000 96.000000 688.000000
80.000000 96.000000 688.000000
80.000000 96.000000 672.000000
-80.000000 96.000000 672.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 104.000000 672.000000
80.000000 104.000000 672.000000
80.000000 104.000000 656.000000
-80.000000 104.000000 656.000000
-80.000000 88.000000 672.000000
80.000000 88.000000 672.000000
80.000000 88.000000 656.000000
-80.000000 88.000000 656.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 96.000000 656.000000
80.000000 96.000000 656.000000
80.000000 96.000000 640.000000
-80.000000 96.000000 640.000000
-80.000000 80.000000 656.000000
80.000000 80.000000 656.000000
80.000000 80.000000 640.000000
-80.000000 80.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 88.000000 640.000000
80.000000 88.000000 640.000000
80.000000 88.000000 624.000000
-80.000000 88.000000 624.000000
-80.000000 72.000000 640.000000
80.000000 72.000000 640.000000
80.000000 72.000000 624.000000
-80.000000 72.000000 624.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 80.000000 624.000000
80.000000 80.000000 624.000000
80.000000 80.000000 608.000000
-80.000000 80.000000 608.000000
-80.000000 64.000000 624.000000
80.000000 64.000000 624.000000
80.000000 64.000000 608.000000
-80.000000 64.000000 608.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 72.000000 608.000000
80.000000 72.000000 608.000000
80.000000 72.000000 592.000000
-80.000000 72.000000 592.000000
-80.000000 56.000000 608.000000
80.000000 56.000000 608.000000
80.000000 56.000000 592.000000
-80.000000 56.000000 592.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 64.000000 592.000000
80.000000 64.000000 592.000000
80.000000 64.000000 576.000000
-80.000000 64.000000 576.000000
-80.000000 48.000000 592.000000
80.000000 48.000000 592.000000
80.000000 48.000000 576.000000
-80.000000 48.000000 576.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 56.000000 576.000000
80.000000 56.000000 576.000000
80.000000 56.000000 560.000000
-80.000000 56.000000 560.000000
-80.000000 40.000000 576.000000
80.000000 40.000000 576.000000
80.000000 40.000000 560.000000
-80.000000 40.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 48.000000 560.000000
80.000000 48.000000 560.000000
80.000000 48.000000 544.000000
-80.000000 48.000000 544.000000
-80.000000 32.000000 560.000000
80.000000 32.000000 560.000000
80.000000 32.000000 544.000000
-80.000000 32.000000 544.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-80.000000 40.000000 544.000000
80.000000 40.000000 544.000000
80.000000 40.000000 528.000000
-80.000000 40.000000 528.000000
-80.000000 24.000000 544.000000
80.000000 24.000000 544.000000
80.000000 24.000000 528.000000
-80.000000 24.000000 528.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
-224.000000 144.000000 736.000000
-78.000000 144.000000 736.000000
-78.000000 144.000000 226.000000
-224.000000 144.000000 226.000000
-224.000000 22.000008 736.000000
-78.000000 22.000008 736.000000
-78.000000 22.000008 226.000000
-224.000000 22.000008 226.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-78.000000 462.000000 226.000000
80.000000 462.000000 226.000000
80.000000 462.000000 210.000000
-78.000000 462.000000 210.000000
-78.000000 16.000000 226.000000
80.000000 16.000000 226.000000
80.000000 16.000000 210.000000
-78.000000 16.000000 210.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-80.000000 32.000000 528.000000
-16.000000 32.000000 528.000000
-16.000000 32.000000 448.000000
-80.000000 32.000000 448.000000
-80.000000 22.000000 528.000000
-16.000000 22.000000 528.000000
-16.000000 22.000000 448.000000
-80.000000 22.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-16.000000 32.000000 480.000000
16.000000 32.000000 480.000000
-16.000000 22.000000 448.000000
-16.000000 22.000000 480.000000
16.000000 22.000000 480.000000
-16.000000 32.000000 448.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 4 2 5 0x00000000
brush
vertices
-22.000000 32.000000 332.000000
78.000000 32.000000 332.000000
78.000000 32.000000 268.000000
-22.000000 32.000000 268.000000
-22.000000 22.000000 332.000000
78.000000 22.000000 332.000000
78.000000 22.000000 268.000000
-22.000000 22.000000 268.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-16.000000 32.000000 528.000000
80.000000 32.000000 528.000000
80.000000 32.000000 480.000000
-16.000000 32.000000 480.000000
-16.000000 22.000000 528.000000
80.000000 22.000000 528.000000
80.000000 22.000000 480.000000
-16.000000 22.000000 480.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-222.000000 200.000000 560.000000
-78.000000 200.000000 560.000000
-78.000000 200.000000 352.000000
-222.000000 200.000000 352.000000
-222.000000 144.000000 560.000000
-78.000000 144.000000 560.000000
-78.000000 144.000000 352.000000
-222.000000 144.000000 352.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-222.000000 200.000000 642.000000
-161.000000 200.000000 642.000000
-161.000000 200.000000 560.000000
-222.000000 200.000000 560.000000
-222.000000 145.000000 642.000000
-161.000000 145.000000 642.000000
-161.000000 145.000000 560.000000
-222.000000 145.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-161.000000 200.000000 642.000000
-161.000000 145.000000 560.000000
-78.000000 200.000000 560.000000
-161.000000 145.000000 642.000000
-78.000000 145.000000 560.000000
-161.000000 200.000000 560.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-224.000000 864.000000 640.000000
-224.000000 382.000000 496.000000
-78.000000 864.000000 496.000000
-224.000000 382.000000 640.000000
-78.000000 382.000000 496.000000
-224.000000 864.000000 496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
78.000000 192.000000 512.000000
254.000000 192.000000 512.000000
254.000000 192.000000 224.000000
78.000000 192.000000 224.000000
78.000000 22.000000 512.000000
254.000000 22.000000 512.000000
254.000000 22.000000 224.000000
78.000000 22.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
78.000000 152.000000 592.000000
256.000000 152.000000 592.000000
256.000000 152.000000 576.000000
78.000000 152.000000 576.000000
78.000000 144.000000 592.000000
256.000000 144.000000 592.000000
256.000000 144.000000 576.000000
78.000000 144.000000 576.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 160.000000 576.000000
256.000000 160.000000 576.000000
256.000000 160.000000 560.000000
78.000000 160.000000 560.000000
78.000000 144.000000 576.000000
256.000000 144.000000 576.000000
256.000000 144.000000 560.000000
78.000000 144.000000 560.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 168.000000 560.000000
256.000000 168.000000 560.000000
256.000000 168.000000 544.000000
78.000000 168.000000 544.000000
78.000000 144.000000 560.000000
256.000000 144.000000 560.000000
256.000000 144.000000 544.000000
78.000000 144.000000 544.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 176.000000 544.000000
256.000000 176.000000 544.000000
256.000000 176.000000 528.000000
78.000000 176.000000 528.000000
78.000000 144.000000 544.000000
256.000000 144.000000 544.000000
256.000000 144.000000 528.000000
78.000000 144.000000 528.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 184.000000 528.000000
256.000000 184.000000 528.000000
256.000000 184.000000 512.000000
78.000000 184.000000 512.000000
78.000000 144.000000 528.000000
256.000000 144.000000 528.000000
256.000000 144.000000 512.000000
78.000000 144.000000 512.000000
faces
-320.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
-128.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
320.000000 64.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
80.000000 462.000000 226.000000
256.000000 462.000000 226.000000
256.000000 462.000000 210.000000
80.000000 462.000000 210.000000
80.000000 192.000000 226.000000
256.000000 192.000000 226.000000
256.000000 192.000000 210.000000
80.000000 192.000000 210.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-112.000000 320.000000 374.000000
-103.000000 320.000000 383.000000
-80.000000 320.000000 360.000000
-103.000000 256.000000 383.000000
-89.000000 320.000000 352.000000
-89.000000 256.000000 352.000000
-112.000000 256.000000 374.000000
-80.000000 256.000000 360.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-112.000000 320.000000 430.000000
-103.000000 320.000000 439.000000
-80.000000 320.000000 416.000000
-103.000000 256.000000 439.000000
-89.000000 320.000000 408.000000
-89.000000 256.000000 408.000000
-112.000000 256.000000 430.000000
-80.000000 256.000000 416.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
-112.000000 320.000000 486.000000
-103.000000 320.000000 495.000000
-80.000000 320.000000 472.000000
-103.000000 256.000000 495.000000
-89.000000 320.000000 464.000000
-89.000000 256.000000 464.000000
-112.000000 256.000000 486.000000
-80.000000 256.000000 472.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 0 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 3 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 4 2 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000
brush
vertices
256.000000 152.000000 864.000000
272.000000 152.000000 864.000000
272.000000 152.000000 706.000000
256.000000 152.000000 706.000000
256.000000 136.000000 864.000000
272.000000 136.000000 864.000000
272.000000 136.000000 706.000000
256.000000 136.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
272.000000 160.000000 864.000000
288.000000 160.000000 864.000000
288.000000 160.000000 706.000000
272.000000 160.000000 706.000000
272.000000 144.000000 864.000000
288.000000 144.000000 864.000000
288.000000 144.000000 706.000000
272.000000 144.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
288.000000 168.000000 864.000000
304.000000 168.000000 864.000000
304.000000 168.000000 706.000000
288.000000 168.000000 706.000000
288.000000 152.000000 864.000000
304.000000 152.000000 864.000000
304.000000 152.000000 706.000000
288.000000 152.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
304.000000 176.000000 864.000000
320.000000 176.000000 864.000000
320.000000 176.000000 706.000000
304.000000 176.000000 706.000000
304.000000 160.000000 864.000000
320.000000 160.000000 864.000000
320.000000 160.000000 706.000000
304.000000 160.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
320.000000 184.000000 864.000000
336.000000 184.000000 864.000000
336.000000 184.000000 706.000000
320.000000 184.000000 706.000000
320.000000 168.000000 864.000000
336.000000 168.000000 864.000000
336.000000 168.000000 706.000000
320.000000 168.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
336.000000 192.000000 864.000000
352.000000 192.000000 864.000000
352.000000 192.000000 706.000000
336.000000 192.000000 706.000000
336.000000 176.000000 864.000000
352.000000 176.000000 864.000000
352.000000 176.000000 706.000000
336.000000 176.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
352.000000 200.000000 864.000000
368.000000 200.000000 864.000000
368.000000 200.000000 706.000000
352.000000 200.000000 706.000000
352.000000 184.000000 864.000000
368.000000 184.000000 864.000000
368.000000 184.000000 706.000000
352.000000 184.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
368.000000 208.000000 864.000000
384.000000 208.000000 864.000000
384.000000 208.000000 706.000000
368.000000 208.000000 706.000000
368.000000 192.000000 864.000000
384.000000 192.000000 864.000000
384.000000 192.000000 706.000000
368.000000 192.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
384.000000 216.000000 864.000000
400.000000 216.000000 864.000000
400.000000 216.000000 706.000000
384.000000 216.000000 706.000000
384.000000 200.000000 864.000000
400.000000 200.000000 864.000000
400.000000 200.000000 706.000000
384.000000 200.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
400.000000 224.000000 864.000000
416.000000 224.000000 864.000000
416.000000 224.000000 706.000000
400.000000 224.000000 706.000000
400.000000 208.000000 864.000000
416.000000 208.000000 864.000000
416.000000 208.000000 706.000000
400.000000 208.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
416.000000 232.000000 864.000000
432.000000 232.000000 864.000000
432.000000 232.000000 706.000000
416.000000 232.000000 706.000000
416.000000 216.000000 864.000000
432.000000 216.000000 864.000000
432.000000 216.000000 706.000000
416.000000 216.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
432.000000 240.000000 864.000000
448.000000 240.000000 864.000000
448.000000 240.000000 706.000000
432.000000 240.000000 706.000000
432.000000 224.000000 864.000000
448.000000 224.000000 864.000000
448.000000 224.000000 706.000000
432.000000 224.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
448.000000 248.000000 864.000000
464.000000 248.000000 864.000000
464.000000 248.000000 706.000000
448.000000 248.000000 706.000000
448.000000 232.000000 864.000000
464.000000 232.000000 864.000000
464.000000 232.000000 706.000000
448.000000 232.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
464.000000 256.000000 864.000000
480.000000 256.000000 864.000000
480.000000 256.000000 706.000000
464.000000 256.000000 706.000000
464.000000 240.000000 864.000000
480.000000 240.000000 864.000000
480.000000 240.000000 706.000000
464.000000 240.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff919191 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff919191 common/materials/stone/stone
brush
vertices
78.000000 144.000000 736.000000
256.000000 144.000000 736.000000
256.000000 144.000000 512.000000
78.000000 144.000000 512.000000
78.000000 32.000000 736.000000
256.000000 32.000000 736.000000
256.000000 32.000000 512.000000
78.000000 32.000000 512.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-114.000000 256.000000 498.000000
-78.000000 256.000000 498.000000
-78.000000 256.000000 462.000000
-114.000000 256.000000 462.000000
-114.000000 200.000000 498.000000
-78.000000 200.000000 498.000000
-78.000000 200.000000 462.000000
-114.000000 200.000000 462.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-114.000000 256.000000 442.000000
-78.000000 256.000000 442.000000
-78.000000 256.000000 406.000000
-114.000000 256.000000 406.000000
-114.000000 200.000000 442.000000
-78.000000 200.000000 442.000000
-78.000000 200.000000 406.000000
-114.000000 200.000000 406.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-114.000000 256.000000 386.000000
-78.000000 256.000000 386.000000
-78.000000 256.000000 354.000000
-114.000000 256.000000 354.000000
-114.000000 200.000000 386.000000
-78.000000 200.000000 386.000000
-78.000000 200.000000 354.000000
-114.000000 200.000000 354.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-110.000000 864.000000 496.000000
-78.000000 864.000000 496.000000
-78.000000 864.000000 224.000000
-110.000000 864.000000 224.000000
-110.000000 382.000000 496.000000
-78.000000 382.000000 496.000000
-78.000000 382.000000 224.000000
-110.000000 382.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-222.000000 382.000000 354.000000
-78.000000 382.000000 354.000000
-78.000000 382.000000 226.000000
-222.000000 382.000000 226.000000
-222.000000 144.000000 354.000000
-78.000000 144.000000 354.000000
-78.000000 144.000000 226.000000
-222.000000 144.000000 226.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-222.000000 414.000000 496.000000
-110.000000 414.000000 496.000000
-110.000000 414.000000 354.000000
-222.000000 414.000000 354.000000
-222.000000 382.000000 496.000000
-110.000000 382.000000 496.000000
-110.000000 382.000000 354.000000
-222.000000 382.000000 354.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-114.000000 382.000000 498.000000
-78.000000 382.000000 498.000000
-78.000000 382.000000 462.000000
-114.000000 382.000000 462.000000
-114.000000 320.000000 498.000000
-78.000000 320.000000 498.000000
-78.000000 320.000000 462.000000
-114.000000 320.000000 462.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-114.000000 382.000000 442.000000
-78.000000 382.000000 442.000000
-78.000000 382.000000 406.000000
-114.000000 382.000000 406.000000
-114.000000 320.000000 442.000000
-78.000000 320.000000 442.000000
-78.000000 320.000000 406.000000
-114.000000 320.000000 406.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-114.000000 382.000000 386.000000
-78.000000 382.000000 386.000000
-78.000000 382.000000 354.000000
-114.000000 382.000000 354.000000
-114.000000 320.000000 386.000000
-78.000000 320.000000 386.000000
-78.000000 320.000000 354.000000
-114.000000 320.000000 354.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-78.000008 544.000000 386.000000
0.000000 544.000000 386.000000
0.000000 544.000000 224.000000
-78.000008 544.000000 224.000000
-78.000008 488.000000 386.000000
0.000000 488.000000 386.000000
0.000000 488.000000 224.000000
-78.000008 488.000000 224.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-232.000000 504.000000 856.000000
-224.000000 504.000000 856.000000
-224.000000 504.000000 728.000000
-232.000000 504.000000 728.000000
-232.000000 496.000000 856.000000
-224.000000 496.000000 856.000000
-224.000000 496.000000 728.000000
-232.000000 496.000000 728.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-222.000000 503.000000 864.000000
-222.000000 503.000000 722.000000
-224.000000 503.000000 722.000000
-224.000000 503.000000 864.000000
-222.000000 497.000000 864.000000
-222.000000 497.000000 722.000000
-224.000000 497.000000 722.000000
-224.000000 497.000000 864.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff302929 common/materials/stone/stone
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff302929 common/materials/stone/stone
brush
vertices
-238.000000 382.000000 640.000000
-222.000000 382.000000 640.000000
-222.000000 382.000000 354.000000
-238.000000 382.000000 354.000000
-238.000000 200.000000 640.000000
-222.000000 200.000000 640.000000
-222.000000 200.000000 354.000000
-238.000000 200.000000 354.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-320.000000 512.000000 736.000000
-222.000000 512.000000 736.000000
-222.000000 512.000000 722.000000
-320.000000 512.000000 722.000000
-320.000000 504.000000 736.000000
-222.000000 504.000000 736.000000
-222.000000 504.000000 722.000000
-320.000000 504.000000 722.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-240.000000 512.000000 848.000000
-222.000000 512.000000 848.000000
-222.000000 512.000000 736.000000
-240.000000 512.000000 736.000000
-240.000000 504.000000 848.000000
-222.000000 504.000000 848.000000
-222.000000 504.000000 736.000000
-240.000000 504.000000 736.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-320.000000 512.000000 864.000000
-222.000000 512.000000 864.000000
-222.000000 512.000000 848.000000
-320.000000 512.000000 848.000000
-320.000000 504.000000 864.000000
-222.000000 504.000000 864.000000
-222.000000 504.000000 848.000000
-320.000000 504.000000 848.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0xffebebeb common/materials/stone/stone
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0xffebebeb common/materials/stone/stone
brush
vertices
-368.000000 512.000000 722.000000
-222.000000 512.000000 722.000000
-222.000000 512.000000 640.000000
-368.000000 512.000000 640.000000
-368.000000 144.000000 722.000000
-222.000000 144.000000 722.000000
-222.000000 144.000000 640.000000
-368.000000 144.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-366.000000 864.000000 688.000000
-222.000000 864.000000 688.000000
-222.000000 864.000000 640.000000
-366.000000 864.000000 640.000000
-366.000000 512.000000 688.000000
-222.000000 512.000000 688.000000
-222.000000 512.000000 640.000000
-366.000000 512.000000 640.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 686.000000 722.000000
-256.000000 512.000000 688.000000
-222.000000 686.000000 688.000000
-256.000000 512.000000 722.000000
-222.000000 512.000000 688.000000
-256.000000 686.000000 688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-318.000000 864.000000 864.000000
-222.000000 864.000000 864.000000
-222.000000 864.000000 688.000000
-318.000000 864.000000 688.000000
-318.000000 686.000000 864.000000
-222.000000 686.000000 864.000000
-222.000000 686.000000 688.000000
-318.000000 686.000000 688.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-368.000000 504.000000 864.000000
-224.000000 504.000000 864.000000
-224.000000 504.000000 856.000000
-368.000000 504.000000 856.000000
-368.000000 496.000000 864.000000
-224.000000 496.000000 864.000000
-224.000000 496.000000 856.000000
-368.000000 496.000000 856.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0xff000000 common/materials/fabric/cotton
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0xff000000 common/materials/fabric/cotton
brush
vertices
-334.000000 686.000000 866.000000
-318.000000 686.000000 866.000000
-318.000000 686.000000 722.000000
-334.000000 686.000000 722.000000
-334.000000 512.000000 866.000000
-318.000000 512.000000 866.000000
-318.000000 512.000000 722.000000
-334.000000 512.000000 722.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-318.000000 686.000000 722.000000
-256.000000 686.000000 722.000000
-256.000000 686.000000 706.000000
-318.000000 686.000000 706.000000
-318.000000 512.000000 722.000000
-256.000000 512.000000 722.000000
-256.000000 512.000000 706.000000
-318.000000 512.000000 706.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-366.000000 504.000000 861.000000
-313.000000 504.000000 861.000000
-313.000000 504.000000 721.000000
-366.000000 504.000000 721.000000
-366.000000 494.000000 861.000000
-313.000000 494.000000 861.000000
-313.000000 494.000000 721.000000
-366.000000 494.000000 721.000000
faces
0.000000 0.000000 0.750000 0.750000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 0.750000 0.750000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-224.000000 880.000000 864.000000
288.000000 880.000000 864.000000
288.000000 880.000000 224.000000
-224.000000 880.000000 224.000000
-224.000000 864.000000 864.000000
288.000000 864.000000 864.000000
288.000000 864.000000 224.000000
-224.000000 864.000000 224.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
entity
type CameraPath
UInt32 entityIdAttachedTo 74
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 232.000000 148.000000 824.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 744.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 776.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 808.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position -296.000000 516.000000 840.000000
Vector3 angles 90.000000 0.000000 0.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 232.000000 148.000000 648.000000
Vector3 angles 285.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 232.000000 196.000000 472.000000
Vector3 angles 300.000000 0.000000 0.000000
Bool8 teamA 0
|
b28bde1caf1c8f796854b97d30923d9d2ceac249 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1163/CH30/EX30.6/example_30_6.sce | cf329652d4972e9320818913f994ce4b70e02db5 | [] | 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,071 | sce | example_30_6.sce | clear;
clc;
disp("--------------Example 30.6----------------")
ciphertext="ELHLMDOYAZER";
block=strsplit(ciphertext,[4 8]); // split into blocks
f=[];
for i=1:size(block,'r') // for each block
c=strsplit(block(i));
f(2)=c(1); // move the character at position 1 to position 2
f(4)=c(2); // move the character at position 2 to position 4
f(1)=c(3); // move the character at position 3 to position 1
f(3)=c(4); // move the character at position 4 to position 3
str=f(1)+f(2)+f(3)+f(4);
block(i)=str;// new block
end
printf("The 3 blocks are %s , %s and %s.",block(1),block(2),block(3));
nz=0;
b3=strsplit(block(3));
for i=1:4
if(b3(i)=='Z');
nz=nz+1; // number of 'Z's in the last block
end
end
f=strsplit(block(3),size(b3,'r')-nz); // remove the 'Z's in the last block
block(3)=f(1); // new last block
text=block(1)+block(2)+block(3);
sp=strsplit(text,[5 7]);
plaintext=sp(1)+" "+sp(2)+" "+sp(3); // add the spaces
printf("\n\nThe message is %s.",plaintext) // display the result
|
c21ef0cb13fe72b0a93eb72aefb04ea75cca8437 | 68f6f3335d41b95146619ddf406414da5c1bc975 | /metodos-numericos/practicas/scilab/func.sci | 1f806c4a15569a6a1625bc8226fceaca8cc915d2 | [] | no_license | nachocattoni/Ita | be52ab7f80cb0dd7d0a0ef470c72a7f997f2e75b | f7e102a2917ebe59358dbd9d5f7af81703c16fde | refs/heads/master | 2021-05-02T08:09:23.784800 | 2018-02-08T02:50:30 | 2018-02-08T02:50:30 | 120,845,736 | 0 | 0 | null | 2018-02-09T02:29:22 | 2018-02-09T02:29:21 | null | UTF-8 | Scilab | false | false | 276 | sci | func.sci | clear
clc
// Para crear un arreglo de funciones
function y = f(x)
y = x
endfunction
function y = g(x)
y = x + 2
endfunction
function y = h(x)
y = x + 3
endfunction
A = list(f, g, h);
p = A(1) // p ahora es f
q = A(2) // q ahora es g
r = A(3) // r ahora es h
|
ad5eb58806476499f9970d2269ac56f91e9b03be | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/SCHI/XN24TFZ/ATWM1_Working_Memory_MEG_XN24TFZ_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 7aac2836f06c13abb8d01b78800d1ad88ce0a242 | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,383 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 61 292 292 399 125 2042 2992 2392 fixation_cross gabor_035 gabor_170 gabor_003 gabor_124 gabor_035_alt gabor_170_alt gabor_003 gabor_124 "2_1_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2400_gabor_patch_orientation_035_170_003_124_target_position_1_2_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_1_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_109 gabor_049 gabor_165 gabor_075 gabor_109_alt gabor_049_alt gabor_165 gabor_075 "2_2_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_109_049_165_075_target_position_1_2_retrieval_position_2" gabor_circ gabor_049_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_2_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_116 gabor_168 gabor_089 gabor_031 gabor_116_alt gabor_168 gabor_089_alt gabor_031 "2_3_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_116_168_089_031_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_139_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_3_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_139_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 1942 fixation_cross gabor_107 gabor_090 gabor_140 gabor_059 gabor_107_alt gabor_090 gabor_140_alt gabor_059 "2_4_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_107_090_140_059_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_4_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_175 gabor_108 gabor_042 gabor_086 gabor_175_alt gabor_108_alt gabor_042 gabor_086 "2_5_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_175_108_042_086_target_position_1_2_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_5_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_098 gabor_008 gabor_046 gabor_083 gabor_098_alt gabor_008 gabor_046 gabor_083_alt "2_6_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_098_008_046_083_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_target_position_1_4 "2_6_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_177 gabor_040 gabor_017 gabor_058 gabor_177_alt gabor_040 gabor_017 gabor_058_alt "2_7_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_177_040_017_058_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_103_framed blank blank blank blank fixation_cross_target_position_1_4 "2_7_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_001 gabor_075 gabor_155 gabor_019 gabor_001 gabor_075_alt gabor_155 gabor_019_alt "2_8_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_001_075_155_019_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_108_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_8_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_108_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_006 gabor_094 gabor_029 gabor_114 gabor_006 gabor_094 gabor_029_alt gabor_114_alt "2_9_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_006_094_029_114_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_165_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_9_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2092 fixation_cross gabor_128 gabor_148 gabor_038 gabor_164 gabor_128 gabor_148_alt gabor_038_alt gabor_164 "2_10_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_128_148_038_164_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_084 gabor_057 gabor_017 gabor_169 gabor_084_alt gabor_057 gabor_017 gabor_169_alt "2_11_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_084_057_017_169_target_position_1_4_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_11_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_015 gabor_140 gabor_124 gabor_180 gabor_015_alt gabor_140 gabor_124_alt gabor_180 "2_12_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_015_140_124_180_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_074_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_12_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_071 gabor_043 gabor_013 gabor_160 gabor_071 gabor_043 gabor_013_alt gabor_160_alt "2_13_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_071_043_013_160_target_position_3_4_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_13_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_119_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_004 gabor_157 gabor_081 gabor_028 gabor_004 gabor_157_alt gabor_081 gabor_028_alt "2_14_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_004_157_081_028_target_position_2_4_retrieval_position_2" gabor_circ gabor_112_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_14_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_112_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_095 gabor_124 gabor_173 gabor_063 gabor_095 gabor_124 gabor_173_alt gabor_063_alt "2_15_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_095_124_173_063_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_target_position_3_4 "2_15_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1792 2992 2442 fixation_cross gabor_097 gabor_063 gabor_146 gabor_117 gabor_097_alt gabor_063_alt gabor_146 gabor_117 "2_16_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2450_gabor_patch_orientation_097_063_146_117_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_16_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2592 fixation_cross gabor_104 gabor_036 gabor_073 gabor_153 gabor_104 gabor_036 gabor_073_alt gabor_153_alt "2_17_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_104_036_073_153_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_target_position_3_4 "2_17_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_160 gabor_111 gabor_086 gabor_037 gabor_160_alt gabor_111 gabor_086_alt gabor_037 "2_18_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_160_111_086_037_target_position_1_3_retrieval_position_1" gabor_021_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_18_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_090 gabor_123 gabor_008 gabor_035 gabor_090_alt gabor_123 gabor_008 gabor_035_alt "2_19_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_090_123_008_035_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_035_framed blank blank blank blank fixation_cross_target_position_1_4 "2_19_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_035_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_033 gabor_172 gabor_090 gabor_015 gabor_033 gabor_172_alt gabor_090_alt gabor_015 "2_20_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_033_172_090_015_target_position_2_3_retrieval_position_2" gabor_circ gabor_172_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_20_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_002 gabor_122 gabor_159 gabor_177 gabor_002_alt gabor_122 gabor_159 gabor_177_alt "2_21_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_002_122_159_177_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_target_position_1_4 "2_21_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1892 2992 2192 fixation_cross gabor_180 gabor_045 gabor_100 gabor_027 gabor_180_alt gabor_045 gabor_100_alt gabor_027 "2_22_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2200_gabor_patch_orientation_180_045_100_027_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_target_position_1_3 "2_22_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_027_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_163 gabor_024 gabor_047 gabor_137 gabor_163_alt gabor_024 gabor_047_alt gabor_137 "2_23_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_163_024_047_137_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_23_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1892 fixation_cross gabor_133 gabor_018 gabor_151 gabor_065 gabor_133_alt gabor_018_alt gabor_151 gabor_065 "2_24_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_133_018_151_065_target_position_1_2_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_114 gabor_053 gabor_077 gabor_097 gabor_114_alt gabor_053 gabor_077_alt gabor_097 "2_25_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_114_053_077_097_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_032_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_25_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_091 gabor_148 gabor_128 gabor_064 gabor_091_alt gabor_148 gabor_128 gabor_064_alt "2_26_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_091_148_128_064_target_position_1_4_retrieval_position_2" gabor_circ gabor_008_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_26_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_008_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_052 gabor_005 gabor_034 gabor_122 gabor_052 gabor_005 gabor_034_alt gabor_122_alt "2_27_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_052_005_034_122_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_27_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_065 gabor_002 gabor_021 gabor_130 gabor_065_alt gabor_002 gabor_021 gabor_130_alt "2_28_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_065_002_021_130_target_position_1_4_retrieval_position_1" gabor_065_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_28_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_164 gabor_051 gabor_012 gabor_087 gabor_164 gabor_051 gabor_012_alt gabor_087_alt "2_29_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_164_051_012_087_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_137_framed blank blank blank blank fixation_cross_target_position_3_4 "2_29_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_137_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_038 gabor_021 gabor_063 gabor_002 gabor_038_alt gabor_021 gabor_063 gabor_002_alt "2_30_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_038_021_063_002_target_position_1_4_retrieval_position_1" gabor_176_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_30_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_111 gabor_033 gabor_048 gabor_088 gabor_111_alt gabor_033 gabor_048 gabor_088_alt "2_31_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_111_033_048_088_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_31_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_033 gabor_104 gabor_149 gabor_123 gabor_033 gabor_104 gabor_149_alt gabor_123_alt "2_32_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_033_104_149_123_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_014_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_32_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2042 fixation_cross gabor_100 gabor_046 gabor_075 gabor_019 gabor_100 gabor_046 gabor_075_alt gabor_019_alt "2_33_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_100_046_075_019_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_019_framed blank blank blank blank fixation_cross_target_position_3_4 "2_33_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_019_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_066 gabor_018 gabor_153 gabor_037 gabor_066 gabor_018_alt gabor_153_alt gabor_037 "2_34_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_066_018_153_037_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_153_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_34_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_015 gabor_128 gabor_099 gabor_038 gabor_015 gabor_128_alt gabor_099_alt gabor_038 "2_35_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_015_128_099_038_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_35_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1992 2992 2342 fixation_cross gabor_067 gabor_014 gabor_172 gabor_034 gabor_067_alt gabor_014_alt gabor_172 gabor_034 "2_36_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2350_gabor_patch_orientation_067_014_172_034_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_36_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_172_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_064 gabor_012 gabor_032 gabor_176 gabor_064 gabor_012_alt gabor_032_alt gabor_176 "2_37_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_064_012_032_176_target_position_2_3_retrieval_position_2" gabor_circ gabor_012_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_37_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_054 gabor_166 gabor_122 gabor_095 gabor_054 gabor_166_alt gabor_122 gabor_095_alt "2_38_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_054_166_122_095_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_095_framed blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_014 gabor_168 gabor_119 gabor_096 gabor_014_alt gabor_168 gabor_119_alt gabor_096 "2_39_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_014_168_119_096_target_position_1_3_retrieval_position_1" gabor_014_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_39_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_094 gabor_005 gabor_167 gabor_115 gabor_094_alt gabor_005 gabor_167_alt gabor_115 "2_40_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_094_005_167_115_target_position_1_3_retrieval_position_1" gabor_143_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_40_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_040 gabor_176 gabor_069 gabor_100 gabor_040_alt gabor_176_alt gabor_069 gabor_100 "2_41_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_040_176_069_100_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_147_framed blank blank blank blank fixation_cross_target_position_1_2 "2_41_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_147_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_111 gabor_022 gabor_180 gabor_135 gabor_111_alt gabor_022_alt gabor_180 gabor_135 "2_42_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_111_022_180_135_target_position_1_2_retrieval_position_2" gabor_circ gabor_022_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_42_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_022_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_072 gabor_030 gabor_004 gabor_089 gabor_072_alt gabor_030_alt gabor_004 gabor_089 "2_43_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_072_030_004_089_target_position_1_2_retrieval_position_1" gabor_072_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_43_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 2392 fixation_cross gabor_089 gabor_017 gabor_106 gabor_136 gabor_089_alt gabor_017 gabor_106 gabor_136_alt "2_44_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2400_gabor_patch_orientation_089_017_106_136_target_position_1_4_retrieval_position_2" gabor_circ gabor_017_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_44_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_017_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2542 fixation_cross gabor_060 gabor_039 gabor_146 gabor_078 gabor_060_alt gabor_039 gabor_146 gabor_078_alt "2_45_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2550_gabor_patch_orientation_060_039_146_078_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_target_position_1_4 "2_45_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_149 gabor_022 gabor_066 gabor_171 gabor_149_alt gabor_022 gabor_066_alt gabor_171 "2_46_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_149_022_066_171_target_position_1_3_retrieval_position_1" gabor_099_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_46_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_099_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_124 gabor_041 gabor_089 gabor_107 gabor_124 gabor_041_alt gabor_089 gabor_107_alt "2_47_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_124_041_089_107_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_target_position_2_4 "2_47_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_059 gabor_033 gabor_122 gabor_140 gabor_059_alt gabor_033 gabor_122 gabor_140_alt "2_48_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_059_033_122_140_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_002_framed blank blank blank blank fixation_cross_target_position_1_4 "2_48_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2442 fixation_cross gabor_092 gabor_139 gabor_110 gabor_052 gabor_092_alt gabor_139 gabor_110 gabor_052_alt "2_49_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_092_139_110_052_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_004_framed blank blank blank blank fixation_cross_target_position_1_4 "2_49_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1792 2992 2042 fixation_cross gabor_113 gabor_049 gabor_136 gabor_172 gabor_113_alt gabor_049_alt gabor_136 gabor_172 "2_50_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_1800_3000_2050_gabor_patch_orientation_113_049_136_172_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_50_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_087_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_046 gabor_074 gabor_025 gabor_089 gabor_046 gabor_074_alt gabor_025_alt gabor_089 "2_51_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_046_074_025_089_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_025_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_51_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_130 gabor_160 gabor_101 gabor_048 gabor_130 gabor_160_alt gabor_101 gabor_048_alt "2_52_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_130_160_101_048_target_position_2_4_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_115 gabor_165 gabor_095 gabor_138 gabor_115 gabor_165_alt gabor_095 gabor_138_alt "2_53_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_115_165_095_138_target_position_2_4_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_53_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_179 gabor_061 gabor_149 gabor_121 gabor_179_alt gabor_061 gabor_149_alt gabor_121 "2_54_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_179_061_149_121_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_54_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 1992 fixation_cross gabor_127 gabor_041 gabor_002 gabor_089 gabor_127_alt gabor_041 gabor_002 gabor_089_alt "2_55_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_127_041_002_089_target_position_1_4_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_55_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_018 gabor_075 gabor_099 gabor_128 gabor_018_alt gabor_075 gabor_099_alt gabor_128 "2_56_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_018_075_099_128_target_position_1_3_retrieval_position_1" gabor_153_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_56_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2492 fixation_cross gabor_177 gabor_094 gabor_113 gabor_006 gabor_177 gabor_094 gabor_113_alt gabor_006_alt "2_57_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_177_094_113_006_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_006_framed blank blank blank blank fixation_cross_target_position_3_4 "2_57_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2192 2992 2542 fixation_cross gabor_048 gabor_024 gabor_076 gabor_138 gabor_048 gabor_024_alt gabor_076_alt gabor_138 "2_58_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2550_gabor_patch_orientation_048_024_076_138_target_position_2_3_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_58_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_048_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2492 fixation_cross gabor_075 gabor_018 gabor_090 gabor_123 gabor_075 gabor_018 gabor_090_alt gabor_123_alt "2_59_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2500_gabor_patch_orientation_075_018_090_123_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_044_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_59_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2492 fixation_cross gabor_161 gabor_056 gabor_030 gabor_008 gabor_161 gabor_056_alt gabor_030 gabor_008_alt "2_60_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_161_056_030_008_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_2_4 "2_60_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_015 gabor_148 gabor_036 gabor_105 gabor_015_alt gabor_148 gabor_036_alt gabor_105 "2_61_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_015_148_036_105_target_position_1_3_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2292 fixation_cross gabor_126 gabor_096 gabor_013 gabor_159 gabor_126 gabor_096 gabor_013_alt gabor_159_alt "2_62_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_126_096_013_159_target_position_3_4_retrieval_position_1" gabor_080_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_080_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_004 gabor_126 gabor_092 gabor_072 gabor_004_alt gabor_126_alt gabor_092 gabor_072 "2_63_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_004_126_092_072_target_position_1_2_retrieval_position_1" gabor_052_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_63_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_052_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2392 fixation_cross gabor_006 gabor_072 gabor_129 gabor_159 gabor_006 gabor_072 gabor_129_alt gabor_159_alt "2_64_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_006_072_129_159_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_target_position_3_4 "2_64_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_105 gabor_030 gabor_146 gabor_090 gabor_105 gabor_030_alt gabor_146_alt gabor_090 "2_65_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_105_030_146_090_target_position_2_3_retrieval_position_2" gabor_circ gabor_030_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_65_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_030_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2142 fixation_cross gabor_142 gabor_009 gabor_177 gabor_070 gabor_142 gabor_009_alt gabor_177_alt gabor_070 "2_66_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_142_009_177_070_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_025_framed blank blank blank blank fixation_cross_target_position_2_3 "2_66_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_025_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_161 gabor_096 gabor_127 gabor_055 gabor_161_alt gabor_096 gabor_127_alt gabor_055 "2_67_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_161_096_127_055_target_position_1_3_retrieval_position_1" gabor_161_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_67_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2242 fixation_cross gabor_041 gabor_013 gabor_102 gabor_160 gabor_041_alt gabor_013_alt gabor_102 gabor_160 "2_68_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_041_013_102_160_target_position_1_2_retrieval_position_1" gabor_041_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_68_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_180 gabor_163 gabor_039 gabor_010 gabor_180 gabor_163 gabor_039_alt gabor_010_alt "2_69_Encoding_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_180_163_039_010_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_3_4 "2_69_Retrieval_Working_Memory_MEG_P1_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2192 2992 1992 fixation_cross gabor_088 gabor_071 gabor_133 gabor_045 gabor_088_alt gabor_071_alt gabor_133 gabor_045 "2_70_Encoding_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2000_gabor_patch_orientation_088_071_133_045_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_133_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_70_Retrieval_Working_Memory_MEG_P1_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_133_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
574137d1d23bb31003691fec716c505fe8651f6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH1/EX1.13/1_13.sce | 98f2ce6e4eaa2704fe75e708e532317701f6bde3 | [] | 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,370 | sce | 1_13.sce | //ques-1.13
//Calculating amount of lime and soda and NaCl required
clc
p1=80;//Purity percentage of lime
p2=90;//Purity percentage of soda
V1=1000000;//volume of water for lime and soda calculation
V2=10000;//volume of water for zeolite softener
//Raw treatement
A=300;//content of Ca cation (in ppm)
B=150;//content of Mg cation (in ppm)
C=244;//content of Hydrogen carbonate anion (in ppm)
D=60;//content of CO2 (in ppm)
E=41;//content of NaAlO2 (in ppm)
a1=(A/40)*100;//CaCO3 equivalent of A (in ppm)
a2=(B/24)*100;//CaCO3 equivalent of B (in ppm)
a3=(C/122)*100;//CaCO3 equivalent of C (in ppm)
a4=(D/44)*100;//CaCO3 equivalent of D (in ppm)
a5=(E/164)*100;//CaCO3 equivalent of E (in ppm)
//Treated water
F=65;//content of Hydroxide anion (in ppm)
G=40;//content of Carbonate anion (in ppm)
a6=(F/34)*100;//CaCO3 equivalent of F (in ppm)
a7=(G/60)*100;//CaCO3 equivalent of G (in ppm)
lime=(a2+a3+a4+a5+a6)*(74/100)*V1*(100/p1);//lime required (in mg)
soda=(a1+a2-a3+a5+a6+a7)*(106/100)*V1*(100/p2);//soda required (in mg)
printf("Lime required for softening 1 million litre of hard water is %d kg and Soda required is %d kg.\n",lime/1000000,soda/1000000);
h=(a1+a2)*V2;//hardness of 10000L of water
//50g of CaCO3 = 58.5g of NaCl
n=(58.5/50)*h;//NaCl required (in g)
printf(" Amount of NaCl required is %.3f kg.",n/1000000);
|
0fbc92c550aeb1c716471b8dc96c9365e42df2d1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /569/CH2/EX2.20/2_20.sci | 697b0ffdb478dc8cd7bc1c35ed538f11bbe58eae | [] | 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 | 109 | sci | 2_20.sci | //calculating the dead zone
clc;
disp('span s=')
s=600;
Dz=0.00125*s;
disp(Dz,'Dead zone(degree C)=');
|
2e338acb0cd9be15589308db28d22d0b69547436 | 46ffb5fda9448453eba4d6787a1568028b241d88 | /ABMLangangen/calibration/calibSimplexMeanSquares_04:08:38.855 PM 05-juin-2013.sci | 2584ca65c27b164c1afb09e3a64dfdbbf602f227 | [] | no_license | JusteRaimbault/Models | f81f886dc050445dae68e933e0c052c7f9c0b59c | 52f9c28fe20c8e491fb83e22ef162256eb966d32 | refs/heads/master | 2016-09-10T23:23:05.419418 | 2013-07-30T22:02:34 | 2013-07-30T22:02:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 16,966 | sci | calibSimplexMeanSquares_04:08:38.855 PM 05-juin-2013.sci | ms=[];incomemean=[];bref=[];bnorm=[];
ms(1)=53180.1819728015;
incomemean(1)=2000;
bref(1)=2000;
bnorm(1)=2000;
ms(2)=53000;
incomemean(2)=2000;
bref(2)=2500;
bnorm(2)=2000;
ms(3)=46484.185473106;
incomemean(3)=2000;
bref(3)=2000;
bnorm(3)=2500;
ms(4)=53180.1819728015;
incomemean(4)=2500;
bref(4)=2000;
bnorm(4)=2000;
ms(5)=54865.38678145891;
incomemean(5)=2333.333333333333;
bref(5)=1500;
bnorm(5)=2333.333333333333;
ms(6)=53444.89653020798;
incomemean(6)=2249.9999999999995;
bref(6)=1750;
bnorm(6)=2249.9999999999995;
ms(7)=53000;
incomemean(7)=2083.333333333333;
bref(7)=2249.9999999999995;
bnorm(7)=2083.333333333333;
ms(8)=53104.42164011125;
incomemean(8)=2208.333333333333;
bref(8)=1875;
bnorm(8)=2208.333333333333;
ms(9)=60182.30388325076;
incomemean(9)=2472.2222222222217;
bref(9)=1916.666666666667;
bnorm(9)=2472.2222222222217;
ms(10)=55000.85918668387;
incomemean(10)=2118.0555555555557;
bref(10)=1979.1666666666667;
bnorm(10)=2118.0555555555557;
ms(11)=49130.59124905029;
incomemean(11)=2000;
bref(11)=2000;
bnorm(11)=2250;
ms(12)=55887.6651722182;
incomemean(12)=2104.1666666666665;
bref(12)=1937.5;
bnorm(12)=2354.1666666666665;
ms(13)=47542.633522660726;
incomemean(13)=2250;
bref(13)=2000;
bnorm(13)=2250;
ms(14)=55533.18224000539;
incomemean(14)=2062.4999999999995;
bref(14)=2062.4999999999995;
bnorm(14)=2312.5;
ms(15)=52790.56122396253;
incomemean(15)=2072.9166666666665;
bref(15)=2031.25;
bnorm(15)=2322.9166666666665;
ms(16)=49653.561370099196;
incomemean(16)=2093.750000000001;
bref(16)=1968.7499999999995;
bnorm(16)=2343.75;
ms(17)=48716.88838319738;
incomemean(17)=2088.5416666666674;
bref(17)=1984.375;
bnorm(17)=2338.5416666666665;
ms(18)=47692.947185709985;
incomemean(18)=2225.6944444444453;
bref(18)=1989.583333333333;
bnorm(18)=2475.694444444444;
ms(19)=46338.67170221943;
incomemean(19)=2228.587962962963;
bref(19)=2008.6805555555552;
bnorm(19)=2478.587962962962;
ms(20)=52151.26496544684;
incomemean(20)=2298.6111111111118;
bref(20)=2020.833333333333;
bnorm(20)=2548.611111111111;
ms(21)=46597.32872301225;
incomemean(21)=2093.3641975308637;
bref(21)=2016.203703703704;
bnorm(21)=2343.3641975308637;
ms(22)=44686.39694696369;
incomemean(22)=1964.6347736625517;
bref(22)=2016.5895061728397;
bnorm(22)=2631.301440329217;
ms(23)=48737.97321433288;
incomemean(23)=1821.9521604938273;
bref(23)=2024.88425925926;
bnorm(23)=2821.9521604938263;
ms(24)=58076.18821425314;
incomemean(24)=2035.4509602194803;
bref(24)=2000.6430041152262;
bnorm(24)=2729.8954046639215;
ms(25)=46846.56464841708;
incomemean(25)=2078.885888203018;
bref(25)=2012.3135288065846;
bnorm(25)=2439.996999314128;
ms(26)=42364.60788812256;
incomemean(26)=2028.9994855967077;
bref(26)=2016.3966049382718;
bnorm(26)=2487.33281893004;
ms(27)=56039.72320039056;
incomemean(27)=2096.6113683127573;
bref(27)=2012.6350308641975;
bnorm(27)=2554.9447016460895;
ms(28)=53500.15303126701;
incomemean(28)=1982.3173868312758;
bref(28)=2008.2947530864199;
bnorm(28)=2565.650720164608;
ms(29)=51839.173293145446;
incomemean(29)=1887.3563957475994;
bref(29)=2014.8855452674898;
bnorm(29)=2567.9119513031546;
ms(30)=46103.70025169883;
incomemean(30)=1938.3430498399634;
bref(30)=2023.6196844993142;
bnorm(30)=2558.7134202103334;
ms(31)=41827.37955918189;
incomemean(31)=2067.2951436518833;
bref(31)=2022.851651806127;
bnorm(31)=2550.3198350099065;
ms(32)=52295.654894949854;
incomemean(32)=2157.2645176040255;
bref(32)=2026.8347050754464;
bnorm(32)=2541.523776863283;
ms(33)=57378.33400039734;
incomemean(33)=2102.276552100799;
bref(33)=2013.605490778844;
bnorm(33)=2553.9226426357773;
ms(34)=51548.433854458905;
incomemean(34)=1979.3264254051724;
bref(34)=2021.1161360691967;
bnorm(34)=2557.515725816694;
ms(35)=52629.9870813951;
incomemean(35)=2048.1473146242956;
bref(35)=2019.6241283721993;
bnorm(35)=2518.8263269699733;
ms(36)=51236.057737604424;
incomemean(36)=2002.8190967459234;
bref(36)=2023.2356681527206;
bnorm(36)=2554.51662761012;
ms(37)=45265.99495190807;
incomemean(37)=2015.9649586572175;
bref(37)=2019.7205789894833;
bnorm(37)=2590.8106376695614;
ms(38)=50070.12593234313;
incomemean(38)=2009.238818079054;
bref(38)=2024.247804260022;
bnorm(38)=2611.605073223085;
ms(39)=48586.67790142882;
incomemean(39)=2058.8468501795123;
bref(39)=2021.3110218843672;
bnorm(39)=2613.973736324915;
ms(40)=39416.312408997204;
incomemean(40)=2085.499150246688;
bref(40)=2018.3410308599632;
bnorm(40)=2558.464399446503;
ms(41)=53030.53417211511;
incomemean(41)=2123.6293163305054;
bref(41)=2015.3876441599346;
bnorm(41)=2531.8940625582127;
ms(42)=43362.91696449385;
incomemean(42)=2053.6593181910134;
bref(42)=2019.2978192193486;
bnorm(42)=2519.0895117590653;
ms(43)=46007.03527457491;
incomemean(43)=2121.670782735839;
bref(43)=2020.6064222674763;
bnorm(43)=2494.4385264740886;
ms(44)=51024.44616774614;
incomemean(44)=2042.391414676873;
bref(44)=2019.9420398089815;
bnorm(44)=2566.717609870693;
ms(45)=55279.59268887827;
incomemean(45)=2076.3971469492853;
bref(45)=2020.596341333045;
bnorm(45)=2554.392117228205;
ms(46)=46947.081037623386;
incomemean(46)=2069.5792342188506;
bref(46)=2018.819425039656;
bnorm(46)=2538.7769556027843;
ms(47)=42514.713636924396;
incomemean(47)=2050.7320544519525;
bref(47)=2019.0308049247233;
bnorm(47)=2574.6375185580323;
ms(48)=45029.96592492939;
incomemean(48)=2060.8098123290433;
bref(48)=2016.8644992165164;
bnorm(48)=2560.1937985100085;
ms(49)=42455.79859498382;
incomemean(49)=2061.781443799606;
bref(49)=2017.3381316278128;
bnorm(49)=2590.086855406912;
ms(50)=52390.04615407764;
incomemean(50)=2071.198620003121;
bref(50)=2019.6088123918162;
bnorm(50)=2588.598717097623;
ms(51)=46595.498307440175;
incomemean(51)=2063.407014247563;
bref(51)=2017.5505775103413;
bnorm(51)=2567.2950281569124;
ms(52)=51631.874598001974;
incomemean(52)=2073.1544812878656;
bref(52)=2017.6027650382398;
bnorm(52)=2559.329098978256;
ms(53)=47803.84696611967;
incomemean(53)=2073.640297023147;
bref(53)=2017.839581243888;
bnorm(53)=2574.2756274267076;
ms(54)=51346.3827864006;
incomemean(54)=2068.1156023493204;
bref(54)=2018.6859178923432;
bnorm(54)=2566.5509590022675;
ms(55)=54169.52321331083;
incomemean(55)=2078.348885124904;
bref(55)=2018.9749216258897;
bnorm(55)=2573.5315582720623;
ms(56)=52687.62215602741;
incomemean(56)=2074.453082247125;
bref(56)=2017.9458041851522;
bnorm(56)=2562.8797138017076;
ms(57)=59185.13368825296;
incomemean(57)=2079.3268157672765;
bref(57)=2017.9718979491015;
bnorm(57)=2558.8967492123793;
ms(58)=48629.702163279144;
incomemean(58)=2079.5697236349174;
bref(58)=2018.0903060519256;
bnorm(58)=2566.3700134366054;
ms(59)=58530.68027489067;
incomemean(59)=2076.807376298004;
bref(59)=2018.5134743761532;
bnorm(59)=2562.5076792243854;
ms(60)=48734.55788049694;
incomemean(60)=2081.924017685796;
bref(60)=2018.657976242927;
bnorm(60)=2565.9979788592836;
ms(61)=45201.12885709741;
incomemean(61)=2087.8545514135967;
bref(61)=2018.212734393725;
bnorm(61)=2564.713915270542;
ms(62)=45857.96313669358;
incomemean(62)=2086.6915991776714;
bref(62)=2017.7714046274828;
bnorm(62)=2560.3675732431493;
ms(63)=48555.24596597829;
incomemean(63)=2093.7938102570524;
bref(63)=2018.1264738688556;
bnorm(63)=2555.9939118701895;
ms(64)=46741.35831504912;
incomemean(64)=2090.2377886015183;
bref(64)=2018.117431914623;
bnorm(64)=2558.5879372617933;
ms(65)=46739.02757409187;
incomemean(65)=2083.1257452904506;
bref(65)=2018.0993480061584;
bnorm(65)=2563.775988045001;
ms(66)=42787.82998772685;
incomemean(66)=2084.9037561182176;
bref(66)=2018.1038689832747;
bnorm(66)=2562.478975349199;
ms(67)=43765.96687117972;
incomemean(67)=2085.480039341329;
bref(67)=2018.6670181971604;
bnorm(67)=2563.4039534676776;
ms(68)=48889.31488078838;
incomemean(68)=2082.734079057225;
bref(68)=2018.5285442998747;
bnorm(68)=2558.1843035717093;
ms(69)=48061.96095472543;
incomemean(69)=2086.574433324504;
bref(69)=2018.2916868702623;
bnorm(69)=2563.081512345834;
ms(70)=45423.454478570675;
incomemean(70)=2085.4895947940086;
bref(70)=2018.5040245285618;
bnorm(70)=2560.9341764570904;
ms(71)=49228.67861950793;
incomemean(71)=2085.2014531824525;
bref(71)=2018.222449921619;
bnorm(71)=2560.4716873978514;
ms(72)=51312.87786805509;
incomemean(72)=2086.676850830142;
bref(72)=2018.276882626844;
bnorm(72)=2561.5891573585227;
ms(73)=56136.11943801961;
incomemean(73)=2084.116614651957;
bref(73)=2018.4347875799185;
bnorm(73)=2558.324351509107;
ms(74)=52390.036870804826;
incomemean(74)=2086.0367917855956;
bref(74)=2018.3163588651128;
bnorm(74)=2560.7729558961687;
ms(75)=53145.35101443187;
incomemean(75)=2085.4943725203484;
bref(75)=2018.4225276942625;
bnorm(75)=2559.6992879517966;
ms(76)=50267.080813379755;
incomemean(76)=2085.3503017145704;
bref(76)=2018.2817403907911;
bnorm(76)=2559.4680434221773;
ms(77)=46295.772290357396;
incomemean(77)=2086.088000538415;
bref(77)=2018.3089567434035;
bnorm(77)=2560.0267784025127;
ms(78)=45492.55163141176;
incomemean(78)=2085.797262479434;
bref(78)=2018.1986243018428;
bnorm(78)=2558.9401928956668;
ms(79)=46826.09509543332;
incomemean(79)=2086.2393071284528;
bref(79)=2018.2840008793487;
bnorm(79)=2558.8195370742787;
ms(80)=52489.14310719464;
incomemean(80)=2086.0170557749825;
bref(80)=2018.2834357572094;
bnorm(80)=2558.981663661253;
ms(81)=53663.51064799868;
incomemean(81)=2085.648206363061;
bref(81)=2018.269827580903;
bnorm(81)=2558.702296171085;
ms(82)=55416.000485881596;
incomemean(82)=2085.8692286875703;
bref(82)=2018.312515869656;
bnorm(82)=2558.641968260391;
ms(83)=51091.052915281085;
incomemean(83)=2085.7935753925512;
bref(83)=2018.3249938016834;
bnorm(83)=2559.245588924508;
ms(84)=53497.051835173566;
incomemean(84)=2085.4247259806302;
bref(84)=2018.3113856253772;
bnorm(84)=2558.96622143434;
ms(85)=53749.547517998566;
incomemean(85)=2085.4967613835192;
bref(85)=2018.3817792771129;
bnorm(85)=2559.0818436991485;
ms(86)=46140.29428474799;
incomemean(86)=2085.6103451181757;
bref(86)=2018.2978155049555;
bnorm(86)=2558.797183053101;
ms(87)=52620.63771754565;
incomemean(87)=2085.843987857647;
bref(87)=2018.331174485691;
bnorm(87)=2558.7052261817353;
ms(88)=53012.428974463844;
incomemean(88)=2085.739172388393;
bref(88)=2018.3262272706124;
bnorm(88)=2558.770474994886;
ms(89)=45320.938926747825;
incomemean(89)=2085.5547476824318;
bref(89)=2018.3194231824593;
bnorm(89)=2558.6307912498023;
ms(90)=42470.92566655808;
incomemean(90)=2085.6715690521673;
bref(90)=2018.336102672827;
bnorm(90)=2558.5848128141192;
ms(91)=53144.99423481268;
incomemean(91)=2085.6463628196198;
bref(91)=2018.3330123308233;
bnorm(91)=2558.8549941855053;
ms(92)=48850.56641210099;
incomemean(92)=2085.5039485012376;
bref(92)=2018.3313588126762;
bnorm(92)=2558.265008154777;
ms(93)=44911.484562025405;
incomemean(93)=2085.5395520808333;
bref(93)=2018.331772192213;
bnorm(93)=2558.412504662459;
ms(94)=44547.03135462904;
incomemean(94)=2085.585433237361;
bref(94)=2018.353180634209;
bnorm(94)=2558.343686698917;
ms(95)=38304.05943604933;
incomemean(95)=2085.631216276645;
bref(95)=2018.3551039191202;
bnorm(95)=2558.5160946439;
ms(96)=53993.01828042971;
incomemean(96)=2085.6770483745513;
bref(96)=2018.3667697825745;
bnorm(96)=2558.5678896346217;
ms(97)=42590.20672086883;
incomemean(97)=2085.615857146306;
bref(97)=2018.3349776670652;
bnorm(97)=2558.6998512374303;
ms(98)=51793.09880577578;
incomemean(98)=2085.60825116907;
bref(98)=2018.339528408851;
bnorm(98)=2558.610810102802;
ms(99)=54913.076023168076;
incomemean(99)=2085.5651832616663;
bref(99)=2018.3480673895417;
bnorm(99)=2558.4902470452016;
ms(100)=56596.76490043538;
incomemean(100)=2085.6235367114755;
bref(100)=2018.3450407930927;
bnorm(100)=2558.607972940665;
ms(101)=47388.28130597397;
incomemean(101)=2085.651392664406;
bref(101)=2018.3456032959737;
bnorm(101)=2558.55045372901;
ms(102)=55420.27692012472;
incomemean(102)=2085.608324757003;
bref(102)=2018.3541422766648;
bnorm(102)=2558.4298906714093;
ms(103)=45198.185752785095;
incomemean(103)=2085.612127745621;
bref(103)=2018.3518669057717;
bnorm(103)=2558.474411238723;
ms(104)=49066.46225186825;
incomemean(104)=2085.6979745294484;
bref(104)=2018.3536486910357;
bnorm(104)=2558.537059362552;
ms(105)=51985.12373072916;
incomemean(105)=2085.6647767125028;
bref(105)=2018.3522533656624;
bnorm(105)=2558.5253562832145;
ms(106)=44696.0875318344;
incomemean(106)=2085.6645954030464;
bref(106)=2018.354376305078;
bnorm(106)=2558.526577003226;
ms(107)=49993.70036986234;
incomemean(107)=2085.621672011133;
bref(107)=2018.353485412446;
bnorm(107)=2558.4952529413113;
ms(108)=51449.24622899003;
incomemean(108)=2085.6413044705255;
bref(108)=2018.3503536075468;
bnorm(108)=2558.533274186455;
ms(109)=46036.279095250924;
incomemean(109)=2085.637017990024;
bref(109)=2018.3582901502164;
bnorm(109)=2558.492008872503;
ms(110)=53268.14350463344;
incomemean(110)=2085.666881102011;
bref(110)=2018.358361503831;
bnorm(110)=2558.527867405107;
ms(111)=51047.78851301166;
incomemean(111)=2085.6329742838525;
bref(111)=2018.3547044352922;
bnorm(111)=2558.50340655726;
ms(112)=45840.36811639899;
incomemean(112)=2085.6479058398454;
bref(112)=2018.354740112099;
bnorm(112)=2558.5213358235633;
ms(113)=47553.57363069063;
incomemean(113)=2085.626444143889;
bref(113)=2018.354294665783;
bnorm(113)=2558.5056737926056;
ms(114)=44348.289949644706;
incomemean(114)=2085.6341171333343;
bref(114)=2018.3566970346683;
bnorm(114)=2558.5040517582015;
ms(115)=54220.71501860007;
incomemean(115)=2085.6490486893276;
bref(115)=2018.3567327114752;
bnorm(115)=2558.5219810245044;
ms(116)=51031.360833252176;
incomemean(116)=2085.6320952802484;
bref(116)=2018.3549041772062;
bnorm(116)=2558.5097506005804;
ms(117)=53251.06953343728;
incomemean(117)=2085.639561058245;
bref(117)=2018.3549220156096;
bnorm(117)=2558.5187152337317;
ms(118)=52929.269726565224;
incomemean(118)=2085.6288302102666;
bref(118)=2018.3546992924516;
bnorm(118)=2558.5108842182526;
ms(119)=48426.97535994097;
incomemean(119)=2085.63266670499;
bref(119)=2018.3559004768942;
bnorm(119)=2558.5100732010505;
ms(120)=57771.081513193596;
incomemean(120)=2085.6222477363563;
bref(120)=2018.3555471100335;
bnorm(120)=2558.505986141736;
ms(121)=44467.831460061905;
incomemean(121)=2085.6352327277727;
bref(121)=2018.3550782892157;
bnorm(121)=2558.515532960733;
ms(122)=45139.00563237857;
incomemean(122)=2085.637246929339;
bref(122)=2018.3560224977014;
bnorm(122)=2558.5169163188693;
ms(123)=52470.65196937098;
incomemean(123)=2085.6364639175154;
bref(123)=2018.3549026604633;
bnorm(123)=2558.5222894146173;
ms(124)=52311.602810009455;
incomemean(124)=2085.633616008121;
bref(124)=2018.3556510227863;
bnorm(124)=2558.513127254442;
ms(125)=54279.2802214973;
incomemean(125)=2085.6332245022086;
bref(125)=2018.355091104168;
bnorm(125)=2558.515813802316;
ms(126)=44075.48534557411;
incomemean(126)=2085.6342316029923;
bref(126)=2018.3555632084108;
bnorm(126)=2558.5165054813847;
ms(127)=47972.99549668791;
incomemean(127)=2085.6319414908176;
bref(127)=2018.3555021980073;
bnorm(127)=2558.5130839224753;
ms(128)=46243.289495980556;
incomemean(128)=2085.6317017447604;
bref(128)=2018.3556884461905;
bnorm(128)=2558.514642229523;
ms(129)=57185.928156222275;
incomemean(129)=2085.6328249254475;
bref(129)=2018.3554015178074;
bnorm(129)=2558.5184109807287;
ms(130)=56120.84875847609;
incomemean(130)=2085.632162349475;
bref(130)=2018.3554770279575;
bnorm(130)=2558.5144156870388;
ms(131)=47758.8247408617;
incomemean(131)=2085.6314590107027;
bref(131)=2018.3553961826553;
bnorm(131)=2558.5153684367115;
ms(132)=45312.012505746156;
incomemean(132)=2085.632723939819;
bref(132)=2018.3553335637655;
bnorm(132)=2558.5163000626426;
ms(133)=48202.22032865825;
incomemean(133)=2085.631578883731;
bref(133)=2018.3553030585638;
bnorm(133)=2558.514589283188;
ms(134)=44793.53871682243;
incomemean(134)=2085.6320206010464;
bref(134)=2018.355252718463;
bnorm(134)=2558.517252812314;
ms(135)=55715.92000525515;
incomemean(135)=2085.632514867637;
bref(135)=2018.3550639515765;
bnorm(135)=2558.517729909191;
ms(136)=44567.222573254825;
incomemean(136)=2085.631722974936;
bref(136)=2018.3553131248857;
bnorm(136)=2558.5159588048314;
ms(137)=45071.84935497123;
incomemean(137)=2085.6305826285984;
bref(137)=2018.3551129445468;
bnorm(137)=2558.5165707780525;
ms(138)=44919.51712990036;
incomemean(138)=2085.6311179564036;
bref(138)=2018.3551680993514;
bnorm(138)=2558.5165030992002;
ms(139)=49275.158618090296;
incomemean(139)=2085.6321886120136;
bref(139)=2018.355278408961;
bnorm(139)=2558.516367741495;
ms(140)=44844.75419458975;
incomemean(140)=2085.631385620306;
bref(140)=2018.3551956767537;
bnorm(140)=2558.516469259774;
ms(141)=48575.41299646567;
incomemean(141)=2085.6319209481117;
bref(141)=2018.3552508315588;
bnorm(141)=2558.5164015809223;
ms(142)=46412.08090697419;
incomemean(142)=2085.6315194522576;
bref(142)=2018.3552094654551;
bnorm(142)=2558.516452340061;
ms(143)=54948.257008559965;
incomemean(143)=2085.6314696257905;
bref(143)=2018.355208522003;
bnorm(143)=2558.5160267243655;
ms(144)=47714.42825574452;
incomemean(144)=2085.6313009484757;
bref(144)=2018.355149797937;
bnorm(144)=2558.5162819518373;
|
d4aff1971b37ea692234db8321cab8dbe0d535c7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH10/EX10.10/CH10Exa10.sce | ee6c0c8a7ce32edf159558919064bfbba4eb4773 | [] | 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 | 783 | sce | CH10Exa10.sce | // Scilab code Exa10.10 : : Page-458 (2011)
clc; clear;
N_0 = 6.02252e+26; // Avogadro's constant
sigma = 3.5e-28; // Cross section, square metre
rho = 8.9e+03; // Nuclear density, Kg per cubic metre
M = 58; // Mass number
summation = rho/M*N_0*sigma; // Macroscopic cross section, per metre
x = 0.01e-02; // Thickness of nickel sheet, metre
I0_ratio_I = exp(summation*x/2.3026); // Fractional attenuation of neutron beam on passing through nickel sheet
printf("\nThe fractional attenuation of neutron beam on passing through nickel sheet = %6.4f", I0_ratio_I);
// Result
// The fractional attenuation of neutron beam on passing through nickel sheet = 1.0014
// Wrong answer given in the textbook
|
30ddc6d44dea5b37d6d4529a52a19282c8445217 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2138/CH8/EX8.5.a/ex_8_5_a.sce | d577cd7c21b9bc05828f092de3ca096506af5d37 | [] | 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 | 293 | sce | ex_8_5_a.sce | //Example 8.5.a // back emf
clc;
clear;
close;
V=230;// in volts
I=60;// in amperes
rpm=955;//turns
ra=0.2;//resistance of armature in ihms
rsh=0.15;//shunt field in ohms
sl=604;//stray losses in watts
Rm=ra+rsh;// in ohms
Eb=(V-I*Rm);// back emf in volts
disp(Eb,"back emf in volts")
|
5c0bfec2a7d1ffe7c82259a5eb25964b083d744e | cc23059aa361c4ab3ec7ef5d8ad10e521ded1da1 | /thema06-numerik-von-differentialgleichungen/satellit.sce | 94ef323f7ec8555a6756d1a8ccea84ec0ddba2e9 | [] | no_license | iblech/mathezirkel-kurs | 747574d51a5b874526436bfd5cc03aa735760dc2 | 42537d975752999e1d77bcac9e04844b3c64e629 | refs/heads/master | 2023-01-20T13:35:17.414250 | 2022-12-22T16:21:39 | 2022-12-22T16:21:39 | 14,818,826 | 11 | 7 | null | 2022-10-19T08:59:50 | 2013-11-30T10:02:27 | TeX | UTF-8 | Scilab | false | false | 2,271 | sce | satellit.sce | // Scilab-Programm zur Simulation des Orbits eines Satelliten um die Erde
// Alle physikalischen Größen sind in SI-Einheiten kodiert.
// Gravitationskonstante
G = 6.6738480e-11
// Masse der Erde
M = 5.97219e24
// Anfangsposition und -geschwindigkeit für einen geostationären Orbit
u = [0, 35786000+6371000]
v = [-3070, 0]
// Anfangszeit
t = 0
// Zu plottender Bereich
dim = [-150000000, -150000000, 150000000, 150000000]
// Zeit in Sekunden, die zwischen je zwei Zeitschritten vergehen soll
dt = 12
// Routine, die für die Zeitdauer T die Simulation durchführt.
// Wenn thrustTime positiv ist, werden bei Beginn der Simulation für die
// Zeitdauer thrustTime die Triebwerke gezündet.
// Ist thrustDir 0, so erfolgt Beschleunigung in Normalrichtung, sonst in
// Tangentialrichtung.
function advance(T, thrustTime, thrustDir)
global u v t
tbegin = t
while t < tbegin+T do
// Jede simulierte Viertelstunde die Position ausgeben
if(modulo(t,3600/4) == 0)
plot2d([u(1)], [u(2)], rect=dim, style=-14);
phi = 180-atan(u(1),u(2))*180/%pi;
day = t/86400;
xtitle(sprintf("Tage nach Beginn: %.2f, Winkel: %.1f", day, phi));
end
// Beschleunigung durch die Gravitation
a = G * M / norm(u)^3 * (-u);
// Beschleunigung durch Triebwerke
if(t-tbegin < thrustTime)
if(thrustDir == 0) // Normalrichtung
a = a + 10 * u/norm(u);
else // Tangentialrichtung
a = a + 10 * [-u(2),u(1)]/norm(u);
end
end
// Implizites Euler-Verfahren (nicht geeignet für ernsthafte
// Anwendungen!)
v = v + dt*a;
u = u + dt*v;
t = t + dt;
// XXX: Das ist nicht wirklich das implizite Euler-Verfahren, da die
// Beschleunigung a zum alten Zeitpunkt ausgewertet wird.
end
endfunction
clf;
function reset()
global u v t
u = [0, 35786000+6371000]
v = [-3070, 0]
// Anfangszeit
t = 0
endfunction
// Beispielmanöver: ein Hohmann-Transfer.
function hohmann()
advance(3600*24, 0,0);
advance(3600*18, 0,0);
advance(3600*6, 60,1);
advance(3600*75, 0,0);
advance(3600*144, 60,1);
endfunction
hohmann();
|
f36ec278900849baa45c0edabb403252375c4e20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /848/CH3/EX3.6/Example3_6.sce | 63f1b9b2bd8c046ab53d60b472d3daa678d3fb6d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 484 | sce | Example3_6.sce | //clear//
//Caption:Calculation of bandwidth distance
//Example3.6
//page 104
clear;
clc;
close;
n1 = 1.48;//core refractive index
n2 = 1.465;//claddinig refractive index
delta = 0.01;//index difference
C =3*(10^8); //free space velcotiy
BL = (n2/(n1^2))*(C/delta);
disp(BL,'Bandwidth distance in bPS-M')
disp(BL/10^9,'Bandwidth distance in MbPS-KM')
//Result
//Bandwidth distance in bPS-M
// 2.006D+10
//Bandwidth distance in MbPS-KM
// 20.064828
|
9ab66091c24beaa5832b2bdb489d2efdf6d86297 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH12/EX12.7/exa12_7.sce | 4f918bd5ae622337eec86b535cfd2db32206c7e3 | [] | 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 | exa12_7.sce | //Caption:determine_peak_time_and_peak_overshoot
//example 12.7
//page 520
s=%s;
syms t;
G=sym('(s+2)/(s*(s+1))')//G(s)
H=1;
CL=G/(1+G*H);
disp(CL,"C(s)/R(s)=");
//for unit step response R(s)=1/s;
d=CL*(1/s);
a=s*d;
disp(d,"C(s)=");
c=ilaplace(d,s,t);
disp(c,"c(t)=");
//for peak time we get tp=3*%pi/4
tp=3*%pi/4
Cmax=1-(exp(-tp)*cos(tp));
Css=limit(a,s,0);
disp(Css,"Css=");
Mp=((Cmax-Css)/Css)*100
Mp=float(Mp)
disp(Mp,"peak_overshoot=")
|
9f32859fa44db63c2b98d54b798a2dcd1c79ac3a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1736/CH1/EX1.12/Ch01Ex12.sce | 43482af50ed1a0ea5516b8bbef9deaefde1b8880 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | Ch01Ex12.sce | // Scilab Code Ex 1.12 :Page-25 (2006)
clc; clear;
R = 1; // For simplicity we assume radius of atom to be unity, m
// For fcc Structure,
a = 4*R/sqrt(2); // Lattice parameter of fcc crystal, m
// We have R+r = a/2, solving for r
r = a/2-R // Relation between radius of the void and radius of the atom, m
printf("\nThe maxiumum radius of the sphere that can fit into void between two fcc unit cells = %5.3fR", r);
// Result
// The maxiumum radius of the sphere that can fit into void between two fcc unit cells = 0.414R
|
c72dafe671da83394fda4f15006aef0ac4cb183b | 449d555969bfd7befe906877abab098c6e63a0e8 | /854/CH14/EX14.5/Example14_5.sce | ecedd94d4e4772aaa16396ad9fff6d1bf2635e9d | [] | 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 | 516 | sce | Example14_5.sce | //clear//
//Caption: Program to determine the maximum allowable refractive index of the slab material
//Example14.5
//page 517
clear;
clc;
Lambda = 1.30e-06;//wavelength range over which single-mode operation
d = 5e-06;//slab thickness in metre
n2 = 1.45; //refractive index of the slab material
n1 = sqrt((Lambda/(2*d))^2+n2^2);
disp(n1,'The maximum allowable refractive index of the slab material n1=')
//Result
//The maximum allowable refractive index of the slab material n1=
// 1.4558159
|
6acdb14cee30e5428e86951275100fd97c66eec5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1748/CH1/EX1.14/Exa1_14.sce | d75d03d424f570ad6c06d84ac531a9e861fa386b | [] | 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 | 577 | sce | Exa1_14.sce | //Exa 1.14
clc;
clear;
close;
//given data
format('v',5);
V=6600;//in Volts
OutputPower=2000;//in KVA
OutputPower=2000*1000;//in VA
//Formula : outputPower=sqrt(3)*VL*IL
IL=OutputPower/(sqrt(3)*V);//in Ampere
Ia=IL;//in Ampere
Ra=0.4;//in Ohm
Xs=4.5;//in Ohm
//PF=cosd(fi)=0.8 and sind(fi)=0.6
cos_fi=0.8;//Power factor
sin_fi=0.6;//Unitless
VPerPhase=V/sqrt(3);//in Volts
E=sqrt((VPerPhase*cos_fi+Ia*Ra)^2+(VPerPhase*sin_fi+Ia*Xs)^2);//in Volts/Phase
Regulation=(E-VPerPhase)*100/VPerPhase;//in %
disp(Regulation,"Percentage Change in Terminal Voltage :"); |
5f407b2faaa8290a647e5bbd2204ac79e4da1bf9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH7/EX7.26/7_26.sce | ace205a9bf95305a26b3556fddd7b51dd03daa99 | [] | 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,540 | sce | 7_26.sce | clear;
clc;
//Example - 7.26
//Page number - 260
printf("Example - 7.26 and Page number - 260\n\n");
// Given
P_1 = 150;//[bar]
P_2 = 1;//[bar]
T_1 = 300;//[K]
T_2 = 260;//[K]
T_3 = 280;//[K]
T_4 = 200;//[K]
T_5 = 120;//[K]
T_6 = 140;//[K]
H_P1_T1 = 271.8;//[kJ/kg]
H_P2_T2 = 260.0;//[kJ/kg]
H_P2_T3 = 280.2;//[kJ/kg]
H_P1_T4 = 129.2;//[kJ/kg]
H_P2_T5 = 118.8;//[kJ/kg]
H_P2_T6 = 139.1;//[kJ/kg]
//(a)
// During the Joule-Thomson expansion the enthalpy should remain constant
// Therefore at 1 bar the exit temperature is such that enthalpy is 271.8 kJ/kg
// The temperature at which enthalpy is 271.8 kJ/kg is given by,
T_new = ((H_P1_T1 - H_P2_T2)/(H_P2_T3 - H_P2_T2))*(T_3 - T_2) + T_2;//[K]
// Therefore Joule-Thomson coefficient is given by,
meu = (T_1 - T_new)/(P_1 - P_2);//[K/bar]
printf(" (a).The value of Joule-Thomson coefficient (for initial T = 300 K) is %f J/bar\n",meu);
//(b)
// During the Joule-Thomson expansion the enthalpy should remain constant
// Therefore at 1 bar the exit temperature is such that enthalpy is 129.2 kJ/kg
// The temperature at which enthalpy is 129.2 kJ/kg is given by,
T_new_prime = ((H_P1_T4 - H_P2_T5)/(H_P2_T6 - H_P2_T5))*(T_6 - T_5) + T_5;//[K]
// Therefore Joule-Thomson coefficient is given by,
meu_prime = (T_4 - T_new_prime)/(P_1 - P_2);//[K/bar]
printf(" (b).The value of Joule-Thomson coefficient (for initial T = 200 K) is %f J/bar",meu_prime);
// Therefore the Joule-Thomson coefficient is higher for low initial temperatures and therefore the drop in temperature is more.
|
a7a89ade1f86f57bac0bc54d8f342da146dff250 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/util/define.sci | 7b0426be71eeefddf0c35cecef118876358c5993 | [
"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 | 850 | sci | define.sci | function define(x)
txt=[]
if x<>'{' then error('define :Incorrect syntax'),end
while %t
t=''
while %t
t1=stripblanks(read(%io(1),1,1,'(a)'))
if part(t1,1:3)=='-->' then t1=part(t,4:length(t)),end
ks=strindex(t1,'..')
if ks==[] then t=t+t1,break,end
if ks(1)==length(t1)-1 then
t=t+part(t1,1:ks(1)-1),
else
t=t+t1,break,
end
end
strsubst(t,'''','''''')
strsubst(t,'""','""""')
if t=='}' then break,end
txt=[txt;t]
end
if size(txt,'*')==0 then
disp('Empty code, no function defined')
end
h=stripblanks(txt(1))
txt(1)=[]
if part(h,1:9)=='function ' then h=part(h,10:length(h)),end
k=strindex(h,'=')
if k==[] then k=0,end
k1=strindex(h,'(')
if k1<>[] then
name=stripblanks(part(h,k+1:k1-1))
else
name=stripblanks(part(h,k+1:length(h)))
end
deff(h,txt)
execstr(name+'=resume('+name+')')
|
c4b7896b7fb27ce515cd43351c575d56344f06ed | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s_Electronic_Measurements_And_Instrumentation_P._Sharma_876.zip/Electronic_Measurements_And_Instrumentation_P._Sharma_876/CH8/EX8.3/Ex8_3.sce | f0e0fd1beca6f444bee01238d246b893a3e04ae3 | [] | 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 | 219 | sce | Ex8_3.sce | errcatch(-1,"stop");mode(2);//caption:Find amplitude of the waveform
//ex8.3
V=5//vertical attenuation(in V/division)
n=2.5//number of divisions/cycle
P=V*n
disp(P,'amplitude of the waveform(in V)=')
exit();
|
ac738d2359f7adb74394fc0357ec556b3ff2c93d | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH3/EX3.2/Ex3_2.sce | c3635b3f63da9329a39ce09b09b30dbeac6b290a | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 351 | sce | Ex3_2.sce | //Chapter 3 : Systems of Linear Equations
//Example 3.2
//Scilab 6.0.1
//Windows 10
clear;
clc;
A=[1 -2 -4;-2 4 3;-1 2 -1];
Y=[0;1;1];
t=A(1,:)+A(2,:)
r=isequal(t,A(3,:))
if(r) then
mprintf('adding eq(1) and eq(2) we obtain eq(3) which is therefore superfluous.')
mprintf('\nthus we have only 2 equations in 3 unknowns')
end
|
57bc450e3b405ad6e9ab96efa33534902b65c011 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH4/EX4.17/Ex4_17.sce | 72dff20cd42eb140fc0c6761e5775acac26975ca | [] | 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 | 523 | sce | Ex4_17.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 1 : DC Circuits
// Chapter 4 : Circuit Theorems
// Example 4 - 17
clear; clc; close;
// Given data
R1 = 500.0000;
R2 = 125.0000;
R3 = 200.0000;
//
// Calculations Rx
Rx = (R3/R1)*R2; // Rx = Resistance x
//
// Display the result
disp("Example 4-17 Solution : ");
printf(" \n Rx = Resistance X = %.3f Ohm",Rx)
|
6e44715da2c6b64d79f78abe82597abbd42a9bd2 | 8910b9a8c0e6764096b6a6117ace71f0c3d6b374 | /Scilab Proyect/SimpsonFinal.sce | a2dca4014a7bfd869f745da22a53d173c04c5a5d | [] | no_license | elrick97/Numerical-Methods-FinalProyect | d7eef22de9277fb09233821e7d4dc1c4dc31f991 | a06ce2f189afcb93e2ca2505718499f9e125fcb1 | refs/heads/master | 2020-05-19T21:38:19.748544 | 2019-05-06T16:07:38 | 2019-05-06T16:07:38 | 185,229,295 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 9,638 | sce | SimpsonFinal.sce | // This GUI file is generated by guibuilder version 4.2.1
///////////////////////////////////////////////////////
// Metodo de Regresion lineal
//
// Este archivo toma inputs de una interfaz grafica
// y resuelve por medio de simpson 1/3
//
// Ricardo Ramirez A01338143
// Rafael Martinez A01039710
//
// 06 / 05 / 19 version 1.0
//////////////////////////////////////////////////////
f=figure('figure_position',[397,38],'figure_size',[610,482],'auto_resize','on','background',[33],'figure_name','Graphic window number %d','dockable','off','infobar_visible','off','toolbar_visible','off','menubar_visible','off','default_axes','on','visible','off');
//////////
handles.dummy = 0;
handles.tituloSimpson=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[20],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.3416393,0.8158696,0.3065574,0.1282609],'Relief','default','SliderStep',[0.01,0.1],'String','Simpson 1/3','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloSimpson','Callback','')
handles.tituloDA=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0422131,0.6726087,0.402459,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String','Ingresa el valor del limite incial','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloDA','Callback','')
handles.tituloDB=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0422131,0.5481522,0.402459,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String','Ingresa el valor del limite final','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloDB','Callback','')
handles.tituloIN=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0422131,0.4278261,0.402459,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String','Ingresa el numero de parabolas','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloIN','Callback','')
handles.tituloEq=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0459016,0.3015217,0.5365574,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String','Ingresa la ecuacion con respecto a X (Ejemplo: x*x + 2) ','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloEq','Callback','')
handles.dA=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.4535246,0.6726087,0.1065574,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String',' ','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','dA','Callback','')
handles.dB=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.4535246,0.5481522,0.1065574,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String',' ','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','dB','Callback','')
handles.iN=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.4535246,0.4278261,0.1065574,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String',' ','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','iN','Callback','')
handles.ecuacion=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.5914344,0.3015217,0.3165574,0.1076087],'Relief','default','SliderStep',[0.01,0.1],'String',' ','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','ecuacion','Callback','')
handles.botonResp=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.6947541,0.5791304,0.2011475,0.1995652],'Relief','default','SliderStep',[0.01,0.1],'String','Calcular','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','botonResp','Callback','botonResp_callback(handles)')
handles.tituloAr=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0483607,0.0773913,0.1895082,0.073913],'Relief','default','SliderStep',[0.01,0.1],'String',' Area aproximada:','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloAr','Callback','')
handles.cajaResp=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.2557377,0.0773913,0.1593443,0.073913],'Relief','default','SliderStep',[0.01,0.1],'String',' ','Style','edit','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','cajaResp','Callback','')
handles.tituloSol=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[22],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','left','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.0454098,0.1676087,0.1893443,0.1065217],'Relief','default','SliderStep',[0.01,0.1],'String',' Solución','Style','text','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','tituloSol','Callback','')
handles.botonLimp=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.6993443,0.49,0.1918033,0.0793478],'Relief','default','SliderStep',[0.01,0.1],'String','Clear','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','botonLimp','Callback','botonLimp_callback(handles)')
handles.buttonB=uicontrol(f,'unit','normalized','BackgroundColor',[-1,-1,-1],'Enable','on','FontAngle','normal','FontName','Lucida Grande','FontSize',[12],'FontUnits','points','FontWeight','normal','ForegroundColor',[-1,-1,-1],'HorizontalAlignment','center','ListboxTop',[],'Max',[1],'Min',[0],'Position',[0.13875,0.8462882,0.128125,0.0915721],'Relief','default','SliderStep',[0.01,0.1],'String','Back','Style','pushbutton','Value',[0],'VerticalAlignment','middle','Visible','on','Tag','buttonB','Callback','buttonB_callback(handles)')
f.visible = "on";
//////////
// Callbacks are defined as below. Please do not delete the comments as it will be used in coming version
//////////
function dY=F(x)
dY=x*x
endfunction
function buttonB_callback(handles)
//Write your callback for buttonB here
close()
endfunction
//Calcula area
function botonResp_callback(handles)
//Write your callback for botonResp here
dA = strtod(handles.dA.string)
dB = strtod(handles.dB.string)
n = strtod(handles.iN.string)
deff("dY = F(x)", "dY="+(handles.ecuacion.string))
dH = (dB - dA) / n
dSuma = 0
for i = 1 : 2 : n - 1
dSuma = dSuma + 4*(F(dA + i*dH))
end
for i = 2 : 2 : n - 2
dSuma = dSuma + 2*(F(dA + i*dH))
end
dSuma = dH/3 *(F(dA)+ dSuma + F(dB))
handles.cajaResp.string = string(dSuma)
endfunction
function botonLimp_callback(handles)
//Write your callback for botonLimp here
handles.dA.string = ""
handles.dB.string = ""
handles.iN.string = ""
handles.cajaResp.string = ""
handles.ecuacion.string = ""
endfunction
|
1cb163720e3e68af597b47582c49ee24832229ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH7/EX7.4/7q4.sce | 6285ccdfb29f492234cc9ca6057813dd33d36563 | [] | 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 | 198 | sce | 7q4.sce | clc
//initialisation of variables
k= 5.3e-5 //m/sec
H= 3 //m
a= 0.139 //radians
//calculations
A= H*cos(a)
i= sin(a)
q= k*i*A*3600
//results
printf ('rate of seepage = % 4f m^3/hr/m ',q)
|
3ca17489b581c5a36cfe0b6e29477de565077509 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.17/Ex6_17.sce | 6ff44b06749a261c6c2a5d14bce798a0761d0f13 | [] | 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 | 898 | sce | Ex6_17.sce | //Chapter-6,Example 6_17,Page 6-34
clc()
//Given Values:
u0=4*%pi*10^-7 //Permeability in vacuum
ur=600 //Relative permeability of iron
d=12*10^-2 //mean diameter of ring in m
N=500 //Number of turns
i=0.3 //Current in windings of solenoid in Amperes
//Calculations:
r=d/2 //Radius of ring
B=u0*ur*N*i/(2*%pi*r) //Flux densityin the core
printf('Flux densityin the core is =%.1f Wb/m^2 \n \n',B)
H=B/(u0*ur) //Magnetic intensity
printf(' Magnetic intensity is =%.1f Amp-turns/m \n \n',H)
//We know that, B=u0(H+I)
I1=(B-u0*H)/u0 //magnetisation
I2=u0*I1 //Electronic current loop
I=I2/B*100 //Percentage flux density due to electroniuc loop currents
printf(' Percentage flux density due to electroniuc loop currents is =%.2f percent \n \n',I)
|
be5a87abaa8efb63429a0957c2c4167d37f003f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2159/CH8/EX8.11/811.sce | 84026ee2ab8a77d82e2b59f382374b5b0120f71d | [] | 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 | 452 | sce | 811.sce | // problem 8.11
y1=30
y2=15
a=13*(10^-4)
x1=15
V1=60
Vf1=V1*sind(y2)
Vw1=V1*cosd(y2)
u=Vw1-(Vf1/tand(y1))
Vw2=u-(Vf1*cosd(y2)/sind(y1))
Vf2=(u-Vw2)*tand(y2)
V2=(Vf2*Vf2+Vw2*Vw2)^0.5
x2=atand(Vf2/Vw2)
g=9.81
p1=1000
w=g*p1
Fx=(w*a*V1*(Vw1-Vw2))/g
Fy=(w*a*V1*(V1*sind(y2)-V2*sind(x2)))/g
Fr=(Fx*Fx+Fy*Fy)^0.5
o=atand(Fy/Fx)
disp(o,Fr,x2,V2,u,"velocity of the vane,direction of velocity at exit,resultant force,angle between forces")
|
8f2e394f3fce07e7d44ddb30ad75610655d6ba11 | 364fc2bac23ae5482a18e5e9392ff63e68642dae | /TP2/exo1.sce | f93b3aee4df7a9d32071fc97b7c3829134c9d27f | [] | no_license | Raphael-De-Wang/2M310TP | 259e55e9dc931b0a0102ed7a5dbbb31e82b88295 | af21ffee07fadeb5b27c5f30d0deb1926972ccee | refs/heads/master | 2021-01-11T14:14:21.447623 | 2017-03-29T20:27:35 | 2017-03-29T20:27:35 | 81,227,258 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 728 | sce | exo1.sce | clear
// Q1.1
tht = %pi/6;
// Q1.2
function r = A(theta)
r = [cos(theta),-sin(theta);sin(theta),cos(theta)];
endfunction
x = [1;2];
// Q1.3
y = A(tht) * x;
// ===== ===== ===== ===== =====
a = A(tht)
// Q2.1
a(1,:)
// Q2.2
a(:,2)
// ===== ===== ===== ===== =====
// Q3.1
function cube = B(n1,n2,m1,m2)
b11 = zeros(m1,n1);
b12 = zeros(m1,n2);
b21 = zeros(m2,n1);
b22 = zeros(m2,n2);
cube = [ b11, b12; b21, b22 ];
endfunction
// ===== ===== ===== ===== =====
m = 5
n = 6
zeros(m,n)
eye(m,n)
diag(eye(m,n))
diag(eye(m,n),1)
v1 = [1;2;3]
v2 = [4;5;6]
v1 .* v2
v1 ./ v2
A1 = A(%pi/4)
A2 = A(%pi/6)
// produit scalaire ?
A1 .* A2
// division ?
A1 ./ A2 |
f06c77ca4cc54c439601b2d45ace50ee59a72353 | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH25/EX25.13/25_13.sce | a0c5ba8aec4f912e13ef1fd843af89dd962ae307 | [] | 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 | 913 | sce | 25_13.sce | //clc()
disp("f(x,y) = 4*exp(0.8*x) - 0.5*y")
//f'(x,y) = 4*exp(0.8*x) - 0.5*y
h =2;
x = 0:h:2;
y(1) = 2;
t = 14.84392;
k1 = 4*exp(0.8*x(1)) - 0.5*y(1);
x1 = x(1) + h/5;
y1 = y(1) + k1*h/5;
k2 = 4*exp(0.8*x1) - 0.5*y1;
x1 = x(1) + 3*h/10;
y1 = y(1) + 3*k1*h/40 + 9*k2*h/40;
k3 = 4*exp(0.8*x1) - 0.5*y1;
x1 = x(1) + 3*h/5;
y1 = y(1) + 3*k1*h/10 - 9*k2*h/10 + 6*k3*h/5;
k4 = 4*exp(0.8*x1) - 0.5*y1;
x1 = x(1) + h;
y1 = y(1) -11*k1*h/54 + 5*k2*h/2 - 70*k3*h/27 + 35*k4*h/27;
k5 = 4*exp(0.8*x1) - 0.5*y1;
x1 = x(1) + 7*h/8;
y1 = y(1) + 1631*k1*h/55296 + 175*k2*h/512 + 575*k3*h/13824 + 44275*k4*h/110592 +253*k5*h/4096;
k6 = 4*exp(0.8*x1) - 0.5*y1;
y1 = y(1) + (37*k1/378 + 250*k3/621 + 125*k4/594 + 512*k6/1771)*h;
y2 = y(1) + (2825*k1/27648 + 18575*k3/48384 + 13525*k4/55296 + 277*k5/14336 + k6/4)*h;
disp(y1,"y ( fourth order prediction ) = ")
disp(y2,"y ( fifth order prediction ) = ")
|
fe73ab0958835227f55bd7ed70a2c1bf3922ebeb | ff4dd3a89b5ce8471be3aa266679140ed801258b | /scilab/functions.sci | a1081ad0ec754fede34791a1fe18f125fe399518 | [] | no_license | tizot/projet-scilab-map411 | eff8fb30889699331e1e7d89883c9cb2e45b9ee1 | 4df8040547933ec5586dd7efa6da19c4e1c5f1f7 | refs/heads/master | 2016-09-06T17:12:07.899774 | 2015-01-14T14:28:38 | 2015-01-14T14:28:38 | 28,593,164 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 6,649 | sci | functions.sci | ///////////////////////////////
// Un calcul de flot optique //
// BRUNEAU Basile //
// MASSET Camille //
// MAP411 //
///////////////////////////////
// Bibliothèque de fonctions utilisées dans 'projet.sce'
// QUESTION 4
// Approximation des dérivées en x, y et t de l'intensité du flot optique
function [derX, derY, derT] = derivees(I1, I2)
[n,p] = size(I1); // I1 a n lignes et p colonnes (on supposera n,p > 2)
if (size(I2) <> [n,p]) then
error("Les matrices ne sont pas de même dimension.")
end
// initialisation du résultat
derX = zeros(I1);
derY = zeros(I1);
derT = zeros(I1);
// dérivées intérieures
derX(1:n-1, 1:p-1) = (I1(1:n-1, 2:p) - I1(1:n-1, 1:p-1) + I1(2:n, 2:p) - I1(2:n, 1:p-1) + I2(1:n-1, 2:p) - I2(1:n-1, 1:p-1) + I2(2:n, 2:p) - I2(2:n, 1:p-1))/4;
derY(1:n-1, 1:p-1) = (I1(2:n, 1:p-1) - I1(1:n-1, 1:p-1) + I1(2:n, 2:p) - I1(1:n-1, 2:p) + I2(2:n, 1:p-1) - I2(1:n-1, 1:p-1) + I2(2:n, 2:p) - I2(1:n-1, 2:p))/4;
derT(1:n-1, 1:p-1) = (I2(1:n-1, 1:p-1) - I1(1:n-1, 1:p-1) + I2(2:n, 1:p-1) - I1(2:n, 1:p-1) + I2(2:n, 2:p) - I1(2:n, 2:p) + I2(1:n-1, 2:p) - I1(1:n-1, 2:p))/4;
// dérivées au bord (condition de Neumann)
derX(n, 1:p-1) = (I1(n, 2:p) - I1(n, 1:p-1) + 0 + I2(n, 2:p) - I2(n, 1:p-1) + 0)/4;
derY(1:n-1, p) = (I1(2:n, p) - I1(1:n-1, p) + 0 + I2(2:n, p) - I2(1:n-1, p) + 0)/4;
derT(n, 1:p-1) = (I2(n, 1:p-1) - I1(n, 1:p-1) + I2(n, 2:p) - I1(n, 2:p))/4;
derT(1:n-1, p) = (I2(1:n-1, p) - I1(1:n-1, p) + I2(2:n, p) - I1(2:n, p))/4;
derT(n, p) = (I2(n, p) - I1(n, p))/4;
endfunction
// QUESTION 5
// Calcul d'une matrice moyenne
function Umoy = moyenneMat(U)
[n,p] = size(U); // U a n lignes et p colonnes (on supposera n,p > 2)
Umoyt = zeros(n+2, p+2);
Umoy = zeros(U);
// On prolonge U
Umoyt(2:n+1, 2:p+1) = U;
Umoyt(1, 2:p+1) = U(1, 1:p);
Umoyt(n+2, 2:p+1) = U(n, 1:p);
Umoyt(2:n+1, 1) = U(1:n, 1);
Umoyt(2:n+1, p+2) = U(1:n, p);
Umoyt(1,1) = U(1,1);
Umoyt(1,p+2) = U(1,p);
Umoyt(n+2,1) = U(n,1);
Umoyt(n+2,p+2) = U(n,p);
// On calcule la moyenne
Umoy(1:n, 1:p) = 1/6 * (Umoyt(1:n, 2:p+1) + Umoyt(3:n+2, 2:p+1) + Umoyt(2:n+1, 1:p) + Umoyt(2:n+1, 3:p+2)) + 1/12 * (Umoyt(1:n, 1:p) + Umoyt(1:n, 3:p+2) + Umoyt(3:n+2, 1:p) + Umoyt(3:n+2, 3:p+2))
endfunction
function [Unp, Vnp] = iter(Un, Vn, Ix, Iy, It, alpha)
UnMoy = moyenneMat(Un);
VnMoy = moyenneMat(Vn);
matAlpha2 = alpha^2 * ones(Un);
frac = (Ix .* UnMoy + Iy .* VnMoy + It) .* ((matAlpha2 + Ix .* Ix + Iy .* Iy).^(-1));
Unp = UnMoy - Ix .* frac;
Vnp = VnMoy - Iy .* frac;
endfunction
// Retourne une matrice dont les valeurs sont celles d'un gaussienne
// centrée en (hauteur(G)/2, largeur(G)/2)
// de paramètre sigma et dont les valeurs <= eta sont mises à 0
function G = convolKernel(sigma, eta)
// Indice limite
ilim = ceil(sqrt(-2 * sigma^2 * log(eta)));
G = zeros(2 * ilim + 1);
// Remplissage de la matrice
for i=-ilim:ilim
for j=-ilim:ilim
G(i+ilim+1,j+ilim+1) = exp(-(i^2 + j^2)/(2 * sigma^2))/(2 * %pi * sigma^2);
end
end
endfunction
// Étend une matrice I avec "conditions aux bords de réflexion"
function refI = reflectMat(I, n)
[N, M] = size(I); // on suppose n < N,M
refI = zeros(N + 2*n, M + 2*n);
refI(n+1:N+n, n+1:M+n) = I;
for i=1:n
refI(n+1-i, n+1:M+n) = I(i, :); // lignes "au-dessus"
refI(N+n+1+i, n+1:M+n) = I(N-i, :); // lignes "en-dessous"
refI(n+1:N+n, n+1-i) = I(:, i); // colonnes "à gauche"
refI(n+1:N+n, M+n+1+i) = I(:, M-i); // colonnes "à droite"
end
endfunction
// Calcul le flot optique
// I1, I2 : les deux images
// niter : le nombre d'itérations maximal, epsilon : l'erreur limite
// Retourne [U, V] : U étant le flot selon x, V le flot selon y
function [U, V] = flow(I1, I2, niter, epsilon, alpha)
[N, M] = size(I1)
err = 1;
i = 1;
U = zeros(I1);
V = zeros(I1);
// Dérivées de I
[Ix, Iy, It] = derivees(I1, I2);
while (i <= niter & err > epsilon)
i = i + 1
[Up, Vp] = iter(U, V, Ix, Iy, It, alpha);
err = trace((Up-U)' * (Up-U)) + trace((Vp-V)' * (Vp-V))
U = Up;
V = Vp;
end
endfunction
// Floute une image I avec un noyau de convolution gaussien
// sigma, eta : paramètres de la gaussienne
function B = blur(I, sigma, eta)
G = convolKernel(sigma, eta);
n = length(G(1, :));
refI = reflectMat(I, n);
C = conv2(refI, G, "same");
[N, M] = size(I);
B = C(n+1:N+n, n+1:M+n);
endfunction
// Affiche une image I
function toGray(I)
[N, M] = size(I);
cmap = graycolormap(256);
grayplot(1:N, 1:M, I)
xset('colormap', cmap);
endfunction
// Retourne la matrice I réduite d'un facteur f
// (hauteur/f, largeur/f)
function Im = simpleSmall(I, f)
[N, M] = size(I);
Im = I(1:f:N, 1:f:M);
endfunction
// Retourne la matrice I agrandie d'un facteur f
// On remplace simplement chaque pixel par f^2 pixels
function Ib = simpleBig(I, f)
[N, M] = size(I);
Ml = zeros(M, M*f);
for i=1:M
for j=1:f
Ml(i, (i-1)*f + j) = 1;
end
end
Mc = zeros(N*f, N);
for i=1:N
for j=1:f
Mc((i-1)*f + j, i) = 1;
end
end
Ib = Mc*I*Ml;
endfunction
// Applique le flot (u,v) à la matrice I
function B = applyNegativeFlow(I, u, v)
[N, M] = size(I);
B = I;
for x=1:N
for y=1:M
B(min(M, max(1,x-u(x,y))), min(N, max(1, y-v(x,y)))) = I(x,y);
end
end
endfunction
// Question 14)
function [hku, hkv] = smartFlow(I1, I2)
// On floute les deux images
sigma = 0.8;
eta = 0.05;
I1b = blur(I1, sigma, eta);
I2b = blur(I2, sigma, eta);
// On réduit les images floues
f = 4;
I1bsmall = simpleSmall(I1b, f);
I2bsmall = simpleSmall(I2b, f);
// On calcule le flot
niter = 256; // nombre maximal d'itérations
epsilon = 0.001; // erreur tolérée
alpha = 0.1;
[hus, hvs] = flow(I1bsmall, I2bsmall, niter, epsilon, alpha);
// On remet le flot à l'échelle originale
hu = f.*simpleBig(hus, f);
hv = f.*simpleBig(hvs, f);
// On applique le flot négativement à I2
I2closer = applyNegativeFlow(I2, hu, hv);
// On calcule le flot
[ku, kv] = flow(I1, I2closer, niter, epsilon, alpha);
// On somme les deux flots
hku = hu + ku;
hkv = hv + kv;
endfunction
|
3e19df4b463e12b586eaf0a44c87f19873a7c9cd | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.1.1/macros/algebre/reduct.sci | 3a525204ad8007110f9d0003d1abe9f202ec62d2 | [
"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 | 308 | sci | reduct.sci | function [Ep,Fp,M]=reduct(E,F)
Ep=E;Fp=F;M=eye(E*E');
[p,q]=size(Ep);
[Sig,rk]=colcomp(Ep);
while rk<>q
E1=Ep*Sig;E1=E1(:,q+1-rk:q);
F12=Fp*Sig;
F1=F12(:,q+1-rk:q);F2=F12(:,1:q-rk);
[W,r1]=rowcomp(F2);
N=w(r1+1:p,:);
Ep=N*E1;Fp=N*F1;M=N*M;
[p,q]=size(Ep);
[Sig,rk]=colcomp(Ep);
end
|
8ddcc62a693544c485874511f65c3fa4b703cac1 | 3c31145b7b0914a28b5c5c61d01c47253663df63 | /1 unidade trabalho/analisa.sci | 6bf751d12af272a058bd7561abaff7a4d251d2a7 | [] | no_license | APFN/INTRODUCAO-A-IDENTIFICA-O-DE-SISTEMAS | 1eb05ddc0debe5381d941715915388f7ca8af22c | d1a7afd8c8f894285aa9d4c282939538cfaa45d4 | refs/heads/master | 2021-07-21T14:50:25.870205 | 2017-10-30T19:31:48 | 2017-10-30T19:31:48 | 108,897,789 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,321 | sci | analisa.sci |
function analisaARX(u_verif,y_verif,u,y,order,delay)
[theta_ARX,res]=identifyARX(u,y,order,delay)
//sdev_ARX=stdev(res)
disp(theta_ARX);
sdev_ARX=stdev(res)
y_ARX=simulARX(u_verif,theta_ARX,delay,0)
/*
y_ARX1=simulARX(u,theta_ARX,1,sdev_ARX)
y_ARX2=simulARX(u,theta_ARX,2,sdev_ARX)
y_ARX3=simulARX(u,theta_ARX,3,sdev_ARX)
y_ARX4=simulARX(u,theta_ARX,4,sdev_ARX)
y_ARX5=simulARX(u,theta_ARX,5,sdev_ARX)
Y=[y y_ARX y_ARX1 y_ARX2 y_ARX3 y_ARX4 y_ARX5]
*/
Y=[y_verif y_ARX]
plot(Y)
endfunction
function analisaARMAX(u,y,order,delay)
[theta_ARMAX,res]=identifyARMAX(u,y,order,delay);
//sdev_ARMAX=stdev(res)
sdev_ARMAX=0
y_ARMAX=simulARMAX(u,theta_ARMAX,delay,sdev_ARMAX)
/*
y_ARMAX1=simulARMAX(u,theta_ARMAX,1,sdev_ARMAX)
y_ARMAX2=simulARMAX(u,theta_ARMAX,2,sdev_ARMAX)
y_ARMAX3=simulARMAX(u,theta_ARMAX,3,sdev_ARMAX)
y_ARMAX4=simulARMAX(u,theta_ARMAX,4,sdev_ARMAX)
y_ARMAX5=simulARMAX(u,theta_ARMAX,5,sdev_ARMAX)
Y=[y y_ARMAX y_ARMAX1 y_ARMAX2 y_ARMAX3 y_ARMAX4 y_ARMAX5]
*/
Y=[y y_ARMAX]
plot(Y);
endfunction
//ballbeam
//analisaARMAX(u_verif1,u_verif2,y_verif,4,6);
analisaARX(u_verif,y_verif,u,y,2,2);
|
fcfa8cbf57153fdd40bf75d1e1734f345a97a256 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1752/CH5/EX5.10/exa_5_10.sce | fc8826ded55ba755c2ef858974c33874c4f6b2a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 737 | sce | exa_5_10.sce | //Exa 5.10
clc;
clear;
close;
//given data
d=0.058;// in m
t_infinite=30;// in degree C
t_s=155;// in degree C
V=52;// in m/s
T_f=(t_s+t_infinite)/2;// in degree C
T_f=T_f+273;// in K
// Fluid properties at 92.5 degree C and 1 atm
miu= 2.145*10^-5;// in kg/ms
Pr=0.696;
P=1.0132*10^5;
R=287;
k=0.0312;// in W/mK
rho=P/(R*T_f);// in kg/m^3
Re=rho*V*d/miu;
C=0.0266;
n=0.805;
// Nu = h*d/k = C*(Re)^n*Pr^(1/3)
h=C*(Re)^n*Pr^(1/3)*k/d;// in W/m^2K
//So, heat transfer rate per unit length from cylinder
q_by_L= h*(%pi*d)*(t_s-t_infinite);// in W/m
disp(q_by_L,"Heat transfer rate per unit length from cylinder in W/m");
// Note: Calculation of q_by_L in the book is wrong , so the answer in the book is wrong
|
c8a5e841363b4f5a277b7d55b70a9724b9e1ecc0 | 01697f0dc71290a6b6e233849a73d19a883845f1 | /sem01/lab05/q03.sce | 288f49d38b1d5d40d6239eb34c26f7bdc6628e44 | [] | no_license | aaruni96/Math-Lab | 5d83a13547308bd9d1b7daa28be29a49e1020fbd | 488469c9aba9251f5725e0851fb19e2aef38d234 | refs/heads/master | 2021-01-12T06:29:53.790743 | 2018-04-27T09:21:40 | 2018-04-27T09:21:40 | 77,370,232 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 244 | sce | q03.sce | //solve ODE
clc;
clear;
function t=f(x,y)
t=(sin(x) - 2*y*tan(x));
endfunction
x0=%pi/3;
y0=0;
x=%pi;
y=ode(y0,x0,x,f)
//for graph
x=[%pi/2:0.1:2*%pi];
y=ode(y0,x0,x,f);
plot2d(x,y);
xlabel("X Axis")
ylabel("Y Axis")
title("Solution to ODE")
|
825ac50316358197c64bf24ed2bd0ec9aa42d825 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2855/CH6/EX6.7/Ex6_7.sce | 285be94475f079c23204397db2e2100e7c73645c | [] | 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 | 453 | sce | Ex6_7.sce | //chapter 6
//page no157
//Ex 6_7
//given
clear;
clc;
R=400; //in mA
nEO=25; //in mW
nlaser=nEO*10^-3*R*10^-3;
printf("\n nlaser = %0.2f ",nlaser);
Tone=(40*10^-12)*(80*10^3)/nlaser;
printf("\n Tone = %0.0f micros ",Tone*10^6);
BWone=1/(2*%pi*Tone);
printf("\n BWone = %0.0f Hz ",BWone);
Tzero=(40*10^-12)*80*10^3/nlaser;
BWzero=1/2/%pi/Tzero; //Hz
printf("\n BWzero = %0.0f Hz ",BWzero);
//answer misprinted
|
af80a76491ed99b9827dfe07eb7d33d8d849d5f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH3/EX3.29/EX3_29.sce | 0c5b65af9dc2b204abfb93fd6ab0474c97e0b5f9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,621 | sce | EX3_29.sce | clc;funcprot(0);//EXAMPLE 3.29
// Initialisation of Variables
D=0.25;.............//Engine bore in m
L=0.4;..............//Engine stroke in m
t1=303;.............//Initial temperature in K
R=287;...............//Gas constant in kJ/kgK
p1=1;...............//Initial pressure in bar
N=8;................//No of working cycles per sec
cv=0.71;.............//Specific heat at constant volume in kJ/kgK
cp=1;.................//Specific heat at constant pressure in kJ/kgK
n=1.25;.............//Adiabatic index
rc=9;...............//Compression ratio
re=5;...............//Expansion ratio
rqptqe=2;...........//Ratio of heat liberated at constant pressure to heat liberated at constant volume
//Calculations
p2=p1*(rc^n);.......................//Pressure at the end of adiabatic compression in bar
t2=t1*(rc^(n-1));...................//Temperature at the end of adiabatic compression in K
rho=rc/re;..........................//Cut off ratio
t3=(2*cv*t2)/((2*cv)-(cp*(rho-1)));...............//Temperature at the end of isochoric compression in K
p3=p2*(t3/t2);....................................//Pressure at the end of isochoric compression in bar
p4=p3;t4=rho*t3;.................................//Temperature and pressure at the end of isobaric process
p5=p4*(1/(re^n));.................................//Pressure at the end of adiabatic expansion in bar
t5=t4*(1/(re^(n-1)));.............................//Temperature at the end of adiabatic expansion in K
pm=(1/(rc-1))*[(p3*(rho-1))+(((p4*rho)-(p5*rc))/(n-1))-((p2-(p1*rc))/(n-1))];...............//Mean effective pressure
printf("Temperature after adiabatic compression: %f K\n\n",t2)
printf("Pressure after adiabatic compression: %f bar\n\n",p2)
printf("Temperature after isochoric compression: %f K\n\n",t3)
printf("Pressure after isochoric compression: %f bar\n\n",p3)
printf("Temperature after isobaric expansion: %f K\n\n",t4)
printf("Pressure after isobaric expansion: %f bar\n\n",p4)
printf("Temperature after adiabatic expansion: %f K\n\n",t5)
printf("Pressure after adiabatic expansion: %f bar\n\n",p5)
disp(pm,"Mean effective pressure in bar:")
Vs=(%pi/4)*D*D*L;....................//Swept volume in m^3
W=(pm*(10^5)*Vs)/1000;.................//Work done per cycle in kJ
m=(p1*(10^5)*(rc/(rc-1))*Vs)/(R*t1);.....................//Mass of air per cycle in kg
Qs=m*[cv*(t3-t2)+cp*(t4-t3)];.....................//Heat supplied per cycle in kJ
eta=W/Qs;....................//Engine efficiency
disp(eta*100,"Engine efficiency in %:")
P=W*N;.................//Power of the engine in kW
disp(P,"Power of the engine in kW:")
|
2e4323910aedf59a961893aa5080c2e1425ad987 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2951/CH2/EX2.2/ex2_2.sce | 4004cb385f09de00fddee41c3e67877c1dbed37e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | ex2_2.sce | clc;
clear;
/// e^j(*2*pi*f*t+theta)
syms pi f0 t theta A
K=2*pi*f0*t+theta;
disp("the given signal is complex");
disp("e^(j*theta) can be written as");
disp("cos(theta)+j*sin(theta)");
Re=A*cos(K);
Img=A*sin(K);
mag=sqrt(Re^2+Img^2);
disp(Re,"real part is ");
disp(Img,"the imaginary part ");
disp(mag,"Magnitude of signal is |A|=");
disp(K,"phase of the signal ");
|
2dfc284d42300ddf3e24db04c11ca9fdfa2c9534 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/bow/bow.9_11.tst | 6e0fc7d83bb7c201d81a3425744f2ec8f1c4589c | [] | 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,589 | tst | bow.9_11.tst | 9 36:0.14285714285714285 40:1.0 148:0.5 165:1.0 317:1.0 375:1.0 458:0.3333333333333333 519:0.5 1448:1.0
9 11:0.2 36:0.14285714285714285 40:1.0 53:0.16666666666666666 114:1.0 158:0.25 339:1.0 735:1.0 1703:1.0
9 4:0.16666666666666666 15:1.0 36:0.14285714285714285 40:1.0 48:0.1 60:0.09090909090909091 99:1.0 126:1.0 148:0.5 171:1.0 355:1.0 612:1.0 748:1.0 939:1.0 1613:1.0
9 1:0.05 74:1.0 208:0.2 317:1.0 330:1.0 1214:1.0
9 1:0.05 4:0.16666666666666666 15:1.0 53:0.16666666666666666 60:0.09090909090909091 74:1.0 76:0.25 93:0.07142857142857142 112:1.0 113:1.0 121:1.0 298:1.0 317:1.0 485:1.0 633:0.5 731:1.0 941:1.0
9 1:0.05 84:1.0 156:0.5 215:0.25 221:1.0 317:1.0 354:1.0 731:1.0
9 1:0.05 62:0.25 148:0.5 166:1.0 259:2.0 481:0.5 762:1.0 889:1.0
9 1:0.05 36:0.14285714285714285 53:0.16666666666666666 76:0.25 259:2.0 481:0.5 640:1.0 762:1.0
9 1:0.075 10:0.125 36:0.2857142857142857 62:0.5 95:0.3333333333333333 156:0.5 208:0.4 316:1.0 494:0.5 603:1.0
9 1:0.025
9 1:0.025 4:0.16666666666666666 51:0.2 166:1.0
9 1:0.025 148:0.5 171:1.0 350:1.0 609:1.0
9 1:0.025 36:0.14285714285714285 40:1.0 248:1.0 561:1.0
9 1:0.025 36:0.14285714285714285 372:0.5 754:0.3333333333333333
9 1:0.025 17:0.14285714285714285 34:1.0 60:0.09090909090909091 480:1.0 611:1.0
9 1:0.025 36:0.14285714285714285 48:0.1 148:0.5 162:1.0 218:1.0 228:1.0 273:1.0 317:1.0 339:1.0 372:1.0 1556:1.0
9 1:0.025 10:0.125 17:0.14285714285714285 62:0.25 122:1.0 126:1.0 568:0.5 679:1.0 1198:1.0
9 4:0.16666666666666666 22:1.0 53:0.16666666666666666 69:0.25 93:0.07142857142857142 114:2.0 192:0.16666666666666666 198:0.1111111111111111 372:0.5 400:0.2 436:1.0 482:1.0 647:0.5
9 1:0.05 17:0.14285714285714285 40:1.0 60:0.09090909090909091 208:0.2 240:0.16666666666666666 383:1.0 408:1.0 420:1.0 476:1.0 481:0.5 733:1.0 1137:1.0
9 1:0.025 2:1.0 15:1.0 36:0.14285714285714285 60:0.09090909090909091 76:0.25 93:0.07142857142857142 243:1.0 252:1.0 395:1.0 428:1.0 568:0.5 951:1.0 1559:1.0
9 4:0.16666666666666666 17:0.2857142857142857 36:0.14285714285714285 44:0.5 48:0.1 62:0.25 69:0.25 121:1.0 252:1.0 258:0.25 283:1.0 298:1.0 353:1.0 402:1.0 491:1.0 612:1.0 633:1.0 781:1.0 891:1.0
9 4:0.3333333333333333 17:0.14285714285714285 36:0.14285714285714285 60:0.18181818181818182 62:0.25 104:1.0 252:1.0 261:1.0 313:1.0 633:0.5 886:1.0 1416:1.0
9 1:0.05 4:0.16666666666666666 10:0.125 17:0.14285714285714285 36:0.2857142857142857 53:0.16666666666666666 84:1.0 93:0.07142857142857142 104:1.0 112:1.0 113:1.0 126:1.0 171:1.0 208:0.2 252:1.0 410:1.0 458:0.6666666666666666 462:1.0 485:1.0 568:0.5 679:1.0 797:1.0
9 1:0.025 11:0.2 40:1.0 93:0.07142857142857142 158:0.25 252:1.0 688:1.0 796:1.0
9 1:0.05 2:1.0 15:1.0 17:0.14285714285714285 36:0.42857142857142855 48:0.1 60:0.18181818181818182 75:1.0 83:1.0 148:0.5 158:0.25 420:1.0 568:1.0 734:0.3333333333333333 982:1.0 1498:1.0
9 1:0.025 10:0.125 15:1.0 27:1.0 51:0.2 76:0.25 93:0.07142857142857142 95:0.3333333333333333 197:1.0 208:0.2 210:1.0 228:1.0 235:1.0 240:0.16666666666666666 241:1.0 243:1.0 315:1.0 876:1.0
9 1:0.05 2:1.0 4:0.16666666666666666 14:1.0 53:0.16666666666666666 126:1.0 144:1.0 176:1.0 240:0.3333333333333333 298:1.0 317:1.0 568:0.5 886:1.0
9 1:0.025 4:0.16666666666666666 36:0.2857142857142857 60:0.09090909090909091 76:0.25 93:0.07142857142857142 124:1.0 192:0.16666666666666666 208:0.2 414:1.0 480:1.0 568:0.5 1340:1.0 1661:1.0
9 122:1.0 347:0.5
9 84:1.0 113:1.0 209:0.25 762:1.0
9 15:1.0 62:0.25 118:1.0 134:1.0 1054:0.5 1698:1.0
9 126:1.0 176:1.0 240:0.16666666666666666 1650:1.0
9 1:0.05 4:0.16666666666666666 17:0.14285714285714285 53:0.16666666666666666 240:0.16666666666666666 330:2.0 347:0.5 437:1.0 826:1.0
9 1:0.025 2:2.0 4:0.16666666666666666 10:0.125 17:0.14285714285714285 36:0.14285714285714285 111:1.0 158:0.25 198:0.1111111111111111 232:1.0 240:0.16666666666666666 330:1.0 372:0.5 437:1.0 679:1.0 982:2.0
9 1:0.025 4:0.16666666666666666 19:0.16666666666666666 51:0.2 126:1.0 148:0.5 176:1.0 240:0.16666666666666666 437:1.0 886:1.0
9 1:0.025 4:0.16666666666666666 36:0.14285714285714285 84:1.0 126:1.0 228:1.0 243:1.0 259:1.0 353:1.0 375:1.0 385:1.0 395:1.0 506:1.0 633:0.5 750:1.0 1127:1.0 1530:1.0
9 4:0.16666666666666666 36:0.2857142857142857 44:0.5 51:0.2 53:0.16666666666666666 85:1.0 240:0.16666666666666666 249:1.0 407:1.0
9 4:0.16666666666666666 17:0.14285714285714285 53:0.16666666666666666 233:1.0 240:0.3333333333333333 243:1.0 317:1.0 330:2.0 383:1.0 886:1.0
9 1:0.05 2:1.0 4:0.3333333333333333 36:0.2857142857142857 40:1.0 62:0.25 79:1.0 125:0.5 156:0.5 158:0.25 208:0.2 243:1.0 298:1.0 343:0.06666666666666667 347:0.5 420:1.0 491:1.0 801:1.0
|
1f27668e9555c040b2155ac0ee4f0bb07daa07d6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /692/CH13/EX13.2/P13_2.sce | c0f1048e7d8ceec55c9e971603d2abb3380f707b | [] | 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 | 411 | sce | P13_2.sce | //Example 13.2
//Downsampling Operation
clear;
clc;
clf();
a=gca();
figure(0);
n=[0:0.1:4.9];
a.x_location="origin";
x=sin(%pi*n);
plot2d3(n,x,2);
xtitle('The sine wave','n','sin(x)');
plot(n,x,'r.');
//Down sampling
//Down sampling - user input
figure(1);
M=input(" The down sampling factor ");
a.x_location="origin";
x1=sin(%pi*n*M);
plot2d3(n,x1,1);
plot(n,x1,'r.');
xtitle('The sine wave','n','sin(x*M)');
|
ab556cb08d3d0fa1731f3f2e40d717e2357a07f8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3289/CH9/EX9.4/Ex9_4.sce | 00ffc5f914bbc7fa08fc40f5de227684c6ab0b73 | [] | 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 | 365 | sce | Ex9_4.sce | clc
a=1.5 //m
E=206.8*10^9 //Pa
K=10000 //N/m
I=6*10^-6 //m^4
P=6700 //N
c=0.05
k=K/a
disp(k,"foundation modulus of the equivalent continuous elastic support in Pa is=")
beta=(k/(4*E*I))^(1/4)
disp(beta)
//sigmamax=(M*c/I)=(P*c/4*beta*I)
sigmamax=((P*c)/(4*beta*I))
disp(sigmamax,"in Pa is=")
vmax=(P*beta)/(2*k)
disp(vmax,"in meter is=")
|
1c670e05d50aa74941a85247e9eacdaaf426ac55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2582/CH1/EX1.21/Ex1_21.sce | 01876782b2bfcbd01693742fb585f8aa58ffb934 | [] | 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 | 333 | sce | Ex1_21.sce | //Ex 1.21
clc;clear;close;
format('v',6);
AQ2byA1=0.5;
AQ3byA1=0.25;
AQ4byA1=0.125;
VBE=0.7;//V
VCC=15;//V
R=20;//kohm
IC1=(VCC-VBE)/R;//mA
IC2=IC1*AQ2byA1;//mA
IC3=IC1*AQ3byA1;//mA
IC4=IC1*AQ4byA1;//mA
disp(IC4,IC3,IC2,"Value of current IC2, IC3 & IC4 is (mA) : ");
//Value of IC4 is displayed wrong in the textbook.
|
3547dd2aa14ae2132d819f4242c9bc37a5aef381 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH9/EX9.15/9_15.sce | 350b7445e0cd761eaec454deb197e3297345cac5 | [] | 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 | 159 | sce | 9_15.sce | clear
clc
E=10
x=0
e=1e-4
while (E>e)
f=(3*x) - (cos(x))-1
df=3+sin(x)
x1=x-(f/df)
E=abs(x1-x)
x=x1
end
mprintf("x=%.4f",x)
|
77cce4d85377a689566b87f246a666b918ee4866 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3828/CH13/EX13.2/Ex13_2.sce | 44f5e95c6cc58e31bf91fe21014d526f89a8378b | [] | 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 | 304 | sce | Ex13_2.sce | //Chapter 13 : Thin Film Preparation Techniques and their Applications
clear;
//Variable declaration
I=2*10**-3
V=1
//Calculations
rho=(V/I)*2
delR=rho-800 //change in resitance
A=1/delR //change in conductance
A=A*10**3
//Result
mprintf("Change in conductivity = %d *10**-3 Ohm**-1-cm**-1",A)
|
3f7d19a9bb65a6334c58b7fe5a726d614dc2ecd3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3269/CH11/EX11.11/Ex11_11.sce | 14d9de3683e3150292b5765296d5d396f8a2b71b | [] | 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,475 | sce | Ex11_11.sce | // Example 11.11
clear all;
clc;
// Given data
Qy_bar = 1.04*10^(-2); // Emission rate for one year in curie/year
// Let (chi/Q_bar) = d which is called 'Dilution factor'
d = 4*10^(-8); // Dilution factor in year/cm^3
vd = 0.01; // Experimentally determined constant
// 1.
T_12 = 8.04; // Half life of Iodine 131 in days
T_12f = 14; // First order half life of Iodine 131 in days
// Converting days into years by using 1 year = 365 days
lambda = 0.693/(T_12/365); // Decay constant of Iodine-131
lambdaf = 0.693/(T_12f/365); // First order decay constant of Iodine-131
// Calculation
Cf = (Qy_bar*d*vd)/(lambda+lambdaf);
// Expressing the result in micro-curie
Cf = Cf*10^6;
// Result
printf(" \n The activity of I-131 on the vegetation = %.2E micro-curie/m^2 \n",Cf);
// 2.
// The proportionality factor has a value 9*10^(-5) Ci/cm^3 of milk per Ci/m^2 of grass
// Calculation
Cm = 9*10^(-5)*Cf;
// Result
printf(" \n The concentration of I-131 in the milk = %.2E micro-curie/m^2 \n",Cm);
// 3.
MPC = 3*10^(-7); // Maximum Permissible Concentration in micro-curie/cm^3
// Calculation
H_dot = (2270*Cm)/MPC;
// Result
printf(" \n The annual dose rate to an infant thyroid by consuming radiated milk = %.2E mrem/year \n",H_dot);
|
e8d4a6afd2d7ac6b4e50cf8f80312981fc068c37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1133/CH9/EX9.27/Example9_27.sce | 6f6610cb6ce18f5dc009b69f6dadf55489fe9e6e | [] | 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 | 617 | sce | Example9_27.sce | //Example 9.27
clc
disp("T_ON = 0.6 ms, T = 1 ms")
d=0.6*100
disp(d,"Therefore, D(in percentage) = t_ON / T =")
disp("Now D = R_A+R_B / R_A+2*R_B = 0.6")
disp("Therefore, R_A+R_B = 0.6*R_A + 1.2*R_B")
disp("Therefore, 0.4*R_B = 0.2*R_B")
disp("Therefore, R_B = 2*R_A ....(1)")
disp(" f = 1.44 / (R_A+2*R_B)*C = 1/T = 1000")
disp("Choose C = 0.1 uF")
disp("Therefore, R_A+2*R_B = 14400")
disp("Using (1), 5*R_A = 14400")
ra=(14400/5)*10^-3
format(5)
disp(ra,"Therefore, R_A(in k-ohm) =")
rb=2.88*2
disp(rb," R_B(in k-ohm) =")
disp("The circuit is shown in the fig.9.101")
|
fd25f75f45df48695cc595211c5558fcd122bf8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH38/EX38.3/Example38_3.sce | a8ab2e2bcb72203bd2ec375bfe36fb105bb26fda | [] | 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 | 293 | sce | Example38_3.sce | //Given that
Lp = 230 ///in meter
t = 3.57*10^-6 //in meter
c = 3*10^8 //in m/s
//Sample Problem 38-3
printf("**Sample Problem 38-3**\n")
//y = 1/sqrt(1-r^2)
//L = Lp/y
//L = r*c*t
//solving -
r = Lp/sqrt((c*t)^2 + Lp^2)
printf("The relative velocoty is equal to %.3fc m/s", r) |
26bb5ae49bf12f14001aaf4ef64695e47617025c | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH16/EX16.1/16_1.sce | 828b56ce4faecd99d69105d3245efdac01f1ddba | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 643 | sce | 16_1.sce | //To find maximum and minimum speeds
clc
//Given:
m=6.5*1000 //kg
k=1.8 //m
deltaE=56*1000 //N-m
N=120 //rpm
//Solution:
//Calculating the maximum and minimum speeds
//We know that fluctuation of energy, deltaE = %pi^2/900*m*k^2*N*(N1-N2), or N1-N2 = (deltaE/(%pi^2/900*m*k^2*N)) .....(i)
//Also mean speed, N = (N1+N2)/2, or N1+N2 = 2*N .....(ii)
A=[1 -1; 1 1]
B=[deltaE/(%pi^2/900*m*k^2*N); 2*N]
V=A \ B
N1=round(V(1)) //rpm
N2=round(V(2)) //rpm
//Results:
printf("\n\n Maximum speed, N1 = %d rpm.\n\n",N1)
printf(" Minimum speed, N2 = %d rpm.\n\n",N2) |
50c55cb0b16678615fa1a6a60488bd76f2f753e2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1787/CH6/EX6.16/Exa6_16.sce | 2ebcc3068ee1132418645032bf40404730a35899 | [] | 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 | 404 | sce | Exa6_16.sce | //Exa 6.16
clc;
clear;
close;
//given data :
Beta=45;//Unitless
VBE=0.7;//in Volt
VCC=0;//in Volt
RB=10^5;//in ohm
RC=1.2*10^3;//in ohm
VEE=-9;//in Volt
disp("Applying Kirchoffs Voltage Law in input loop we have : ");
disp("IB*RB+VBE+VEE=0");
IB=-(VBE+VEE)/RB;//in mA
IC=Beta*IB;//in mA
VC=VCC-IC*RC;//in Volts
VB=VBE+VEE;//in Volts
disp(VC,"VC in volts : ");
disp(VB,"VB in volts : "); |
9309f16b1e871b93efb71aac430a593147e0b880 | b32474ae2727233775f44c71edfe1f10b6a3430f | /newton.sci | 83e96975f3187168c7cd4f5836f09e76bd772508 | [] | no_license | lucaslyon96/scilab | 8400b98c25dafa13069dd64bd391c15218323575 | 8fe45fd3bd27ab21490682874f72f9c20c8717e1 | refs/heads/master | 2020-03-18T12:25:20.253687 | 2018-05-24T14:49:08 | 2018-05-24T14:49:08 | 134,725,468 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sci | newton.sci | function [raiz,inter] = newton(x0,p,n)
rn=x0;
cont=0;
erro=1;
while(erro>p & cont<n)
ra=rn;
rn=ra-fx(ra)/dfx(ra);
erro=abs(rn-ra)/abs(rn);
cont=cont+1;
end
raiz =rn;
inter =cont;
endfunction
|
aa5f3131707f13b02384cfe9889a483013114b55 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2498/CH3/EX3.4/ex3_4.sce | 1b59f80a9897f637c2eefd553e7962712192adf7 | [] | 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 | 348 | sce | ex3_4.sce | // Exa 3.4
clc;
clear;
close;
format('v',8)
// Given data
P_ZM = 1500;// in mW
Deratingfactor = 3.33;// in mW
T1 = 85;// in degree C
T2 = 60;// in degree C
total = Deratingfactor*(T1-T2);// total derating factor in mW
// The maximum power dissipation
P_ZM = P_ZM - total;// in mW
disp(P_ZM,"The maximum power dissipation in mW is");
|
b3e533359874c70c305a2bb2079114333600f369 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3440/CH6/EX6.1/Ex6_1.sce | 13d102993d4aa9cea515e34579d6d7b0823339a4 | [] | 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 | 268 | sce | Ex6_1.sce | clc
T=300 //K
k=8.617*10^-5 //eV/K
q=1.6*10**-19 //C
epsilonx=8.854*10^-14 //F/cm
ni=9.65*10^9//cm^-3
NA=10^17 //cm^-3
d=8*10^-7//cm
Co=6.9*10^-7//F/cm^2
VFB=-1.1//V
//2*phis=p
p=0.84//V
dsi=5*10^-6//cm^2
VT=VFB+p+(q*NA*dsi/Co)
disp(VT,"VT in V is=")
|
ccf974e7eba2e02eb37281075bce26119bbce2ac | d69977ae2d30c54626be3fb38eac330056cde273 | /scilab/ima_adpcm_enc.sci | d46f58d1701b4204d9da2bd33ff9bc9721f41095 | [] | no_license | LoesterFranco/ima_adpcm_enc_dec | 461f81c3ac05fbae4678a55255309a5d30904590 | d5b2f245efe5e1e891e98b04250a7beadc65b4de | refs/heads/master | 2021-12-03T13:55:12.217852 | 2012-10-27T05:46:34 | 2012-10-27T05:46:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,577 | sci | ima_adpcm_enc.sci | function out_pcm = ima_adpcm_enc(in_samp)
// This function encodes the input samples audio vector using IMA ADPCM algorithm. The
// input is assumed to be sampled using 16 bits per sample. The output vector is a
// compressed version of the input audio signal which requires only 4 bits per input
// sample.
// The function will scale the input vector to 16 bits per sample automatically if all
// values in the vector are in the range [-1:1].
//
// Author: Moti Litochevski
// Date: February 17, 2010
//
// check the input vector samples range
if (abs(in_samp) <= 1),
in_samp = round(in_samp * (2^15-1));
end
// step quantizer adaptation lookup table
STEP_LUT = [ ...
7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 23, 25, 28, 31, 34, ...
37, 41, 45, 50, 55, 60, 66, 73, 80, 88, 97, 107, 118, 130, 143, 157, ...
173, 190, 209, 230, 253, 279, 307, 337, 371, 408, 449, 494, 544, 598, ...
658, 724, 796, 876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066, ...
2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358, 5894, 6484, ...
7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899, 15289, 16818, 18500, ...
20350, 22385, 24623, 27086, 29794, 32767];
// quantizer index adaptation lookup table
INDEX_LUT = [-1, -1, -1, -1, 2, 4, 6, 8];
// prepare output vector
out_pcm = zeros(length(in_samp), 4); // in binary format
// prepare loop variables
predictor_samp = zeros(1, length(in_samp)+1);
qstep_index = ones(1, length(in_samp)+1);
// compression loop
for idx = [1:length(in_samp)],
// subtract the previous sample form the current input sample
samp_diff = in_samp(idx)*8 - predictor_samp(idx);
// extract the current quantizer step size
qstep_size = STEP_LUT(qstep_index(idx));
// start difference quantization from the sign bit
out_pcm(idx, 1) = 1 * (samp_diff < 0);
samp_diff = abs(samp_diff);
// quantize the absolute value bit by bit
// the same process is used to calculate the de-quantizer output sample. note that the
// de-quantizer sample is started from the middle of the current step size (qstep_size/8).
dequant_samp = qstep_size;
// bit 2
out_pcm(idx, 2) = 1 * (samp_diff >= (qstep_size * 8));
samp_diff = samp_diff - out_pcm(idx, 2) * qstep_size * 8;
dequant_samp = dequant_samp + out_pcm(idx, 2) * qstep_size * 8;
// bit 1
out_pcm(idx, 3) = 1 * (samp_diff >= (qstep_size * 4));
samp_diff = samp_diff - out_pcm(idx, 3) * qstep_size * 4;
dequant_samp = dequant_samp + out_pcm(idx, 3) * qstep_size * 4;
// bit 0
out_pcm(idx, 4) = 1 * (samp_diff >= (qstep_size * 2));
dequant_samp = dequant_samp + out_pcm(idx, 4) * qstep_size * 2;
// update the predictor sample for the next iteration according to the sign bit
if (out_pcm(idx, 1)),
predictor_samp(idx+1) = predictor_samp(idx) - dequant_samp;
else
predictor_samp(idx+1) = predictor_samp(idx) + dequant_samp;
end
// check for predictor sample saturation condition
if (predictor_samp(idx+1) > (2^18-1)),
predictor_samp(idx+1) = 2^18 - 1;
elseif (predictor_samp(idx+1) < -2^18),
predictor_samp(idx + 1) = -2^18;
end
// update the step size index
pcm_val = out_pcm(idx, [2:4]) * [4, 2, 1]';
qstep_index(idx+1) = qstep_index(idx) + INDEX_LUT(pcm_val+1);
// check index saturation conditions
if (qstep_index(idx+1) < 1)
qstep_index(idx+1) = 1;
elseif (qstep_index(idx+1) > 89)
qstep_index(idx+1) = 89;
end
end
// convert the resulting compressed binary values to decimal
out_pcm = bi2de(out_pcm);
endfunction
|
f7894c59246af7c2e02b94c7324d3c9f5cd71f0e | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH7/EX7.2/example7_2.sce | 99de7070f1433586459459eadea33ed307de3161 | [] | 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 | 586 | sce | example7_2.sce | disp("Part a");
r1=8;
r2=12;
r3=6;
r4=12;
r=r1+r4+r2*r3/(r2+r3);
disp("the total resistance (in Ω) is"); disp(r);
disp("Part b");
v=72;
i=v/r;
disp("the current (in A) delivered by the battery is"); disp(i);
disp("Part c");
v1=i*r1;
disp("voltage drop (in V) across R1 is"); disp(v1);
v2=i*r2*r3/(r2+r3);
disp("voltage drop (in V) across R and R3 is"); disp(v2);
v4=i*r4;
disp("voltage drop (in V) across R4 is"); disp(v4);
disp("Part d");
i2=v2/r2;
disp("the current (in A) through R2 is"); disp(i2);
i3=v2/r3;
disp("the current (in A) through R3 is"); disp(i3); |
4ce825bf8e9afa7f11ebec659036e5c822acb4d3 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/GOLD-TEST/nob.tst | 56e1424015fa3ab64f2f2d11683ec7a66d1f68aa | [] | 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 | 106,935 | tst | nob.tst | helle hellet V;PST
modellfly modellflya N;DEF;PL
praktisk praktisk ADJ;NEUT;SG
sebra sebraer N;NDEF;PL
trekke trakk V;PST
utnytte utnyttet V;PST
appelsintre appelsintrær N;NDEF;PL
sideelv sideelver N;NDEF;PL
liv liv N;NDEF;PL
glassmester glassmesterne N;DEF;PL
fargestoff fargestoff N;NDEF;PL
lommepenger lommepengene N;DEF;PL
mur murene N;DEF;PL
mongol mongolen N;DEF;SG
regime regimer N;NDEF;PL
kostfiber kostfiberne N;DEF;PL
skudd skuddene N;DEF;PL
avsnitt avsnittene N;DEF;PL
svarteliste svartelisten N;DEF;SG
forvarsel forvarsla N;DEF;PL
måle måler V;PRS
lufttett lufttette ADJ;DEF;SG+PL
sopp sopper N;NDEF;PL
gulv gulva N;DEF;PL
adventskalender adventskalendre N;NDEF;PL
alkymi alkymien N;DEF;SG
talgokse talgoksen N;DEF;SG
alternativ alternativene N;DEF;PL
medlemskort medlemskortet N;DEF;SG
sekk sekker N;NDEF;PL
halvtom halvtomme ADJ;DEF;SG+PL
synd synder N;NDEF;PL
søndag søndagen N;DEF;SG
pessimist pessimister N;NDEF;PL
hval hvaler N;NDEF;PL
gjenåpne gjenåpne V;IMP
solbrille solbrillen N;DEF;SG
ornitologisk ornitologisk ADJ;NEUT;SG
improvisasjon improvisasjonene N;DEF;PL
maleri maleriet N;DEF;SG
seksualitet seksualiteten N;DEF;SG
dataprogram dataprogrammene N;DEF;PL
språk språket N;DEF;SG
pigment pigmentene N;DEF;PL
myke myket V;PST
slå slått V.PTCP;PST
partnerskap partnerskapet N;DEF;SG
ferje ferja N;DEF;SG
gutt guttene N;DEF;PL
knuse knus V;IMP
fiolin fiolinene N;DEF;PL
bidra bidragende V.PTCP;PRS
understell understellene N;DEF;PL
raffinere raffiner V;IMP
animasjon animasjoner N;NDEF;PL
navn navna N;DEF;PL
musikkinstrument musikkinstrumenter N;NDEF;PL
helle hellet V.PTCP;PST
filosofisk filosofisk ADJ;NEUT;SG
menneske menneskene N;DEF;PL
autoritet autoritetene N;DEF;PL
demokrat demokratene N;DEF;PL
krasj krasjen N;DEF;SG
konstitusjon konstitusjoner N;NDEF;PL
døgn døgnene N;DEF;PL
bibliofil bibliofilt ADJ;NEUT;SG
skjermutklipp skjermutklippene N;DEF;PL
moldvarp moldvarpen N;DEF;SG
dybde dybdene N;DEF;PL
kyniker kynikere N;NDEF;PL
koagulere koagulerte V;PST
nærhet nærheta N;DEF;SG
luftmotstand luftmotstanden N;DEF;SG
nøyaktig nøyaktige ADJ;DEF;SG+PL
termometer termometra N;DEF;PL
potteplante potteplanter N;NDEF;PL
fordømmelse fordømmelser N;NDEF;PL
hamre hamra V;PST
fyrverkeri fyrverkerier N;NDEF;PL
marsjere marsjert V.PTCP;PST
kraft kraften N;DEF;SG
furu furua N;DEF;SG
kanon kanonen N;DEF;SG
bokholder bokholdere N;NDEF;PL
under undret N;DEF;SG
kjerne kjernen N;DEF;SG
ågerkar ågerkaren N;DEF;SG
indikere indikerer V;PRS
naturressurs naturressursene N;DEF;PL
offisiell offisielt ADJ;NEUT;SG
vedlikeholde vedlikeholdende V.PTCP;PRS
hylle hylla V.PTCP;PST
prise pris V;IMP
kveld kvelden N;DEF;SG
milliliter milliliterne N;DEF;PL
krangle kranglende V.PTCP;PRS
krone kronen N;DEF;SG
morse morset V;PST
armbånd armbåndet N;DEF;SG
trontale trontalen N;DEF;SG
dagligdags dagligdagse ADJ;DEF;SG+PL
engel engelen N;DEF;SG
kakiplomme kakiplommene N;DEF;PL
brenne brenner V;PRS
kjærlighetshistorie kjærlighetshistoriene N;DEF;PL
kolon kolonene N;DEF;PL
mikroskopisk mikroskopiske ADJ;DEF;SG+PL
baderom baderomma N;DEF;PL
ung unge ADJ;DEF;SG+PL
kultur kulturer N;NDEF;PL
stim stimen N;DEF;SG
utvikle utvikle V;IMP
tempel templer N;NDEF;PL
mistenke mistenkt V.PTCP;PST
løype løyper V;PRS
ur ura N;DEF;PL
palauer palaueren N;DEF;SG
spille spill V;IMP
suge suga V.PTCP;PST
ultrafiolett ultrafiolette ADJ;DEF;SG+PL
støpe støpte V;PST
pumpe pumpen N;DEF;SG
øyenvitne øyenvitna N;DEF;PL
hamre hamrer V;PRS
glass glassene N;DEF;PL
gjel gjelet N;DEF;SG
hengelås hengelåsene N;DEF;PL
maksimalisere maksimaliserte V;PST
kjøpe kjøpte V;PST
heire heirer N;NDEF;PL
overflatevann overflatevannet N;DEF;SG
grunnlag grunnlag N;NDEF;PL
sveise sveiset V;PST
tannbørste tannbørstene N;DEF;PL
maler malere N;NDEF;PL
nigerer nigerere N;NDEF;PL
dekke dekkene N;DEF;PL
newzealander newzealanderen N;DEF;SG
amfetamin amfetaminet N;DEF;SG
synder syndere N;NDEF;PL
kraftig kraftig ADJ;NEUT;SG
bruke bruker V;PRS
hentydning hentydningen N;DEF;SG
spisepinne spisepinner N;NDEF;PL
reptil reptiler N;NDEF;PL
blad bladet N;DEF;SG
gass gasser N;NDEF;PL
eggeplomme eggeplommene N;DEF;PL
løvetann løvetann N;NDEF;PL
kvartett kvartettene N;DEF;PL
fruktbar fruktbart ADJ;NEUT;SG
mistenksom mistenksomme ADJ;DEF;SG+PL
hele helte V;PST
seile seilt V.PTCP;PST
fungere fungert V.PTCP;PST
emalje emaljen N;DEF;SG
folie foliene N;DEF;PL
førerkort førerkortet N;DEF;SG
ubåt ubåtene N;DEF;PL
virkning virkninger N;NDEF;PL
løk løken N;DEF;SG
elastisk elastisk ADJ;NEUT;SG
blomsterbed blomsterbedene N;DEF;PL
vinne vunnet V.PTCP;PST
angolaner angolanerne N;DEF;PL
frivillig frivillig ADJ;NEUT;SG
jamføre jamført V.PTCP;PST
fjell fjell N;NDEF;PL
strekke strekkende V.PTCP;PRS
hakekors hakekors N;NDEF;PL
hertug hertuger N;NDEF;PL
grunnlegger grunnleggeren N;DEF;SG
røveri røveriet N;DEF;SG
snøbre snøbreene N;DEF;PL
lyste lyster V;PRS
japaner japaneren N;DEF;SG
drikke drukket V.PTCP;PST
høst høsten N;DEF;SG
unngå unngikk V;PST
individ individ N;NDEF;PL
kjenne kjenner V;PRS
miniskjørt miniskjørtet N;DEF;SG
kanadisk kanadiske ADJ;DEF;SG+PL
spesialitet spesialiteter N;NDEF;PL
lydpotte lydpotter N;NDEF;PL
sjakkbrett sjakkbrett N;NDEF;PL
jordsmonn jordsmonnene N;DEF;PL
tittel titler N;NDEF;PL
fersk ferske ADJ;DEF;SG+PL
hode hoda N;DEF;PL
basere basert V.PTCP;PST
garanti garantien N;DEF;SG
kunde kundene N;DEF;PL
strekk strekker N;NDEF;PL
sentral sentralt ADJ;NEUT;SG
spir spirer N;NDEF;PL
gangbro gangbroene N;DEF;PL
kontrollere kontroller V;IMP
leselig leselig ADJ;NEUT;SG
gordisk knute den gordiske knuten N;DEF;SG
skuespill skuespilla N;DEF;PL
stilling stillingen N;DEF;SG
firedel firedeler N;NDEF;PL
nøytron nøytroner N;NDEF;PL
prostitusjon prostitusjonen N;DEF;SG
bøyelig bøyelige ADJ;DEF;SG+PL
myanmarer myanmareren N;DEF;SG
kurv kurver N;NDEF;PL
hertuginne hertuginna N;DEF;SG
krigføring krigføringa N;DEF;SG
langskip langskipet N;DEF;SG
bygg bygg N;NDEF;PL
komplisert komplisert ADJ;NEUT;SG
kjeve kjeven N;DEF;SG
eie ått V.PTCP;PST
tilstand tilstander N;NDEF;PL
tenåring tenåringer N;NDEF;PL
sanddyne sanddyner N;NDEF;PL
hjørne hjørnet N;DEF;SG
trene trenet V;PST
snøbrille snøbrillene N;DEF;PL
magnetfelt magnetfeltet N;DEF;SG
fløte fløtte V;PST
fluidmekanikk fluidmekanikken N;DEF;SG
skrog skroget N;DEF;SG
steinkast steinkastet N;DEF;SG
avskaffe avskaffa V;PST
rund runde ADJ;DEF;SG+PL
allehånde allehånder N;NDEF;PL
renslighet rensligheta N;DEF;SG
oppfylle oppfyll V;IMP
tung tungeste ADJ;SPRL;DEF
diplomat diplomatene N;DEF;PL
eksistere eksisterte V;PST
motsi motsiende V.PTCP;PRS
fylle fyller V;PRS
kartograf kartografene N;DEF;PL
forsterke forsterket V;PST
øl øl N;NDEF;PL
uløst uløst ADJ;NEUT;SG
romsonde romsonder N;NDEF;PL
synonymordbok synonymordbøker N;NDEF;PL
vokalist vokalister N;NDEF;PL
motta mottar V;PRS
importør importøren N;DEF;SG
råtne råtnende V.PTCP;PRS
assistent assistenter N;NDEF;PL
betaling betalinga N;DEF;SG
None ødeleggende V.PTCP;PRS
bue buen N;DEF;SG
kommandere kommanderer V;PRS
flyt flyten N;DEF;SG
bombe bomba V;PST
salme salmene N;DEF;PL
lått låtten N;DEF;SG
anarki anarki N;NDEF;PL
profet profetene N;DEF;PL
ironi ironier N;NDEF;PL
krysse kryss V;IMP
gjerde gjerder N;NDEF;PL
tier tierne N;DEF;PL
adskille adskilte V;PST
kino kinoene N;DEF;PL
navlestreng navlestrenger N;NDEF;PL
ekskone ekskonen N;DEF;SG
temperatur temperaturen N;DEF;SG
klassifisere klassifisert V.PTCP;PST
utforming utformingen N;DEF;SG
negl neglen N;DEF;SG
sone sona N;DEF;SG
fregne fregnene N;DEF;PL
idé idéene N;DEF;PL
palauer palauere N;NDEF;PL
aminosyre aminosyra N;DEF;SG
hull hullet N;DEF;SG
mobil mobiler N;NDEF;PL
tisse tisset V;PST
sørafrikaner sørafrikaneren N;DEF;SG
sogn sogna N;DEF;PL
spektrum spektra N;DEF;PL
kypriot kypriotene N;DEF;PL
fremføre fremfør V;IMP
tru trudd V.PTCP;PST
jordmor jordmødre N;NDEF;PL
gulv gulv N;NDEF;PL
representere representerer V;PRS
gangbro gangbroen N;DEF;SG
kartlegge kartla V;PST
trompet trompetene N;DEF;PL
spekter spekteret N;DEF;SG
supermarked supermarkeder N;NDEF;PL
vante vanter N;NDEF;PL
sigarett sigaretten N;DEF;SG
anonymitet anonymiteten N;DEF;SG
marokkaner marokkanere N;NDEF;PL
dialekt dialekten N;DEF;SG
usynlig usynlig ADJ;NEUT;SG
varsler varslere N;NDEF;PL
undervannsbåt undervannsbåter N;NDEF;PL
fast fast ADJ;NEUT;SG
snøplog snøplogen N;DEF;SG
slavisk slaviske ADJ;DEF;SG+PL
vaskeservant vaskeservanten N;DEF;SG
univers universa N;DEF;PL
kineser kineseren N;DEF;SG
navn navnene N;DEF;PL
tap tapene N;DEF;PL
høflig høfligste ADJ;SPRL;DEF
greker grekeren N;DEF;SG
rusten rustent ADJ;NEUT;SG
tekste tekster V;PRS
sikt sikter N;NDEF;PL
magnetisme magnetismen N;DEF;SG
oversjøisk oversjøiske ADJ;DEF;SG+PL
påske påska N;DEF;SG
løpe løpende V.PTCP;PRS
koselig koselig ADJ;NEUT;SG
golfklubb golfklubbene N;DEF;PL
komparativ komparativer N;NDEF;PL
padde padda N;DEF;SG
kaptein kapteinen N;DEF;SG
rådgiver rådgivere N;NDEF;PL
kjennskap kjennskapen N;DEF;SG
hud hudene N;DEF;PL
dirigent dirigentene N;DEF;PL
tsjader tsjaderen N;DEF;SG
stasjonsvogn stasjonsvogna N;DEF;SG
lysår lysåret N;DEF;SG
evolusjonær evolusjonære ADJ;DEF;SG+PL
drypp dryppet N;DEF;SG
misbruk misbruket N;DEF;SG
fotnote fotnotene N;DEF;PL
kvinne kvinnen N;DEF;SG
kostarikaner kostarikanere N;NDEF;PL
gelé geléene N;DEF;PL
rotere roterende V.PTCP;PRS
betale betalte V;PST
synke synkende V.PTCP;PRS
kafé kafeen N;DEF;SG
rygg ryggen N;DEF;SG
tredimensjonal tredimensjonale ADJ;DEF;SG+PL
mørketid mørketider N;NDEF;PL
broder brødre N;NDEF;PL
seksdel seksdelene N;DEF;PL
tyrker tyrkerne N;DEF;PL
dataprogram dataprogrammer N;NDEF;PL
vinsje vinsja V;PST
samle samla V;PST
avgang avganger N;NDEF;PL
mineral mineral N;NDEF;PL
kabin kabinene N;DEF;PL
kaffer kafferen N;DEF;SG
likevekt likevekter N;NDEF;PL
kongedømme kongedømma N;DEF;PL
statistikk statistikken N;DEF;SG
énskinnebane énskinnebanen N;DEF;SG
ordre ordren N;DEF;SG
hjem hjemmene N;DEF;SG
frukttre frukttrærne N;DEF;PL
konversasjon konversasjoner N;NDEF;PL
koffert kofferten N;DEF;SG
form forma N;DEF;SG
kjole kjoler N;NDEF;PL
reinsdyr reinsdyret N;DEF;SG
litauer litauerne N;DEF;PL
skje skjeene N;DEF;PL
folketelling folketellinga N;DEF;SG
epidemi epidemien N;DEF;SG
bleikemiddel bleikemiddel N;NDEF;PL
moldover moldoveren N;DEF;SG
armé arméen N;DEF;SG
lommelerke lommelerken N;DEF;SG
bryllup bryllupa N;DEF;PL
hulle hull V;IMP
meteorologi meteorologien N;DEF;SG
tempel templene N;DEF;PL
svigermor svigermødre N;NDEF;PL
minoritet minoritetene N;DEF;PL
filolog filologen N;DEF;SG
skyte skøyt V;PST
stilfull stilfullt ADJ;NEUT;SG
komplisere kompliser V;IMP
forelder forelderen N;DEF;SG
spiseforstyrrelse spiseforstyrrelsene N;DEF;PL
høyesterettsjustitiarius høyesterettsjustitiariusene N;DEF;PL
løsning løsninga N;DEF;SG
piske pisk V;IMP
ponni ponniene N;DEF;PL
sjakt sjaktene N;DEF;PL
oppgave oppgaven N;DEF;SG
kokk kokkene N;DEF;PL
jordansk jordanske ADJ;DEF;SG+PL
østlig østlige ADJ;DEF;SG+PL
bjørk bjørkene N;DEF;PL
ubrukt ubrukte ADJ;DEF;SG+PL
pupp puppene N;DEF;PL
trene trener V;PRS
fantastisk fantastiske ADJ;DEF;SG+PL
ratt ratta N;DEF;PL
hete hette V;PST
eikenøtt eikenøtten N;DEF;SG
eksitere eksiterte V;PST
apekatt apekatter N;NDEF;PL
forbrenningsmotor forbrenningsmotorer N;NDEF;PL
myke mykte V;PST
utvidelse utvidelsene N;DEF;PL
mørk mørkere ADJ;CMPR
alpakka alpakkaene N;DEF;PL
obligatorisk obligatoriske ADJ;DEF;SG+PL
ørliten ørlite ADJ;NEUT;SG
redigere rediger V;IMP
nøkkel nøklene N;DEF;PL
antyde antyda V;PST
slovener slovenerne N;DEF;PL
høste høst V;IMP
plan planene N;DEF;PL
potte potta N;DEF;SG
synge sang V;PST
potensiell potensielle ADJ;DEF;SG+PL
undersøkelse undersøkelser N;NDEF;PL
feromon feromonet N;DEF;SG
kjøkkenredskap kjøkkenredskap N;NDEF;PL
ressurs ressursene N;DEF;PL
frelser frelseren N;DEF;SG
huskatt huskatten N;DEF;SG
hagle haglen N;DEF;SG
tamburin tamburinen N;DEF;SG
papuaner papuanerne N;DEF;PL
utgivelse utgivelsen N;DEF;SG
dagsavis dagsavisene N;DEF;PL
vei veiene N;DEF;PL
anerkjennelse anerkjennelsen N;DEF;SG
streng strenge ADJ;DEF;SG+PL
papir papirene N;DEF;PL
jevndøgn jevndøgn N;NDEF;PL
daglig daglig ADJ;NEUT;SG
syk syke ADJ;DEF;SG+PL
pedal pedalene N;DEF;PL
meny menyer N;NDEF;PL
kalkstein kalksteiner N;NDEF;PL
sol sola N;DEF;SG
konisk koniske ADJ;DEF;SG+PL
askebeger askebegeret N;DEF;SG
grotesk groteske ADJ;DEF;SG+PL
spiss spisser N;NDEF;PL
øve øvet V.PTCP;PST
skudd skudd N;NDEF;PL
piske piska V;PST
kongedømme kongedømmene N;DEF;PL
eufemistisk eufemistiske ADJ;DEF;SG+PL
person personen N;DEF;SG
gaffel gaflene N;DEF;PL
skrog skrog N;NDEF;PL
disig disig ADJ;NEUT;SG
rattstamme rattstammen N;DEF;SG
fugl fuglene N;DEF;PL
granitt granitter N;NDEF;PL
sjømann sjømenn N;NDEF;PL
tillegg tillegg N;NDEF;PL
usikkerhet usikkerheter N;NDEF;PL
kvadratrot kvadratrøttene N;DEF;PL
tone tonene N;DEF;PL
datavirus dataviruset N;DEF;SG
hekk hekker N;NDEF;PL
brud brudene N;DEF;PL
abbedi abbedier N;NDEF;PL
punktlighet punktligheta N;DEF;SG
børste børst V;IMP
børs børser N;NDEF;PL
torturere torturerer V;PRS
stedsnavn stedsnavna N;DEF;PL
labyrint labyrintene N;DEF;PL
tilby tilbyr V;PRS
gammel eldre ADJ;CMPR
flis flisa N;DEF;SG
sperre sperret V;PST
kryptere krypterer V;PRS
lys lyst ADJ;NEUT;SG
metode metoder N;NDEF;PL
tablett tabletten N;DEF;SG
mistenksom mistenksomt ADJ;NEUT;SG
fly fly V;IMP
usynlig usynlige ADJ;DEF;SG+PL
språk språkene N;DEF;PL
kalkstein kalksteinene N;DEF;PL
vesteuropeisk vesteuropeisk ADJ;NDEF;NEUT;SG
endring endringa N;DEF;SG
entall entalla N;DEF;PL
lerke lerker N;NDEF;PL
dømme dømmer V;PRS
makt makter N;NDEF;PL
frostvæske frostvæsken N;DEF;SG
punker punkere N;NDEF;PL
akseptere aksepterte V;PST
drøm drømmen N;DEF;SG
elg elger N;NDEF;PL
direktør direktører N;NDEF;PL
hjemmelekse hjemmeleksen N;DEF;SG
verktøykasse verktøykassa N;DEF;SG
heltall heltallene N;DEF;PL
støpejern støpejernet N;DEF;SG
oksid oksidene N;DEF;PL
tegning tegninga N;DEF;SG
delstat delstaten N;DEF;SG
hvirvel hvirvelen N;DEF;SG
konflikt konfliktene N;DEF;PL
rask raskeste ADJ;SPRL;DEF
krysse kryssa V;PST
piggtråd piggtråden N;DEF;SG
avrunde avrunda V;PST
utstyre utstyrer V;PRS
ulv ulven N;DEF;SG
tyskertøs tyskertøsa N;DEF;SG
vokabular vokabularene N;DEF;PL
terpentin terpentinet N;DEF;SG
grønn grønneste ADJ;SPRL;DEF
fjell fjellene N;DEF;PL
lekter lektere N;NDEF;PL
vitamin vitamin N;NDEF;PL
distrikt distrikta N;DEF;PL
vokalist vokalistene N;DEF;PL
sende sendte V;PST
ha hatt V.PTCP;PST
søk søka N;DEF;PL
mast masten N;DEF;SG
mord mordet N;DEF;SG
anerkjenne anerkjent V.PTCP;PST
varm varmt ADJ;NEUT;SG
bølge bølgen N;DEF;SG
oversikt oversikten N;DEF;SG
passform passformer N;NDEF;PL
vatn vatnene N;DEF;PL
jernbanelinje jernbanelinjene N;DEF;PL
dagstur dagsturene N;DEF;PL
deltakelse deltakelsene N;DEF;PL
møller mølleren N;DEF;SG
magedans magedansene N;DEF;PL
vitamin vitaminene N;DEF;PL
objektiv objektiver N;NDEF;PL
etterligning etterligninga N;DEF;SG
punkt punktene N;DEF;PL
selger selgere N;NDEF;PL
uskreven uskrevet ADJ;NEUT;SG
forby forbydd V.PTCP;PST
sverd sverda N;DEF;PL
kølle køllene N;DEF;PL
vipp vippen N;DEF;SG
sykle sykl V;IMP
sti stien N;DEF;SG
rå råe ADJ;DEF;SG+PL
luksusbil luksusbilene N;DEF;PL
papir papir N;NDEF;PL
laste lastet V;PST
vokativ vokativen N;DEF;SG
handtering handteringen N;DEF;SG
skremme skremt V.PTCP;PST
hjelpemiddel hjelpemiddelet N;DEF;SG
entusiast entusiastene N;DEF;PL
filosofere filosoferte V;PST
tabell tabeller N;NDEF;PL
hav hav N;NDEF;PL
fjerne fjerna V;PST
kløtsj kløtsjer N;NDEF;PL
mangelfull mangelfullt ADJ;NEUT;SG
overleve overlevd V.PTCP;PST
fryktelig fryktelige ADJ;DEF;SG+PL
tung tunge ADJ;DEF;SG+PL
spisepinne spisepinnene N;DEF;PL
flamsk flamsk ADJ;NEUT;SG
tilsetning tilsetningene N;DEF;PL
stykke stykka N;DEF;PL
foto foto N;NDEF;PL
bidrag bidraget N;DEF;SG
forstillelse forstillelsen N;DEF;SG
drømme drøm V;IMP
terrorisere terroriserte V;PST
kvalross kvalrossen N;DEF;SG
bekk bekkene N;DEF;PL
politimann politimenn N;NDEF;PL
suppe suppen N;DEF;SG
forberedelse forberedelser N;NDEF;PL
styre styrte V;PST
agurk agurken N;DEF;SG
kolonne kolonner N;NDEF;PL
spillkonsoll spillkonsollene N;DEF;PL
synlig synlige ADJ;DEF;SG+PL
hylle hyll V;IMP
rektor rektoren N;DEF;SG
bleikemiddel bleikemiddelet N;DEF;SG
vår vårer N;NDEF;PL
gjøre gjort V.PTCP;PST
tomatpuré tomatpureen N;DEF;SG
våkne våknet V;PST
schizofreni schizofrenien N;DEF;SG
perfeksjon perfeksjonene N;DEF;PL
linse linsene N;DEF;PL
farmakologisk farmakologiske ADJ;DEF;SG+PL
art arta N;DEF;SG
spak spaker N;NDEF;PL
sag sagene N;DEF;PL
alternativ alternativa N;DEF;PL
container containere N;NDEF;PL
diaré diareene N;DEF;PL
konkurrent konkurrentene N;DEF;PL
ubevegelig ubevegelig ADJ;NEUT;SG
nummen nummenest ADJ;SPRL
apparat apparater N;NDEF;PL
ågerkarl ågerkarler N;NDEF;PL
normal normalt ADJ;NEUT;SG
tupé tupéene N;DEF;PL
operasjon operasjonen N;DEF;SG
ferskvann ferskvannene N;DEF;PL
lingvistikk lingvistikken N;DEF;SG
oppleve opplev V;IMP
bivirkning bivirkninga N;DEF;SG
nomade nomaden N;DEF;SG
forenkle forenkler V;PRS
påskedag påskedagene N;DEF;PL
trille trillene N;DEF;PL
endelse endelsen N;DEF;SG
folkestyre folkestyra N;DEF;PL
beskjære beskåret V.PTCP;PST
rein reinere ADJ;CMPR
avskaffe avskaff V;IMP
rike rika N;DEF;PL
mangemillionær mangemillionæren N;DEF;SG
fotball fotballen N;DEF;SG
bank banker N;NDEF;PL
vitamin vitaminet N;DEF;SG
væske væsken N;DEF;SG
lukker lukkeren N;DEF;SG
hetebølge hetebølgene N;DEF;PL
fortid fortida N;DEF;SG
tordenvær tordenværa N;DEF;PL
kjøttmeis kjøttmeisa N;DEF;SG
boble boblene N;DEF;PL
bo boa N;DEF;PL
flykropp flykroppene N;DEF;PL
maleri malerier N;NDEF;PL
aristokrat aristokrater N;NDEF;PL
punktum punktuma N;DEF;PL
kvartal kvartala N;DEF;PL
hånd hånden N;DEF;SG
nicaraguaner nicaraguaneren N;DEF;SG
kommunist kommunistene N;DEF;PL
falk falken N;DEF;SG
slovakisk slovakisk ADJ;NEUT;SG
behandling behandlingene N;DEF;PL
tannråte tannråten N;DEF;SG
støpe støpt V.PTCP;PST
osean oseaner N;NDEF;PL
nonne nonna N;DEF;SG
kombinasjon kombinasjonen N;DEF;SG
diskutere diskuter V;IMP
forløper forløperne N;DEF;PL
araber araberen N;DEF;SG
ål ålen N;DEF;SG
lok lokene N;DEF;PL
alternativ alternativ N;NDEF;PL
håndskrift håndskrift N;NDEF;PL
speil speil N;NDEF;PL
harpe harpene N;DEF;PL
sjonglør sjonglører N;NDEF;PL
røyker røykeren N;DEF;SG
fjerdedel fjerdedelen N;DEF;SG
mørketid mørketida N;DEF;SG
bevege bevega V;PST
prøve prøva N;DEF;SG
oljemaleri oljemaleriene N;DEF;PL
dråpe dråper N;NDEF;PL
frakt fraktene N;DEF;PL
sølvtøy sølvtøyet N;DEF;SG
ånd åndene N;DEF;PL
vinter vintre N;NDEF;PL
undervurdering undervurderingene N;DEF;PL
anarki anarkiene N;DEF;PL
hoste hosten N;DEF;SG
kollektiv kollektivt ADJ;NEUT;SG
fotballag fotballagene N;DEF;PL
kirurgisk kirurgisk ADJ;NEUT;SG
omslag omslaget N;DEF;SG
pai paien N;DEF;SG
tilnærming tilnærmingen N;DEF;SG
hai haiene N;DEF;PL
elsker elskerne N;DEF;PL
semikolon semikolona N;DEF;PL
egypter egypteren N;DEF;SG
hekk hekken N;DEF;SG
julaften julaftenene N;DEF;PL
kongle konglen N;DEF;SG
utfordre utfordret V;PST
regjering regjeringen N;DEF;SG
rulletrapp rulletrappen N;DEF;SG
tilsetning tilsetninga N;DEF;SG
sjiraff sjiraffen N;DEF;SG
pass passet N;DEF;SG
kjær kjærere ADJ;CMPR
arve arvende V.PTCP;PRS
fugleperspektiv fugleperspektivet N;DEF;SG
luftskip luftskipene N;DEF;PL
kolposkop kolposkop N;NDEF;PL
hygienisk hygieniske ADJ;DEF;SG+PL
snømåking snømåkingen N;DEF;SG
terreng terrenget N;DEF;SG
forvirre forvirret V;PST
astronom astronomene N;DEF;PL
frakte frakter V;PRS
omringe omringa V;PST
piggvar piggvarene N;DEF;PL
byggemateriale byggematerialene N;DEF;PL
formell formelt ADJ;NEUT;SG
feie feid V.PTCP;PST
adventskalender adventskalenderen N;DEF;SG
draft drafter N;NDEF;PL
fjernkontroll fjernkontrollen N;DEF;SG
lesbe lesbene N;DEF;PL
være var V;PST
supermakt supermaktene N;DEF;PL
terreng terreng N;NDEF;PL
gudelig gudelige ADJ;DEF;SG+PL
krøll krøller N;NDEF;PL
grense grensa N;DEF;SG
handelsskip handelsskip N;NDEF;PL
bøffel bøfler N;NDEF;PL
feie feide V;PST
arbeid arbeida N;DEF;PL
verb verbet N;DEF;SG
ugress ugressa N;DEF;PL
aftenkjole aftenkjolene N;DEF;PL
åpner åpnerne N;DEF;PL
nobelpris nobelpriser N;NDEF;PL
hankjønn hankjønnet N;DEF;SG
undervassbåt undervassbåter N;NDEF;PL
søke søkende V.PTCP;PRS
pakt paktene N;DEF;PL
vinter vintrene N;DEF;PL
vegetasjon vegetasjoner N;NDEF;PL
hagl haglene N;DEF;PL
notisbok notisboken N;DEF;SG
krokodille krokodillen N;DEF;SG
vokse vokst V.PTCP;PST
feil feil N;NDEF;PL
lukt luktene N;DEF;PL
banansplitt banansplittene N;DEF;PL
hekseri hekseriet N;DEF;SG
sitte sittende V.PTCP;PRS
tonganer tonganere N;NDEF;PL
mislykket mislykkede ADJ;DEF;SG+PL
seilbåt seilbåter N;NDEF;PL
brann brannen N;DEF;SG
eikenøtt eikenøttene N;DEF;PL
diktator diktatoren N;DEF;SG
økonomi økonomiene N;DEF;PL
dyp dypere ADJ;CMPR
plassere plasser V;IMP
kvartal kvartaler N;NDEF;PL
plastfolie plastfolier N;NDEF;PL
gullfisk gullfiskene N;DEF;PL
soveværelse soveværelsa N;DEF;PL
menstruere menstruerer V;PRS
utbrudd utbruddene N;DEF;PL
revolusjon revolusjonene N;DEF;PL
kenguru kenguruen N;DEF;SG
patruljere patruljerende V.PTCP;PRS
unntak unntaka N;DEF;PL
hekke hekket V;PST
møne møna N;DEF;PL
kolonne kolonnene N;DEF;PL
mannskap mannskapet N;DEF;SG
protestantisk protestantisk ADJ;NEUT;SG
angolaner angolanere N;NDEF;PL
kinn kinner N;NDEF;PL
ikon ikoner N;NDEF;PL
rose roser N;NDEF;PL
falle falt V;PST
presang presanger N;NDEF;PL
marshalleser marshallesere N;NDEF;PL
sjø sjøen N;DEF;SG
ulv ulver N;NDEF;PL
arbeiderklasse arbeiderklasser N;NDEF;PL
pønker pønkerne N;DEF;PL
oseanisk oseanisk ADJ;NEUT;SG
underverden underverdenen N;DEF;SG
tradisjonell tradisjonelle ADJ;DEF;SG+PL
venn vennene N;DEF;PL
mikroorganisme mikroorganismen N;DEF;SG
rompis rompisene N;DEF;PL
ironi ironiene N;DEF;PL
ligning ligningene N;DEF;PL
lakris lakrisen N;DEF;SG
frysepunkt frysepunktene N;DEF;PL
fiasko fiaskoer N;NDEF;PL
markedsandel markedsandelen N;DEF;SG
hårfeste hårfester N;NDEF;PL
resepsjon resepsjonen N;DEF;SG
visitt visitter N;NDEF;PL
feminist feministen N;DEF;SG
dødsstraff dødsstraffen N;DEF;SG
muldvarp muldvarpen N;DEF;SG
entall entall N;NDEF;PL
formørkelse formørkelsene N;DEF;PL
indonesisk indonesiske ADJ;DEF;SG+PL
hank hanken N;DEF;SG
smeltepunkt smeltepunktet N;DEF;SG
sete seta N;DEF;PL
håndskrift håndskriftet N;DEF;SG
munk munken N;DEF;SG
bidra bidradd V.PTCP;PST
hofte hoftene N;DEF;PL
belizer belizerne N;DEF;PL
lyste lystende V.PTCP;PRS
ulv ulvene N;DEF;PL
svin svinet N;DEF;SG
blåse blåsende V.PTCP;PRS
hjelpe hjelp V;IMP
kortbukse kortbuksen N;DEF;SG
fokusere fokuserer V;PRS
markedsandel markedsandeler N;NDEF;PL
distrikt distrikter N;NDEF;PL
åsside åssidene N;DEF;PL
bite bitt V.PTCP;PST
orientalsk orientalske ADJ;DEF;SG+PL
heve hev V;IMP
spansk spanske ADJ;DEF;SG+PL
spille spilt V.PTCP;PST
kirkeklokke kirkeklokkene N;DEF;PL
magedanserinne magedanserinnene N;DEF;PL
bokhandler bokhandlerne N;DEF;PL
hvitløk hvitløken N;DEF;SG
beskjeden beskjedne ADJ;DEF;SG+PL
imponere imponerte V;PST
utopi utopier N;NDEF;PL
høns hønsene N;DEF;PL
skilt skilter N;NDEF;PL
bjørk bjørken N;DEF;SG
blindhet blindheten N;DEF;SG
hunkjønn hunkjønn N;NDEF;PL
oppfinner oppfinnere N;NDEF;PL
kalvekjøtt kalvekjøttet N;DEF;SG
bein beinene N;DEF;PL
temperert tempererte ADJ;DEF;SG+PL
manuskript manuskripter N;NDEF;PL
forbedret forbedrete ADJ;DEF;SG+PL
gjel gjel N;NDEF;PL
tilbakedanning tilbakedanninger N;NDEF;PL
stenalder stenalderen N;DEF;SG
lønnsomhet lønnsomheten N;DEF;SG
sovepose soveposer N;NDEF;PL
søsken søskenene N;DEF;PL
gevir gevirer N;NDEF;PL
atrofi atrofien N;DEF;SG
periferi periferien N;DEF;SG
sekret sekret N;NDEF;PL
klesskap klesskapene N;DEF;PL
behandle behandler V;PRS
forby forbudt V.PTCP;PST
blodcelle blodcellene N;DEF;PL
motstå motstår V;PRS
forhugning forhugningen N;DEF;SG
vinsje vinsjet V;PST
rolle roller N;NDEF;PL
måneskinn måneskinnet N;DEF;SG
sykesøster sykesøstera N;DEF;SG
matte matta N;DEF;SG
ønske ønskene N;DEF;PL
fare farer N;NDEF;PL
bestyrer bestyrerne N;DEF;PL
forhugning forhugningene N;DEF;PL
musikal musikalen N;DEF;SG
gress gress N;NDEF;PL
sangerinne sangerinna N;DEF;SG
sjokkere sjokkerer V;PRS
spørsmålstegn spørsmålstegn N;NDEF;PL
kanal kanalen N;DEF;SG
statsoverhode statsoverhodet N;DEF;SG
tyggegummi tyggegummiene N;DEF;PL
kuleramme kulerammene N;DEF;PL
kjerub kjeruben N;DEF;SG
hektar hektara N;DEF;PL
bokser bokserne N;DEF;PL
ordre ordrene N;DEF;PL
skulderveske skulderveska N;DEF;SG
revolusjon revolusjoner N;NDEF;PL
kjønn kjønnene N;DEF;PL
stråle stråler N;NDEF;PL
gate gatene N;DEF;PL
beskatte beskatt V;IMP
reklame reklamer N;NDEF;PL
samleie samleiene N;DEF;PL
sentral sentraler N;NDEF;PL
subtraksjon subtraksjonene N;DEF;PL
vannløselig vannløselig ADJ;NEUT;SG
skrog skrogene N;DEF;PL
rug rugen N;DEF;SG
allé alléer N;NDEF;PL
grafisk grafisk ADJ;NEUT;SG
sjonglør sjonglørene N;DEF;PL
lagre lagret V;PST
brukernavn brukernavna N;DEF;PL
upraktisk upraktiske ADJ;DEF;SG+PL
kjøpesenter kjøpesentret N;DEF;SG
resymé resyméa N;DEF;PL
heve heva V.PTCP;PST
aksess aksesser N;NDEF;PL
skatteparadis skatteparadisene N;DEF;PL
aften aftenen N;DEF;SG
jordbær jordbær N;NDEF;PL
objekt objekta N;DEF;PL
stige stigen N;DEF;SG
termometer termometeret N;DEF;SG
frosk froskene N;DEF;PL
fallskjerm fallskjermen N;DEF;SG
fiber fiberen N;DEF;SG
diffus diffus ADJ;MASC
stengel stengelen N;DEF;SG
brøle brøler V;PRS
skihopper skihopperne N;DEF;PL
barriere barrierer N;NDEF;PL
armé armeer N;NDEF;PL
kapittel kapittel N;NDEF;PL
mexicaner mexicanerne N;DEF;PL
lukte luktet V;PST
utrulig utrulige ADJ;DEF;SG+PL
fartsgrense fartsgrenser N;NDEF;PL
bergart bergarter N;NDEF;PL
kaffer kafferne N;DEF;PL
feste festa V;PST
boggi boggien N;DEF;SG
boks boksene N;DEF;PL
krydder krydder N;NDEF;PL
heise heist V.PTCP;PST
firedoble firedoble V;IMP
bleike bleika V;PST
ørken ørkenene N;DEF;PL
boksåpner boksåpnere N;NDEF;PL
skru skrur V;PRS
utstillingsvindu utstillingsvindu N;NDEF;PL
kvinnelig kvinnelige ADJ;DEF;SG+PL
vintertid vintertiden N;DEF;SG
costaricaner costaricanerne N;DEF;PL
astronomi astronomien N;DEF;SG
kval kvalen N;DEF;SG
klasse klassen N;DEF;SG
ateistisk ateistiske ADJ;DEF;SG+PL
vert vertene N;DEF;PL
privat private ADJ;DEF;SG+PL
ask askene N;DEF;PL
meteoritt meteorittene N;DEF;PL
glidelås glidelåset N;DEF;SG
fotografi fotografiene N;DEF;PL
utvikling utviklingen N;DEF;SG
finne sted funnet sted V.PTCP;PST
leie leid V.PTCP;PST
hvithåret hvithårede ADJ;DEF;SG+PL
turkis turkise ADJ;DEF;SG+PL
kabel kabler N;NDEF;PL
takstein taksteinen N;DEF;SG
bredde bredden N;DEF;SG
stykke stykkene N;DEF;PL
hyggelig hyggelig ADJ;NEUT;SG
spare spart V.PTCP;PST
single singlene N;DEF;PL
tog toga N;DEF;PL
tvist tvistene N;DEF;PL
gjerning gjerninga N;DEF;SG
sigøyner sigøynerne N;DEF;PL
sjonglere sjonglerte V;PST
batteri batteriene N;DEF;PL
fabrikk fabrikker N;NDEF;PL
språkforsker språkforskerne N;DEF;PL
trommehinne trommehinnen N;DEF;SG
kjøpe kjøpt V.PTCP;PST
alvorlig alvorligere ADJ;CMPR
sekk sekken N;DEF;SG
lenestol lenestoler N;NDEF;PL
monument monument N;NDEF;PL
brorskap brorskapene N;DEF;PL
edelgass edelgassene N;DEF;PL
fødsel fødslene N;DEF;PL
struts strutsen N;DEF;SG
fløte fløtet V;PST
rektangel rektanglet N;DEF;SG
linje linjene N;DEF;PL
ål åler N;NDEF;PL
uavhengig uavhengige ADJ;DEF;SG+PL
føde fød V;IMP
detalj detaljene N;DEF;PL
kjerne kjerner N;NDEF;PL
argumentere argumenterer V;PRS
veto vetoer N;NDEF;PL
kors korsene N;DEF;PL
kontinent kontinenter N;NDEF;PL
eske eskene N;DEF;PL
vanndamp vanndamper N;NDEF;PL
konferere konferer V;IMP
innføre innfører V;PRS
knallsyre knallsyra N;DEF;SG
forekomme forekommende V.PTCP;PRS
passere passer V;IMP
kjempe kjempende V.PTCP;PRS
blåbær blåbæra N;DEF;PL
skjulested skjulesteder N;NDEF;PL
nygift nygift ADJ;NEUT;SG
troll trolla N;DEF;PL
operette operetter N;NDEF;PL
sikksakkbevegelse sikksakkbevegelser N;NDEF;PL
fornying fornyinga N;DEF;SG
fjerdedel fjerdedeler N;NDEF;PL
vie viet V.PTCP;PST
stridsøks stridsøkser N;NDEF;PL
ulydighet ulydigheten N;DEF;SG
gangren gangrenen N;DEF;SG
sluse sluser N;NDEF;PL
kjærlighetshistorie kjærlighetshistoria N;DEF;SG
tjern tjerna N;DEF;SG
fabrikant fabrikanten N;DEF;SG
barnedødelighet barnedødeligheten N;DEF;SG
nederlag nederlaga N;DEF;PL
gård gårdene N;DEF;PL
kollapse kollapser V;PRS
sen senere ADJ;CMPR
kontor kontorer N;NDEF;PL
kassett kassettene N;DEF;PL
lykkelig lykkelige ADJ;DEF;SG+PL
papuaner papuanere N;NDEF;PL
hunn hunnen N;DEF;SG
halvbror halvbroren N;DEF;SG
dagtid dagtida N;DEF;SG
statistisk statistiske ADJ;DEF;SG+PL
nebb nebba N;DEF;PL
bankett banketten N;DEF;SG
sykebil sykebiler N;NDEF;PL
sitteplass sitteplasser N;NDEF;PL
tank tanken N;DEF;SG
is iser N;NDEF;PL
atom atomene N;DEF;PL
entusiast entusiaster N;NDEF;PL
danserinne danserinnen N;DEF;SG
villsvin villsvinene N;DEF;PL
mislike misliker V;PRS
dvergbjerk dvergbjerkene N;DEF;PL
None ødelegges V;PRS;PASS
kollektiv kollektiva N;DEF;PL
saudier saudiere N;NDEF;PL
romantiker romantikerne N;DEF;PL
kull kullene N;DEF;PL
trekke trekk V;IMP
sekundviser sekundviserne N;DEF;PL
togoleser togolesere N;NDEF;PL
grense grenser N;NDEF;PL
protein proteina N;DEF;PL
aksent aksenter N;NDEF;PL
standardisere standardiserer V;PRS
determinativ determinativa N;DEF;PL
studium studier N;NDEF;PL
fosfor fosforen N;DEF;SG
skøyte skøytene N;DEF;PL
bursdag bursdagen N;DEF;SG
hydraulikk hydraulikken N;DEF;SG
blokk blokka N;DEF;SG
feste festet V;PST
dørslag dørslaga N;DEF;PL
subtrahere subtraherte V;PST
firedoble firedobla V;PST
blå blå ADJ;DEF;SG+PL
bygg bygga N;DEF;PL
brorskap brorskap N;NDEF;PL
spindelvev spindelveva N;DEF;PL
avrunde avrund V;IMP
tørketid tørketidene N;DEF;PL
helt heltene N;DEF;PL
funksjon funksjoner N;NDEF;PL
vitne vitna N;DEF;PL
forbedret forbedrede ADJ;DEF;SG+PL
knute knutene N;DEF;PL
psykologi psykologier N;NDEF;PL
omfatte omfattende V.PTCP;PRS
beundre beundr V;IMP
smak smaken N;DEF;SG
nigerianer nigerianerne N;DEF;PL
forsker forskeren N;DEF;SG
innerst innerst ADJ;NEUT;SG
kasserolle kasserollen N;DEF;SG
turist turister N;NDEF;PL
appell appeller N;NDEF;PL
gammelengelsk gammelengelsken N;DEF;SG
glidelås glidelåsen N;DEF;SG
sammenlikning sammenlikningene N;DEF;PL
målløs målløse ADJ;DEF;PL
sentralstasjon sentralstasjonene N;DEF;PL
heve hevende V.PTCP;PRS
turner turnerne N;DEF;PL
sveising sveisinga N;DEF;SG
klimatisk klimatiske ADJ;DEF;SG+PL
forum foraene N;DEF;PL
sinnslikevekt sinnslikevektene N;DEF;PL
klokke klokkene N;DEF;PL
jerv jerver N;NDEF;PL
roman romanen N;DEF;SG
strekk strekket N;DEF;SG
geitebukk geitebukker N;NDEF;PL
hunn hunner N;NDEF;PL
steinmur steinmurer N;NDEF;PL
glorie glorier N;NDEF;PL
balanse balansen N;DEF;SG
apoteker apotekerne N;DEF;PL
blomsterpotte blomsterpotten N;DEF;SG
operette operettene N;DEF;PL
dato datoer N;NDEF;PL
verk verk N;NDEF;PL
morsenøkkel morsenøkkelen N;DEF;SG
topografisk topografiske ADJ;DEF;SG+PL
het heteste ADJ;SPRL;DEF
alvorlig alvorlige ADJ;DEF;SG+PL
verdensmesterskap verdensmesterskapene N;DEF;PL
gotisk gotisk ADJ;NEUT;SG
pålitelig pålitelige ADJ;DEF;SG+PL
tolk tolkene N;DEF;PL
særlig særlig ADJ;NEUT;SG
honning honningen N;DEF;SG
tute tutende V.PTCP;PRS
erfaren erfarne ADJ;DEF;SG+PL
utstille utstiller V;PRS
eksponere eksponerte V;PST
hormon hormon N;NDEF;PL
brødskive brødskivene N;DEF;PL
sørøstlig sørøstlige ADJ;DEF;SG+PL
tørke tørkene N;DEF;PL
oppheve opphevet V.PTCP;PST
krystall krystalla N;DEF;PL
fotavtrykk fotavtrykkene N;DEF;PL
gangbru gangbruer N;NDEF;PL
prefabrikkert prefabrikkerte ADJ;DEF;SG+PL
versjon versjoner N;NDEF;PL
fryser frysere N;NDEF;PL
skreven skrevet ADJ;NEUT;SG
rask raskest ADJ;SPRL;NDEF
kjevle kjevlet N;DEF;SG
arbeide arbeid V;IMP
lang lengre ADJ;CMPR
permanent permanente ADJ;DEF;SG+PL
etablere etablerer V;PRS
skrivemaskin skrivemaskinene N;DEF;PL
forberedelse forberedelsen N;DEF;SG
bidra bidro V;PST
kjegle kjegler N;NDEF;PL
eksemplarisk eksemplarisk ADJ;NEUT;SG
rumensk rumensken N;DEF;SG
karikaturtegner karikaturtegneren N;DEF;SG
terapeutisk terapeutiske ADJ;DEF;SG+PL
prestisje prestisjen N;DEF;SG
haug haugen N;DEF;SG
trofé troféer N;NDEF;PL
barnebarn barnebarnene N;DEF;PL
dyrke dyrkende V.PTCP;PRS
sanddyne sanddynene N;DEF;PL
bedre bedre V;IMP
trekkspill trekkspillene N;DEF;PL
regnskog regnskogene N;DEF;PL
eske eska N;DEF;SG
oppgave oppgava N;DEF;SG
lommebok lommeboken N;DEF;SG
fabrikk fabrikken N;DEF;SG
tenke tenkende V.PTCP;PRS
forventning forventningen N;DEF;SG
mørkbrun mørkbrune ADJ;DEF;SG+PL
frimerke frimerket N;DEF;SG
destilleri destillerier N;NDEF;PL
kjøkkenredskap kjøkkenredskaper N;NDEF;PL
søke søker V;PRS
sivilist sivilisten N;DEF;SG
oppmuntre oppmuntret V;PST
sentrum sentra N;NDEF;PL
panamaner panamanerne N;DEF;PL
sjokolade sjokoladene N;DEF;PL
enhet enheten N;DEF;SG
pels pelsen N;DEF;SG
tilhøre tilhørte V;PST
monarki monarkiet N;DEF;SG
reagensglass reagensglassa N;DEF;PL
orgasme orgasmen N;DEF;SG
atlas atlasene N;DEF;PL
dø dø V;IMP
utemmet utemmet ADJ;NEUT;SG
gås gjessene N;DEF;PL
biprodukt biprodukter N;NDEF;PL
ledd leddet N;DEF;SG
hormon hormonene N;DEF;PL
bakgrunn bakgrunnen N;DEF;SG
nøtt nøttene N;DEF;PL
stirre stirra V;PST
hektar hektaret N;DEF;SG
krigsskip krigsskipene N;DEF;PL
hud huder N;NDEF;PL
israeler israelere N;NDEF;PL
pinnsvin pinnsvinene N;DEF;PL
nyttelast nyttelasta N;DEF;SG
sitron sitronen N;DEF;SG
tegning tegningen N;DEF;SG
riksvei riksveiene N;DEF;PL
steinmur steinmurene N;DEF;PL
børste børstene N;DEF;PL
avholde avholdende V.PTCP;PRS
myanmarer myanmarere N;NDEF;PL
fingernegl fingerneglene N;DEF;PL
prislapp prislappen N;DEF;SG
balltre balltrærne N;DEF;PL
tsjader tsjaderne N;DEF;PL
kirsebær kirsebæra N;DEF;PL
fødselsdato fødselsdatoer N;NDEF;PL
dødfødt dødfødt ADJ;NEUT;SG
sperre sperra V;PST
dopplereffekt dopplereffektene N;DEF;PL
raffinert raffinerte ADJ;DEF;SG+PL
mørk mørkest ADJ;SPRL;NDEF
drue drua N;DEF;SG
bygning bygningene N;DEF;PL
lete let V;IMP
vindu vinduer N;NDEF;PL
albansk albansk ADJ;NEUT;SG
hest hester N;NDEF;PL
folie folien N;DEF;SG
hagle haglene N;DEF;PL
håndskrift håndskrifter N;NDEF;PL
snøskred snøskredene N;DEF;PL
fjernsyn fjernsynet N;DEF;SG
krangle krangl V;IMP
ukrainsk ukrainsken N;DEF;SG
følsom følsomme ADJ;DEF;SG+PL
gift gifte ADJ;DEF;SG+PL
telefon telefonene N;DEF;PL
overskudd overskudda N;DEF;PL
bokhylle bokhyllene N;DEF;PL
melke melkende V.PTCP;PRS
kontekst konteksten N;DEF;SG
ensfarget ensfargede ADJ;DEF;SG+PL
pakt pakta N;DEF;SG
arbeiderklasse arbeiderklassen N;DEF;SG
komma kommaet N;DEF;SG
ansikt ansikta N;DEF;PL
ubehagelig ubehagelig ADJ;NEUT;SG
syrer syreren N;DEF;SG
eksponere eksponerende V.PTCP;PRS
gravid gravid ADJ;NEUT;SG
spise spiste V;PST
gitarist gitaristen N;DEF;SG
vanlig vanligst ADJ;SPRL;NDEF
brødskive brødskiva N;DEF;SG
dinosaur dinosauren N;DEF;SG
flykrasj flykrasjen N;DEF;SG
etterforskning etterforskninger N;NDEF;PL
maler malerne N;DEF;PL
tunge tungene N;DEF;PL
kvitløk kvitløker N;NDEF;PL
svak svakeste ADJ;SPRL;DEF
superleder superlederen N;DEF;SG
interesse interessene N;DEF;PL
anklage anklaget V;PST
mygg mygg N;NDEF;PL
omdirigere omdirigerende V.PTCP;PRS
etterretning etterretningene N;DEF;PL
verdenskart verdenskartene N;DEF;PL
sammensetning sammensetningen N;DEF;SG
septisk septiske ADJ;DEF;SG+PL
øks øksene N;DEF;PL
vaske vask V;IMP
forsøk forsøk N;NDEF;PL
hærverk hærverker N;NDEF;PL
synge syng V;IMP
lovlig lovlig ADJ;NEUT;SG
rulletrapp rulletrappa N;DEF;SG
utveksle utvekslende V.PTCP;PRS
bokhylle bokhyller N;NDEF;PL
harddisk harddisken N;DEF;SG
brudgom brudgommer N;NDEF;PL
andrespråk andrespråkene N;DEF;PL
overstige overstiger V;PRS
setebelte setebelter N;NDEF;PL
evangelium evangelia N;DEF;PL
halskjede halskjeda N;DEF;PL
tut tuter N;NDEF;PL
hotell hotellene N;DEF;PL
hamre hamr V;IMP
oppløsning oppløsningen N;DEF;SG
vakt vakta N;DEF;SG
leve levende V.PTCP;PRS
fil filer N;NDEF;PL
ønsket ønsket ADJ;NEUT;SG
proklamere proklamer V;IMP
grunn grunt ADJ;NEUT;SG
brille brilla N;DEF;SG
luftskip luftskipa N;DEF;PL
overstige oversteget V.PTCP;PST
autorisere autorisert V.PTCP;PST
tikke tikket V;PST
rytme rytmer N;NDEF;PL
tommelfinger tommelfingrer N;NDEF;PL
bykse byksende V.PTCP;PRS
internatskole internatskoler N;NDEF;PL
matforgiftning matforgiftningene N;DEF;PL
dress dresser N;NDEF;PL
restaurant restauranter N;NDEF;PL
istapp istappen N;DEF;SG
adskille adskiller V;PRS
notatbok notatboken N;DEF;SG
legering legeringer N;NDEF;PL
glassmester glassmesteren N;DEF;SG
animasjon animasjonene N;DEF;PL
albino albinoen N;DEF;SG
butikk butikkene N;DEF;PL
alarmere alarmerende V.PTCP;PRS
håp håpa N;DEF;PL
kommandør kommandørene N;DEF;PL
italiensk italienske ADJ;DEF;SG+PL
selektiv selektive ADJ;DEF;SG+PL
suge suga V;PST
undervise underviste V;PST
østtimoreser østtimoreseren N;DEF;SG
søl sølet N;DEF;SG
forvrenge forvrenger V;PRS
fantasere fantaser V;IMP
parabolantenne parabolantenna N;DEF;SG
kjemiker kjemikeren N;DEF;SG
øse øsen N;DEF;SG
offisiell offisielle ADJ;DEF;SG+PL
ballong ballonger N;NDEF;PL
arbeid arbeider N;NDEF;PL
skjermskudd skjermskuddet N;DEF;SG
spedbarn spedbarn N;NDEF;PL
newzealander newzealanderne N;DEF;PL
ekko ekkoene N;DEF;PL
vinglass vinglasset N;DEF;SG
rulle rull V;IMP
systematisk systematisk ADJ;NEUT;SG
komité komiteene N;DEF;PL
lyspære lyspærer N;NDEF;PL
håndlaget håndlagede ADJ;DEF;SG+PL
ufarget ufargete ADJ;DEF;SG+PL
petriskål petriskålene N;DEF;PL
raffineri raffineri N;NDEF;PL
ro roen N;DEF;SG
påske påskene N;DEF;PL
matche match V;IMP
teddybjørn teddybjørner N;NDEF;PL
sukkerfri sukkerfrie ADJ;DEF;SG+PL
lei leiene N;DEF;PL
kypriot kyprioten N;DEF;SG
revolusjonere revolusjonerer V;PRS
kort korte ADJ;DEF;SG+PL
sjekke sjekkende V.PTCP;PRS
opprinnelig opprinnelige ADJ;DEF;SG+PL
utland utlandet N;DEF;SG
katte katter N;NDEF;PL
skatteparadis skatteparadiser N;NDEF;PL
krypdyr krypdyret N;DEF;SG
skade skader V;PRS
lyst lysta N;DEF;SG
atrofi atrofiene N;DEF;PL
elmotor elmotorene N;DEF;PL
ta tatt V.PTCP;PST
ordinere ordinerende V.PTCP;PRS
hekke hekker V;PRS
tuvaler tuvalere N;NDEF;PL
markere markerte V;PST
spiker spikre N;NDEF;PL
drabantby drabantbyer N;NDEF;PL
dekorere dekorerer V;PRS
framtid framtida N;DEF;SG
forvarsel forvarselet N;DEF;SG
erme ermer N;NDEF;PL
pentan pentan N;NDEF;PL
valp valpen N;DEF;SG
arkiv arkiva N;DEF;PL
miste mistet V;PST
galakse galakser N;NDEF;PL
tilgang tilgangen N;DEF;SG
aksjeselskap aksjeselskapene N;DEF;PL
kjøretøy kjøretøyer N;NDEF;PL
ingeniør ingeniører N;NDEF;PL
initiativ initiativ N;NDEF;PL
vital vitalt ADJ;NEUT;SG
debutere debutert V.PTCP;PST
kraftverk kraftverket N;DEF;SG
sabotasje sabotasjer N;NDEF;PL
mulig mulig ADJ;NEUT;SG
mors morsene N;DEF;PL
kostfiber kostfiberen N;DEF;SG
avstemning avstemninger N;NDEF;PL
epilepsi epilepsien N;DEF;SG
reinsdyr reinsdyrene N;DEF;PL
aserbajdsjaner aserbajdsjaneren N;DEF;SG
puste pust V;IMP
kasakhstaner kasakhstanerne N;DEF;PL
forenklet forenklede ADJ;DEF;SG+PL
ekorn ekornet N;DEF;SG
landemerke landemerkene N;DEF;PL
apostel apostlene N;DEF;PL
geit geitene N;DEF;PL
ulykkelig ulykkelig ADJ;NEUT;SG
montenegriner montenegrineren N;DEF;SG
orkan orkanen N;DEF;SG
mesterskap mesterskapet N;DEF;SG
musikkinstrument musikkinstrument N;NDEF;PL
under underet N;DEF;SG
montere monterende V.PTCP;PRS
fartsgrense fartsgrensen N;DEF;SG
hand hender N;NDEF;PL
danske dansker N;NDEF;PL
sammenligning sammenligningen N;DEF;SG
oksidere oksiderte V;PST
tonganer tonganerne N;DEF;PL
fet fett ADJ;NEUT;SG
forsvare forsvarte V;PST
italiensk italiensk ADJ;NEUT;SG
søle sølen N;DEF;SG
dogme dogmer N;NDEF;PL
stoff stoffer N;NDEF;PL
kokepunkt kokepunkt N;NDEF;PL
korporal korporaler N;NDEF;PL
segl seglene N;DEF;PL
regnfull regnfulle ADJ;DEF;SG+PL
hevelse hevelsen N;DEF;SG
bokser bokseren N;DEF;SG
panter pantrer N;NDEF;PL
ess essene N;DEF;PL
villdyr villdyrene N;DEF;PL
gjeng gjenger N;NDEF;PL
forkortelse forkortelser N;NDEF;PL
rytter rytteren N;DEF;SG
latterlig latterligste ADJ;SPRL;DEF
fetter fettere N;NDEF;PL
fullstendig fullstendig ADJ;NEUT;SG
horde hordene N;DEF;PL
sykesøster sykesøsteren N;DEF;SG
vanskeliggjøre vanskeliggjør V;IMP
privat privat ADJ;NEUT;SG
kondensere kondenser V;IMP
slette sletta N;DEF;SG
maksimum maksimumet N;DEF;SG
livbåt livbåten N;DEF;SG
kanal kanalene N;DEF;PL
vinner vinnerne N;DEF;PL
tallerken tallerkenene N;DEF;PL
trommis trommisen N;DEF;SG
isbjørn isbjørnen N;DEF;SG
banke banker V;PRS
spiss spissest ADJ;SPRL;NDEF
motor motorene N;DEF;PL
adjø adjøer N;NDEF;PL
determinativ determinativer N;NDEF;PL
foto fotoer N;NDEF;PL
krabbe krabben N;DEF;SG
havn havnen N;DEF;SG
tidssone tidssonene N;DEF;PL
forkorting forkortinger N;NDEF;PL
fluor fluoret N;DEF;SG
resymé resyméene N;DEF;PL
omen omenene N;DEF;PL
gratulere gratulerte V;PST
batteri batterier N;NDEF;PL
erstatning erstatningene N;DEF;PL
behov behovet N;DEF;SG
teppe teppene N;DEF;PL
provins provinsene N;DEF;PL
forelsket forelskede ADJ;DEF;SG+PL
ansvar ansvara N;DEF;PL
gift giftene N;DEF;PL
vende vendt V.PTCP;PST
tromme trommene N;DEF;PL
overhode overhodet N;DEF;SG
vanuater vanuateren N;DEF;SG
lagre lagrende V.PTCP;PRS
tirsdag tirsdagene N;DEF;PL
øyevipp øyevippen N;DEF;SG
trommeslager trommeslagere N;NDEF;PL
blender blenderne N;DEF;PL
quisling quislingen N;DEF;SG
par par N;NDEF;PL
projisere projisert V.PTCP;PST
temme temt V.PTCP;PST
saftig saftigst ADJ;SPRL;NDEF
juletre juletrea N;DEF;PL
hytte hyttene N;DEF;PL
født født ADJ;NEUT;SG
skjorte skjorten N;DEF;SG
vektløfting vektløftingen N;DEF;SG
skje skje V;IMP
videokamera videokameraet N;DEF;SG
resymé resymeet N;DEF;SG
regnboge regnbogene N;DEF;PL
diameter diameteren N;DEF;SG
klump klumpen N;DEF;SG
gul gulere ADJ;CMPR
flyte flyter V;PRS
veidekke veidekket N;DEF;SG
vendbar vendbare ADJ;DEF;SG+PL
mellomnavn mellomnavn N;NDEF;PL
boss bosser N;NDEF;PL
rosin rosiner N;NDEF;PL
kjørefelt kjørefelt N;NDEF;PL
bestikk bestikka N;DEF;PL
portugisisk portugisiske ADJ;DEF;SG+PL
kirke kirker N;NDEF;PL
tårn tårn N;NDEF;PL
morgenkåpe morgenkåpen N;DEF;SG
varsel varsler N;NDEF;PL
kvadratrot kvadratrota N;DEF;SG
kjærlighetshistorie kjærlighetshistorien N;DEF;SG
tilbakebetale tilbakebetalte V;PST
gul gulest ADJ;SPRL;NDEF
rulletrapp rulletrappene N;DEF;PL
bred bredest ADJ;SPRL;NDEF
mage mager N;NDEF;PL
etterforsker etterforskere N;NDEF;PL
dame damene N;DEF;PL
sprade spradene N;DEF;PL
øvelse øvelsen N;DEF;SG
fremmedspråk fremmedspråket N;DEF;SG
oversette oversetter V;PRS
fantasere fantaserer V;PRS
trådløs trådløse ADJ;DEF;SG+PL
tegne tegnende V.PTCP;PRS
bibel biblene N;DEF;PL
lesbisk lesbiske ADJ;DEF;SG+PL
traumatisk traumatiske ADJ;DEF;SG+PL
lang lengst ADJ;SPRL;NDEF
hjelpemiddel hjelpemidla N;DEF;PL
glassverk glassverket N;DEF;SG
programmere programmert V.PTCP;PST
kritisk kritisk ADJ;NEUT;SG
smakfull smakfullt ADJ;NEUT;SG
bygd bygdene N;DEF;PL
trekantet trekantete ADJ;DEF;SG+PL
tilskuer tilskuerne N;DEF;PL
omkrets omkretsene N;DEF;PL
chilener chilenerne N;DEF;PL
kvartal kvartalet N;DEF;SG
balkong balkongene N;DEF;PL
bille billene N;DEF;PL
aristokrat aristokratene N;DEF;PL
hull huller N;NDEF;PL
eik eika N;DEF;SG
katolsk katolske ADJ;DEF;SG+PL
hengsel hengselen N;DEF;SG
klinkekule klinkekulene N;DEF;PL
innkjøp innkjøpa N;DEF;PL
kjernefamilie kjernefamilier N;NDEF;PL
stige stiger N;NDEF;PL
bom bommen N;DEF;SG
blomsterbed blomsterbeda N;DEF;PL
adverb adverb N;NDEF;PL
albatross albatrosser N;NDEF;PL
spørsmålstegn spørsmålstegna N;DEF;PL
dogme dogma N;DEF;PL
stråling strålingen N;DEF;SG
syk sykt ADJ;NEUT;SG
såre sår V;IMP
korridor korridorene N;DEF;PL
navle navler N;NDEF;PL
delirium deliriene N;DEF;PL
intervju intervjuer N;NDEF;PL
grimase grimasene N;DEF;PL
rund rundt ADJ;NEUT;SG
regulere regulerer V;PRS
initiativ initiativene N;DEF;PL
gaffel gafler N;NDEF;PL
måler målere N;NDEF;PL
utelukke utelukka V;PST
pigment pigmenter N;NDEF;PL
bestemor bestemødrene N;DEF;PL
regulere regulert V.PTCP;PST
sikte siktene N;DEF;PL
fyr fyret N;DEF;SG
nåtidig nåtidige ADJ;DEF;SG+PL
rom romma N;DEF;PL
stær stæren N;DEF;SG
allmenn allment ADJ;NEUT;SG
klima klima N;NDEF;PL
vurdere vurderte V;PST
spion spionene N;DEF;PL
tredemølle tredemøllene N;DEF;PL
hard hardere ADJ;CMPR
massasje massasjer N;NDEF;PL
studere studerer V;PRS
verktøy verktøy N;NDEF;PL
midlertidig midlertidige ADJ;DEF;SG+PL
hjelper hjelperen N;DEF;SG
snømåke snømåken N;DEF;SG
litteratur litteraturen N;DEF;SG
kiribatier kiribatieren N;DEF;SG
meny menyene N;DEF;PL
tolkning tolkninga N;DEF;SG
atom atom N;NDEF;PL
byste bysta N;DEF;SG
kjøkkenbenk kjøkkenbenken N;DEF;SG
røre rører V;PRS
dybde dybden N;DEF;SG
språkforsker språkforskere N;NDEF;PL
bleike bleiket V;PST
bambusrør bambusrørene N;DEF;PL
kaptein kapteinene N;DEF;PL
samtale samtalene N;DEF;PL
fremtid fremtider N;NDEF;PL
kokepunkt kokepunktet N;DEF;SG
henge hang V;PST
umyndig umyndige ADJ;DEF;SG+PL
hore horene N;DEF;PL
kvinnelig kvinnelig ADJ;NEUT;SG
borgerkrig borgerkriger N;NDEF;PL
muslimsk muslimske ADJ;DEF;SG+PL
dagstur dagsturen N;DEF;SG
filmstjerne filmstjerna N;DEF;SG
aerosol aerosoler N;NDEF;PL
byfornying byfornyingen N;DEF;SG
presang presangen N;DEF;SG
bilist bilistene N;DEF;PL
værvarsel værvarslene N;DEF;PL
rockering rockeringen N;DEF;SG
utveksle utveksl V;IMP
autoritet autoriteten N;DEF;SG
antilope antilopene N;DEF;PL
godkjenne godkjent V.PTCP;PST
slag slaga N;DEF;PL
lastebilsjåfør lastebilsjåfører N;NDEF;PL
australier australiere N;NDEF;PL
bregne bregner N;NDEF;PL
brøk brøkene N;DEF;PL
diamant diamanten N;DEF;SG
relasjon relasjonen N;DEF;SG
leve levd V.PTCP;PST
dagbok dagboken N;DEF;SG
sikt sikta N;DEF;SG
brennbar brennbart ADJ;NEUT;SG
brunsttid brunsttidene N;DEF;PL
skarv skarver N;NDEF;PL
holder holderne N;DEF;PL
missil missila N;DEF;PL
fremmedlegeme fremmedlegemene N;DEF;PL
parodi parodiene N;DEF;PL
karboksylsyre karboksylsyren N;DEF;SG
forbud forbuda N;DEF;PL
blåse blåser V;PRS
molekyl molekyl N;NDEF;PL
anorakk anorakkene N;DEF;PL
atmosfære atmosfærene N;DEF;PL
sklie skliene N;DEF;PL
frustrere frustrert V.PTCP;PST
ringnøkkel ringnøkkelen N;DEF;SG
prostituert prostituerte ADJ;DEF;SG+PL
reagens reagensa N;DEF;PL
eggehvite eggehvitene N;DEF;PL
dominere dominer V;IMP
målvakt målvakta N;DEF;SG
øyeskygge øyeskygger N;NDEF;PL
tilbakedanning tilbakedanningen N;DEF;SG
bakeri bakeria N;DEF;PL
turnpike turnpikene N;DEF;PL
uavhengighet uavhengigheta N;DEF;SG
esel esel N;NDEF;PL
døvhet døvheta N;DEF;SG
sommersolverv sommersolverva N;DEF;PL
jamaikaner jamaikanerne N;DEF;PL
levemann levemennene N;DEF;PL
diplomati diplomati N;NDEF;PL
blomsterbutikk blomsterbutikker N;NDEF;PL
betydning betydningen N;DEF;SG
rik rikere ADJ;CMPR
eksitere eksiterer V;PRS
drypp dryppa N;DEF;PL
krone kronene N;DEF;PL
skytsengel skytsenglene N;DEF;PL
redskap redskapene N;DEF;PL
flyplass flyplassen N;DEF;SG
glamorøs glamorøst ADJ;NEUT;SG
inskripsjon inskripsjonen N;DEF;SG
gjøkur gjøkur N;NDEF;PL
notisbok notisbøker N;NDEF;PL
ær ærer N;NDEF;PL
påskesøndag påskesøndagen N;DEF;SG
forurensning forurensningen N;DEF;SG
luksuriøs luksuriøse ADJ;DEF;SG+PL
permanent permanent ADJ;NEUT;SG
fattig fattigere ADJ;CMPR
fat fata N;DEF;PL
målvakt målvakten N;DEF;SG
ujevn ujevnt ADJ;NEUT;SG
trett trette ADJ;DEF;SG+PL
svart svartere ADJ;CMPR
minutt minuttene N;DEF;PL
latvier latvierne N;DEF;PL
ven venest ADJ;SPRL;NDEF
varsel varslene N;DEF;PL
mæle mæl V;IMP
styrehus styrehuset N;DEF;SG
angrep angrep N;NDEF;PL
skytsengel skytsengelen N;DEF;SG
campingvogn campingvogna N;DEF;SG
gråte grått V.PTCP;PST
søye søyer N;NDEF;PL
termometer termometer N;NDEF;PL
milliardær milliardærene N;DEF;PL
bøye bøyende V.PTCP;PRS
hengekøye hengekøyene N;DEF;PL
mal malen N;DEF;SG
padde padder N;NDEF;PL
bordduk borddukene N;DEF;PL
innkast innkastet N;DEF;SG
gjennomhulle gjennomhuller V;PRS
budsjett budsjett N;NDEF;PL
villdyr villdyra N;DEF;PL
røre rør V;IMP
tannlege tannlegen N;DEF;SG
stoff stoffet N;DEF;SG
bluse blusene N;DEF;PL
sabotere sabotert V.PTCP;PST
synål synåla N;DEF;SG
tjern tjernet N;DEF;SG
engel engler N;NDEF;PL
eksperiment eksperimenter N;NDEF;PL
leiketøy leiketøyet N;DEF;SG
mordvåpen mordvåpnene N;DEF;PL
borg borgen N;DEF;SG
finale finalen N;DEF;SG
grave gravd V.PTCP;PST
få får V;PRS
seycheller seychelleren N;DEF;SG
golfkølle golfkølla N;DEF;SG
stemme stem V;IMP
skjære skjæra N;DEF;SG
sjukehus sjukehusa N;DEF;PL
perfeksjonist perfeksjonisten N;DEF;SG
etterligne etterlignende V.PTCP;PRS
pannekake pannekakene N;DEF;PL
træ trær V;PRS
erklæring erklæringen N;DEF;SG
sammenslåing sammenslåingen N;DEF;SG
etterfølge etterfølg V;IMP
hodebunn hodebunnen N;DEF;SG
taushet tausheter N;NDEF;PL
stridsøks stridsøksen N;DEF;SG
hektar hektar N;NDEF;PL
containerskip containerskip N;NDEF;PL
helhet helheter N;NDEF;PL
engelsk engelske ADJ;DEF;SG+PL
miljø miljøa N;DEF;PL
håndveske håndvesker N;NDEF;PL
gammeldags gammeldags ADJ;NEUT;SG
sanmariner sanmarinere N;NDEF;PL
plattform plattformene N;DEF;PL
paradoks paradokset N;DEF;SG
ubalanse ubalanser N;NDEF;PL
løse løser V;PRS
potteplante potteplantene N;DEF;PL
kraftverk kraftverkene N;DEF;PL
stearinlys stearinlysa N;DEF;PL
tommel tommelen N;DEF;SG
vannseng vannsenger N;NDEF;PL
snø snør V;PRS
faktor faktorene N;DEF;PL
statsminister statsministeren N;DEF;SG
abdikasjon abdikasjonen N;DEF;SG
improvisasjon improvisasjoner N;NDEF;PL
sangerinne sangerinnene N;DEF;PL
rivjern rivjerna N;DEF;PL
forbinde forbinder V;PRS
blasfemisk blasfemiske ADJ;DEF;SG+PL
kroat kroaten N;DEF;SG
triumfere triumfer V;IMP
svak svakt ADJ;NEUT;SG
anekdote anekdotene N;DEF;PL
orden ordener N;NDEF;PL
snegl snegler N;NDEF;PL
regel regler N;NDEF;PL
tapetlim tapetlimet N;DEF;SG
marg marger N;NDEF;PL
tilpasse tilpass V;IMP
somalier somalieren N;DEF;SG
tynn tynneste ADJ;SPRL;DEF
brøl brølene N;DEF;PL
tørke tørker N;NDEF;PL
stave stava V;PST
kobber kobberet N;DEF;SG
ørn ørnene N;DEF;PL
takstein taksteiner N;NDEF;PL
dress dressen N;DEF;SG
flaske flaska N;DEF;SG
soldat soldaten N;DEF;SG
serbisk serbisk ADJ;NEUT;SG
heire heirene N;DEF;PL
snømann snømennene N;DEF;PL
valutakurs valutakursen N;DEF;SG
traktor traktoren N;DEF;SG
manøver manøvrene N;DEF;PL
spillkonsoll spillkonsoller N;NDEF;PL
subkontinent subkontinenter N;NDEF;PL
glorie glorien N;DEF;SG
biprodukt biproduktene N;DEF;PL
julestrømpe julestrømpa N;DEF;SG
diagram diagramma N;DEF;PL
ubegrenset ubegrensete ADJ;DEF;SG+PL
park parker N;NDEF;PL
stadium stadia N;DEF;PL
julaften julaftenen N;DEF;SG
hydrokarbon hydrokarbonene N;DEF;PL
sykepleier sykepleierne N;DEF;PL
dokumentmappe dokumentmappene N;DEF;PL
diskutere diskutert V.PTCP;PST
ekspedisjon ekspedisjoner N;NDEF;PL
måke måket V.PTCP;PST
tefat tefatet N;DEF;SG
grave grav V;IMP
anger angeren N;DEF;SG
jernbanestasjon jernbanestasjoner N;NDEF;PL
oppslagsverk oppslagsverkene N;DEF;PL
aminosyre aminosyrer N;NDEF;PL
ekorn ekorn N;NDEF;PL
moldvarp moldvarper N;NDEF;PL
seddel sedler N;NDEF;PL
kontorist kontoristene N;DEF;PL
hår hårene N;DEF;PL
grådig grådig ADJ;NEUT;SG
skjerm skjermer N;NDEF;PL
situasjonskomedie situasjonskomediene N;DEF;PL
delstat delstater N;NDEF;PL
alm almen N;DEF;SG
kjemi kjemien N;DEF;SG
streng strenger N;NDEF;PL
ark arkene N;DEF;PL
tribune tribunen N;DEF;SG
punkt punktet N;DEF;SG
retning retninger N;NDEF;PL
aftenkjole aftenkjolen N;DEF;SG
virksom virksomme ADJ;DEF;SG+PL
gate gaten N;DEF;SG
mykne mykna V;PST
arabisk arabisk ADJ;NEUT;SG
fødselsdag fødselsdager N;NDEF;PL
svoger svogeren N;DEF;SG
fløte fløt V;IMP
gjenstand gjenstander N;NDEF;PL
sjørøver sjørøvere N;NDEF;PL
vinglass vinglass N;NDEF;PL
persisk persisk ADJ;NEUT;SG
qatarer qatarerne N;DEF;PL
skotsk skotske ADJ;DEF;SG+PL
plante plantene N;DEF;PL
etablering etableringen N;DEF;SG
hyperbel hyperbelen N;DEF;SG
fastland fastland N;NDEF;PL
slovak slovaker N;NDEF;PL
femdel femdeler N;NDEF;PL
transportmiddel transportmidlene N;DEF;PL
prostituere prostituerte V;PST
innbygger innbyggerne N;DEF;PL
helikopter helikoptra N;DEF;PL
håndtak håndtaket N;DEF;SG
hummer hummeren N;DEF;SG
tradisjon tradisjoner N;NDEF;PL
masseprodusere masseproduserer V;PRS
portrett portrettet N;DEF;SG
skremme skrem V;IMP
dominere dominert V.PTCP;PST
mareritt marerittene N;DEF;PL
slovak slovakene N;DEF;PL
rom rommene N;DEF;PL
natrium natriumet N;DEF;SG
tykkelse tykkelser N;NDEF;PL
tom tomme ADJ;DEF;SG+PL
alpeglød alpegløden N;DEF;SG
portugiser portugiserne N;DEF;PL
sort sorte ADJ;DEF;SG+PL
avis aviser N;NDEF;PL
regelmessig regelmessige ADJ;DEF;SG+PL
ytringsfrihet ytringsfriheter N;NDEF;PL
kutte kutter V;PRS
tsjekkisk tsjekkisken N;DEF;SG
interiør interiør N;NDEF;PL
sanktlucianer sanktlucianeren N;DEF;SG
kyrillisk kyrilliske ADJ;DEF;SG+PL
revolusjonere revolusjoner V;IMP
tvinge tvang V;PST
frekvens frekvensen N;DEF;SG
kast kasta N;DEF;PL
forhindre forhindr V;IMP
dikkedikk dikkedikket N;DEF;SG
beundring beundringa N;DEF;SG
spy spyr V;PRS
wienerbrød wienerbrødet N;DEF;SG
keiserinne keiserinnene N;DEF;PL
alkan alkana N;DEF;PL
munnhygiene munnhygienen N;DEF;SG
forståelse forståelsene N;DEF;PL
kjølig kjølig ADJ;NEUT;SG
radioaktivitet radioaktiviteten N;DEF;SG
undertegne undertegnende V.PTCP;PRS
håndtere håndterende V.PTCP;PRS
slekt slekten N;DEF;SG
vits vitsen N;DEF;SG
unntak unntak N;NDEF;PL
perspektiv perspektiva N;DEF;PL
jungel jungelen N;DEF;SG
glidelås glidelåsene N;DEF;PL
singelplate singelplatene N;DEF;PL
mulighet muligheten N;DEF;SG
telle telte V;PST
måned måneder N;NDEF;PL
menstruasjon menstruasjoner N;NDEF;PL
jakte jakter V;PRS
øke øka V.PTCP;PST
kvitløk kvitløken N;DEF;SG
boikotte boikott V;IMP
prinsesse prinsessa N;DEF;SG
blå blåe ADJ;DEF;SG+PL
abbedisse abbedissen N;DEF;SG
kvinne kvinner N;NDEF;PL
vare varen N;DEF;SG
betydningsfull betydningsfulle ADJ;DEF;SG+PL
lett lettest ADJ;SPRL;NDEF
gråhåret gråhårede ADJ;DEF;SG+PL
afar afaren N;DEF;SG
bringebær bringebær N;NDEF;PL
harpe harper N;NDEF;PL
termometer termometrene N;DEF;PL
taxi taxier N;NDEF;PL
punkt punkta N;DEF;PL
kollisjon kollisjoner N;NDEF;PL
syntetisere syntetiserte V;PST
torden tordenen N;DEF;SG
eksempel eksempel N;NDEF;PL
smakløs smakløse ADJ;DEF;SG
eksploatere eksploater V;IMP
støyttann støyttannen N;DEF;SG
registrere registrer V;IMP
synonym synonymet N;DEF;SG
nettside nettsiden N;DEF;SG
ubåt ubåten N;DEF;SG
overhode overhoder N;NDEF;PL
svigerinne svigerinnene N;DEF;PL
abort abortene N;DEF;PL
diktatur diktaturet N;DEF;SG
ekvatorialguineaner ekvatorialguineaneren N;DEF;SG
konvertere konverterte V;PST
plasma plasmaene N;DEF;PL
ekko ekkoer N;NDEF;PL
mordvåpen mordvåpen N;NDEF;PL
tøymykner tøymyknere N;NDEF;PL
kritiker kritikeren N;DEF;SG
angrep angrepet N;DEF;SG
tradisjon tradisjonene N;DEF;PL
arve arvet V;PST
suge saug V;PST
bedring bedringer N;NDEF;PL
adresse adresser N;NDEF;PL
ordgyteri ordgyteri N;NDEF;PL
svarting svartingene N;DEF;PL
alge algene N;DEF;PL
straffbar straffbart ADJ;NEUT;SG
vente ventende V.PTCP;PRS
morsmelk morsmelken N;DEF;SG
sage sagende V.PTCP;PRS
gambier gambiere N;NDEF;PL
slektskap slektskaper N;NDEF;PL
dividere divider V;IMP
ordgyderi ordgyderia N;DEF;PL
høyde høyden N;DEF;SG
råtten råtne ADJ;DEF;SG+PL
legitim legitimt ADJ;NEUT;SG
wienerpølse wienerpølsene N;DEF;PL
topplokk topplokkene N;DEF;PL
psykopat psykopaten N;DEF;SG
kambodsjaner kambodsjanere N;NDEF;PL
kirke kirka N;DEF;SG
kobolt kobolten N;DEF;SG
stoppeklokke stoppeklokka N;DEF;SG
lydbølge lydbølgen N;DEF;SG
fossefall fossefallene N;DEF;PL
arbeide arbeider V;PRS
angstbiteri angstbiteriene N;DEF;PL
angripe angrep V;PST
apekatt apekattene N;DEF;PL
løype løyp V;IMP
kjemiker kjemikere N;NDEF;PL
tvilling tvillingen N;DEF;SG
vaske vasker V;PRS
sortere sorterte V;PST
våt våtest ADJ;SPRL;NDEF
hurtig hurtige ADJ;DEF;SG+PL
bombe bomba N;DEF;SG
desimalkomma desimalkommaer N;NDEF;PL
lommebok lommeboka N;DEF;SG
sage saga V.PTCP;PST
leilighet leilighetene N;DEF;PL
miste mist V;IMP
sommer somrene N;DEF;PL
glassmester glassmestrene N;DEF;PL
veske vesken N;DEF;SG
innkast innkasta N;DEF;PL
eddik eddiken N;DEF;SG
uregistrert uregistrert ADJ;NEUT;SG
republikansk republikansk ADJ;NEUT;SG
massakre massakrer N;NDEF;PL
søster søstrene N;DEF;PL
reichianer reichianeren N;DEF;SG
tom tomt ADJ;NEUT;SG
identisk identiske ADJ;DEF;SG+PL
bambusrør bambusrøra N;DEF;PL
overskudd overskudd N;NDEF;PL
sangerinne sangerinnen N;DEF;SG
orangutang orangutanger N;NDEF;PL
fartøy fartøya N;DEF;PL
shorts shortsene N;DEF;PL
sekundviser sekundviseren N;DEF;SG
bondegård bondegården N;DEF;SG
ettervirkning ettervirkningene N;DEF;PL
bagasjerom bagasjerommet N;DEF;SG
forhandling forhandlingen N;DEF;SG
barnehage barnehagen N;DEF;SG
spektrum spektraene N;DEF;PL
busk buskene N;DEF;PL
skjermutskrift skjermutskrifter N;NDEF;PL
katolikk katolikker N;NDEF;PL
ufarget ufargede ADJ;DEF;SG+PL
vinter vinteren N;DEF;SG
gås gjæser N;NDEF;PL
lande landende V.PTCP;PRS
preposisjon preposisjonene N;DEF;PL
kontinent kontinentene N;DEF;PL
bestefar bestefaren N;DEF;SG
sengetid sengetiden N;DEF;SG
primtall primtall N;NDEF;PL
wienerpølse wienerpølsa N;DEF;SG
kran kranen N;DEF;SG
revidere reviderende V.PTCP;PRS
balltre balltre N;NDEF;PL
sommerfugl sommerfugler N;NDEF;PL
byråkrat byråkratene N;DEF;PL
garderobeskap garderobeskap N;NDEF;PL
amerikansk-engelsk amerikansk-engelsken N;DEF;SG
besøke besøkt V.PTCP;PST
solbrille solbrilla N;DEF;SG
terrorist terroristen N;DEF;SG
undervurdere undervurdert V.PTCP;PST
pandemi pandemien N;DEF;SG
mangel mangler N;NDEF;PL
olje olja N;DEF;SG
kretsløp kretsløpa N;DEF;PL
lager lagrene N;DEF;PL
elfenbenstårn elfenbenstårna N;DEF;PL
postnummer postnummer N;NDEF;PL
sardin sardinen N;DEF;SG
giraff giraffen N;DEF;SG
nonne nonnen N;DEF;SG
legemiddel legemidla N;DEF;PL
bedring bedringa N;DEF;SG
sukkerfri sukkerfritt ADJ;NEUT;SG
forord forordene N;DEF;PL
alkan alkanet N;DEF;SG
fryse fryse V;IMP
majoritet majoriteter N;NDEF;PL
snakke snakket V;PST
slutte sluttet V;PST
avslapping avslappingen N;DEF;SG
sort sortest ADJ;NDEF;PL
bore borer V;PRS
belegge belegg V;IMP
skarp skarpest ADJ;SPRL;NDEF
skihopper skihopperen N;DEF;SG
emirataraber emiratarabere N;NDEF;PL
kontaktlinse kontaktlinser N;NDEF;PL
fallisk falliske ADJ;DEF;SG+PL
øyenstikker øyenstikkere N;NDEF;PL
qatarer qatarere N;NDEF;PL
selvkontroll selvkontrollen N;DEF;SG
vante vanten N;DEF;SG
brøkdel brøkdeler N;NDEF;PL
resepsjon resepsjonene N;DEF;PL
hæl hæler N;NDEF;PL
lede ledet V;PST
grandtante grandtanten N;DEF;SG
metanol metanolen N;DEF;SG
sierraleoner sierraleonere N;NDEF;PL
flatbrystet flatbrystede ADJ;DEF;SG+PL
undervannsbåt undervannsbåtene N;DEF;PL
breddegrad breddegrader N;NDEF;PL
anbefale anbefalte V;PST
bok bokene N;DEF;PL
beboer beboerne N;DEF;PL
overnaturlig overnaturlig ADJ;NEUT;SG
trene trent V.PTCP;PST
typisk typiske ADJ;DEF;SG+PL
maori maorier N;NDEF;PL
moské moskeer N;NDEF;PL
elefant elefantene N;DEF;PL
beskatte beskatta V;PST
tupé tupeene N;DEF;PL
milliliter milliliter N;NDEF;PL
atlas atlas N;NDEF;PL
sjettedel sjettedelene N;DEF;PL
misfarge misfargende V.PTCP;PRS
selleri sellerier N;NDEF;PL
savanne savannen N;DEF;SG
luftfartøy luftfartøyer N;NDEF;PL
gevær geværa N;DEF;PL
snakke snakka V;PST
hunn hunnene N;DEF;PL
kjegle kjeglene N;DEF;PL
organisasjon organisasjoner N;NDEF;PL
åremål åremålet N;DEF;SG
nøkkel nøkler N;NDEF;PL
vektløfter vektløfterne N;DEF;PL
kinn kinna N;DEF;PL
skrog skroga N;DEF;PL
gammastråle gammastrålen N;DEF;SG
partnerskap partnerskapa N;DEF;PL
wolfram wolframet N;DEF;SG
voks vokset N;DEF;SG
kriger krigerne N;DEF;PL
parasitt parasitten N;DEF;SG
massør massører N;NDEF;PL
skrivebord skrivebord N;NDEF;PL
gardin gardinet N;DEF;SG
eksploatere eksploaterer V;PRS
leddgikt leddgikta N;DEF;SG
eksplosjon eksplosjonene N;DEF;PL
grave graver V;PRS
iskald iskaldt ADJ;NEUT;SG
dyrke dyrket V;PST
logo logoer N;NDEF;PL
passform passforma N;DEF;SG
få få ADJ;NEUT;SG
gave gava N;DEF;SG
martyr martyren N;DEF;SG
vanskelig vanskeligst ADJ;SPRL;NDEF
skilletegn skilletegna N;DEF;PL
laser laseren N;DEF;SG
entreprenør entreprenører N;NDEF;PL
helse helsen N;DEF;SG
morfologi morfologiene N;DEF;PL
gen gena N;DEF;PL
stige stig V;IMP
baug baugen N;DEF;SG
mosambiker mosambikere N;NDEF;PL
blodtrykk blodtrykkene N;DEF;PL
angre angre V;IMP
høyesterettsjustitiarius høyesterettsjustitiariusen N;DEF;SG
røve røva V;PST
fonetikk fonetikken N;DEF;SG
revolver revolverne N;DEF;PL
regndråpe regndråpene N;DEF;PL
arkaisere arkaiseres V;PRS;PASS
alfabet alfabeter N;NDEF;PL
gangsti gangstiene N;DEF;PL
lang lengste ADJ;SPRL;DEF
morgenkåpe morgenkåpa N;DEF;SG
rød rødeste ADJ;SPRL;DEF
katekisme katekismene N;DEF;PL
politikvinne politikvinner N;NDEF;PL
flaggermus flaggermusa N;DEF;SG
tunnel tunnelen N;DEF;SG
plasma plasma N;NDEF;PL
mandel mandelen N;DEF;SG
skulptur skulpturen N;DEF;SG
hus huset N;DEF;SG
øyenvipp øyenvippen N;DEF;SG
piktogram piktogramma N;DEF;PL
rettssal rettssalene N;DEF;PL
hjul hjulet N;DEF;SG
luft lufta N;DEF;SG
bombefly bombefly N;NDEF;PL
eksplosjon eksplosjoner N;NDEF;PL
natt nettene N;DEF;PL
flagg flaggene N;DEF;PL
skade skada V;PST
olden oldenen N;DEF;SG
vakuum vakuumet N;DEF;SG
kremere kremer V;IMP
infisere infiserer V;PRS
tilbakebetale tilbakebetaler V;PRS
saudiaraber saudiaraberen N;DEF;SG
presang presangene N;DEF;PL
fungere fungerende V.PTCP;PRS
barn barna N;DEF;PL
nåde nåden N;DEF;SG
skatt skatter N;NDEF;PL
lyddemper lyddempere N;NDEF;PL
verk verket N;DEF;SG
individ individer N;NDEF;PL
cupfinale cupfinaler N;NDEF;PL
grunnleggelse grunnleggelser N;NDEF;PL
viskositet viskositeten N;DEF;SG
banan bananene N;DEF;PL
tillatelse tillatelsene N;DEF;PL
oversette oversatt V.PTCP;PST
kjørefelt kjørefeltene N;DEF;PL
forsøk forsøket N;DEF;SG
iskrem iskremene N;DEF;PL
inder indere N;NDEF;PL
lekke lekkende V.PTCP;PRS
steppe stepper N;NDEF;PL
hengebro hengebroer N;NDEF;PL
ensfarget ensfargete ADJ;DEF;SG+PL
allehånde allehåndene N;DEF;PL
newager newagere N;NDEF;PL
putetrekk putetrekk N;NDEF;PL
sveitser sveitseren N;DEF;SG
ligning ligningen N;DEF;SG
søye søyene N;DEF;PL
kanal kanaler N;NDEF;PL
melke melka V;PST
ordre ordrer N;NDEF;PL
bord borden N;DEF;SG
sammenligne sammenlign V;IMP
filosof filosofen N;DEF;SG
reagere reagerte V;PST
jiddisk jiddiske ADJ;DEF;SG+PL
epidemisk epidemisk ADJ;NEUT;SG
duo duoer N;NDEF;PL
flaske flaskene N;DEF;PL
fyr fyr N;NDEF;PL
monark monarken N;DEF;SG
koke kokte V;PST
legg leggene N;DEF;PL
lav lavere ADJ;CMPR
restaurere restaurerte V;PST
leveranse leveranser N;NDEF;PL
single singler N;NDEF;PL
annen anna ADJ;FEM
redskap redskapet N;DEF;SG
offer offeret N;DEF;SG
under underne N;DEF;SG
tegnspråk tegnspråk N;NDEF;PL
billig billigst ADJ;NDEF;PL
folkemord folkemordet N;DEF;SG
kunnskap kunnskaper N;NDEF;PL
tendens tendenser N;NDEF;PL
and ender N;NDEF;PL
omen omen N;NDEF;PL
krangel krangelen N;DEF;SG
multiplum multipla N;NDEF;PL
kjøkkenbord kjøkkenbordene N;DEF;PL
kano kanoer N;NDEF;PL
sønn sønnen N;DEF;SG
regnemaskin regnemaskinene N;DEF;PL
pressemelding pressemeldinga N;DEF;SG
bore borende V.PTCP;PRS
kolleksjon kolleksjoner N;NDEF;PL
masse masser N;NDEF;PL
tap tapet N;DEF;SG
egg egg N;NDEF;PL
ærlig ærlig ADJ;NEUT;SG
leddgikt leddgikter N;NDEF;PL
nasjon nasjonen N;DEF;SG
pioner pionerer N;NDEF;PL
ordtak ordtaket N;DEF;SG
bo boene N;DEF;PL
hyperlenke hyperlenker N;NDEF;PL
stamtre stamtrea N;DEF;PL
ukrainer ukrainere N;NDEF;PL
portrett portretter N;NDEF;PL
vie vigd V.PTCP;PST
snøras snøras N;NDEF;PL
kommentar kommentarene N;DEF;PL
hertug hertugene N;DEF;PL
forkorting forkortinga N;DEF;SG
umyndig umyndig ADJ;NEUT;SG
kaotisk kaotisk ADJ;NEUT;SG
inkontinent inkontinent ADJ;NEUT;SG
stim stima N;DEF;PL
synonym synonym N;NDEF;PL
putevar putevar N;NDEF;PL
sosiolog sosiologer N;NDEF;PL
sende sendt V.PTCP;PST
gås gåsa N;DEF;SG
bosnisk bosnisk ADJ;NEUT;SG
tilfredsstille tilfredsstilte V;PST
statsborger statsborgeren N;DEF;SG
spiller spillerne N;DEF;PL
utgave utgava N;DEF;SG
oppfinner oppfinneren N;DEF;SG
befri befriende V.PTCP;PRS
rettmessig rettmessige ADJ;DEF;SG+PL
tiår tiåra N;DEF;PL
bekk bekker N;NDEF;PL
nigerer nigererne N;DEF;PL
frosk frosker N;NDEF;PL
ark arka N;DEF;PL
vennskap vennskap N;NDEF;PL
konteiner konteinere N;NDEF;PL
kryptere krypterte V;PST
pause pausen N;DEF;SG
dvergbjørk dvergbjørken N;DEF;SG
natur naturer N;NDEF;PL
minimere minimerte V;PST
ontologi ontologien N;DEF;SG
farmasøyt farmasøyten N;DEF;SG
bh bh-er N;NDEF;PL
spiselig spiselig ADJ;NEUT;SG
avsporing avsporinger N;NDEF;PL
røver røveren N;DEF;SG
svane svana N;DEF;SG
luktfri luktfrie ADJ;DEF;SG+PL
osean osean N;NDEF;PL
overta overtar V;PRS
løse løste V;PST
kondor kondoren N;DEF;SG
elfenbenstårn elfenbenstårnet N;DEF;SG
cubaner cubaneren N;DEF;SG
korn korn N;NDEF;PL
punktum punktumene N;DEF;PL
identisk identisk ADJ;NEUT;SG
strømme strømma V;PST
sardin sardinene N;DEF;PL
matte matter N;NDEF;PL
kurdisk kurdiske ADJ;DEF;SG+PL
skjule skjuler V;PRS
grunnlegge grunnla V;PST
fiskebåt fiskebåtene N;DEF;PL
portugisisk portugisisken N;DEF;SG
øre ører N;NDEF;PL
jordskjelv jordskjelv N;NDEF;PL
minne minner N;NDEF;PL
drikk drikken N;DEF;SG
gaboner gabonere N;NDEF;PL
rommelig rommelig ADJ;NEUT;SG
lugar lugarene N;DEF;PL
kjøleskap kjøleskap N;NDEF;PL
pinse pinsen N;DEF;SG
løk løkene N;DEF;PL
materiale materiala N;DEF;PL
uløselig uløselig ADJ;NEUT;SG
krabbe krabbene N;DEF;PL
skuespill skuespillene N;DEF;PL
arbeiderklasse arbeiderklassa N;DEF;SG
estlender estlendere N;NDEF;PL
malawier malawierne N;DEF;PL
vente ventet V;PST
vanndamp vanndampen N;DEF;SG
tjeneste tjenesten N;DEF;SG
antenne antennene N;DEF;PL
dildo dildoene N;DEF;PL
georgier georgierne N;DEF;PL
bauxitt bauxitten N;DEF;SG
forslag forslaget N;DEF;SG
stim stim N;NDEF;PL
storby storbyene N;DEF;PL
vindu vinduene N;DEF;PL
vurdere vurder V;IMP
syltetøy syltetøyene N;DEF;PL
mellomnorsk mellomnorsken N;DEF;SG
nasjonalitet nasjonaliteten N;DEF;SG
sitte satt V;PST
vingespenn vingespennene N;DEF;PL
tekst tekster N;NDEF;PL
divisjonstegn divisjonstegnene N;DEF;PL
kvadratmeter kvadratmeteren N;DEF;SG
maksimere maksimerte V;PST
farlig farligst ADJ;SPRL;NDEF
bakside baksida N;DEF;SG
jordbruk jordbruk N;NDEF;PL
varelager varelager N;NDEF;PL
imperialisme imperialismen N;DEF;SG
visum visuma N;DEF;PL
uskadelig uskadelig ADJ;NEUT;SG
dekke dekt V.PTCP;PST
skrekkelig skrekkeligere ADJ;CMPR
torpedo torpedoen N;DEF;SG
jakte jakt V;IMP
taus taust ADJ;NEUT;SG
initiativ initiativet N;DEF;SG
sandstrand sandstrendene N;DEF;PL
varighet varigheten N;DEF;SG
leie leier V;PRS
oksid oksider N;NDEF;PL
tegnspråk tegnspråket N;DEF;SG
kobberrør kobberrøra N;DEF;PL
kappverder kappverderne N;DEF;PL
dørmatte dørmattene N;DEF;PL
spillkort spillkort N;NDEF;PL
oppvaskklut oppvaskklutene N;DEF;PL
assistent assistentene N;DEF;PL
stedfortreder stedfortredere N;NDEF;PL
bryllupskake bryllupskaker N;NDEF;PL
marsjere marsjerte V;PST
sammendrag sammendrag N;NDEF;PL
seilskip seilskip N;NDEF;PL
tvinge tvingende V.PTCP;PRS
renne renner V;PRS
hysterisk hysteriske ADJ;DEF;SG+PL
element element N;NDEF;PL
fargestoff fargestoffet N;DEF;SG
energi energien N;DEF;SG
tommelfinger tommelfingeren N;DEF;SG
ny nyest ADJ;SPRL
føll føllet N;DEF;SG
ferje ferjer N;NDEF;PL
brasilianer brasilianere N;NDEF;PL
omelett omelettene N;DEF;PL
heve hevde V;PST
beregne beregner V;PRS
overføre overfør V;IMP
talent talenter N;NDEF;PL
brannbil brannbiler N;NDEF;PL
morter mortere N;NDEF;PL
trening treninger N;NDEF;PL
omkrets omkretser N;NDEF;PL
sjakkbrett sjakkbrettet N;DEF;SG
nyttår nyttår N;NDEF;PL
intim intimt ADJ;NEUT;SG
forsinke forsinket V;PST
flystripe flystriper N;NDEF;PL
periferi periferier N;NDEF;PL
nitrogen nitrogenet N;DEF;SG
dommer dommeren N;DEF;SG
råd råda N;DEF;PL
boikotte boikotter V;PRS
mal malene N;DEF;PL
botanikk botanikken N;DEF;SG
uaktsom uaktsomt ADJ;NEUT;SG
dynetrekk dynetrekket N;DEF;SG
problem problemet N;DEF;SG
hele helet V.PTCP;PST
ryggsekk ryggsekkene N;DEF;PL
minoritetsgruppe minoritetsgruppen N;DEF;SG
streng strengen N;DEF;SG
finale finalene N;DEF;PL
skorpion skorpionen N;DEF;SG
ur urene N;DEF;PL
globalisering globaliseringen N;DEF;SG
utvikle utvikla V;PST
arving arvinger N;NDEF;PL
navlestreng navlestrengene N;DEF;PL
krysse krysser V;PRS
butt butteste ADJ;SPRL;DEF
åtsel åtselet N;DEF;SG
overta overtakende V.PTCP;PRS
fiskevær fiskevær N;NDEF;PL
forslag forslagene N;DEF;PL
instrument instrumentet N;DEF;SG
advent adventer N;NDEF;PL
nomadisk nomadiske ADJ;DEF;SG+PL
sadel sadler N;NDEF;PL
fønikisk fønikisk ADJ;NEUT;SG
rulle ruller V;PRS
høy høya N;DEF;PL
infeksjon infeksjonen N;DEF;SG
tilhører tilhøreren N;DEF;SG
beskyttelse beskyttelsene N;DEF;PL
baryton barytoner N;NDEF;PL
albaner albaneren N;DEF;SG
finne finnen N;DEF;SG
høre hørt V.PTCP;PST
spor spor N;NDEF;PL
kleshenger kleshengeren N;DEF;SG
kjeve kjevene N;DEF;PL
forskjell forskjellen N;DEF;SG
torsk torskene N;DEF;PL
debutere debuter V;IMP
datavirus datavirusa N;DEF;PL
motorkjøretøy motorkjøretøyet N;DEF;SG
kjønnshår kjønnshår N;NDEF;PL
syklisk syklisk ADJ;NEUT;SG
globalisering globaliseringa N;DEF;SG
radioaktiv radioaktive ADJ;DEF;SG+PL
skøyteløper skøyteløperne N;DEF;PL
kentaur kentaurene N;DEF;PL
barneprostitusjon barneprostitusjonen N;DEF;SG
hestekastanje hestekastanjene N;DEF;PL
jobbe jobb V;IMP
skarp skarpeste ADJ;SPRL;DEF
fantom fantoma N;DEF;PL
monark monarkene N;DEF;PL
fordele fordeler V;PRS
valg valg N;NDEF;PL
kartlegge kartlagt V.PTCP;PST
frokost frokoster N;NDEF;PL
hjernestamme hjernestammen N;DEF;SG
gal galer N;NDEF;PL
østtimoreser østtimoresere N;NDEF;PL
alvorlig alvorligst ADJ;SPRL;NDEF
sprengstoff sprengstoffene N;DEF;PL
økonomisk økonomiske ADJ;DEF;SG+PL
subkontinent subkontinentene N;DEF;PL
oppløsning oppløsninga N;DEF;SG
historie historiene N;DEF;PL
rullebane rullebanen N;DEF;SG
signal signala N;DEF;PL
mineral mineralene N;DEF;PL
None ødelegger V;PRS;ACT
programmering programmeringene N;DEF;PL
detaljist detaljistene N;DEF;PL
kompleks komplekst ADJ;NEUT;SG
fysisk fysiske ADJ;DEF;SG+PL
dryppe dryppet V;PST
mening meninga N;DEF;SG
ordgyderi ordgyderier N;NDEF;PL
inngang inngangen N;DEF;SG
geitebukk geitebukken N;DEF;SG
bikkje bikkjen N;DEF;SG
plog plogene N;DEF;PL
spesialitet spesialitetene N;DEF;PL
bykse bykst V.PTCP;PST
kaos kaoset N;DEF;SG
akne aknen N;DEF;SG
begrense begrensa V;PST
ensemble ensembla N;DEF;PL
fordeling fordelinger N;NDEF;PL
debut debuter N;NDEF;PL
fest fester N;NDEF;PL
feiebrett feiebretter N;NDEF;PL
tisse på seg tissa på seg V;PST
venezuelaner venezuelanerne N;DEF;PL
lys lysa N;DEF;PL
øke øk V;IMP
barnevogn barnevogna N;DEF;SG
abbedisse abbedisser N;NDEF;PL
støtte støtter N;NDEF;PL
elektriker elektrikerne N;DEF;PL
behov behovene N;DEF;PL
pukkel pukkelen N;DEF;SG
ukjent ukjent ADJ;NEUT;SG
historie historier N;NDEF;PL
dørklokke dørklokkene N;DEF;PL
skifte skifta V;PST
dagtid dagtiden N;DEF;SG
sterk sterkere ADJ;CMPR
teknikk teknikkene N;DEF;PL
kart karten N;DEF;SG
vask vasker N;NDEF;PL
lam lam N;NDEF;PL
elfenbeinstårn elfenbeinstårnet N;DEF;SG
koagulere koagulert V.PTCP;PST
furu furuen N;DEF;SG
forhåpningsfull forhåpningsfulle ADJ;DEF;SG+PL
kumlokk kumlokka N;DEF;PL
jordras jordrasene N;DEF;PL
kalv kalvene N;DEF;PL
laken lakena N;DEF;PL
bety betyr V;PRS
ordklasse ordklassene N;DEF;PL
kattedyr kattedyret N;DEF;SG
piggtråd piggtråder N;NDEF;PL
diktator diktatorer N;NDEF;PL
hopp hoppene N;DEF;PL
stor store ADJ;DEF;SG+PL
armenier armeniere N;NDEF;PL
selvmordsoffer selvmordsofra N;DEF;PL
antiguaner antiguanerne N;DEF;PL
ordtak ordtaka N;DEF;PL
offer ofre N;NDEF;PL
innhold innhold N;NDEF;PL
grønn grønne ADJ;DEF;SG+PL
forvente forventer V;PRS
parfyme parfymen N;DEF;SG
kongoleser kongolesere N;NDEF;PL
multiplum multiplumet N;DEF;SG
utvilsom utvilsomt ADJ;NEUT;SG
utropstegn utropstegnet N;DEF;SG
ledelse ledelsene N;DEF;PL
forenkle forenkl V;IMP
gnu gnuene N;DEF;PL
behåret behårete ADJ;DEF;SG+PL
dobbelthake dobbelthakene N;DEF;PL
alternativ alternativet N;DEF;SG
divisjonstegn divisjonstegn N;NDEF;PL
kosedyr kosedyra N;DEF;PL
akrobat akrobater N;NDEF;PL
høyesterett høyesteretter N;NDEF;PL
økonomisk økonomisk ADJ;NEUT;SG
eksistens eksistensene N;DEF;PL
uniform uniformer N;NDEF;PL
kjærlig kjærlig ADJ;NEUT;SG
selskap selskaper N;NDEF;PL
konspirasjon konspirasjonene N;DEF;PL
boble boblet V;PST
utdanne utdannende V.PTCP;PRS
palestinsk palestinske ADJ;DEF;SG+PL
lide lidt V.PTCP;PST
leke leka N;DEF;SG
bord bord N;NDEF;PL
krabbe krabber N;NDEF;PL
grenadier grenadieren N;DEF;SG
sektor sektoren N;DEF;SG
auksjon auksjonene N;DEF;PL
stavelse stavelsen N;DEF;SG
perlemor perlemoret N;DEF;SG
sjokoladeplate sjokoladeplata N;DEF;SG
tvetydig tvetydig ADJ;NEUT
spiselig spiselige ADJ;DEF;SG+PL
blekemiddel blekemidlet N;DEF;SG
ufullstendig ufullstendige ADJ;DEF;SG+PL
drone droner N;NDEF;PL
bluse bluser N;NDEF;PL
tone tonen N;DEF;SG
høre hør V;IMP
statskupp statskuppet N;DEF;SG
tape taper N;NDEF;PL
ask asker N;NDEF;PL
dukke dukker N;NDEF;PL
etternavn etternavna N;DEF;PL
byge bygen N;DEF;SG
fiendtlig fiendtlig ADJ;NEUT;SG
naturgass naturgassen N;DEF;SG
skrive skriv V;IMP
skatteparadis skatteparadiset N;DEF;SG
magnetfelt magnetfelta N;DEF;PL
toåring toåringer N;NDEF;PL
arkitektur arkitekturene N;DEF;PL
bord borda N;DEF;PL
produksjon produksjonene N;DEF;PL
skilletegn skilletegn N;NDEF;PL
villfarelse villfarelsen N;DEF;SG
hue huen N;DEF;SG
bakke bakkene N;DEF;PL
kostarikaner kostarikanerne N;DEF;PL
importør importører N;NDEF;PL
kapasitet kapasiteten N;DEF;SG
type typer N;NDEF;PL
tilby tilbød V;PST
selge selg V;IMP
angre angrende V.PTCP;PRS
buss bussen N;DEF;SG
subtrahere subtraherende V.PTCP;PRS
parakitt parakittene N;DEF;PL
desensitivisere desensitiviser V;IMP
kongerike kongerikene N;DEF;PL
datasimulering datasimuleringa N;DEF;SG
tretthet trettheta N;DEF;SG
finne opp funnet opp V.PTCP;PST
by byen N;DEF;SG
dør døren N;DEF;SG
hette hetter N;NDEF;PL
kork korkene N;DEF;PL
ofre ofrer V;PRS
magnet magneter N;NDEF;PL
sjakal sjakaler N;NDEF;PL
tordensky tordenskyene N;DEF;PL
kongelig kongelige ADJ;DEF;SG+PL
skyhøy skyhøyt ADJ;NEUT;SG
salmebok salmeboka N;DEF;SG
tøff tøft ADJ;NEUT;SG
oppleve opplevde V;PST
destruere destruerer V;PRS
interesse interesser N;NDEF;PL
deltager deltagerne N;DEF;PL
bremse bremser V;PRS
rytme rytmen N;DEF;SG
ødemark ødemarkene N;DEF;PL
handelsskip handelsskipet N;DEF;SG
åker åkrer N;NDEF;PL
bestå bestod V;PST
hagl hagl N;NDEF;PL
piano pianoene N;DEF;PL
arbeidsgiver arbeidsgiverne N;DEF;PL
stryking strykingene N;DEF;PL
hotell hotellet N;DEF;SG
skotte skottene N;DEF;PL
betydning betydningene N;DEF;PL
syntetisere syntetiser V;IMP
mannlig mannlig ADJ;NEUT;SG
angstbiteri angstbiteria N;DEF;PL
bære bærer V;PRS
orientere orienter V;IMP
turbulens turbulensen N;DEF;SG
horn horna N;DEF;PL
gullfisk gullfisken N;DEF;SG
flyvåpen flyvåpenet N;DEF;SG
gjenopplive gjenopplivet V;PST
tredemølle tredemøllen N;DEF;SG
elfenbeinstårn elfenbeinstårn N;NDEF;PL
skjønnhet skjønnheten N;DEF;SG
ung yngre ADJ;CMPR
myte mytene N;DEF;PL
vindu vindua N;DEF;PL
fenghette fenghetta N;DEF;SG
presentere presentert V.PTCP;PST
harddisk harddisker N;NDEF;PL
kortbukse kortbuksene N;DEF;PL
åsside åssider N;NDEF;PL
vegetasjon vegetasjonene N;DEF;PL
konsonant konsonantene N;DEF;PL
slovak slovaken N;DEF;SG
grafitt grafitten N;DEF;SG
flamingo flamingoene N;DEF;PL
nedleggelse nedleggelser N;NDEF;PL
nevner nevnerne N;DEF;PL
forsage forsagende V.PTCP;PRS
tidel tidelen N;DEF;SG
hore horen N;DEF;SG
bit bitene N;DEF;PL
skulptur skulpturer N;NDEF;PL
fylle fyllende V.PTCP;PRS
ombud ombud N;NDEF;PL
menneske mennesket N;DEF;SG
garderobeskap garderobeskapene N;DEF;PL
eksperimentere eksperimentert V.PTCP;PST
bumerang bumerangen N;DEF;SG
land landene N;DEF;PL
alpakka alpakkaer N;NDEF;PL
ættegransker ættegranskerne N;DEF;PL
komiker komikeren N;DEF;SG
vingespenn vingespenn N;NDEF;PL
matematiker matematikerne N;DEF;PL
nordmann nordmannen N;DEF;SG
overlevelse overlevelser N;NDEF;PL
jakke jakker N;NDEF;PL
lekke lekka V.PTCP;PST
redaktør redaktører N;NDEF;PL
piktogram piktogrammene N;DEF;PL
feiebrett feiebrettet N;DEF;SG
sofa sofaen N;DEF;SG
lagune laguner N;NDEF;PL
forhud forhuda N;DEF;SG
sikker sikkert ADJ;NEUT;SG
skole skoler N;NDEF;PL
etterkommer etterkommeren N;DEF;SG
kollisjon kollisjonene N;DEF;PL
langer langerne N;DEF;PL
stor største ADJ;SPRL;DEF
fingeravtrykk fingeravtrykka N;DEF;PL
kritt krittene N;DEF;PL
skive skiver N;NDEF;PL
besetning besetningene N;DEF;PL
libyer libyere N;NDEF;PL
kokke kokka N;DEF;SG
vennlig vennlig ADJ;NEUT;SG
korsett korsett N;NDEF;PL
begrep begrepa N;DEF;PL
ku kuene N;DEF;PL
innhold innholdet N;DEF;PL
programmerer programmereren N;DEF;SG
behåret behåret ADJ;NEUT;SG
estetisk estetiske ADJ;DEF;SG+PL
oppfinne oppfant V;PST
begrep begrepene N;DEF;PL
brikke brikkene N;DEF;PL
nabolag nabolaget N;DEF;SG
presentasjon presentasjonen N;DEF;SG
utføre utfør V;IMP
oversikt oversikter N;NDEF;PL
mor moren N;DEF;SG
restaurering restaureringer N;NDEF;PL
alfabetisk alfabetisk ADJ;NEUT;SG
spiller spilleren N;DEF;SG
nesebor neseboret N;DEF;SG
baderom baderom N;NDEF;PL
utdanne utdanna V;PST
nedbør nedbøren N;DEF;SG
amfetamin amfetaminer N;NDEF;PL
kle kledde V;PST
synagoge synagoger N;NDEF;PL
udramatisk udramatisk ADJ;NEUT;SG
fotgjenger fotgjengerne N;DEF;PL
rykte rykta N;DEF;PL
biologisk biologiske ADJ;DEF;SG+PL
zoologi zoologien N;DEF;SG
putevar putevarene N;DEF;PL
forårsake forårsaket V;PST
garasje garasjen N;DEF;SG
tonn tonnet N;DEF;SG
skygge skygd V.PTCP;PST
så sår V;PRS
svarteliste svartelistene N;DEF;PL
pakkis pakkiser N;NDEF;PL
meter meter N;NDEF;PL
brasilianer brasilianeren N;DEF;SG
slagskip slagskipet N;DEF;SG
oppskrift oppskriftene N;DEF;PL
ramme rammer V;PRS
sørlig sørlig ADJ;NEUT;SG
sirkus sirkuset N;DEF;SG
migrene migrenen N;DEF;SG
tennisbane tennisbanene N;DEF;PL
klesbørste klesbørster N;NDEF;PL
barnesykdom barnesykdommen N;DEF;SG
spesiell spesielle ADJ;DEF;SG+PL
aggressiv aggressivt ADJ;NEUT;SG
suge suget V.PTCP;PST
badekar badekara N;DEF;PL
program programmet N;DEF;SG
trafikklys trafikklysene N;DEF;PL
zambisk zambiske ADJ;DEF;SG+PL
samarbeid samarbeidet N;DEF;SG
forlover forloverne N;DEF;PL
dreiemoment dreiemomentet N;DEF;SG
størrelse størrelsene N;DEF;PL
bolle bollene N;DEF;PL
sovepose soveposen N;DEF;PL
grunnstein grunnsteinene N;DEF;PL
beskatning beskatningene N;DEF;PL
kjønnshår kjønnshåra N;DEF;PL
åndedrag åndedraget N;DEF;SG
nedleggelse nedleggelsen N;DEF;SG
universell universelle ADJ;DEF;SG+PL
territoriell territorielle ADJ;DEF;SG+PL
fløy fløya N;DEF;SG
etnisk etniske ADJ;DEF;SG+PL
mikrosekund mikrosekund N;NDEF;PL
undertegne undertegner V;PRS
maskingevær maskingevær N;NDEF;PL
medikament medikament N;NDEF;PL
verden verdener N;NDEF;PL
bevisst bevisst ADJ;NEUT;SG
filosof filosofene N;DEF;PL
reklame reklamene N;DEF;PL
lengde lengdene N;DEF;PL
gen genet N;DEF;SG
trone troner N;NDEF;PL
gnage gnaget V;PST
tilfredsstille tilfredsstillende V.PTCP;PRS
sutra sutraene N;DEF;PL
T-bane T-banen N;DEF;SG
fyrtårn fyrtårna N;DEF;PL
bronkitt bronkittene N;DEF;PL
kjernefamilie kjernefamiliene N;DEF;PL
kjøl kjølene N;DEF;PL
patruljere patruljert V.PTCP;PST
aksjeselskap aksjeselskap N;NDEF;PL
missil missilene N;DEF;PL
kappe kapper N;NDEF;PL
stavemåte stavemåten N;DEF;SG
tetthet tettheten N;DEF;SG
bordell bordellen N;DEF;SG
hore hora N;DEF;SG
analyse analyser N;NDEF;PL
værelse værelsa N;DEF;PL
bulevard bulevarder N;NDEF;PL
korstog korstoga N;DEF;PL
så så V;IMP
skyld skylder N;NDEF;PL
burkiner burkineren N;DEF;SG
meteoritt meteoritten N;DEF;SG
unngå unngår V;PRS
fortau fortau N;NDEF;PL
støvsuger støvsugere N;NDEF;PL
rwander rwanderne N;DEF;PL
tekopp tekoppene N;DEF;PL
skilt skilt N;NDEF;PL
utløp utløpene N;DEF;PL
millimeter millimeter N;NDEF;PL
stryke stryker V;PRS
snøleopard snøleoparder N;NDEF;PL
nådeløs nådeløse ADJ;DEF;SG+PL
supermakt supermakten N;DEF;SG
overfiske overfisket N;DEF;SG
drage dragen N;DEF;SG
finlender finlenderne N;DEF;PL
lokomotiv lokomotiva N;DEF;PL
balltre balltrea N;DEF;PL
lenestol lenestolen N;DEF;SG
kurder kurderen N;DEF;SG
sag sagen N;DEF;SG
forfølgelse forfølgelsen N;DEF;SG
kreasjon kreasjonene N;DEF;PL
substantiv substantiver N;NDEF;PL
leppe lepper N;NDEF;PL
forhistorisk forhistorisk ADJ;NEUT;SG
sannsynlig sannsynlig ADJ;NEUT;SG
lommelerke lommelerka N;DEF;SG
skjermutskrift skjermutskriften N;DEF;SG
tavle tavler N;NDEF;PL
orientere orienterer V;PRS
fengsel fengsler N;NDEF;PL
brunkull brunkullet N;DEF;SG
piske piskende V.PTCP;PRS
rand randene N;DEF;PL
skiftenøkkel skiftenøkkelen N;DEF;SG
senter sentrene N;DEF;PL
godkjenne godkjenn V;IMP
sette sett V;IMP
passivisering passiviseringene N;DEF;PL
samfunn samfunnene N;DEF;PL
kobberrør kobberrør N;NDEF;PL
kast kastet N;DEF;SG
erosjon erosjonene N;DEF;PL
klasse klassene N;DEF;PL
nypotet nypoteten N;DEF;SG
metode metoden N;DEF;SG
korallrev korallrevet N;DEF;SG
fortelle forteller V;PRS
sitronsyre sitronsyra N;DEF;SG
etterforske etterforsker V;PRS
gjensidig gjensidig ADJ;NEUT;SG
sørafrikansk sørafrikanske ADJ;DEF;SG+PL
kjevle kjevla N;DEF;PL
diakon diakoner N;NDEF;PL
parlament parlamentene N;DEF;PL
allé alleene N;DEF;PL
ønsket ønskede ADJ;DEF;SG+PL
astronomisk astronomiske ADJ;DEF;SG+PL
statist statisten N;DEF;SG
lekke lakk V;PST
fly fløy V;PST
kolon koloner N;NDEF;PL
adgang adgangene N;DEF;PL
tusenbein tusenbeinene N;DEF;PL
oljemaleri oljemaleri N;NDEF;PL
muldvarp muldvarper N;NDEF;PL
domstol domstoler N;NDEF;PL
stilling stillinga N;DEF;SG
hestekastanje hestekastanjer N;NDEF;PL
laboratorium laboratoria N;DEF;PL
røyl røyler N;NDEF;PL
multiplikasjon multiplikasjoner N;NDEF;PL
gjenåpne gjenåpner V;PRS
sukkerbete sukkerbetene N;DEF;PL
positiv positivt ADJ;NEUT;SG
byggemateriale byggematerialer N;NDEF;PL
lav laveste ADJ;SPRL;DEF
luftbåren luftbårne ADJ;DEF;SG+PL
anarki anarkier N;NDEF;PL
dommer dommere N;NDEF;PL
stratenrøver stratenrøveren N;DEF;SG
håndjern håndjerna N;DEF;PL
ytringsfrihet ytringsfriheten N;DEF;SG
bakeri bakeri N;NDEF;PL
jakte jaktet V;PST
meteorologisk meteorologiske ADJ;DEF;SG+PL
miljø miljøene N;DEF;PL
ghanesisk ghanesisk ADJ;NEUT;SG
sangfugl sangfugler N;NDEF;PL
vulkansk vulkanske ADJ;DEF;SG+PL
surinamer surinameren N;DEF;SG
flaggermus flaggermus N;NDEF;PL
krabbe krabba N;DEF;SG
nordmann nordmennene N;DEF;PL
dryppe drypper V;PRS
passform passformene N;DEF;PL
konspirasjonsteori konspirasjonsteorien N;DEF;SG
landsby landsbyen N;DEF;SG
mine minene N;DEF;PL
vindu vindu N;NDEF;PL
blomsterbutikk blomsterbutikken N;DEF;SG
presentere presenterte V;PST
juveler juvelerer N;NDEF;PL
gresshoppe gresshopper N;NDEF;PL
kommandør kommandøren N;DEF;SG
munning munninga N;DEF;SG
sommertid sommertiden N;DEF;SG
selvmord selvmordene N;DEF;PL
katte katten N;DEF;SG
kjøkkenhåndkle kjøkkenhåndkleet N;DEF;SG
post postene N;DEF;PL
holdning holdninga N;DEF;SG
adskille adskilt V.PTCP;PST
eksakt eksakte ADJ;DEF;SG+PL
spre spre V;IMP
tordenvær tordenværet N;DEF;SG
vare vara N;DEF;SG
snøbrettkjører snøbrettkjøreren N;DEF;SG
veskenapper veskenappere N;NDEF;PL
tommel tomler N;NDEF;PL
regulere regulerende V.PTCP;PRS
sheasmør sheasmøret N;DEF;SG
psykolog psykologene N;DEF;PL
spisse spisser V;PRS
rabarbra rabarbraene N;DEF;PL
fiske fisk V;IMP
surinamer surinamerne N;DEF;PL
eier eierne N;DEF;PL
tannhjul tannhjulene N;DEF;PL
illustrasjon illustrasjoner N;NDEF;PL
svelge svelger V;PRS
hund hunder N;NDEF;PL
skifte skifter V;PRS
gjenstand gjenstandene N;DEF;PL
skremme skremte V;PST
neglelakk neglelakken N;DEF;SG
lysår lysår N;NDEF;PL
analytisk analytisk ADJ;NEUT;SG
satire satiren N;DEF;SG
håp håpene N;DEF;PL
blindpassasjer blindpassasjeren N;DEF;SG
etterligne etterligna V;PST
fordeling fordelinga N;DEF;SG
brøl brøl N;NDEF;PL
eikenøtt eikenøtta N;DEF;SG
program programmene N;DEF;PL
barnesoldat barnesoldater N;NDEF;PL
katakombe katakomben N;DEF;SG
dugnad dugnader N;NDEF;PL
satire satirer N;NDEF;PL
eggehvite eggehviter N;NDEF;PL
varietet varietetene N;DEF;PL
mumie mumien N;DEF;SG
klovn klovnen N;DEF;SG
løse løs V;IMP
lys lyseste ADJ;SPRL;DEF
tiår tiår N;NDEF;PL
problem problemer N;NDEF;PL
kombinasjon kombinasjoner N;NDEF;PL
kø køer N;NDEF;PL
fløte fløten N;DEF;SG
farge fargende V.PTCP;PRS
skygge skyggen N;DEF;SG
kjærlighet kjærligheten N;DEF;SG
los losen N;DEF;SG
løfte løfter V;PRS
ansikt ansikt N;NDEF;PL
julepresang julepresanger N;NDEF;PL
arbeider arbeidere N;NDEF;PL
sentralafrikaner sentralafrikaneren N;DEF;SG
etterligne etterligner V;PRS
filippiner filippinere N;NDEF;PL
brett bretta N;DEF;PL
etymolog etymologene N;DEF;PL
foto fotoet N;DEF;SG
sylinder sylindere N;NDEF;PL
høste høsta V;PST
skatt skattene N;DEF;PL
hærverk hærverket N;DEF;SG
diagram diagrammene N;DEF;PL
muntlig muntlig ADJ;NEUT;SG
basilikum basilikumene N;DEF;PL
hylle hyllet V;PST
par para N;DEF;PL
smittsom smittsomme ADJ;DEF;SG+PL
sol solen N;DEF;SG
røve røvde V;PST
brorskap brorskapet N;DEF;SG
rovfugl rovfuglen N;DEF;SG
viskositet viskositetene N;DEF;PL
kai kaiene N;DEF;PL
krystall krystallet N;DEF;SG
galoppbane galoppbanen N;DEF;SG
enhet enheter N;NDEF;PL
øye øyer N;NDEF;PL
høre hører V;PRS
øyelokk øyelokk N;NDEF;PL
forstå forstått V.PTCP;PST
klosset klosset ADJ;NEUT;SG
ankel ankelen N;DEF;SG
tørketrommel tørketrommelen N;DEF;SG
røyker røykerne N;DEF;PL
viser visere N;NDEF;PL
algerier algerieren N;DEF;SG
kartograf kartografen N;DEF;SG
vott votter N;NDEF;PL
akademisk akademisk ADJ;NEUT;SG
gi gi V;IMP
åpne åpn V;IMP
rusk ruska N;DEF;PL
grunnstein grunnsteinen N;DEF;SG
ytringsfrihet ytringsfrihetene N;DEF;PL
mørk mørke ADJ;DEF;SG+PL
kabriolet kabrioleten N;DEF;SG
newzealander newzealandere N;NDEF;PL
blyant blyanten N;DEF;SG
væske væskene N;DEF;PL
litauer litauere N;NDEF;PL
penis penisen N;DEF;SG
unik unike ADJ;DEF;SG+PL
riksvei riksveier N;NDEF;PL
symbol symbolene N;DEF;PL
akne aknene N;DEF;PL
chilener chileneren N;DEF;SG
modell modellene N;DEF;PL
fiske fiska V;PST
fingertupp fingertuppene N;DEF;PL
motta mottatt V.PTCP;PST
filosof filosofer N;NDEF;PL
økosystem økosystemer N;NDEF;PL
eksempel eksempler N;NDEF;PL
gardin gardina N;DEF;PL
hval hvalene N;DEF;PL
løvetann løvetanner N;NDEF;PL
gave gaver N;NDEF;PL
kam kammen N;DEF;SG
diameter diametrene N;DEF;PL
varelager varelagrene N;DEF;PL
bratt bratte ADJ;DEF;SG+PL
ordinær ordinære ADJ;DEF;SG+PL
demens demensen N;DEF;SG
nøkkel nøkkelen N;DEF;SG
svangerskap svangerskapet N;DEF;SG
helmelk helmelken N;DEF;SG
haug hauger N;NDEF;PL
cubaner cubanerne N;DEF;PL
symptom symptomet N;DEF;SG
kaotisk kaotiske ADJ;DEF;SG+PL
bil biler N;NDEF;PL
drømme drømt V.PTCP;PST
kontinent kontinentet N;DEF;SG
pære pæren N;DEF;SG
steinbrudd steinbrudd N;NDEF;PL
fornye fornyet V;PST
natt natten N;DEF;SG
ambulanse ambulansene N;DEF;PL
retningslinje retningslinjen N;DEF;SG
spir spirene N;DEF;PL
kontroll kontrollene N;DEF;PL
basere baser V;IMP
pakke pakka N;DEF;SG
statue statuer N;NDEF;PL
komfyr komfyren N;DEF;SG
forvirre forvirrer V;PRS
sofa sofaene N;DEF;PL
kredittkort kredittkorta N;DEF;PL
monolog monologer N;NDEF;PL
temme temmer V;PRS
frostvæske frostvæskene N;DEF;PL
fysisk fysisk ADJ;NEUT;SG
krets kretsene N;DEF;PL
bryter brytere N;NDEF;PL
kjønnshår kjønnshåret N;DEF;SG
komité komitéene N;DEF;PL
idrett idretten N;DEF;SG
rask raske ADJ;DEF;SG+PL
bjerk bjerker N;NDEF;PL
gravid gravide ADJ;DEF;SG+PL
iskald iskalde ADJ;DEF;SG+PL
fordømmelse fordømmelsene N;DEF;PL
sveise sveiste V;PST
fortolkning fortolkningen N;DEF;SG
andrespråk andrespråk N;NDEF;PL
sår såret N;DEF;SG
bispedømme bispedømmet N;DEF;SG
interjeksjon interjeksjonene N;DEF;PL
formel formler N;NDEF;PL
gyllen gylne ADJ;DEF;SG+PL
piktogram piktogrammer N;NDEF;PL
trussel truslene N;DEF;PL
dømme dømt V.PTCP;PST
fløyte fløyter N;NDEF;PL
sensurere sensurert V.PTCP;PST
baug baugene N;DEF;PL
satire satirene N;DEF;PL
betale betalt V.PTCP;PST
skolisse skolissen N;DEF;SG
sogn sognet N;DEF;SG
område områder N;NDEF;PL
tobakk tobakkene N;DEF;PL
begrense begrenser V;PRS
papegøye papegøyene N;DEF;PL
spiralfjær spiralfjæra N;DEF;SG
brystimplantat brystimplantatene N;DEF;PL
tinn tinnet N;DEF;SG
koffert kofferter N;NDEF;PL
betale betaler V;PRS
slektskap slektskap N;NDEF;PL
kam kammene N;DEF;PL
dirigent dirigenter N;NDEF;PL
harddisk harddiskene N;DEF;PL
golfbane golfbaner N;NDEF;PL
skulderblad skulderblad N;NDEF;PL
hjelpe hjelpende V.PTCP;PRS
kunstgress kunstgresset N;DEF;SG
lav lavest ADJ;SPRL;NDEF
mutter mutrene N;DEF;PL
motor motoren N;DEF;SG
sinnslikevekt sinnslikevekter N;NDEF;PL
bukse buksen N;DEF;SG
etymologisk etymologiske ADJ;DEF;SG+PL
mangle manglet V;PST
innføre innførte V;PST
gifte giftet V;PST
klær klærne N;DEF;PL
blå blåere ADJ;CMPR
elfenbeinstårn elfenbeinstårnene N;DEF;PL
omslag omslaga N;DEF;PL
åk åka N;DEF;PL
provins provinser N;NDEF;PL
tidsskrift tidsskriftet N;DEF;SG
vaksine vaksinen N;DEF;SG
lyspære lyspæren N;DEF;SG
søt søtt ADJ;NEUT;SG
krypdyr krypdyr N;NDEF;PL
offiser offiseren N;DEF;SG
konsert konserter N;NDEF;PL
grunnskole grunnskolen N;DEF;SG
motvirke motvirka V;PST
profesjonell profesjonelle ADJ;DEF;SG+PL
gjenkjennelig gjenkjennelige ADJ;DEF;SG+PL
skruppelløs skruppelløst ADJ;NEUT;SG
sperrebånd sperrebåndet N;DEF;SG
canadisk canadiske ADJ;DEF;SG+PL
aerosol aerosolen N;DEF;SG
fløte fløtende V.PTCP;PRS
indonesier indonesieren N;DEF;SG
libaneser libanesere N;NDEF;PL
hofte hoften N;DEF;SG
ambulanse ambulanser N;NDEF;PL
knuse knusende V.PTCP;PRS
bananrepublikk bananrepublikker N;NDEF;PL
nyss nyss N;NDEF;PL
sage sag V;IMP
deltaker deltakerne N;DEF;PL
alkoholholdig alkoholholdig ADJ;NEUT;SG
gigantisk gigantisk ADJ;NEUT;SG
kult kultene N;DEF;PL
mørketall mørketall N;NDEF;PL
utdanne utdanner V;PRS
grensesnitt grensesnitta N;DEF;PL
bryte brøt V;PST
brasme brasma N;DEF;SG
robåt robåtene N;DEF;PL
reform reformer N;NDEF;PL
stol stolene N;DEF;PL
betaling betalingen N;DEF;SG
rype rypa N;DEF;SG
stålull stålulla N;DEF;SG
fare for V;PST
pendel pendelen N;DEF;SG
forhandling forhandlinga N;DEF;SG
kjøle kjøler V;PRS
biprodukt biproduktet N;DEF;SG
eksistere eksisterer V;PRS
sted stedet N;DEF;SG
kryptere krypter V;IMP
koke kok V;IMP
kallenavn kallenavn N;NDEF;PL
dopplereffekt dopplereffekter N;NDEF;PL
klorid klorida N;DEF;PL
semikolon semikolonene N;DEF;PL
banke bankende V;PRS
mase maset V.PTCP;PST
menighet menighetene N;DEF;PL
takle takle V;IMP
kolleksjon kolleksjonen N;DEF;SG
gummistøvel gummistøvler N;NDEF;PL
påhengsmotor påhengsmotorene N;DEF;PL
trøbbel trøblet N;DEF;SG
nedleggelse nedleggelsene N;DEF;PL
desensitivisere desensitiviserer V;PRS
tysk tysk ADJ;NEUT;SG
rosmarin rosmarinene N;DEF;PL
vår våren N;DEF;SG
akustisk akustiske ADJ;DEF;SG+PL
multiplisere multipliser V;IMP
kardinal kardinalene N;DEF;PL
desimal desimalene N;DEF;PL
mikronesier mikronesierne N;DEF;PL
hengebru hengebruen N;DEF;SG
svindel svindlene N;DEF;PL
bergart bergartene N;DEF;PL
gipsbandasje gipsbandasjen N;DEF;SG
komponist komponistene N;DEF;PL
palestiner palestinerne N;DEF;PL
gjemme gjemmer V;PRS
finlender finlendere N;NDEF;PL
robåt robåter N;NDEF;PL
purre purrer N;NDEF;PL
inspirere inspirerer V;PRS
mentor mentorene N;DEF;PL
trenge trengt V.PTCP;PST
endelse endelsene N;DEF;PL
hoppbakke hoppbakker N;NDEF;PL
budskap budskapene N;DEF;PL
ektepar ekteparet N;DEF;SG
prosjekt prosjekta N;DEF;PL
mulighet muligheter N;NDEF;PL
sjettedel sjettedelen N;DEF;SG
nasjonalpark nasjonalparken N;DEF;SG
overenskomst overenskomsten N;DEF;SG
sykehus sykehusene N;DEF;PL
innføring innføringene N;DEF;PL
palass palassa N;DEF;PL
offentlig offentlig ADJ;NEUT;SG
kollisjon kollisjonen N;DEF;SG
kallenavn kallenavnene N;DEF;PL
kilde kilden N;DEF;SG
bryter bryterne N;DEF;PL
familie familier N;NDEF;PL
bolle boller N;NDEF;PL
programmerer programmererne N;DEF;PL
forvirring forvirringene N;DEF;PL
lære læra N;DEF;SG
nedgang nedganger N;NDEF;PL
bagasje bagasjene N;DEF;PL
tilbakedanning tilbakedanningene N;DEF;PL
belgier belgierne N;DEF;PL
mast mastene N;DEF;PL
meteorolog meteorologen N;DEF;SG
jevn jevne ADJ;DEF;SG+PL
medfødt medfødt ADJ;NEUT;SG
synke sunket V.PTCP;PST
prøve prøvde V;PST
femtedel femtedelen N;DEF;SG
bankett bankettene N;DEF;PL
rå råest ADJ;SPRL;NDEF
skilletegn skilletegnene N;DEF;PL
sjøkart sjøkarta N;DEF;PL
lederskap lederskapet N;DEF;SG
dørnøkkel dørnøkkelen N;DEF;SG
israelitt israelitter N;NDEF;PL
celle celler N;NDEF;PL
tøs tøser N;NDEF;PL
luksusbil luksusbiler N;NDEF;PL
jevn jevnt ADJ;NEUT;SG
skarp skarpt ADJ;NEUT;SG
fabrikant fabrikanter N;NDEF;PL
start starter N;NDEF;PL
handflate handflater N;NDEF;PL
fugleskremsel fugleskremsel N;NDEF;PL
felt felta N;DEF;PL
hylle hyllene N;DEF;PL
øye øyet N;DEF;SG
tabell tabellene N;DEF;PL
lunte luntene N;DEF;PL
kråke kråka N;DEF;SG
kulehull kulehuller N;NDEF;PL
plattform plattforma N;DEF;SG
snegl sneglene N;DEF;PL
serbisk serbisken N;DEF;SG
terrasse terrasser N;NDEF;PL
helle hellene N;DEF;PL
ekstrem ekstremene N;DEF;PL
elementær elementære ADJ;DEF;SG+PL
muliggjøre muliggjørende V.PTCP;PRS
fjernsyn fjernsyna N;DEF;PL
endre endret V;PST
algerisk algeriske ADJ;DEF;SG+PL
senter senter N;NDEF;PL
papegøye papegøyer N;NDEF;PL
jern jernene N;DEF;PL
entomolog entomologen N;DEF;SG
luftfartøy luftfartøya N;DEF;PL
åpenbar åpenbart ADJ;NEUT;SG
filmstjerne filmstjernen N;DEF;SG
haglgevær haglgeværa N;DEF;PL
halvmåne halvmåner N;NDEF;PL
forelske forelsk V;IMP
tilhører tilhørere N;NDEF;PL
allmenn allmenne ADJ;DEF;SG+PL
sabotere saboterte V;PST
ruste ruster V;PRS
bibelsk bibelske ADJ;DEF;SG+PL
løvetann løvetannen N;DEF;SG
arkaisk arkaiske ADJ;DEF;SG+PL
konferanse konferanser N;NDEF;PL
zambisk zambisk ADJ;NEUT;SG
bie bien N;DEF;SG
plass plassen N;DEF;SG
håndtak håndtakene N;DEF;PL
lukker lukkerne N;DEF;PL
asiat asiater N;NDEF;PL
tilpasse tilpassa V;PST
gammastråling gammastrålinga N;DEF;SG
hylle hylla V;PST
vik viken N;DEF;SG
seile seilende V.PTCP;PRS
varm varme ADJ;DEF;SG+PL
nøytron nøytrona N;DEF;PL
skje skjeer N;NDEF;PL
bruke brukte V;PST
søster søstre N;NDEF;PL
talgokse talgoksene N;DEF;PL
kunst kunster N;NDEF;PL
gaboner gaboneren N;DEF;SG
kjøtt kjøttet N;DEF;SG
motiv motivene N;DEF;PL
argument argumentene N;DEF;PL
kjent kjente ADJ;DEF;SG+PL
sekund sekunder N;NDEF;PL
vedlikehold vedlikehold N;NDEF;PL
plassere plasserende V.PTCP;PRS
sukkerroe sukkerroen N;DEF;SG
timeglass timeglasset N;DEF;SG
reservehjul reservehjulet N;DEF;SG
etasje etasjen N;DEF;SG
repertoar repertoara N;DEF;PL
universitet universitetet N;DEF;SG
møte møtene N;DEF;PL
ankel ankler N;NDEF;PL
visdomstann visdomstenner N;NDEF;PL
luftfoto luftfotoet N;DEF;SG
vanskelighet vanskeligheter N;NDEF;PL
klatre klatra V;PST
navngi navnga V;PST
luxembourger luxembourgerne N;DEF;PL
indikere indikert V.PTCP;PST
steinbrudd steinbrudda N;DEF;PL
rullebane rullebanene N;DEF;PL
medisin medisinen N;DEF;SG
skribent skribentene N;DEF;PL
etternavn etternavnene N;DEF;PL
oversette oversatte V;PST
tre tre V;IMP
ansøkning ansøkninger N;NDEF;PL
garderobe garderoben N;DEF;SG
beregne beregnet V;PST
silikon silikon N;NDEF;PL
undersøke undersøk V;IMP
tips tipset N;DEF;SG
høy høyere ADJ;CMPR
hår hår N;NDEF;PL
briste brister V;PRS
elektron elektron N;NDEF;PL
ansikt ansikter N;NDEF;PL
hilse hilste V;PST
pave pavene N;DEF;PL
bruneier bruneieren N;DEF;SG
belizer belizeren N;DEF;SG
kjøleskap kjøleskapa N;DEF;PL
medikament medikamenta N;DEF;PL
leirdueskyting leirdueskytingen N;DEF;SG
hærverk hærverka N;DEF;PL
befrukte befruktet V;PST
vilkårlig vilkårlig ADJ;NEUT;SG
lærer lærere N;NDEF;PL
kontakt kontakten N;DEF;SG
encellet encellete ADJ;DEF;SG+PL
fokusere fokuser V;IMP
upolitisk upolitisk ADJ;NDEF;NEUT;SG
bokser boksere N;NDEF;PL
basar basarer N;NDEF;PL
brunbjørn brunbjørnen N;DEF;SG
rhodium rhodiumet N;DEF;SG
stekepanne stekepannen N;DEF;SG
supermarked supermarkedet N;DEF;SG
saklig saklig ADJ;NEUT;SG
kjøkkenbord kjøkkenborda N;DEF;PL
jordskred jordskred N;NDEF;PL
hvile hvilen N;DEF;SG
falsk falskt ADJ;NEUT;SG
motstå motstått V.PTCP;PST
spørsmål spørsmåla N;DEF;PL
øve øvde V;PST
undervisning undervisninga N;DEF;SG
skole skolen N;DEF;SG
balrog balrogen N;DEF;SG
pengeskap pengeskap N;NDEF;PL
epidemi epidemiene N;DEF;PL
sen seneste ADJ;SPRL;DEF
skorpion skorpioner N;NDEF;PL
skjule skjul V;IMP
lagune lagunen N;DEF;SG
sekundviser sekundvisere N;NDEF;PL
haitier haitierne N;DEF;PL
eplepai eplepaiene N;DEF;PL
reportasje reportasjene N;DEF;PL
gymnas gymnaset N;DEF;SG
umalt umalte ADJ;DEF;SG+PL
tøs tøsa N;DEF;SG
huskatt huskatter N;NDEF;PL
barnedødelighet barnedødeligheter N;NDEF;PL
nøytron nøytronet N;DEF;SG
ørliten ørlille ADJ;DEF;SG
smaksstoff smaksstoff N;NDEF;PL
baker bakere N;NDEF;PL
gård gårder N;NDEF;PL
begavelse begavelsene N;DEF;PL
ro ror V;PRS
bajonett bajonetten N;DEF;SG
nedgang nedgangen N;DEF;SG
kompressor kompressorene N;DEF;PL
høl høler N;NDEF;PL
viktig viktige ADJ;DEF;SG+PL
værvarsling værvarslingen N;DEF;SG
betydningsfull betydningsfullt ADJ;NEUT;SG
likestrøm likestrømmen N;DEF;SG
etanol etanolen N;DEF;SG
romer romerne N;DEF;PL
vatn vatna N;DEF;PL
spiralfjær spiralfjærer N;NDEF;PL
kirkegjenger kirkegjengerne N;DEF;PL
kjevle kjevler N;NDEF;PL
grasiøs grasiøst ADJ;NEUT;SG
apostrof apostrofene N;DEF;PL
pessimistisk pessimistiske ADJ;DEF;SG+PL
gjennombrudd gjennombruddet N;DEF;SG
hockeykølle hockeykølla N;DEF;SG
heltall heltallet N;DEF;SG
tidsskrift tidsskrift N;NDEF;PL
sko skor V;PRS
pisse piss V;IMP
israelitt israelitten N;DEF;SG
bue buene N;DEF;PL
oppmuntre oppmuntre V;IMP
byråkrat byråkraten N;DEF;SG
inndele inndel V;IMP
telefonsentral telefonsentraler N;NDEF;PL
bestyrer bestyreren N;DEF;SG
høyskole høyskolene N;DEF;PL
redigere redigert V.PTCP;PST
grep grepa N;DEF;PL
hjelpe hjulpet V.PTCP;PST
jernbanestasjon jernbanestasjonen N;DEF;SG
kiosk kiosker N;NDEF;PL
valmuefrø valmuefrø N;NDEF;PL
sammenlikne sammenlikne V;IMP
trofé troféet N;DEF;SG
halvsøster halvsøsteren N;DEF;SG
tredemølle tredemøller N;NDEF;PL
representere representerte V;PST
hele helt V.PTCP;PST
disk diskene N;DEF;PL
filleting filletingene N;DEF;PL
naturressurs naturressurser N;NDEF;PL
tresleiv tresleiver N;NDEF;PL
disippel disipler N;NDEF;PL
reparasjon reparasjoner N;NDEF;PL
åtsel åtsla N;DEF;PL
vanskelighet vanskeligheten N;DEF;SG
akseptere aksepter V;IMP
melkesjokolade melkesjokolader N;NDEF;PL
mutter mutre N;NDEF;PL
uren urent ADJ;NEUT;SG
liv livet N;DEF;SG
fiken fikenene N;DEF;PL
understreke understreker V;PRS
argentiner argentinere N;NDEF;PL
bremse bremsende V.PTCP;PRS
nymfoman nymfomant ADJ;NEUT;SG
resultat resultater N;NDEF;PL
mase maser V;PRS
omklassifisere omklassifiserer V;PRS
forelske forelsker V;PRS
sirkel sirkler N;NDEF;PL
psykiater psykiatere N;NDEF;PL
uttrykk uttrykket N;DEF;SG
hammer hamrer N;NDEF;PL
kullsyre kullsyren N;DEF;SG
verden verdenene N;DEF;PL
mudderflate mudderflater N;NDEF;PL
forsakelse forsakelsene N;DEF;PL
speil speila N;DEF;PL
forgiftning forgiftninger N;NDEF;PL
svarteliste svartelista N;DEF;SG
antyde antyder V;PRS
bøye bøyen N;DEF;SG
fordel fordelene N;DEF;PL
trafikkork trafikkorker N;NDEF;PL
nivå nivåa N;DEF;PL
uro uroer N;NDEF;PL
borger borgere N;NDEF;PL
havn havner N;NDEF;PL
timeglass timeglassene N;DEF;PL
magnetfelt magnetfelter N;NDEF;PL
tuvaler tuvalerne N;DEF;PL
rotbløyte rotbløyter N;NDEF;PL
strømpebukse strømpebuksene N;DEF;PL
arkiv arkivet N;DEF;SG
australier australierne N;DEF;PL
åpen åpne ADJ;DEF;SG+PL
strekk strekkene N;DEF;PL
alfabet alfabetet N;DEF;SG
øks øksen N;DEF;SG
påskedag påskedagen N;DEF;SG
balanseror balanseroret N;DEF;SG
hjelpemiddel hjelpemidlene N;DEF;PL
diamant diamantene N;DEF;PL
utdanning utdanninger N;NDEF;PL
saft safta N;DEF;SG
brikke brikker N;NDEF;PL
toalett toalettene N;DEF;PL
vitamin vitamina N;DEF;PL
eple eplet N;DEF;SG
kano kanoene N;DEF;PL
bachelorgrad bachelorgradene N;DEF;PL
luftskip luftskip N;NDEF;PL
halvmåne halvmånen N;DEF;SG
røveri røverier N;NDEF;PL
arkiv arkiv N;NDEF;PL
brunsttid brunsttida N;DEF;SG
gi ga V;PST
stasjon stasjonene N;DEF;PL
vannrør vannrør N;NDEF;PL
hette hetta N;DEF;SG
nordlig nordligere ADJ;CMPR
flate flaten N;DEF;SG
kjøkkenbenk kjøkkenbenker N;NDEF;PL
barrikade barrikadene N;DEF;PL
sjokkere sjokker V;IMP
kjølig kjøligst ADJ;SPRL;NDEF
gjenåpne gjenåpn V;IMP
selvbestemmelse selvbestemmelsen N;DEF;SG
foajé foajéen N;DEF;SG
romtemperatur romtemperaturen N;DEF;SG
pynte pynter V;PRS
beskatte beskatter V;PRS
tute tutet V;PST
snømåke snømåka N;DEF;SG
huseier huseiere N;NDEF;PL
irlender irlenderne N;DEF;PL
anklage anklaga V;PST
million millionen N;DEF;SG
glorifisere glorifiser V;IMP
tema temaer N;NDEF;PL
eksosrør eksosrør N;NDEF;PL
nederlandsk nederlandske ADJ;DEF;SG+PL
helikopter helikopter N;NDEF;PL
sofistikert sofistikerte ADJ;DEF;SG+PL
professor professorer N;NDEF;PL
sadel sadelen N;DEF;SG
forklaring forklaringer N;NDEF;PL
modifisere modifiser V;IMP
ugander ugandere N;NDEF;PL
fett fettet N;DEF;SG
bakke bakker N;NDEF;PL
appelsintre appelsintreet N;DEF;SG
langsom langsomme ADJ;DEF;SG+PL
handel handelen N;DEF;SG
agorafobi agorafobiene N;DEF;PL
smake smakte V;PST
distrikt distriktene N;DEF;PL
oddetall oddetallene N;DEF;PL
forsinke forsinker V;PRS
samarbeid samarbeida N;DEF;PL
lampe lamper N;NDEF;PL
dikkedikk dikkedikk N;NDEF;PL
kronprinsesse kronprinsessa N;DEF;SG
gnage gnaget V.PTCP;PST
løpe løper V;PRS
forene forener V;PRS
parti partier N;NDEF;PL
professor professoren N;DEF;SG
jordskred jordskreda N;DEF;PL
nomadisk nomadisk ADJ;NEUT;SG
jernbane jernbaner N;NDEF;PL
bremsepedal bremsepedalen N;DEF;SG
vendepunkt vendepunkter N;NDEF;PL
terning terninger N;NDEF;PL
ateistisk ateistisk ADJ;NEUT;SG
helse helsa N;DEF;SG
få få V;IMP
gresshoppe gresshoppen N;DEF;SG
søvn søvnen N;DEF;SG
vann vannene N;DEF;PL
livbåt livbåter N;NDEF;PL
føner føneren N;DEF;SG
blomsterpotte blomsterpotter N;NDEF;PL
håndveske håndveskene N;DEF;PL
leire leiren N;DEF;SG
turve tarv V;PRS
krystallklar krystallklare ADJ;DEF;SG+PL
tilskuer tilskuere N;NDEF;PL
rykte ryktene N;DEF;PL
kritisere kritisert V.PTCP;PST
kontur konturen N;DEF;SG
løk løker N;NDEF;PL
syn synet N;DEF;SG
gjennomføre gjennomfører V;PRS
komisk komisk ADJ;NEUT;SG
regjere regjert V.PTCP;PST
blåbær blåbærene N;DEF;PL
oppvask oppvaskene N;DEF;PL
værvarsel værvarslet N;DEF;SG
tru trur V;PRS
sikksakkbevegelse sikksakkbevegelsen N;DEF;SG
nær nærmeste ADJ;SPRL;DEF
slag slaget N;DEF;SG
etterfølger etterfølgeren N;DEF;SG
konvertere konverter V;IMP
hjerte hjertet N;DEF;SG
restaurere restaurerer V;PRS
tallrik tallrike ADJ;DEF;SG+PL
tjeneste tjenestene N;DEF;PL
utsolgt utsolgt ADJ;NEUT;SG
mening meningene N;DEF;PL
smal smalt ADJ;NEUT;SG
boks boksen N;DEF;SG
jamaicaner jamaicaneren N;DEF;SG
budbringer budbringeren N;DEF;SG
medikament medikamentet N;DEF;SG
konsis konsise ADJ;DEF;SG+PL
avfyre avfyr V;IMP
elektron elektronet N;DEF;SG
tilsette tilsettende V.PTCP;PRS
forene forenet V.PTCP;PST
forstyrrelse forstyrrelsene N;DEF;PL
vedlikeholde vedlikehold V;IMP
esel eslene N;DEF;PL
røre rørende V.PTCP;PRS
saks saksen N;DEF;SG
aksjonær aksjonærene N;DEF;PL
flyvåpen flyvåpnene N;DEF;PL
frihet friheta N;DEF;PL
omelett omeletten N;DEF;SG
fyr fyra N;DEF;PL
teskje teskjeer N;NDEF;PL
teori teoriene N;DEF;PL
blek blekest ADJ;SPRL;NDEF
vest vestene N;DEF;PL
kloster klostret N;DEF;SG
spire spiren N;DEF;SG
folkeavstemning folkeavstemninga N;DEF;SG
kunde kunder N;NDEF;PL
prosedyre prosedyren N;DEF;SG
komedie komedien N;DEF;SG
filosofi filosofien N;DEF;SG
galoppbane galoppbaner N;NDEF;PL
addisjon addisjoner N;NDEF;PL
isolasjon isolasjoner N;NDEF;PL
kone konen N;DEF;SG
rød røde ADJ;DEF;SG+PL
hele hela V.PTCP;PST
banke banken N;DEF;SG
kapitél kapitéla N;DEF;PL
forlengelse forlengelsen N;DEF;SG
minimum minimumene N;DEF;PL
utforme utforma V;PST
bayonneskinke bayonneskinker N;NDEF;PL
skrift skriften N;DEF;SG
snøbre snøbreen N;DEF;SG
estetikk estetikker N;NDEF;PL
omdirigere omdirigerer V;PRS
diffus diffus ADJ;FEM
rådhus rådhusa N;DEF;PL
skoleveske skolevesken N;DEF;SG
horoskop horoskop N;NDEF;PL
leite leita V;PST
snabel snabelen N;DEF;SG
swazilender swazilenderne N;DEF;PL
teaterstykke teaterstykkene N;DEF;PL
leirdue leirdua N;DEF;SG
gulv gulvene N;DEF;PL
studium studia N;DEF;PL
perfeksjonere perfeksjonerende V.PTCP;PRS
viskøs viskøst ADJ;NEUT;SG
syre syrene N;DEF;PL
eksponere eksponerer V;PRS
henrettelse henrettelser N;NDEF;PL
spindelvev spindelveven N;DEF;SG
finner finnerne N;DEF;PL
nakke nakker N;NDEF;PL
morse mors V;IMP
industrialisere industrialiserte V;PST
danse dansa V;PST
lønnsomhet lønnsomheter N;NDEF;PL
furu furuene N;DEF;PL
fole folene N;DEF;PL
pels pelser N;NDEF;PL
hoppe hopp V;IMP
færøying færøyingene N;DEF;PL
folkestyre folkestyret N;DEF;SG
frukthage frukthager N;NDEF;PL
saftig saftigste ADJ;SPRL;DEF
maur maur N;NDEF;PL
gammel eldst ADJ;SPRL;NDEF
minister ministerne N;DEF;PL
skibakke skibakkene N;DEF;PL
bananrepublikk bananrepublikken N;DEF;SG
forklaring forklaringa N;DEF;SG
godkjenning godkjenninger N;NDEF;PL
terapeutisk terapeutisk ADJ;NEUT;SG
vie vi V;IMP
lineær lineære ADJ;DEF;SG+PL
tekste tekst V;IMP
tørke tørka N;DEF;SG
rettighet rettigheter N;NDEF;PL
tape tapene N;DEF;PL
sangfugl sangfuglene N;DEF;PL
kresen kresent ADJ;NEUT;SG
bilnøkkel bilnøklene N;DEF;PL
bremse bremsa V;PST
beundre beundra V;PST
jobb jobber N;NDEF;PL
traktat traktaten N;DEF;SG
kjøpmann kjøpmannen N;DEF;SG
frigjøre frigjorde V;PST
tankskip tankskipet N;DEF;SG
begynnelse begynnelsene N;DEF;PL
falk falkene N;DEF;PL
fobi fobien N;DEF;SG
anbefaling anbefalingene N;DEF;PL
hoppe hoppet V;PST
treverk treverkene N;DEF;PL
nedgradere nedgradert V.PTCP;PST
plast plaster N;NDEF;PL
skiskyting skiskytinga N;DEF;SG
steinalder steinalderen N;DEF;SG
desimalkomma desimalkomma N;NDEF;PL
nonne nonnene N;DEF;PL
ingrediens ingrediensen N;DEF;SG
vanntårn vanntårnet N;DEF;SG
krakk krakkene N;DEF;PL
sammenlikne sammenlikner V;PRS
konspirasjonsteori konspirasjonsteorier N;NDEF;PL
vogn vognene N;DEF;PL
klorid kloridene N;DEF;PL
risiko risikoen N;DEF;SG
gjerning gjerningen N;DEF;SG
drepe drept V.PTCP;PST
gangbro gangbroa N;DEF;SG
vinsj vinsjene N;DEF;PL
åverk åverk N;NDEF;PL
nåtid nåtider N;NDEF;PL
kors korset N;DEF;SG
tennisbane tennisbanen N;DEF;SG
kamuflasje kamuflasjen N;DEF;SG
leppestift leppestifter N;NDEF;PL
forstyrrelse forstyrrelser N;NDEF;PL
si si V;IMP
svartemarje svartemarjene N;DEF;PL
klesvask klesvasker N;NDEF;PL
kjennskap kjennskaper N;NDEF;PL
voldsom voldsomme ADJ;DEF;SG+PL
kugalskap kugalskapen N;DEF;SG
måse måsene N;DEF;PL
boksing boksingen N;DEF;SG
hjelpemiddel hjelpemidlet N;DEF;SG
festival festivalene N;DEF;PL
skape skapte V;PST
utvalg utvalgene N;DEF;PL
tannbørste tannbørsten N;DEF;SG
esel eslet N;DEF;SG
stavemåte stavemåtene N;DEF;PL
legemlig legemlige ADJ;DEF;SG+PL
område områda N;DEF;PL
tospråklig tospråklige ADJ;DEF;SG+PL
jente jenter N;NDEF;PL
legeme legema N;DEF;PL
tillatelse tillatelser N;NDEF;PL
lever leverne N;DEF;PL
forretning forretninger N;NDEF;PL
villdyr villdyret N;DEF;SG
svigerfar svigerfedrene N;DEF;PL
hvalp hvalper N;NDEF;PL
håndhilse håndhilste V;PST
minimalisere minimaliserer V;PRS
skulderveske skuldervesken N;DEF;SG
myke myker V;PRS
fartøy fartøyene N;DEF;PL
øyenbryn øyenbryna N;DEF;PL
mester mestrene N;DEF;PL
smile smilt V.PTCP;PST
afrikansk afrikansk ADJ;NEUT
aforisme aforismene N;DEF;PL
sabotasje sabotasjen N;DEF;SG
mentor mentoren N;DEF;SG
båt båtene N;DEF;PL
bokholder bokholderen N;DEF;SG
hete hetet V;PST
nydelig nydelige ADJ;DEF;SG+PL
mølle mølla N;DEF;SG
struts strutser N;NDEF;PL
afrikaner afrikanere N;NDEF;PL
undervassbåt undervassbåtene N;DEF;PL
skotte skotter N;NDEF;PL
fat fat N;NDEF;PL
|
f3d3de477d0164dbebdf10c0be0547767e3b9e5c | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s__elelectronics_instrumentation_and_measurements_U._S._Shah_2195.zip/_elelectronics_instrumentation_and_measurements_U._S._Shah_2195/CH2/EX2.8.4.b/ex_2_8_4_b.sce | 2b7f3b27c3faa20dfff8a0b9336429218ff348bb | [] | 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 | 287 | sce | ex_2_8_4_b.sce | errcatch(-1,"stop");mode(2);//Example 2.8.4.b // resistance
;
;
//given data :
V=100;//in volts
I=5*10^-3;// in A
S=1000;//in ohm/volts
R_app=(V/I)*10^-3;
V1=150;//in volts
Rv=S*V1*10^-3;
Rx=Rv/6.5;//actual resistance in kilo ohms
disp(Rx,"actual resistance in kilo ohms is")
exit();
|
58f4ea580f0407b58298d43960b27c68442da789 | 449d555969bfd7befe906877abab098c6e63a0e8 | /995/CH1/EX1.7/Ex1_7.sce | c53e67983bdb5e635566283fe932152281201c7b | [] | 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 | 126 | sce | Ex1_7.sce | //Exa:1.7
clc;
clear;
close;
fq_khz=1495;//given
fq_Mhz=fq_khz/1000;
printf("%f kHz frequency is %f MHz",fq_khz,fq_Mhz); |
7c55b322b215aef5480e5e438df28ee29dfa207c | 449d555969bfd7befe906877abab098c6e63a0e8 | /462/CH10/EX10.2.a/ex_10_2_a.sce | 2cfd145c6692a2cb1ba4b589209b98792924b069 | [] | 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 | 341 | sce | ex_10_2_a.sce | //example 10.2(a)//
clc
//clears the screen//
clear
//clears already existing variables//
disp('digital input to analog output of 4 bit is as follows')
for(i=0:15)
x=dec2bin(i);
//conversion of decimal to binary//
disp(x)
//binary form of the number//
disp(i);
//decimal form of the number//
i=i+1;
end
//displays the result// |
725264704d15a6293e8ef38868b07b2b83123aed | 449d555969bfd7befe906877abab098c6e63a0e8 | /3701/CH2/EX2.19/Ex2_19.sce | 9efcd67b34bd5f56e13f7896bad72686a38fd8af | [] | 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 | Ex2_19.sce | ////Given
E=1.02 //Mev
b=0.51
//Calculation
//
alpha=E/b
a=1/(sqrt(2*(alpha+2)))
angle=2*(asin(a)*180/3.14)
e=E/(1.0+alpha*(1-(cos(angle*3.14/180.0))))
//Result
printf("\n (a) Angle for symmetric scattering is %0.1f degree",angle)
printf("\n (b) energy of the scattered photon is %0.2f Mev",e)
|
f254e7a2c51e0f25dc05ce18a367e597c2f64c6b | 72d7c10733e74eafb60961874dedea7fa2a43569 | /10.Control_Systems/Bode_plot.sce | 6e3eb88010bf3377edc731099f47de9075d643c1 | [] | no_license | AkshayNachappa/Scilab-Workshop | 8dc448c41a2e768f3d93bbed928705445b9c007b | 056436f38a1f3aad7d1e3669595718839108c40e | refs/heads/master | 2023-01-02T00:20:19.968404 | 2020-10-20T17:04:44 | 2020-10-20T17:04:44 | 297,102,650 | 2 | 2 | null | 2020-10-20T17:04:46 | 2020-09-20T15:12:27 | Scilab | UTF-8 | Scilab | false | false | 582 | sce | Bode_plot.sce |
//Bode plot
clc
close
s=poly(0,'s')
num=input('Enter the Numarator =')
// Case - 1 Enter the Numarator = 20
// Case - 2 Enter the Numarator = (s+1)
// Case - 3 Enter the Numarator = 1
den=input('Enter the Denominator =')
// Case - 1 Enter the Denominator = (s)*(1+s)*(1+0.5*s)
// Case - 2 Enter the Denominator = (s)*(s+2)*(s+5)
// Case - 3 Enter the Denominator =(s)*(s+1)*(s+5)*(s+10)
TF = syslin('c',num,den)//Transfer function
disp(TF,"Transfer Function of system = ")
h=syslin('c',num,den)
clf();
bode(h,0.1,100)
g_margin(h)
show_margins(h)
p_margin(h)
show_margins(h)
|
6025d2b6d789cf9850084ff3f2b609e8be4f70a0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2495/CH2/EX2.7.3/Ex2_7_3.sce | c67cc4bbe3ef02126dc8a81a6a4e79f8c94ac723 | [] | 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 | 471 | sce | Ex2_7_3.sce | clear
clc
m1=0.5126;//in dissolved mass in gm
mM1=128.2;//molar mass of napthalene in gm
m0=50;//mass of solvent in gm
B=(m1/mM1)/(m0/1000);//Molality of solution in mol/kg
printf('B=%.5f mol/kg',B)
delTb=0.402;//change in tempereature of napthalene in K
Kb=delTb/B;
delTbs=0.647//chamge in temp for unknown solution in K
m2=0.6216;//mass of unknown solute
M=(Kb*m2*1000)/(delTbs*m0);//molar mass of unknown solute
printf('\nM=%.2f gm/mol',M)
//page 51
|
093cbf17aaaf89768bf75f6ac682ff40fe2b125e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1022/CH6/EX6.2/6_2.sce | 0645c6928df6049840416fa18cba199890044340 | [] | 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 | 139 | sce | 6_2.sce | clc
//initialisation of variables
T= 149 //F
p= 20
//CALCULATIONS
h= 116.96+(p/100)*1008.7
//RESULTS
printf ('h= %.1f Btu/lbm',h)
|
49842c2b70f32f45fde934879f4bcdfae6d72f36 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH5/EX5.1/Example5_1.sce | ee81f3c36397d75df2287170dc7e766dc4c60c14 | [] | 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 | 505 | sce | Example5_1.sce | //Example 5.1
//Program to calculate the optical loss in decibels at the joint
clear;
clc ;
close ;
//Given data
n1=1.5; //CORE REFRACTIVE INDEX
n=1.0;
//Magnitude of Frensel reflection at the fiber-air interface
r=((n1-n)/(n1+n))^2;
//Optical Loss
Loss_fres=-10*log10(1-r);
//Displaying the Results in Command Window
printf("\n\n\t Optical Loss is %0.2f dB .",Loss_fres);
printf("\n\n\t Total loss due to Frensel Reflection at the fiber joint is %0.2f dB .",Loss_fres*2); |
606ae9960707ae2c72e868696231048418a3907a | 449d555969bfd7befe906877abab098c6e63a0e8 | /61/CH6/EX6.4/ex6_4.sce | 3aa47d64420127cb51305787abc7168dd53b7491 | [] | 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 | 194 | sce | ex6_4.sce | //ex6.4
R_E=560;
f=2*10^3; //minimum value of frequency in hertz
X_C=R_E/10; //minimum value of capacitive reactance
C2=1/(2*%pi*X_C*f);
disp(C2,'value of bypass capacitor in farads') |
a486dced8c9c5d64b4dd0504736a5248b5604cad | ffe30bb7dcdef053e8f540de90cab35f8bcb011f | /questao_3e.sce | 2cdf0e65d8e0f1cfedc9a55b1a5a195196c5cfb6 | [] | no_license | jaimedantas/Signal-Processing-Assignments | fca8861401b6f3412bd7fa46d45797c27de1d421 | 4cf92066551842af94c3e39b4652f2759ebbe3e0 | refs/heads/master | 2020-05-20T12:59:21.319349 | 2017-04-07T20:43:46 | 2017-04-07T20:43:46 | 80,398,198 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,155 | sce | questao_3e.sce | //questao 3 Letra E
//funcao degrau discreta
function [h, nh]=degrau(n0, n1, n2)
nh = [n1:1:n2];
h = [(nh-n0) >= 0];
endfunction
function [y, ny]=convolucao(x, nx, h, nh)//funcao de comvolucao discreta
ny_inicial = nx(1) + nh(1);//soma as primeiras possicoes de x e h
ny_final = nx(length(x)) + nh(length(h));//soma com a ultima possicao de x e h
ny = [ny_inicial:1:ny_final];//define as posicoes do y
y = conv(x,h);//funcao do scilab para convolucao discreta
endfunction
//entrada de dados:
x = [-1,1,1,1,1,1];//entrada do SLIT
nx = [-1:1:4];//posicoes do vetor de entrada
[h_aux, nh] = degrau(0,0,5);//auxiliar
h = h_aux*2;//resposta do SLIT
//y eh x convolucao y
[y, ny] = convolucao(x, nx, h, nh);//saida do SLIT
//grafico
n=[ny(1):1:ny(length(y))];//intervado discreto de y
//variáveis auxiliares para o grafico
x_min = ny(1)-1;
x_max= ny(length(y)) + 1;
y_min = min(y)-1;
y_max = max(y)+1;
plot2d3(n,y, style = -4, rect = [x_min,y_min,x_max,y_max]);//grafico discreto de
y(n) em funcao de n
xtitle("",["n"],["y(n)"], boxed = 0);//titulo dos eixos
xgrid(4);
|
a3e1df1e0760da47b51d8041c6201b199b0a66e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1871/CH3/EX3.5/Ch03Ex5.sce | acfba2691ba2aecc57209aca1bb35e2f729e94fd | [] | 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 | 618 | sce | Ch03Ex5.sce | // Scilab code Ex3.5 : Pg:98 (2008)
clc;clear;
d = 10; // Distance of separation of two lenses, cm
// As 2*f1 = d, solving for f1
f1 = d/2; // Focal length of the first plano-convex lens, cm
f2 = 3*f1; // Focal length of the second plano-convex lens, cm
F = f1*f2/(f1 + f2 - d); // Focal length of the eye-piece, cm
printf("\nThe focal lengths of the plano-convex lenses are %1.0f cm and %2.0f cm", f1, f2);
printf("\nThe focal length of the eye-piece = %3.1f cm", F);
// Result
// The focal lengths of the plano-convex lenses are 5 cm and 15 cm
// The focal length of the eye-piece = 7.5 cm |
d7b2efde47875e1ac747926402ee5bb73e228dfa | a966500a13ec4ac64e1f87e9ff84621527d8abc7 | /projects/02/Negater16.tst | c35dc1d3d4b3692a103028027cb4d91e585f6471 | [] | no_license | hpr1999/NAND2Tetris | 2be8dc090f5c74d8a180fc26c979e4cd79ea5357 | 7597b38e1853c1b568f0dc48082af680e629e181 | refs/heads/master | 2023-06-22T07:21:25.747207 | 2020-09-23T13:28:36 | 2020-09-23T13:28:36 | 284,493,833 | 0 | 0 | null | 2023-06-14T22:31:50 | 2020-08-02T15:58:05 | Hack | UTF-8 | Scilab | false | false | 323 | tst | Negater16.tst | load Negater16.hdl,
output-file Negater16.out,
compare-to Negater16.cmp,
output-list in%B1.16.1 out%B1.16.1;
set in %B0000000000000000, // in = 0
eval,
output;
set in %B1111111111111111, // in = -1
eval,
output;
set in %B0000000000000101, // in = 5
eval,
output;
set in %B1111111111111011, // in = -5
eval,
output;
|
33e14e30e45c7efdd11adf09bf51315217e681ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH9/EX9.10/9_10.sci | 9a7c7cb56646103ffaa0e138e3b0a78d7c32db8b | [] | 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 | 880 | sci | 9_10.sci | //calculates//
s=%s;
printf("1)without controller")
G=64*syslin('c',1/(s*(s+4)));
disp(G,"G(s)=")
H=1;
CL=G/.H;
disp(CL,"C(s)/R(s)=")
//Extracting the denominator of CL
y=denom(CL)
//Extracting the coefficients of the denominator polynomial
z=coeff(y)
//Wn^2=z(1,1) ,comparing the coefficients
Wn=sqrt(z(1,1));
//Wn=natural frequency
disp(Wn,"Wn=")
printf("2) with controller')
syms K;
sys1=syslin('c',1/(s*(s+4)));
sys2=sys1 /.(s*K);
G=64*sys2
disp(G,"G(s)=")
sys=G/.H;
sys=simple(sys);
disp(sys,"C(s)/R(s)=")
[num,den]=numden(sys)
//Coeff of den of symbolic function CL
cof_a_0 = coeffs(den,'s',0)
cof_a_1 = coeffs(den,'s',1)
//Wn^2= cof_a_0,comparing the coefficients
Wn=sqrt(cof_a_0)
Wn=dbl(Wn);
//Wn=natural frequency
disp(Wn,"natural frequency Wn=")
//cof_a_1=2*zeta*Wn
zeta=cof_a_1/(2*Wn)
zeta=0.6;
k=(16*zeta)-4
disp(k,"K=")
|
d7e1844cb45d03d6832d367a188a92ba4a26b3d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH5/EX5.27/ex_5_27.sce | 64bec548aadae8cf6b18e47a87167d70164680f1 | [] | 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 | ex_5_27.sce | clear;
clc;
close;
A=1/2;
dw=.1;
w0=4;
a=1;
w=-10:dw:10;
for i=1:length(w)
if ((w(i)>(-w0-a) & w(i)<(-w0+a)) | (w(i)>(w0-a) & w(i)<(w0+a))) then
Xw(i)=2;
else
Xw(i)=0;
end
end
a=gca();
plot(w,Xw);
poly1=a.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('X(w)','w')
tmax=10;
t=-tmax:0.1:tmax;
x=Xw'*exp(-%i*(t'*w))*dw;
x_mag=(x);
figure
a=gca();
plot2d(t,x_mag);
poly1=a.children.children;
poly1.thickness=3;
poly1.foreground=2;
xtitle('x(t)','t') |
48f1021ad1b04a9be5b8067575a8a61f2c8b0540 | 6afc7fb4c7404da6523ba7b016531b1fc4ea53d6 | /Scilab/prog16.sci | 6219ad0b8470baee526bef546d8794bda5b6005e | [] | no_license | GarageInc/old-university-projects | 8867bb29e0229f56c4996a6e7241648d8db7ec19 | fb50c5273b58898ecde0a351e694929a8fa1ad81 | refs/heads/master | 2021-06-04T21:09:51.305920 | 2016-09-26T15:51:19 | 2016-09-26T15:51:19 | 50,765,728 | 5 | 6 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sci | prog16.sci | function [r] = nummin(A, B)
n = length(A)
mmin = A(1)
for i = 2:n
if A(i) < mmin then
mmin = A(i)
end
end
j = 1
for i = 1:n
if A(i) == mmin then
r(1,j) = i
j = j + 1
end
end
n = length(B)
mmin = B(1)
for i = 2:n
if B(i) < mmin then
mmin = B(i)
end
end
j = 1
for i = 1:n
if B(i) == mmin then
r(2,j) = i
j = j + 1
end
end
endfunction
|
ff1ff69f88441a80ed6ee2bf0f4fc6b4f9fa776c | 449d555969bfd7befe906877abab098c6e63a0e8 | /52/CH4/EX4.9/Example4_9.sce | c6b4f56d87d9f09c5c9edf4bdf004338383441d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 213 | sce | Example4_9.sce | //Example 4.9
//Program to find the 8-point DFT of a Sequence x[n]=1, 0<=n<=7
//using DIT,DIF Algorithm.
clear;
clc ;
close ;
x = [1,1,1,1,1,1,1,1];
//FFT Computation
X = fft (x , -1);
disp(X,'X(z) = '); |
3da3815cf886bf1a5fbfdb2dc791eb2e407d813b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3739/CH4/EX4.4/EX4_4.sce | 5c78aba58c1402ad6d44c4d6febcb22809481034 | [] | 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 | 648 | sce | EX4_4.sce | //Chapter 4, Example 4.4, page 137
clc
//Initialisation
tec=10**17 //total electron content
H=200*10**3 //thickness of F layer
//Calculation
pd=tec/H //plasma density at F
fc=9*sqrt(pd)
ouf=3.6*fc*0.8 //optimum usable frequency
muf=fc*1.788 //maximum usable frequency
//Results
printf("Maximum usable frequency = %.1f MHz",(fc*10**-6))
printf("\nOptimum usable frequency < %.3f MHz",(ouf*10**-6))
printf("\nMaximum usable frequency (30) = %.1f MHz",(muf*10**-6))
|
977a8e7cba2d61e4aa66d781edcb8187049c995d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH13/EX13.4/Ex13_4.sce | 2f9f9c42a1f40b1d126b3c35c92cf33665ec44e6 | [] | 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,144 | sce | Ex13_4.sce | clear;
clc;
disp('Example 13.4');
// aim : To determine
// (a) the power output of the stage
// (b) the specific enthalpy drop in the stage
// (c) the percentage increase in relative velocity in the moving blades due to expansion in the bladse
// given values
N = 50;// speed, [m/s]
d = 1;// blade ring diameter, [m]
nai = 50;// nozzle inlet angle, [degree]
nae = 30;// nozzle exit angle, [degree]
m_dot = 600000;// steam flow rate, [kg/h]
se = .85;// stage efficiency
// solution
// (a)
U = %pi*d*N;// mean blade speed, [m/s]
// from Fig. 13.17(diagram 13.4)
Cwi_plus_Cwe = 444;// change in whirl speed, [m/s]
P = m_dot*U*Cwi_plus_Cwe/3600;// power output of the stage, [W]
mprintf('\n (a) The power output of the stage is = %f MW\n',P*10^-6);
// (b)
h = U*Cwi_plus_Cwe/se;// specific enthalpy,[J/kg]
mprintf('\n (b) The specific enthalpy drop in the stage is = %f kJ/kg\n ',h*10^-3);
// (c)
// again from diagram
Cri = 224;// [m/s]
Cre = 341;// [m/s]
Iir = (Cre-Cri)/Cri;// increase in relative velocity
mprintf('\n (c) The increase in relative velocity is = %f percent\n',Iir*100);
// End
|
3c2a14ead6e1037ab2a38e060926411cdf88a067 | 449d555969bfd7befe906877abab098c6e63a0e8 | /281/CH10/EX10.2/example10_2.sce | 633fb049d3751a8ca3325ec78e3364e5ae112952 | [] | 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 | 635 | sce | example10_2.sce | disp('chapter 10 ex10.2')
disp('given')
disp('design a phase shift oscillator to have output frequency of 3.5kHz')
disp('using 741 op-amp with a supply of +or-12volt')
Vcc=12
f=3500
disp('I1>IBmax')
disp('let I1=50*10^(-6)A')
IBmax=500*10^(-9)
I1=50*10^(-6)
disp('Vo=+or-(Vcc-1)')
Vo=Vcc-1
disp('volts',Vo)
disp('R2=Vo/I1')
R2=Vo/I1
disp('ohms',R2) //standard value
disp('let Av=29')
Av=29
disp('R1=R2/Av')
R1=R2/Av
disp('ohms',R1)
disp('use 6.8kohm to give Av>29')
R1=6800
disp('R=R1=6.8kohm')
R=6800
disp('C=1/(2*%pi*R*f*sqrt(6))')
C=1/(2*%pi*R*f*sqrt(6))
disp('farads',C) //use 2700pF standard value |
a03f33c17c83c6b1919c6cb60bd78d9909f077fb | 449d555969bfd7befe906877abab098c6e63a0e8 | /3871/CH14/EX14.3/Ex14_3.sce | aa9e949309bd070f1d2882a33ba8bb6eb6d6797b | [] | 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 | 685 | sce | Ex14_3.sce | //=====================================================================================
//Chapter 14 example 3
clc;
clear all;
//variable declaration
T = 2500; //transitions per second
t1 = 0.1; //time in s
t2 = 1; //time in s
t3 = 10; //time in s
//calculations
C1 = T*t1; //counter can count or display
C2 = T*t2; //counter can count or display
C3 = T*t3; //counter can count or display
//result
mprintf(" counter can count or display when 0.1 s = %3.2d",C1);
mprintf(" \ncounter can count or display when 1 s = %3.2d",C2);
mprintf(" \ncounter can count or display when 10 s = %3.2d",C3);
|
c7d659e343c0840988995e99840310ace27fd652 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set5/s_Digital_Signal_Processing_R._Babu_52.zip/Digital_Signal_Processing_R._Babu_52/CH5/EX5.9/Example5_9.sce | 21066854aedd9f0324ea71e279a656448b57f145 | [] | 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 | 283 | sce | Example5_9.sce | errcatch(-1,"stop");mode(2);//Example 5.9
//To Design a Chebyshev Filter with Given Specifications
;
;
;
ap=2.5;//db
as=30;//db
op=20;//rad/sec
os=50;//rad/sec
N=acosh(sqrt((10^(0.1*as)-1)/(10^(0.1*ap)-1)))/acosh(os/op);
disp(ceil(N),'Order of the filter, N =');
exit();
|
bd13d96d0d8a78e3782f89e4f7f3a529963ad868 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH3/EX3.2/3_2.sce | 1aadf266b294293d5e8a4e812688d80514a28f3c | [] | 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 | 3_2.sce | clc
//initialisation of variables
Rah= -10 //KN
Fb= 10 //KN
//CALCULATIONS
Nab= -Rah
Nbc= Rah+Fb
//RESULTS
printf ('Nab= %.3f KN (tension)',Nab)
printf (' \n Nbc= %.2f KN',Nbc)
|
39ee9435ee2d749db69866e69827d37a5e345e07 | e46eeada1bd3e461d9e4c2913bb12e406391f603 | /Labdig/functions.sce | 96eba9fae1caa4ee72d5050fa2113221e5f5de85 | [] | no_license | JoseColombini/Poli | fcc73dcf863256055ff0eb5202617ebb3434fcf3 | c913de4597496164646b262fe2a66f1fdebc05b7 | refs/heads/master | 2023-03-11T21:49:04.619768 | 2023-03-04T20:41:46 | 2023-03-04T20:41:46 | 203,501,300 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 317 | sce | functions.sce | function f = fasor(x, i)
f = x*(cosd(i) + %i*sind(i))
endfunction
function [a, b] = polard(x)
[a, c] = polar(x)
b = c*180/%pi
endfunction
function f = parallel(a, b)
f = a*b/(a+b)
endfunction
function [z0, z1] = zscc(scc1, scc3, vl)
z1 = vl^2/(scc3)'
z0 = 3*vl^2/(scc1)' - 2*z1
endfunction
|
56991a18043b706852c2e37c98d0c7f62bae262e | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-HypothesisTesting/FLFDist-TD-01.tst | de5311be6ee9af51a65237804187e3454554b4ed | [] | 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 | 3,165 | tst | FLFDist-TD-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Teradata
--
-- Copyright (c): 2014 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: Hypothesis Testing Functions
--
-- Test Unit Number: FLFDist-TD-01
--
-- Name(s): FLFDist
--
-- Description: FLFDist returns P-Value of F-statistic given degrees of freedom.
-- In other words, this function calculates the probability of
-- obtaining the F-Statistic given the degrees of freedom.
-- Applications:
--
-- Signature: FLFDist(FStat DOUBLE PRECISION, Df1 BIGINT, Df2 BIGINT)
--
-- Parameters: See Documentation
--
-- Return value: Double Precision
--
-- Last Updated: 01-31-2014
--
-- Author: <Joe.Fan@fuzzyl.com>
--
-- BEGIN: TEST SCRIPT
.run file=../PulsarLogOn.sql
-- BEGIN: NEGATIVE TEST(s)
---- Validate the parameters
-- Case 1a:
---- Validate degrees of freedom
SELECT FLFDist(10, 0, 10);
-- Result: Fuzzy Logix specific error message
-- Case 1b:
SELECT FLFDist(10, -1, 10);
-- Result: Fuzzy Logix specific error message
-- Case 1c:
SELECT FLFDist(10, 10, 0);
-- Result: Fuzzy Logix specific error message
-- Case 1d:
SELECT FLFDist(10, 10, -1);
-- Result: Fuzzy Logix specific error message
-- Case 2a:
---- Validate that the first argument is positive
SELECT FLFDist(-1, 5, 10);
-- Result: Fuzzy Logix specific error message
-- Case 3a:
---- Boundary condition
SELECT FLFDist(0, 5, 10);
-- Result: standard outputs (matches R)
-- R: pf(0,5,10, lower.tail=F)
-- Case 4a:
---- Test with very large values
SELECT FLFDist(1, 500, 100);
-- Result: standard outputs (matches R)
-- R: pf(1,500,100, lower.tail=F)
-- Case 4b:
SELECT FLFDist(1, 5000, 1000);
-- Result: standard outputs (matches R)
-- R: pf(1,5000,1000, lower.tail=F)
-- Case 4c:
SELECT FLFDist(1, 50000, 10000);
-- Result: standard outputs (matches R)
-- R: pf(1,50000,10000, lower.tail=F)
-- Case 4d:
SELECT FLFDist(100, 5, 1);
-- Result: standard outputs (matches R)
-- R: pf(100,5,1, lower.tail=F)
-- Case 4e:
SELECT FLFDist(1000, 5, 1);
-- Result: standard outputs (matches R)
-- R: pf(1000,5,1, lower.tail=F)
-- Case 4f:
SELECT FLFDist(10000, 5, 1);
-- Result: standard outputs (matches R)
-- R: pf(10000,5,1, lower.tail=F)
-- END: NEGATIVE TEST(s)
-- BEGIN: POSITIVE TEST(s)
-- Test with normal and extreme scale factor values
---- Compare the values with R
SELECT a.SerialVal,
FLFDist(a.SerialVal, 10, 20)
FROM fzzlSerial a
WHERE a.SerialVal <= 10
ORDER BY 1;
-- Result: standard outputs (matches R)
-- R: pf(c(1,2,3,4,5,6,7,8,9,10),10,20, lower.tail=F)
-- END: POSITIVE TEST(s)
-- END: TEST SCRIPT
|
030e8c03765748108f0e4711648d24f2949f2c81 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/vco/vco2.sce | 85c31993c3677aa0755b729865b755cf80f7036f | [] | 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 | 246 | sce | vco2.sce | //i/p is a row vector
x=[-0.3 -0.2 0 0.2 0.3];
y=vco(x,150,500);
disp(y);
//output
// column 1 to 2
//
// 0.8443279 0.5877853
//
// column 3 to 4
//
// - 0.9510565 0.3681246
//
// column 5
//
// 0.3090170
|
258f8c3a82e334d289d7ddbc8c47f356dc45abe4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3136/CH9/EX9.1/Ex9_1.sce | bf850de1435aecc7c878397c978af1ca54140958 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 3,418 | sce | Ex9_1.sce | clear all; clc;
rm=8/12
N=7500
U=rm*N*%pi/30
printf("The peripheral velocity is calculated as U= %0.1f ft/s\n\n",U)
disp("From equation 9.1 we have U/V1=sinα1/4")
//let x= U/V1
alpha1=70*%pi/180
x=(sin(alpha1))/4
printf("\n Thus U/V1= %0.4f",x)
V1=U/x
printf("\n Thus V1= %0.1f ft/s",V1)
disp("From velocity diagram at station1 we have V1sinα1-W1sinß1=U and V1cosα1=W1cosß1 or W1sinß1")
//let y= W1sinß1
V1=2228.8
U=523.6
y=V1*sin(alpha1)-U
printf("\n Hence W1sinß1= %0.1f ft/s",y)
//Let z=W1cosß1
z=V1*cos(alpha1)
printf("\n Thus W1cosß1= %0.1f ft/s",z)
disp("Hence tanß1=2.06")
tanbeta1=2.06
beta1=(atan(tanbeta1))*180/%pi
printf("\n Thus beta1= %0.1f degrees and W1=1746 ft/s",beta1)
disp("At station 2 we have W2sinß2-V2sinα2=U and V2cosα2=W2cosß2,with W2=W1=1746ft/s and ß1=ß2=64.1 degrees")
//Let l=V2sinα2
l=1746*sin(64.1*%pi/180)-523.6
printf(" Thus V2sinα2=%0.0f ft/s",l)
//m=V2cosα2
m=1746*cos(64.1*%pi/180)
printf("\n V2cosα2 %0.2f ft/s",m)
disp("Hence tanα2=1.373")
tanalpha2=1.373
alpha2=((atan(tanalpha2)*180/%pi))
printf(" Hence α2= %0.2f degrees",alpha2)
disp("Hence V2=1295.2 ft/s")
disp("At station 3 we have V3sinα3-W3sinα3=U=523.6ft/s")
disp("Also W3cosß3=V3cosα3")
//let n=V3cosα3
V3=1295.2
alpha3=53.9*%pi/180
n=V3*cos(alpha3)
printf(" Thus W3cosß3= %0.1f ft/s",n)
disp("Hence tanß3=0.685")
tanbeta3=0.685
beta3=((atan(tanbeta3))*180/%pi)
printf(" Hence ß3= %0.1f degrees",beta3)
disp("Thus W3=925.1 ft/s")
disp("Also W4=W3=925.1ft/s")
disp("ß4=ß3=34.4 degrees")
disp("And V4=VaV1cosß4")
beta4=34.4*%pi/180
//let y=Va*V1
y=925.0848
V4=y*cos(beta4)
printf(" Thus V4= %0.1f ft/s",V4)
disp("α4=0 degrees")
disp("From these velocities,the energy transfers of the rotors can be calculated")
U=523.6
V1=2228.8
alpha1=70*%pi/180
V2=1295.2
alpha2=53.9*%pi/180
delta_E1=U*(V1*sin(alpha1)+V2*sin(alpha2))
printf(" Thus delta_E1= %0.1f ((ft/s)^2)",delta_E1)
delta_E1=1.643*(10^6)/(32.2*778)//converting units from (ft/s)^2 to Btu/lb
printf("\n On converting to Btu/lb we have delta_E1=%0.1f Btu/lb",delta_E1)
V3=1295.2
alpha3=alpha2
delta_E2=U*(V3*sin(alpha3))
printf("\n delta_E2=%0.1f ((ft/s)^2)",delta_E2)
delta_E2=0.546*(10^6)/(32.2*778)
printf("\n On converting to Btu/lb we have delta_E2=%0.1f Btu/lb",delta_E2)
delta_Ec=65.6+21.8
printf("\n Hence the total energy transfer is delta_Ec= %0.1f Btu/lb",delta_Ec)
disp("To compare with that calculated with equation9.3,we have delta_Ec=8*U^2")
delta_Ec=8*(U^2)
printf(" delta_Ec= %0.2f ((ft/s)^2)",delta_Ec)
delta_Ec=2.19*10^6/(32.2*778)//converting units
printf("\n On converting we have delta_Ec= %0.2f Btu/lb",delta_Ec)//answer given in the book is 87.5,however 87.42 is more accurate
disp("The difference is due to round off error.")
disp("The static enthalpies and pressure at stations 1,2,3 and 4 are same for the ideal case and can be calculated from h1=h01-((V1)^2)/2 ")
disp("Where h01=h0i=1405Btu/lb from the Mollier diagram for p0i=3000 psia,T01=950 degrees Farenheit")
//let l=(V1^2)/2
V1=2228.8
l=(V1^2)/(2*32.2*778)
printf(" Thus (V1^2)/2 = %0.0f Btu/lb",l)
disp("Hence we have h1=1306 Btu/lb and p1=1400psia")
|
954f6acfab3ee4ec6fe45d27383388c76252f805 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3311/CH13/EX13.15/Ex13_15.sce | 5e37948e6703c5dcd56a914a8211522e0d5a8c17 | [] | 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,182 | sce | Ex13_15.sce | // chapter 13
// example 13.15
// fig. 13.40
// Plot instantaneous junction temperature
// page-841-842
clear;
clc;
clf;
// given
P2=0, P4=0, P6=0; // in W
P1=1000, P3=1400, P5=700; // in W
t1=1, t3=1, t5=1; // in ms
theta1=0.035, theta3=0.035, theta5=0.035; // in degree C/W
t2=0.5, t4=0.5, t6=0.5; // in ms
theta2=0.025, theta4=0.025, theta6=0.025; // in degree C/W
// calculate
del_TJ1=theta1*P1;
del_TJ1_5=del_TJ1-theta2*P1;
del_TJ2_5=del_TJ1_5+theta3*P3;
del_TJ3=del_TJ2_5-theta4*P3;
del_TJ4=del_TJ3+theta5*P5;
del_TJ4_5=del_TJ4-theta6*P5;
printf("\n\ndel_TJ1=%.f degree C",del_TJ1);
printf("\n\ndel_TJ1_5=%.f degree C",del_TJ1_5);
printf("\n\ndel_TJ2_5=%.f degree C",del_TJ2_5);
printf("\n\ndel_TJ3=%.f degree C",del_TJ3);
printf("\n\ndel_TJ4=%.f degree C",del_TJ4);
printf("\n\ndel_TJ4_5=%.f degree C",del_TJ4_5);
del_TJ=[del_TJ1 del_TJ1_5 del_TJ2_5 del_TJ3 del_TJ4 del_TJ4_5];
plot2d(del_TJ,nax=[1,6,1,7],rect=[0,0,5,60]);
xlabel("t (ms)");
ylabel("del_TJ (degree C)");
title("Junction temperature rise plot");
// Note :There is calculation mistake in the book while calculating del_TJ_3 and hence all other values are also affected. Thats why answers in the book are wrong |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.