package com.pas.abtahibo.parvaz;


import anywheresoftware.b4a.B4AMenuItem;
import android.app.Activity;
import android.os.Bundle;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BALayout;
import anywheresoftware.b4a.B4AActivity;
import anywheresoftware.b4a.ObjectWrapper;
import anywheresoftware.b4a.objects.ActivityWrapper;
import java.lang.reflect.InvocationTargetException;
import anywheresoftware.b4a.B4AUncaughtException;
import anywheresoftware.b4a.debug.*;
import java.lang.ref.WeakReference;

public class support extends Activity implements B4AActivity{
	public static support mostCurrent;
	static boolean afterFirstLayout;
	static boolean isFirst = true;
    private static boolean processGlobalsRun = false;
	BALayout layout;
	public static BA processBA;
	BA activityBA;
    ActivityWrapper _activity;
    java.util.ArrayList<B4AMenuItem> menuItems;
	public static final boolean fullScreen = false;
	public static final boolean includeTitle = true;
    public static WeakReference<Activity> previousOne;
    public static boolean dontPause;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
        mostCurrent = this;
		if (processBA == null) {
			processBA = new BA(this.getApplicationContext(), null, null, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.support");
			processBA.loadHtSubs(this.getClass());
	        float deviceScale = getApplicationContext().getResources().getDisplayMetrics().density;
	        BALayout.setDeviceScale(deviceScale);
            
		}
		else if (previousOne != null) {
			Activity p = previousOne.get();
			if (p != null && p != this) {
                BA.LogInfo("Killing previous instance (support).");
				p.finish();
			}
		}
        processBA.setActivityPaused(true);
        processBA.runHook("oncreate", this, null);
		if (!includeTitle) {
        	this.getWindow().requestFeature(android.view.Window.FEATURE_NO_TITLE);
        }
        if (fullScreen) {
        	getWindow().setFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN,   
        			android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }
		
        processBA.sharedProcessBA.activityBA = null;
		layout = new BALayout(this);
		setContentView(layout);
		afterFirstLayout = false;
        WaitForLayout wl = new WaitForLayout();
        if (anywheresoftware.b4a.objects.ServiceHelper.StarterHelper.startFromActivity(this, processBA, wl, false))
		    BA.handler.postDelayed(wl, 5);

	}
	static class WaitForLayout implements Runnable {
		public void run() {
			if (afterFirstLayout)
				return;
			if (mostCurrent == null)
				return;
            
			if (mostCurrent.layout.getWidth() == 0) {
				BA.handler.postDelayed(this, 5);
				return;
			}
			mostCurrent.layout.getLayoutParams().height = mostCurrent.layout.getHeight();
			mostCurrent.layout.getLayoutParams().width = mostCurrent.layout.getWidth();
			afterFirstLayout = true;
			mostCurrent.afterFirstLayout();
		}
	}
	private void afterFirstLayout() {
        if (this != mostCurrent)
			return;
		activityBA = new BA(this, layout, processBA, "com.pas.abtahibo.parvaz", "com.pas.abtahibo.parvaz.support");
        
        processBA.sharedProcessBA.activityBA = new java.lang.ref.WeakReference<BA>(activityBA);
        anywheresoftware.b4a.objects.ViewWrapper.lastId = 0;
        _activity = new ActivityWrapper(activityBA, "activity");
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (BA.isShellModeRuntimeCheck(processBA)) {
			if (isFirst)
				processBA.raiseEvent2(null, true, "SHELL", false);
			processBA.raiseEvent2(null, true, "CREATE", true, "com.pas.abtahibo.parvaz.support", processBA, activityBA, _activity, anywheresoftware.b4a.keywords.Common.Density, mostCurrent);
			_activity.reinitializeForShell(activityBA, "activity");
		}
        initializeProcessGlobals();		
        initializeGlobals();
        
        BA.LogInfo("** Activity (support) Create " + (isFirst ? "(first time)" : "") + " **");
        processBA.raiseEvent2(null, true, "activity_create", false, isFirst);
		isFirst = false;
		if (this != mostCurrent)
			return;
        processBA.setActivityPaused(false);
        BA.LogInfo("** Activity (support) Resume **");
        processBA.raiseEvent(null, "activity_resume");
        if (android.os.Build.VERSION.SDK_INT >= 11) {
			try {
				android.app.Activity.class.getMethod("invalidateOptionsMenu").invoke(this,(Object[]) null);
			} catch (Exception e) {
				e.printStackTrace();
			}
		}

	}
	public void addMenuItem(B4AMenuItem item) {
		if (menuItems == null)
			menuItems = new java.util.ArrayList<B4AMenuItem>();
		menuItems.add(item);
	}
	@Override
	public boolean onCreateOptionsMenu(android.view.Menu menu) {
		super.onCreateOptionsMenu(menu);
        try {
            if (processBA.subExists("activity_actionbarhomeclick")) {
                Class.forName("android.app.ActionBar").getMethod("setHomeButtonEnabled", boolean.class).invoke(
                    getClass().getMethod("getActionBar").invoke(this), true);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (processBA.runHook("oncreateoptionsmenu", this, new Object[] {menu}))
            return true;
		if (menuItems == null)
			return false;
		for (B4AMenuItem bmi : menuItems) {
			android.view.MenuItem mi = menu.add(bmi.title);
			if (bmi.drawable != null)
				mi.setIcon(bmi.drawable);
            if (android.os.Build.VERSION.SDK_INT >= 11) {
				try {
                    if (bmi.addToBar) {
				        android.view.MenuItem.class.getMethod("setShowAsAction", int.class).invoke(mi, 1);
                    }
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
			mi.setOnMenuItemClickListener(new B4AMenuItemsClickListener(bmi.eventName.toLowerCase(BA.cul)));
		}
        
		return true;
	}   
 @Override
 public boolean onOptionsItemSelected(android.view.MenuItem item) {
    if (item.getItemId() == 16908332) {
        processBA.raiseEvent(null, "activity_actionbarhomeclick");
        return true;
    }
    else
        return super.onOptionsItemSelected(item); 
}
@Override
 public boolean onPrepareOptionsMenu(android.view.Menu menu) {
    super.onPrepareOptionsMenu(menu);
    processBA.runHook("onprepareoptionsmenu", this, new Object[] {menu});
    return true;
    
 }
 protected void onStart() {
    super.onStart();
    processBA.runHook("onstart", this, null);
}
 protected void onStop() {
    super.onStop();
    processBA.runHook("onstop", this, null);
}
    public void onWindowFocusChanged(boolean hasFocus) {
       super.onWindowFocusChanged(hasFocus);
       if (processBA.subExists("activity_windowfocuschanged"))
           processBA.raiseEvent2(null, true, "activity_windowfocuschanged", false, hasFocus);
    }
	private class B4AMenuItemsClickListener implements android.view.MenuItem.OnMenuItemClickListener {
		private final String eventName;
		public B4AMenuItemsClickListener(String eventName) {
			this.eventName = eventName;
		}
		public boolean onMenuItemClick(android.view.MenuItem item) {
			processBA.raiseEventFromUI(item.getTitle(), eventName + "_click");
			return true;
		}
	}
    public static Class<?> getObject() {
		return support.class;
	}
    private Boolean onKeySubExist = null;
    private Boolean onKeyUpSubExist = null;
	@Override
	public boolean onKeyDown(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeydown", this, new Object[] {keyCode, event}))
            return true;
		if (onKeySubExist == null)
			onKeySubExist = processBA.subExists("activity_keypress");
		if (onKeySubExist) {
			if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK &&
					android.os.Build.VERSION.SDK_INT >= 18) {
				HandleKeyDelayed hk = new HandleKeyDelayed();
				hk.kc = keyCode;
				BA.handler.post(hk);
				return true;
			}
			else {
				boolean res = new HandleKeyDelayed().runDirectly(keyCode);
				if (res)
					return true;
			}
		}
		return super.onKeyDown(keyCode, event);
	}
	private class HandleKeyDelayed implements Runnable {
		int kc;
		public void run() {
			runDirectly(kc);
		}
		public boolean runDirectly(int keyCode) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keypress", false, keyCode);
			if (res == null || res == true) {
                return true;
            }
            else if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK) {
				finish();
				return true;
			}
            return false;
		}
		
	}
    @Override
	public boolean onKeyUp(int keyCode, android.view.KeyEvent event) {
        if (processBA.runHook("onkeyup", this, new Object[] {keyCode, event}))
            return true;
		if (onKeyUpSubExist == null)
			onKeyUpSubExist = processBA.subExists("activity_keyup");
		if (onKeyUpSubExist) {
			Boolean res =  (Boolean)processBA.raiseEvent2(_activity, false, "activity_keyup", false, keyCode);
			if (res == null || res == true)
				return true;
		}
		return super.onKeyUp(keyCode, event);
	}
	@Override
	public void onNewIntent(android.content.Intent intent) {
        super.onNewIntent(intent);
		this.setIntent(intent);
        processBA.runHook("onnewintent", this, new Object[] {intent});
	}
    @Override 
	public void onPause() {
		super.onPause();
        if (_activity == null)
            return;
        if (this != mostCurrent)
			return;
		anywheresoftware.b4a.Msgbox.dismiss(true);
        if (!dontPause)
            BA.LogInfo("** Activity (support) Pause, UserClosed = " + activityBA.activity.isFinishing() + " **");
        else
            BA.LogInfo("** Activity (support) Pause event (activity is not paused). **");
        if (mostCurrent != null)
            processBA.raiseEvent2(_activity, true, "activity_pause", false, activityBA.activity.isFinishing());		
        if (!dontPause) {
            processBA.setActivityPaused(true);
            mostCurrent = null;
        }

        if (!activityBA.activity.isFinishing())
			previousOne = new WeakReference<Activity>(this);
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        processBA.runHook("onpause", this, null);
	}

	@Override
	public void onDestroy() {
        super.onDestroy();
		previousOne = null;
        processBA.runHook("ondestroy", this, null);
	}
    @Override 
	public void onResume() {
		super.onResume();
        mostCurrent = this;
        anywheresoftware.b4a.Msgbox.isDismissing = false;
        if (activityBA != null) { //will be null during activity create (which waits for AfterLayout).
        	ResumeMessage rm = new ResumeMessage(mostCurrent);
        	BA.handler.post(rm);
        }
        processBA.runHook("onresume", this, null);
	}
    private static class ResumeMessage implements Runnable {
    	private final WeakReference<Activity> activity;
    	public ResumeMessage(Activity activity) {
    		this.activity = new WeakReference<Activity>(activity);
    	}
		public void run() {
            support mc = mostCurrent;
			if (mc == null || mc != activity.get())
				return;
			processBA.setActivityPaused(false);
            BA.LogInfo("** Activity (support) Resume **");
            if (mc != mostCurrent)
                return;
		    processBA.raiseEvent(mc._activity, "activity_resume", (Object[])null);
		}
    }
	@Override
	protected void onActivityResult(int requestCode, int resultCode,
	      android.content.Intent data) {
		processBA.onActivityResult(requestCode, resultCode, data);
        processBA.runHook("onactivityresult", this, new Object[] {requestCode, resultCode});
	}
	private static void initializeGlobals() {
		processBA.raiseEvent2(null, true, "globals", false, (Object[])null);
	}
    public void onRequestPermissionsResult(int requestCode,
        String permissions[], int[] grantResults) {
        for (int i = 0;i < permissions.length;i++) {
            Object[] o = new Object[] {permissions[i], grantResults[i] == 0};
            processBA.raiseEventFromDifferentThread(null,null, 0, "activity_permissionresult", true, o);
        }
            
    }

public anywheresoftware.b4a.keywords.Common __c = null;
public static int _vvvvvvvvv3 = 0;
public anywheresoftware.b4a.objects.IME _vvvvvvvvvvvvvvvvvv0 = null;
public de.amberhome.objects.appcompat.ACEditTextWrapper _ed_chat = null;
public anywheresoftware.b4a.objects.PanelWrapper _pan_chat = null;
public anywheresoftware.b4a.objects.LabelWrapper _l_send = null;
public anywheresoftware.b4a.objects.LabelWrapper _l_peyvast = null;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = 0;
public aghajari.retrofit.Retrofit _vvvvvvvvvvvvvv4 = null;
public aghajari.retrofit.Amir_RetrofitManager _manager_add = null;
public aghajari.retrofit.Builder _builder_add = null;
public aghajari.retrofit.Amir_Gson _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = null;
public com.aghajari.rv.Amir_RecyclerView _rcver = null;
public anywheresoftware.b4a.objects.collections.List _listtype_c = null;
public anywheresoftware.b4a.objects.collections.List _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = null;
public anywheresoftware.b4a.objects.collections.List _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = null;
public anywheresoftware.b4a.objects.collections.List _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = null;
public anywheresoftware.b4a.objects.collections.List _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = null;
public anywheresoftware.b4a.objects.PanelWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = null;
public de.donmanfred.AVLoadingIndicatorViewWrapper _vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = null;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = 0;
public com.pas.abtahibo.parvaz.classupload _vvvvvvvvvv7 = null;
public com.pas.abtahibo.parvaz.classdownload _vvvvvvvvvv1 = null;
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = "";
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = "";
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = "";
public static String _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = "";
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = 0;
public ariagp.amin.shahedi.progressdialog.AriaProgressDialog _p_aria = null;
public static int _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = 0;
public de.amberhome.objects.appcompat.ACPopupMenuWrapper _vvvvvvvvvvvv7 = null;
public static boolean _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = false;
public static boolean _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = false;
public anywheresoftware.b4a.phone.Phone.ContentChooser _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = null;
public com.pas.abtahibo.parvaz.permitclass _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = null;
public b4a.example.dateutils _vvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.main _vvvvvvvvvvvvvvvv2 = null;
public com.pas.abtahibo.parvaz.actbook _vvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.actapps _vvvvvvvvvvvvvvvv4 = null;
public com.pas.abtahibo.parvaz.actguide _vvvvvvvvvvvvvvvv5 = null;
public com.pas.abtahibo.parvaz.actnotific _vvvvvvvvvvvvvvvv6 = null;
public com.pas.abtahibo.parvaz.func _vvvvvvvvvvvvvvvv7 = null;
public com.pas.abtahibo.parvaz.myservice _vvvvvvvvvvvvvvvv0 = null;
public com.pas.abtahibo.parvaz.playservicebook _vvvvvvvvvvvvvvvvv1 = null;
public com.pas.abtahibo.parvaz.playsrds _vvvvvvvvvvvvvvvvv2 = null;
public com.pas.abtahibo.parvaz.starter _vvvvvvvvvvvvvvvvv3 = null;
public com.pas.abtahibo.parvaz.urls _vvvvvvvvvvvvvvvvv5 = null;
public com.pas.abtahibo.parvaz.xuiviewsutils _vvvvvvvvvvvvvvvvv6 = null;

public static void initializeProcessGlobals() {
             try {
                Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
}
public static String  _activity_create(boolean _firsttime) throws Exception{
anywheresoftware.b4a.objects.drawable.BitmapDrawable _bd = null;
anywheresoftware.b4a.objects.LabelWrapper _label1 = null;
anywheresoftware.b4a.objects.LabelWrapper _labposht = null;
anywheresoftware.b4a.objects.LabelWrapper _lab_back = null;
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
 //BA.debugLineNum = 67;BA.debugLine="Sub Activity_Create(FirstTime As Boolean)";
 //BA.debugLineNum = 69;BA.debugLine="cc.Initialize(\"CC\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7.Initialize("CC");
 //BA.debugLineNum = 70;BA.debugLine="permit.Initialize(Me,Activity)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5._initialize /*String*/ (mostCurrent.activityBA,support.getObject(),(anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(mostCurrent._activity.getObject())));
 //BA.debugLineNum = 72;BA.debugLine="Dim bd As BitmapDrawable";
_bd = new anywheresoftware.b4a.objects.drawable.BitmapDrawable();
 //BA.debugLineNum = 73;BA.debugLine="bd.Initialize(LoadBitmap(File.DirAssets, \"bg_chat";
_bd.Initialize((android.graphics.Bitmap)(anywheresoftware.b4a.keywords.Common.LoadBitmap(anywheresoftware.b4a.keywords.Common.File.getDirAssets(),"bg_chat.jpg").getObject()));
 //BA.debugLineNum = 74;BA.debugLine="bd.Gravity = Gravity.FILL";
_bd.setGravity(anywheresoftware.b4a.keywords.Common.Gravity.FILL);
 //BA.debugLineNum = 75;BA.debugLine="Activity.Background = bd";
mostCurrent._activity.setBackground((android.graphics.drawable.Drawable)(_bd.getObject()));
 //BA.debugLineNum = 77;BA.debugLine="ime.Initialize(\"ime\")";
mostCurrent._vvvvvvvvvvvvvvvvvv0.Initialize("ime");
 //BA.debugLineNum = 79;BA.debugLine="upload.Initialize(Me,\"upload\")";
mostCurrent._vvvvvvvvvv7._initialize /*String*/ (processBA,support.getObject(),"upload");
 //BA.debugLineNum = 80;BA.debugLine="download.Initialize(Me,\"download\",Activity)";
mostCurrent._vvvvvvvvvv1._initialize /*String*/ (mostCurrent.activityBA,support.getObject(),"download",(anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(mostCurrent._activity.getObject())));
 //BA.debugLineNum = 82;BA.debugLine="listType_c.Initialize";
mostCurrent._listtype_c.Initialize();
 //BA.debugLineNum = 83;BA.debugLine="listMatn.Initialize";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Initialize();
 //BA.debugLineNum = 84;BA.debugLine="list2Matn.Initialize";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Initialize();
 //BA.debugLineNum = 85;BA.debugLine="lisDate.Initialize";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1.Initialize();
 //BA.debugLineNum = 86;BA.debugLine="listTf.Initialize";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Initialize();
 //BA.debugLineNum = 89;BA.debugLine="Dim Label1 As Label";
_label1 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 90;BA.debugLine="Dim labPosht As Label";
_labposht = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 91;BA.debugLine="Dim lab_back As Label";
_lab_back = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 93;BA.debugLine="labPosht.Initialize(\"\")";
_labposht.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 94;BA.debugLine="Activity.AddView(labPosht,0,0,100%x,4%y+35dip)";
mostCurrent._activity.AddView((android.view.View)(_labposht.getObject()),(int) (0),(int) (0),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (4),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))));
 //BA.debugLineNum = 95;BA.debugLine="labPosht.Color = 0xFF4C9A7B";
_labposht.setColor(((int)0xff4c9a7b));
 //BA.debugLineNum = 97;BA.debugLine="Label1.Initialize(\"\")";
_label1.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 98;BA.debugLine="Activity.AddView(Label1,8%x+35dip,0,100%x-2*(8%x+";
mostCurrent._activity.AddView((android.view.View)(_label1.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (8),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),(int) (0),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-2*(anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (8),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)))),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (4),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))));
 //BA.debugLineNum = 99;BA.debugLine="Label1.Typeface=Typeface.CreateNew(Typeface.LoadF";
_label1.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_BOLD));
 //BA.debugLineNum = 100;BA.debugLine="Label1.Gravity=Bit.Or(Gravity.CENTER,Gravity.CENT";
_label1.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 101;BA.debugLine="Label1.Padding = Array As Int (0,0,0,4dip)";
_label1.setPadding(new int[]{(int) (0),(int) (0),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (4))});
 //BA.debugLineNum = 102;BA.debugLine="Label1.textColor =  Colors.White";
_label1.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 103;BA.debugLine="Label1.TextSize = 14";
_label1.setTextSize((float) (14));
 //BA.debugLineNum = 104;BA.debugLine="Label1.Text = func.gland(375)";
_label1.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (375))));
 //BA.debugLineNum = 106;BA.debugLine="lab_back.Initialize(\"lab_back\")";
_lab_back.Initialize(mostCurrent.activityBA,"lab_back");
 //BA.debugLineNum = 107;BA.debugLine="Activity.AddView(lab_back,7%x,2%y,35dip,35dip)";
mostCurrent._activity.AddView((android.view.View)(_lab_back.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (7),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (2),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)));
 //BA.debugLineNum = 108;BA.debugLine="lab_back.Typeface = Typeface.MATERIALICONS";
_lab_back.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 109;BA.debugLine="lab_back.Text = Chr(0xE314)";
_lab_back.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe314))));
 //BA.debugLineNum = 110;BA.debugLine="lab_back.TextColor = Colors.White";
_lab_back.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 111;BA.debugLine="lab_back.TextSize = 20";
_lab_back.setTextSize((float) (20));
 //BA.debugLineNum = 112;BA.debugLine="lab_back.Gravity = Bit.Or(Gravity.CENTER,Gravity.";
_lab_back.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 113;BA.debugLine="func.SetRipple(lab_back ,0x337FD3B1,0x884C9A7B,16";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv3 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab_back.getObject())),((int)0x337fd3b1),((int)0x884c9a7b),(float) (16));
 //BA.debugLineNum = 117;BA.debugLine="heightR = Activity.Height-(labPosht.Top+labPosht.";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = (int) (mostCurrent._activity.getHeight()-(_labposht.getTop()+_labposht.getHeight()+anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (1),mostCurrent.activityBA))-anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (1),mostCurrent.activityBA));
 //BA.debugLineNum = 119;BA.debugLine="Dim pan As Panel";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 120;BA.debugLine="pan.Initialize(\"pan\")";
_pan.Initialize(mostCurrent.activityBA,"pan");
 //BA.debugLineNum = 121;BA.debugLine="Activity.AddView(pan,0,labPosht.Top+labPosht.Heig";
mostCurrent._activity.AddView((android.view.View)(_pan.getObject()),(int) (0),(int) (_labposht.getTop()+_labposht.getHeight()+anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (1),mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA),(int) (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (55))));
 //BA.debugLineNum = 123;BA.debugLine="pan.LoadLayout(\"agahi_layout\")";
_pan.LoadLayout("agahi_layout",mostCurrent.activityBA);
 //BA.debugLineNum = 125;BA.debugLine="RCver.Color = Colors.Transparent";
mostCurrent._rcver.setColor(anywheresoftware.b4a.keywords.Common.Colors.Transparent);
 //BA.debugLineNum = 126;BA.debugLine="RCver.Adapter=RCver.DefaultAdapter";
mostCurrent._rcver.setAdapter((androidx.recyclerview.widget.RecyclerView.Adapter)(mostCurrent._rcver.DefaultAdapter().getObject()));
 //BA.debugLineNum = 130;BA.debugLine="p_aria.initialize(\"p_aria\")";
mostCurrent._p_aria.initialize(mostCurrent.activityBA,"p_aria");
 //BA.debugLineNum = 131;BA.debugLine="p_aria.setTitle(func.gland(376))";
mostCurrent._p_aria.setTitle(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (376)));
 //BA.debugLineNum = 132;BA.debugLine="p_aria.STYLE_Horizontal";
mostCurrent._p_aria.STYLE_Horizontal();
 //BA.debugLineNum = 133;BA.debugLine="p_aria.setCanceledOnTouchOutside(False)";
mostCurrent._p_aria.setCanceledOnTouchOutside(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 134;BA.debugLine="p_aria.setCancelable(False)";
mostCurrent._p_aria.setCancelable(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 135;BA.debugLine="p_aria.setMax(100)";
mostCurrent._p_aria.setMax((int) (100));
 //BA.debugLineNum = 136;BA.debugLine="p_aria.setIndeterminate(False)";
mostCurrent._p_aria.setIndeterminate(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 141;BA.debugLine="pan_chat.Initialize(\"\")";
mostCurrent._pan_chat.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 142;BA.debugLine="Activity.AddView(pan_chat,0,100%y-55dip,100%x,55d";
mostCurrent._activity.AddView((android.view.View)(mostCurrent._pan_chat.getObject()),(int) (0),(int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (55))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (55)));
 //BA.debugLineNum = 143;BA.debugLine="pan_chat.Color = Colors.Transparent";
mostCurrent._pan_chat.setColor(anywheresoftware.b4a.keywords.Common.Colors.Transparent);
 //BA.debugLineNum = 146;BA.debugLine="ed_chat.Initialize(\"ed_chat\")";
mostCurrent._ed_chat.Initialize(mostCurrent.activityBA,"ed_chat");
 //BA.debugLineNum = 147;BA.debugLine="pan_chat.AddView(ed_chat,105dip,2.5dip,100%x-110d";
mostCurrent._pan_chat.AddView((android.view.View)(mostCurrent._ed_chat.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (105)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2.5)),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (110))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 //BA.debugLineNum = 148;BA.debugLine="ed_chat.Typeface=Typeface.CreateNew( Typeface.Loa";
mostCurrent._ed_chat.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.CreateNew(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)),anywheresoftware.b4a.keywords.Common.Typeface.STYLE_NORMAL));
 //BA.debugLineNum = 149;BA.debugLine="ed_chat.Gravity=Bit.Or(Gravity.RIGHT,Gravity.CENT";
mostCurrent._ed_chat.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.RIGHT,anywheresoftware.b4a.keywords.Common.Gravity.CENTER));
 //BA.debugLineNum = 150;BA.debugLine="ed_chat.TextSize=14";
mostCurrent._ed_chat.setTextSize((float) (14));
 //BA.debugLineNum = 151;BA.debugLine="ed_chat.Padding=Array As Int(5dip,0,10dip,0)";
mostCurrent._ed_chat.setPadding(new int[]{anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5)),(int) (0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),(int) (0)});
 //BA.debugLineNum = 152;BA.debugLine="ed_chat.Wrap=True";
mostCurrent._ed_chat.setWrap(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 153;BA.debugLine="ed_chat.hint=func.gland(377)";
mostCurrent._ed_chat.setHint(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (377)));
 //BA.debugLineNum = 154;BA.debugLine="ed_chat.HintColor=Colors.DarkGray";
mostCurrent._ed_chat.setHintColor(anywheresoftware.b4a.keywords.Common.Colors.DarkGray);
 //BA.debugLineNum = 155;BA.debugLine="ed_chat.TextColor=Colors.Black";
mostCurrent._ed_chat.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 156;BA.debugLine="func.color_border(ed_chat,Colors.White,10)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._ed_chat.getObject())),anywheresoftware.b4a.keywords.Common.Colors.White,(int) (10));
 //BA.debugLineNum = 158;BA.debugLine="l_Send.Initialize(\"l_Send\")";
mostCurrent._l_send.Initialize(mostCurrent.activityBA,"l_Send");
 //BA.debugLineNum = 159;BA.debugLine="pan_chat.AddView(l_Send,5dip,pan_chat.Height-52.5";
mostCurrent._pan_chat.AddView((android.view.View)(mostCurrent._l_send.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5)),(int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 //BA.debugLineNum = 160;BA.debugLine="l_Send.Typeface = Typeface.MATERIALICONS";
mostCurrent._l_send.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.getMATERIALICONS());
 //BA.debugLineNum = 161;BA.debugLine="l_Send.Text = Chr(0xE163)";
mostCurrent._l_send.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe163))));
 //BA.debugLineNum = 162;BA.debugLine="l_Send.TextColor = Colors.Black";
mostCurrent._l_send.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 163;BA.debugLine="l_Send.TextSize = 23";
mostCurrent._l_send.setTextSize((float) (23));
 //BA.debugLineNum = 164;BA.debugLine="l_Send.Gravity = Bit.Or(Gravity.CENTER,Gravity.CE";
mostCurrent._l_send.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 165;BA.debugLine="func.color_border(l_Send,0xFFFFA500,1000)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._l_send.getObject())),((int)0xffffa500),(int) (1000));
 //BA.debugLineNum = 166;BA.debugLine="func.setRotation(l_Send,180)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv6 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._l_send.getObject())),(float) (180));
 //BA.debugLineNum = 168;BA.debugLine="l_Peyvast.Initialize(\"l_Peyvast\")";
mostCurrent._l_peyvast.Initialize(mostCurrent.activityBA,"l_Peyvast");
 //BA.debugLineNum = 169;BA.debugLine="pan_chat.AddView(l_Peyvast,55dip,pan_chat.Height-";
mostCurrent._pan_chat.AddView((android.view.View)(mostCurrent._l_peyvast.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (55)),(int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 //BA.debugLineNum = 170;BA.debugLine="l_Peyvast.Typeface = Typeface.LoadFromAssets(\"fon";
mostCurrent._l_peyvast.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets("fonticon.otf"));
 //BA.debugLineNum = 171;BA.debugLine="l_Peyvast.Text = Chr(0xf0c6)";
mostCurrent._l_peyvast.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf0c6))));
 //BA.debugLineNum = 172;BA.debugLine="l_Peyvast.TextColor = Colors.Black";
mostCurrent._l_peyvast.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 173;BA.debugLine="l_Peyvast.TextSize = 22";
mostCurrent._l_peyvast.setTextSize((float) (22));
 //BA.debugLineNum = 174;BA.debugLine="l_Peyvast.Gravity = Bit.Or(Gravity.CENTER,Gravity";
mostCurrent._l_peyvast.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 175;BA.debugLine="func.color_border(l_Peyvast,0xFFFFA500,1000)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(mostCurrent._l_peyvast.getObject())),((int)0xffffa500),(int) (1000));
 //BA.debugLineNum = 177;BA.debugLine="popup1.Initialize(\"popup1\",l_Peyvast)";
mostCurrent._vvvvvvvvvvvv7.Initialize(mostCurrent.activityBA,"popup1",(android.view.View)(mostCurrent._l_peyvast.getObject()));
 //BA.debugLineNum = 178;BA.debugLine="popup1.AddMenuItem(1,func.gland(378),Null)";
mostCurrent._vvvvvvvvvvvv7.AddMenuItem((int) (1),BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (378))),(android.graphics.drawable.Drawable)(anywheresoftware.b4a.keywords.Common.Null));
 //BA.debugLineNum = 179;BA.debugLine="popup1.AddMenuItem(2,func.gland(379),Null)";
mostCurrent._vvvvvvvvvvvv7.AddMenuItem((int) (2),BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (379))),(android.graphics.drawable.Drawable)(anywheresoftware.b4a.keywords.Common.Null));
 //BA.debugLineNum = 182;BA.debugLine="panCover.Initialize(\"panCover\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.Initialize(mostCurrent.activityBA,"panCover");
 //BA.debugLineNum = 183;BA.debugLine="pan_chat.AddView(panCover,105dip,2.5dip,100%x-110";
mostCurrent._pan_chat.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getObject()),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (105)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2.5)),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (110))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 //BA.debugLineNum = 184;BA.debugLine="panCover.Color = 0xaaeeeeee";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setColor(((int)0xaaeeeeee));
 //BA.debugLineNum = 187;BA.debugLine="li4.Initialize(0)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.Initialize(processBA,(int) (0));
 //BA.debugLineNum = 188;BA.debugLine="panCover.AddView(li4,(panCover.Width/2)-17.5dip,(";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.AddView((android.view.View)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getObject()),(int) ((mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getWidth()/(double)2)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (17.5))),(int) ((mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getHeight()/(double)2)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (17.5))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)));
 //BA.debugLineNum = 189;BA.debugLine="li4.IndicatorColor=0xFF6A5EF0";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setIndicatorColor(((int)0xff6a5ef0));
 //BA.debugLineNum = 191;BA.debugLine="panCover.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 195;BA.debugLine="ime.AddHeightChangedEvent";
mostCurrent._vvvvvvvvvvvvvvvvvv0.AddHeightChangedEvent(mostCurrent.activityBA);
 //BA.debugLineNum = 199;BA.debugLine="Builder_add.Initialize";
mostCurrent._builder_add.Initialize(processBA);
 //BA.debugLineNum = 200;BA.debugLine="Builder_add.baseUrl(urls.baseUrl).WithManager";
mostCurrent._builder_add.baseUrl(mostCurrent._vvvvvvvvvvvvvvvvv5._vvvvvvvvv5 /*String*/ (mostCurrent.activityBA)).WithManager();
 //BA.debugLineNum = 201;BA.debugLine="Jsons = Builder_add.addGsonConverterFactory";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = mostCurrent._builder_add.addGsonConverterFactory();
 //BA.debugLineNum = 202;BA.debugLine="Builder_add.addHeader(CreateMap(\"Content-Type\":\"a";
mostCurrent._builder_add.addHeader((java.util.Map)(anywheresoftware.b4a.keywords.Common.createMap(new Object[] {(Object)("Content-Type"),(Object)("application/json")}).getObject()));
 //BA.debugLineNum = 203;BA.debugLine="Retrofit.Initialize(Builder_add)";
mostCurrent._vvvvvvvvvvvvvv4.Initialize(processBA,mostCurrent._builder_add);
 //BA.debugLineNum = 204;BA.debugLine="Manager_add = Retrofit.Utils.GetRetrofitManager(R";
mostCurrent._manager_add = mostCurrent._vvvvvvvvvvvvvv4.getUtils().GetRetrofitManager(mostCurrent._vvvvvvvvvvvvvv4);
 //BA.debugLineNum = 207;BA.debugLine="checkUser";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6();
 //BA.debugLineNum = 209;BA.debugLine="End Sub";
return "";
}
public static boolean  _activity_keypress(int _keycode) throws Exception{
 //BA.debugLineNum = 935;BA.debugLine="Sub Activity_KeyPress (KeyCode As Int) As Boolean";
 //BA.debugLineNum = 937;BA.debugLine="If KeyCode = KeyCodes.KEYCODE_BACK Then";
if (_keycode==anywheresoftware.b4a.keywords.Common.KeyCodes.KEYCODE_BACK) { 
 //BA.debugLineNum = 938;BA.debugLine="close";
_vvvvvvvvvvvv1();
 };
 //BA.debugLineNum = 941;BA.debugLine="Return True";
if (true) return anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 943;BA.debugLine="End Sub";
return false;
}
public static String  _activity_pause(boolean _userclosed) throws Exception{
 //BA.debugLineNum = 930;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)";
 //BA.debugLineNum = 932;BA.debugLine="End Sub";
return "";
}
public static String  _activity_resume() throws Exception{
 //BA.debugLineNum = 926;BA.debugLine="Sub Activity_Resume";
 //BA.debugLineNum = 928;BA.debugLine="End Sub";
return "";
}
public static String  _aksgallery_result(String _dir,String _filename,String _mytype) throws Exception{
 //BA.debugLineNum = 619;BA.debugLine="Sub AksGallery_result( Dir As String, FileName As";
 //BA.debugLineNum = 621;BA.debugLine="p_aria.Show";
mostCurrent._p_aria.Show();
 //BA.debugLineNum = 623;BA.debugLine="mainDir  = Dir";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = _dir;
 //BA.debugLineNum = 624;BA.debugLine="mainName = FileName";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = _filename;
 //BA.debugLineNum = 626;BA.debugLine="Log(\"Dir: \"&Dir)";
anywheresoftware.b4a.keywords.Common.LogImpl("355705607","Dir: "+_dir,0);
 //BA.debugLineNum = 627;BA.debugLine="Log(\"FileName: \"&FileName)";
anywheresoftware.b4a.keywords.Common.LogImpl("355705608","FileName: "+_filename,0);
 //BA.debugLineNum = 629;BA.debugLine="If boolViPi Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1) { 
 //BA.debugLineNum = 630;BA.debugLine="picName =  \"video_\"&DateTime.Now&\"_\"&mainID&\".\"&";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = "video_"+BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow())+"_"+BA.NumberToString(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3)+"."+_mytype;
 }else {
 //BA.debugLineNum = 632;BA.debugLine="picName =  \"picture_\"&DateTime.Now&\"_\"&mainID&\".";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = "picture_"+BA.NumberToString(anywheresoftware.b4a.keywords.Common.DateTime.getNow())+"_"+BA.NumberToString(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3)+"."+_mytype;
 };
 //BA.debugLineNum = 635;BA.debugLine="upload.uploadFile(Dir,FileName,myType,picName)";
mostCurrent._vvvvvvvvvv7._vvvvvvvvvvvvvvvvvvvvv5 /*String*/ (_dir,_filename,_mytype,mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2);
 //BA.debugLineNum = 637;BA.debugLine="End Sub";
return "";
}
public static void  _cc_result(boolean _success,String _dir,String _filename) throws Exception{
ResumableSub_CC_Result rsub = new ResumableSub_CC_Result(null,_success,_dir,_filename);
rsub.resume(processBA, null);
}
public static class ResumableSub_CC_Result extends BA.ResumableSub {
public ResumableSub_CC_Result(com.pas.abtahibo.parvaz.support parent,boolean _success,String _dir,String _filename) {
this.parent = parent;
this._success = _success;
this._dir = _dir;
this._filename = _filename;
}
com.pas.abtahibo.parvaz.support parent;
boolean _success;
String _dir;
String _filename;
String _mytype = "";
String[] _mytype1 = null;
String _folder = "";
String _newfilename = "";
anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper _out = null;
anywheresoftware.b4a.objects.streams.File.InputStreamWrapper _input = null;

@Override
public void resume(BA ba, Object[] result) throws Exception{

    while (true) {
        switch (state) {
            case -1:
return;

case 0:
//C
this.state = 1;
 //BA.debugLineNum = 580;BA.debugLine="Log(\"SuccessFile: \"&Success)";
anywheresoftware.b4a.keywords.Common.LogImpl("355640066","SuccessFile: "+BA.ObjectToString(_success),0);
 //BA.debugLineNum = 582;BA.debugLine="If Not(Success) Then";
if (true) break;

case 1:
//if
this.state = 10;
if (anywheresoftware.b4a.keywords.Common.Not(_success)) { 
this.state = 3;
}else {
this.state = 5;
}if (true) break;

case 3:
//C
this.state = 10;
 //BA.debugLineNum = 584;BA.debugLine="func.ToastERROR(func.gland(229))";
parent.mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,parent.mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (229)));
 if (true) break;

case 5:
//C
this.state = 6;
 //BA.debugLineNum = 588;BA.debugLine="If File.Exists(File.DirInternal,\"anvarvahy2\")=Fa";
if (true) break;

case 6:
//if
this.state = 9;
if (anywheresoftware.b4a.keywords.Common.File.Exists(anywheresoftware.b4a.keywords.Common.File.getDirInternal(),"anvarvahy2")==anywheresoftware.b4a.keywords.Common.False) { 
this.state = 8;
}if (true) break;

case 8:
//C
this.state = 9;
 //BA.debugLineNum = 589;BA.debugLine="File.MakeDir(File.DirInternal,\"anvarvahy2\")";
anywheresoftware.b4a.keywords.Common.File.MakeDir(anywheresoftware.b4a.keywords.Common.File.getDirInternal(),"anvarvahy2");
 if (true) break;

case 9:
//C
this.state = 10;
;
 //BA.debugLineNum = 592;BA.debugLine="Dim myType As String = GetFileInfoByIndex(\"mime_";
_mytype = _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4("mime_type",_filename);
 //BA.debugLineNum = 593;BA.debugLine="Dim myType1() As String = Regex.Split(\"/\",myType";
_mytype1 = anywheresoftware.b4a.keywords.Common.Regex.Split("/",_mytype);
 //BA.debugLineNum = 595;BA.debugLine="Log(\"myType: \"&myType)";
anywheresoftware.b4a.keywords.Common.LogImpl("355640081","myType: "+_mytype,0);
 //BA.debugLineNum = 596;BA.debugLine="myType = myType1(1)";
_mytype = _mytype1[(int) (1)];
 //BA.debugLineNum = 597;BA.debugLine="Log(\"myType: \"&myType)";
anywheresoftware.b4a.keywords.Common.LogImpl("355640083","myType: "+_mytype,0);
 //BA.debugLineNum = 599;BA.debugLine="Dim folder As String = File.DirInternal&\"/anvarv";
_folder = anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/anvarvahy2";
 //BA.debugLineNum = 600;BA.debugLine="Dim newFileName As String";
_newfilename = "";
 //BA.debugLineNum = 602;BA.debugLine="newFileName =  \"mmm.\"&myType";
_newfilename = "mmm."+_mytype;
 //BA.debugLineNum = 605;BA.debugLine="Dim out As OutputStream";
_out = new anywheresoftware.b4a.objects.streams.File.OutputStreamWrapper();
 //BA.debugLineNum = 606;BA.debugLine="Dim input As InputStream";
_input = new anywheresoftware.b4a.objects.streams.File.InputStreamWrapper();
 //BA.debugLineNum = 607;BA.debugLine="input = File.OpenInput(Dir,FileName)";
_input = anywheresoftware.b4a.keywords.Common.File.OpenInput(_dir,_filename);
 //BA.debugLineNum = 608;BA.debugLine="out = File.OpenOutput(folder,newFileName,False )";
_out = anywheresoftware.b4a.keywords.Common.File.OpenOutput(_folder,_newfilename,anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 609;BA.debugLine="Wait For (File.Copy2Async(input, out)) Complete";
anywheresoftware.b4a.keywords.Common.WaitFor("complete", processBA, this, anywheresoftware.b4a.keywords.Common.File.Copy2Async(processBA,(java.io.InputStream)(_input.getObject()),(java.io.OutputStream)(_out.getObject())));
this.state = 11;
return;
case 11:
//C
this.state = 10;
_success = (Boolean) result[0];
;
 //BA.debugLineNum = 610;BA.debugLine="out.Close";
_out.Close();
 //BA.debugLineNum = 612;BA.debugLine="AksGallery_result(folder,newFileName,myType)";
_aksgallery_result(_folder,_newfilename,_mytype);
 if (true) break;

case 10:
//C
this.state = -1;
;
 //BA.debugLineNum = 616;BA.debugLine="End Sub";
if (true) break;

            }
        }
    }
}
public static void  _complete(boolean _success) throws Exception{
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6() throws Exception{
anywheresoftware.b4a.objects.collections.Map _params = null;
anywheresoftware.b4a.objects.collections.Map _params1 = null;
 //BA.debugLineNum = 212;BA.debugLine="Sub checkUser";
 //BA.debugLineNum = 214;BA.debugLine="ProgressDialogShow2(func.gland(2),False)";
anywheresoftware.b4a.keywords.Common.ProgressDialogShow2(mostCurrent.activityBA,BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (2))),anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 216;BA.debugLine="Dim params As Map";
_params = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 217;BA.debugLine="Dim params1 As Map";
_params1 = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 218;BA.debugLine="params.Initialize";
_params.Initialize();
 //BA.debugLineNum = 219;BA.debugLine="params1.Initialize";
_params1.Initialize();
 //BA.debugLineNum = 221;BA.debugLine="params.Put(\"user\",func.Android_Id)";
_params.Put((Object)("user"),(Object)(mostCurrent._vvvvvvvvvvvvvvvv7._android_id /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 222;BA.debugLine="params1.Put(\"request_params\",params)";
_params1.Put((Object)("request_params"),(Object)(_params.getObject()));
 //BA.debugLineNum = 224;BA.debugLine="Retrofit.Json(\"skill\",urls.chats,Retrofit.toJson(";
mostCurrent._vvvvvvvvvvvvvv4.Json("skill",mostCurrent._vvvvvvvvvvvvvvvvv5._vvvvvvvvv0 /*String*/ (mostCurrent.activityBA),mostCurrent._vvvvvvvvvvvvvv4.toJson((Object)(_params1.getObject())));
 //BA.debugLineNum = 226;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(int _newheight) throws Exception{
 //BA.debugLineNum = 516;BA.debugLine="Sub chH(NewHeight As Int)";
 //BA.debugLineNum = 517;BA.debugLine="NewHeight1 = NewHeight";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = _newheight;
 //BA.debugLineNum = 518;BA.debugLine="pan_chat.Top=NewHeight-pan_chat.Height";
mostCurrent._pan_chat.setTop((int) (_newheight-mostCurrent._pan_chat.getHeight()));
 //BA.debugLineNum = 519;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvv1() throws Exception{
 //BA.debugLineNum = 916;BA.debugLine="Sub close";
 //BA.debugLineNum = 918;BA.debugLine="Manager_add.CancelAll";
mostCurrent._manager_add.CancelAll(processBA);
 //BA.debugLineNum = 919;BA.debugLine="ime.HideKeyboard";
mostCurrent._vvvvvvvvvvvvvvvvvv0.HideKeyboard(mostCurrent.activityBA);
 //BA.debugLineNum = 921;BA.debugLine="Activity.Finish";
mostCurrent._activity.Finish();
 //BA.debugLineNum = 923;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(String _url1) throws Exception{
anywheresoftware.b4a.phone.Phone.PhoneIntents _int1 = null;
 //BA.debugLineNum = 493;BA.debugLine="Sub csClick (url1 As String)";
 //BA.debugLineNum = 494;BA.debugLine="Dim int1 As PhoneIntents";
_int1 = new anywheresoftware.b4a.phone.Phone.PhoneIntents();
 //BA.debugLineNum = 495;BA.debugLine="StartActivity(int1.OpenBrowser(url1))";
anywheresoftware.b4a.keywords.Common.StartActivity(processBA,(Object)(_int1.OpenBrowser(_url1)));
 //BA.debugLineNum = 496;BA.debugLine="End Sub";
return "";
}
public static String  _download_pakhsh(String _filename) throws Exception{
 //BA.debugLineNum = 498;BA.debugLine="Sub download_pakhsh(filename As String)";
 //BA.debugLineNum = 500;BA.debugLine="If File.Exists(File.DirInternal&\"/abtahi/support";
if (anywheresoftware.b4a.keywords.Common.File.Exists(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_filename)) { 
 //BA.debugLineNum = 501;BA.debugLine="Intent_OpenFile(File.DirInternal&\"/abtahi/suppor";
_intent_openfile(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_filename);
 }else {
 //BA.debugLineNum = 503;BA.debugLine="Log(\"notFound\")";
anywheresoftware.b4a.keywords.Common.LogImpl("355181317","notFound",0);
 };
 //BA.debugLineNum = 505;BA.debugLine="End Sub";
return "";
}
public static String  _ed_chat_textchanged(String _old,String _new) throws Exception{
anywheresoftware.b4a.objects.StringUtils _su = null;
int _inth = 0;
 //BA.debugLineNum = 521;BA.debugLine="Sub ed_chat_TextChanged (Old As String, New As Str";
 //BA.debugLineNum = 523;BA.debugLine="Dim su As StringUtils";
_su = new anywheresoftware.b4a.objects.StringUtils();
 //BA.debugLineNum = 524;BA.debugLine="Dim inth As Int = su.MeasureMultilineTextHeight(e";
_inth = _su.MeasureMultilineTextHeight((android.widget.TextView)(mostCurrent._ed_chat.getObject()),BA.ObjectToCharSequence(_new));
 //BA.debugLineNum = 526;BA.debugLine="If inth<45dip Then";
if (_inth<anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45))) { 
 //BA.debugLineNum = 527;BA.debugLine="pan_chat.Top = 100%y - (45dip + 10dip)";
mostCurrent._pan_chat.setTop((int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)))));
 //BA.debugLineNum = 528;BA.debugLine="ed_chat.Top = 2.5dip";
mostCurrent._ed_chat.setTop(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2.5)));
 //BA.debugLineNum = 529;BA.debugLine="pan_chat.Height = 45dip + 10dip";
mostCurrent._pan_chat.setHeight((int) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 530;BA.debugLine="ed_chat.Height = 45dip";
mostCurrent._ed_chat.setHeight(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 }else {
 //BA.debugLineNum = 533;BA.debugLine="If inth > 150dip Then inth = 150dip";
if (_inth>anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (150))) { 
_inth = anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (150));};
 //BA.debugLineNum = 535;BA.debugLine="pan_chat.Top = 100%y - (inth + 10dip)";
mostCurrent._pan_chat.setTop((int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-(_inth+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)))));
 //BA.debugLineNum = 536;BA.debugLine="ed_chat.Top = 2.5dip";
mostCurrent._ed_chat.setTop(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2.5)));
 //BA.debugLineNum = 537;BA.debugLine="pan_chat.Height = inth + 10dip";
mostCurrent._pan_chat.setHeight((int) (_inth+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 538;BA.debugLine="ed_chat.Height = inth";
mostCurrent._ed_chat.setHeight(_inth);
 };
 //BA.debugLineNum = 542;BA.debugLine="panCover.Top = ed_chat.Top";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTop(mostCurrent._ed_chat.getTop());
 //BA.debugLineNum = 543;BA.debugLine="panCover.Height = ed_chat.Height";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setHeight(mostCurrent._ed_chat.getHeight());
 //BA.debugLineNum = 545;BA.debugLine="l_Peyvast.Top = pan_chat.Height-52.5dip";
mostCurrent._l_peyvast.setTop((int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))));
 //BA.debugLineNum = 546;BA.debugLine="l_Send.Top = pan_chat.Height-52.5dip";
mostCurrent._l_send.setTop((int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))));
 //BA.debugLineNum = 548;BA.debugLine="chH(NewHeight1)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6);
 //BA.debugLineNum = 550;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4(String _column,String _uri) throws Exception{
String _results = "";
anywheresoftware.b4a.sql.SQL.CursorWrapper _cur = null;
anywheresoftware.b4a.objects.ContentResolverWrapper.UriWrapper _uri1 = null;
anywheresoftware.b4a.objects.ContentResolverWrapper _cr = null;
int _i = 0;
String _id = "";
 //BA.debugLineNum = 639;BA.debugLine="Sub GetFileInfoByIndex(column As String, uri As St";
 //BA.debugLineNum = 641;BA.debugLine="Dim results As String";
_results = "";
 //BA.debugLineNum = 642;BA.debugLine="Dim Cur As Cursor";
_cur = new anywheresoftware.b4a.sql.SQL.CursorWrapper();
 //BA.debugLineNum = 643;BA.debugLine="Dim Uri1 As Uri";
_uri1 = new anywheresoftware.b4a.objects.ContentResolverWrapper.UriWrapper();
 //BA.debugLineNum = 644;BA.debugLine="Dim cr As ContentResolver";
_cr = new anywheresoftware.b4a.objects.ContentResolverWrapper();
 //BA.debugLineNum = 645;BA.debugLine="cr.Initialize(\"\")";
_cr.Initialize("");
 //BA.debugLineNum = 648;BA.debugLine="If uri.StartsWith(\"content://media/\") Then";
if (_uri.startsWith("content://media/")) { 
 //BA.debugLineNum = 649;BA.debugLine="Dim i As Int = uri.LastIndexOf(\"/\")";
_i = _uri.lastIndexOf("/");
 //BA.debugLineNum = 650;BA.debugLine="Dim id As String = uri.SubString(i + 1)";
_id = _uri.substring((int) (_i+1));
 //BA.debugLineNum = 651;BA.debugLine="Uri1.Parse(uri)";
_uri1.Parse(_uri);
 //BA.debugLineNum = 652;BA.debugLine="Cur = cr.Query(Uri1, Null, \"_id = ?\", Array As S";
_cur = _cr.Query(_uri1,(String[])(anywheresoftware.b4a.keywords.Common.Null),"_id = ?",new String[]{_id},BA.ObjectToString(anywheresoftware.b4a.keywords.Common.Null));
 //BA.debugLineNum = 653;BA.debugLine="Cur.Position = 0";
_cur.setPosition((int) (0));
 //BA.debugLineNum = 654;BA.debugLine="If Cur.RowCount <> 0 Then";
if (_cur.getRowCount()!=0) { 
 //BA.debugLineNum = 655;BA.debugLine="For i = 0 To Cur.ColumnCount - 1";
{
final int step13 = 1;
final int limit13 = (int) (_cur.getColumnCount()-1);
_i = (int) (0) ;
for (;_i <= limit13 ;_i = _i + step13 ) {
 //BA.debugLineNum = 656;BA.debugLine="If Cur.GetColumnName(i) <> Null Then";
if (_cur.GetColumnName(_i)!= null) { 
 //BA.debugLineNum = 657;BA.debugLine="If Cur.GetColumnName(i) = column Then";
if ((_cur.GetColumnName(_i)).equals(_column)) { 
 //BA.debugLineNum = 658;BA.debugLine="results = Cur.GetString2(i)";
_results = _cur.GetString2(_i);
 //BA.debugLineNum = 659;BA.debugLine="Exit";
if (true) break;
 };
 };
 }
};
 };
 }else {
 //BA.debugLineNum = 665;BA.debugLine="Uri1.Parse(uri)";
_uri1.Parse(_uri);
 //BA.debugLineNum = 666;BA.debugLine="Cur = cr.Query(Uri1, Null, Null, Null, Null)";
_cur = _cr.Query(_uri1,(String[])(anywheresoftware.b4a.keywords.Common.Null),BA.ObjectToString(anywheresoftware.b4a.keywords.Common.Null),(String[])(anywheresoftware.b4a.keywords.Common.Null),BA.ObjectToString(anywheresoftware.b4a.keywords.Common.Null));
 //BA.debugLineNum = 667;BA.debugLine="Cur.Position = 0";
_cur.setPosition((int) (0));
 //BA.debugLineNum = 668;BA.debugLine="If Cur.RowCount <> 0 Then";
if (_cur.getRowCount()!=0) { 
 //BA.debugLineNum = 669;BA.debugLine="For i = 0 To Cur.ColumnCount - 1";
{
final int step27 = 1;
final int limit27 = (int) (_cur.getColumnCount()-1);
_i = (int) (0) ;
for (;_i <= limit27 ;_i = _i + step27 ) {
 //BA.debugLineNum = 670;BA.debugLine="If Cur.GetColumnName(i) <> Null Then";
if (_cur.GetColumnName(_i)!= null) { 
 //BA.debugLineNum = 671;BA.debugLine="If Cur.GetColumnName(i) = column Then";
if ((_cur.GetColumnName(_i)).equals(_column)) { 
 //BA.debugLineNum = 672;BA.debugLine="results = Cur.GetString2(i)";
_results = _cur.GetString2(_i);
 //BA.debugLineNum = 673;BA.debugLine="Exit";
if (true) break;
 };
 };
 }
};
 };
 };
 //BA.debugLineNum = 680;BA.debugLine="Cur.Close";
_cur.Close();
 //BA.debugLineNum = 682;BA.debugLine="Return results";
if (true) return _results;
 //BA.debugLineNum = 684;BA.debugLine="End Sub";
return "";
}
public static String  _globals() throws Exception{
 //BA.debugLineNum = 12;BA.debugLine="Sub Globals";
 //BA.debugLineNum = 14;BA.debugLine="Dim ime As IME";
mostCurrent._vvvvvvvvvvvvvvvvvv0 = new anywheresoftware.b4a.objects.IME();
 //BA.debugLineNum = 16;BA.debugLine="Dim ed_chat As ACEditText";
mostCurrent._ed_chat = new de.amberhome.objects.appcompat.ACEditTextWrapper();
 //BA.debugLineNum = 17;BA.debugLine="Dim pan_chat As Panel";
mostCurrent._pan_chat = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 18;BA.debugLine="Dim l_Send As Label";
mostCurrent._l_send = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 19;BA.debugLine="Dim l_Peyvast As Label";
mostCurrent._l_peyvast = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 21;BA.debugLine="Dim NewHeight1 As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = 0;
 //BA.debugLineNum = 23;BA.debugLine="Private Retrofit As Amir_Retrofit";
mostCurrent._vvvvvvvvvvvvvv4 = new aghajari.retrofit.Retrofit();
 //BA.debugLineNum = 24;BA.debugLine="Private Manager_add   As Amir_RetrofitManager";
mostCurrent._manager_add = new aghajari.retrofit.Amir_RetrofitManager();
 //BA.debugLineNum = 25;BA.debugLine="Private Builder_add   As Amir_RetrofitBuilder";
mostCurrent._builder_add = new aghajari.retrofit.Builder();
 //BA.debugLineNum = 26;BA.debugLine="Private Jsons As Amir_Json'ignore";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = new aghajari.retrofit.Amir_Gson();
 //BA.debugLineNum = 28;BA.debugLine="Private RCver As AX_RecyclerView";
mostCurrent._rcver = new com.aghajari.rv.Amir_RecyclerView();
 //BA.debugLineNum = 30;BA.debugLine="Dim listType_c As List";
mostCurrent._listtype_c = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 31;BA.debugLine="Dim listMatn As List";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6 = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 32;BA.debugLine="Dim list2Matn As List";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 33;BA.debugLine="Dim lisDate  As List";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 34;BA.debugLine="Dim listTf As List";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = new anywheresoftware.b4a.objects.collections.List();
 //BA.debugLineNum = 36;BA.debugLine="Dim panCover As Panel";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 37;BA.debugLine="Private li4 As LoadingIndicatorView";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4 = new de.donmanfred.AVLoadingIndicatorViewWrapper();
 //BA.debugLineNum = 39;BA.debugLine="Dim heightR As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = 0;
 //BA.debugLineNum = 41;BA.debugLine="Dim upload As classUpload";
mostCurrent._vvvvvvvvvv7 = new com.pas.abtahibo.parvaz.classupload();
 //BA.debugLineNum = 42;BA.debugLine="Dim download As classDownload";
mostCurrent._vvvvvvvvvv1 = new com.pas.abtahibo.parvaz.classdownload();
 //BA.debugLineNum = 44;BA.debugLine="Dim picName As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 = "";
 //BA.debugLineNum = 45;BA.debugLine="Dim mainDir  As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = "";
 //BA.debugLineNum = 46;BA.debugLine="Dim mainName As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = "";
 //BA.debugLineNum = 48;BA.debugLine="Dim mainTxt As String";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = "";
 //BA.debugLineNum = 49;BA.debugLine="Dim mainTf As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = 0;
 //BA.debugLineNum = 51;BA.debugLine="Dim p_aria As AriaProgressDialog";
mostCurrent._p_aria = new ariagp.amin.shahedi.progressdialog.AriaProgressDialog();
 //BA.debugLineNum = 53;BA.debugLine="Dim mainID As Int";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = 0;
 //BA.debugLineNum = 55;BA.debugLine="Private popup1 As ACPopupMenu";
mostCurrent._vvvvvvvvvvvv7 = new de.amberhome.objects.appcompat.ACPopupMenuWrapper();
 //BA.debugLineNum = 57;BA.debugLine="Dim mKeyboardIsVisible As Boolean";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = false;
 //BA.debugLineNum = 59;BA.debugLine="Dim boolViPi As Boolean";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = false;
 //BA.debugLineNum = 61;BA.debugLine="Dim cc As ContentChooser 'ignore";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7 = new anywheresoftware.b4a.phone.Phone.ContentChooser();
 //BA.debugLineNum = 63;BA.debugLine="Private permit As permitClass";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5 = new com.pas.abtahibo.parvaz.permitclass();
 //BA.debugLineNum = 65;BA.debugLine="End Sub";
return "";
}
public static String  _ime_heightchanged(int _newheight,int _oldheight) throws Exception{
 //BA.debugLineNum = 507;BA.debugLine="Sub ime_HeightChanged (NewHeight As Int, OldHeigh";
 //BA.debugLineNum = 509;BA.debugLine="mKeyboardIsVisible = (NewHeight < OldHeight)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = (_newheight<_oldheight);
 //BA.debugLineNum = 510;BA.debugLine="CallSubDelayed(Me,\"RefUlv1\")";
anywheresoftware.b4a.keywords.Common.CallSubDelayed(processBA,support.getObject(),"RefUlv1");
 //BA.debugLineNum = 512;BA.debugLine="chH(NewHeight)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5(_newheight);
 //BA.debugLineNum = 514;BA.debugLine="End Sub";
return "";
}
public static String  _intent_openfile(String _dir,String _filename) throws Exception{
String _ext = "";
anywheresoftware.b4a.objects.IntentWrapper _i = null;
anywheresoftware.b4a.phone.Phone _phone = null;
anywheresoftware.b4a.objects.collections.Map _types = null;
anywheresoftware.b4j.object.JavaObject _jo = null;
 //BA.debugLineNum = 711;BA.debugLine="Sub Intent_OpenFile(Dir As String,Filename As Stri";
 //BA.debugLineNum = 713;BA.debugLine="Try";
try { //BA.debugLineNum = 714;BA.debugLine="Dim ext As String";
_ext = "";
 //BA.debugLineNum = 715;BA.debugLine="ext = Filename.SubString(Filename.LastIndexOf(\".";
_ext = _filename.substring((int) (_filename.lastIndexOf(".")+1));
 //BA.debugLineNum = 717;BA.debugLine="Log(ext)";
anywheresoftware.b4a.keywords.Common.LogImpl("355967750",_ext,0);
 //BA.debugLineNum = 719;BA.debugLine="File.copy(Dir, Filename, Starter.Provider.Shared";
anywheresoftware.b4a.keywords.Common.File.Copy(_dir,_filename,mostCurrent._vvvvvvvvvvvvvvvvv3._vvvvvvvv0 /*com.pas.abtahibo.parvaz.fileprovider*/ ._vvvvvvvvvvvvvvvvvvvvvvvv5 /*String*/ ,_filename);
 //BA.debugLineNum = 721;BA.debugLine="Dim i As Intent";
_i = new anywheresoftware.b4a.objects.IntentWrapper();
 //BA.debugLineNum = 723;BA.debugLine="Dim phone As Phone";
_phone = new anywheresoftware.b4a.phone.Phone();
 //BA.debugLineNum = 725;BA.debugLine="If phone.SdkVersion >= 24 Then";
if (_phone.getSdkVersion()>=24) { 
 //BA.debugLineNum = 726;BA.debugLine="i.Initialize(i.ACTION_VIEW, Starter.Provider.Ge";
_i.Initialize(_i.ACTION_VIEW,BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvv3._vvvvvvvv0 /*com.pas.abtahibo.parvaz.fileprovider*/ ._vvvvvvvvvvvvvvvvvvvvvvvv3 /*Object*/ (_filename)));
 //BA.debugLineNum = 727;BA.debugLine="i.Flags = Bit.Or(i.Flags, 1) 'FLAG_GRANT_READ_U";
_i.setFlags(anywheresoftware.b4a.keywords.Common.Bit.Or(_i.getFlags(),(int) (1)));
 }else {
 //BA.debugLineNum = 729;BA.debugLine="i.Initialize(i.ACTION_VIEW, \"file://\" & File.Co";
_i.Initialize(_i.ACTION_VIEW,"file://"+anywheresoftware.b4a.keywords.Common.File.Combine(mostCurrent._vvvvvvvvvvvvvvvvv3._vvvvvvvv0 /*com.pas.abtahibo.parvaz.fileprovider*/ ._vvvvvvvvvvvvvvvvvvvvvvvv5 /*String*/ ,_filename));
 //BA.debugLineNum = 730;BA.debugLine="i.SetType(\"application/vnd.android.package-arch";
_i.SetType("application/vnd.android.package-archive");
 //BA.debugLineNum = 732;BA.debugLine="Dim types As Map";
_types = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 733;BA.debugLine="types.Initialize";
_types.Initialize();
 //BA.debugLineNum = 735;BA.debugLine="types.Put(\"apk\",\"application/vnd.android.packag";
_types.Put((Object)("apk"),(Object)("application/vnd.android.package-archive"));
 //BA.debugLineNum = 736;BA.debugLine="types.Put(\"au\",\"audio/basic\")";
_types.Put((Object)("au"),(Object)("audio/basic"));
 //BA.debugLineNum = 737;BA.debugLine="types.Put(\"avi\",\"video/msvideo, video/avi, vide";
_types.Put((Object)("avi"),(Object)("video/msvideo, video/avi, video/x-msvideo"));
 //BA.debugLineNum = 738;BA.debugLine="types.Put(\"bmp\",\"image/bmp\")";
_types.Put((Object)("bmp"),(Object)("image/bmp"));
 //BA.debugLineNum = 739;BA.debugLine="types.Put(\"bz2\",\"Application/x-bzip2\")";
_types.Put((Object)("bz2"),(Object)("Application/x-bzip2"));
 //BA.debugLineNum = 740;BA.debugLine="types.Put(\"css\",\"text/css\")";
_types.Put((Object)("css"),(Object)("text/css"));
 //BA.debugLineNum = 741;BA.debugLine="types.Put(\"dtd\",\"Application/xml-dtd\")";
_types.Put((Object)("dtd"),(Object)("Application/xml-dtd"));
 //BA.debugLineNum = 742;BA.debugLine="types.Put(\"doc\",\"Application/msword\")";
_types.Put((Object)("doc"),(Object)("Application/msword"));
 //BA.debugLineNum = 743;BA.debugLine="types.Put(\"docx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("docx"),(Object)("Application/vnd.openxmlformats-officedocument.wordprocessingml.document"));
 //BA.debugLineNum = 744;BA.debugLine="types.Put(\"dotx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("dotx"),(Object)("Application/vnd.openxmlformats-officedocument.wordprocessingml.template"));
 //BA.debugLineNum = 745;BA.debugLine="types.Put(\"es\",\"Application/ecmascript\")";
_types.Put((Object)("es"),(Object)("Application/ecmascript"));
 //BA.debugLineNum = 746;BA.debugLine="types.Put(\"exe\",\"Application/octet-stream\")";
_types.Put((Object)("exe"),(Object)("Application/octet-stream"));
 //BA.debugLineNum = 747;BA.debugLine="types.Put(\"gif\",\"image/gif\")";
_types.Put((Object)("gif"),(Object)("image/gif"));
 //BA.debugLineNum = 748;BA.debugLine="types.Put(\"gz\",\"Application/x-gzip\")";
_types.Put((Object)("gz"),(Object)("Application/x-gzip"));
 //BA.debugLineNum = 749;BA.debugLine="types.Put(\"hqx\",\"Application/mac-binhex40\")";
_types.Put((Object)("hqx"),(Object)("Application/mac-binhex40"));
 //BA.debugLineNum = 750;BA.debugLine="types.Put(\"html\",\"text/html\")";
_types.Put((Object)("html"),(Object)("text/html"));
 //BA.debugLineNum = 751;BA.debugLine="types.Put(\"jar\",\"Application/java-archive\")";
_types.Put((Object)("jar"),(Object)("Application/java-archive"));
 //BA.debugLineNum = 752;BA.debugLine="types.Put(\"jpg\",\"image/jpeg\")";
_types.Put((Object)("jpg"),(Object)("image/jpeg"));
 //BA.debugLineNum = 753;BA.debugLine="types.Put(\"js\",\"Application/x-javascript\")";
_types.Put((Object)("js"),(Object)("Application/x-javascript"));
 //BA.debugLineNum = 754;BA.debugLine="types.Put(\"midi\",\"audio/x-midi\")";
_types.Put((Object)("midi"),(Object)("audio/x-midi"));
 //BA.debugLineNum = 755;BA.debugLine="types.Put(\"mp3\",\"audio/mpeg\")";
_types.Put((Object)("mp3"),(Object)("audio/mpeg"));
 //BA.debugLineNum = 756;BA.debugLine="types.Put(\"mpeg\",\"video/mpeg\")";
_types.Put((Object)("mpeg"),(Object)("video/mpeg"));
 //BA.debugLineNum = 757;BA.debugLine="types.Put(\"ogg\",\"audio/vorbis, Application/ogg\"";
_types.Put((Object)("ogg"),(Object)("audio/vorbis, Application/ogg"));
 //BA.debugLineNum = 758;BA.debugLine="types.Put(\"pdf\",\"Application/pdf\")";
_types.Put((Object)("pdf"),(Object)("Application/pdf"));
 //BA.debugLineNum = 759;BA.debugLine="types.Put(\"pl\",\"Application/x-perl\")";
_types.Put((Object)("pl"),(Object)("Application/x-perl"));
 //BA.debugLineNum = 760;BA.debugLine="types.Put(\"png\",\"image/png\")";
_types.Put((Object)("png"),(Object)("image/png"));
 //BA.debugLineNum = 761;BA.debugLine="types.Put(\"potx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("potx"),(Object)("Application/vnd.openxmlformats-officedocument.presentationml.template"));
 //BA.debugLineNum = 762;BA.debugLine="types.Put(\"ppsx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("ppsx"),(Object)("Application/vnd.openxmlformats-officedocument.presentationml.slideshow"));
 //BA.debugLineNum = 763;BA.debugLine="types.Put(\"ppt\",\"Application/vnd.ms-powerpointt";
_types.Put((Object)("ppt"),(Object)("Application/vnd.ms-powerpointtd>"));
 //BA.debugLineNum = 764;BA.debugLine="types.Put(\"pptx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("pptx"),(Object)("Application/vnd.openxmlformats-officedocument.presentationml.presentation"));
 //BA.debugLineNum = 765;BA.debugLine="types.Put(\"psv\",\"Application/postscript\")";
_types.Put((Object)("psv"),(Object)("Application/postscript"));
 //BA.debugLineNum = 766;BA.debugLine="types.Put(\"qt\",\"video/quicktime\")";
_types.Put((Object)("qt"),(Object)("video/quicktime"));
 //BA.debugLineNum = 767;BA.debugLine="types.Put(\"ra\",\"audio/x-pn-realaudio, audio/vnd";
_types.Put((Object)("ra"),(Object)("audio/x-pn-realaudio, audio/vnd.rn-realaudio"));
 //BA.debugLineNum = 768;BA.debugLine="types.Put(\"ram\",\"audio/x-pn-realaudio, audio/vn";
_types.Put((Object)("ram"),(Object)("audio/x-pn-realaudio, audio/vnd.rn-realaudio"));
 //BA.debugLineNum = 769;BA.debugLine="types.Put(\"rdf\",\"Application/rdf, Application/r";
_types.Put((Object)("rdf"),(Object)("Application/rdf, Application/rdf+xml"));
 //BA.debugLineNum = 770;BA.debugLine="types.Put(\"rtf\",\"Application/rtf\")";
_types.Put((Object)("rtf"),(Object)("Application/rtf"));
 //BA.debugLineNum = 771;BA.debugLine="types.Put(\"sgml\",\"text/sgml\")";
_types.Put((Object)("sgml"),(Object)("text/sgml"));
 //BA.debugLineNum = 772;BA.debugLine="types.Put(\"sit\",\"Application/x-stuffit\")";
_types.Put((Object)("sit"),(Object)("Application/x-stuffit"));
 //BA.debugLineNum = 773;BA.debugLine="types.Put(\"sldx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("sldx"),(Object)("Application/vnd.openxmlformats-officedocument.presentationml.slide"));
 //BA.debugLineNum = 774;BA.debugLine="types.Put(\"svg\",\"image/svg+xml\")";
_types.Put((Object)("svg"),(Object)("image/svg+xml"));
 //BA.debugLineNum = 775;BA.debugLine="types.Put(\"swf\",\"Application/x-shockwave-flash\"";
_types.Put((Object)("swf"),(Object)("Application/x-shockwave-flash"));
 //BA.debugLineNum = 776;BA.debugLine="types.Put(\"tar.gz\",\"Application/x-tar\")";
_types.Put((Object)("tar.gz"),(Object)("Application/x-tar"));
 //BA.debugLineNum = 777;BA.debugLine="types.Put(\"tgz\",\"Application/x-tar\")";
_types.Put((Object)("tgz"),(Object)("Application/x-tar"));
 //BA.debugLineNum = 778;BA.debugLine="types.Put(\"tiff\",\"image/tiff\")";
_types.Put((Object)("tiff"),(Object)("image/tiff"));
 //BA.debugLineNum = 779;BA.debugLine="types.Put(\"tsv\",\"text/TAB-separated-values\")";
_types.Put((Object)("tsv"),(Object)("text/TAB-separated-values"));
 //BA.debugLineNum = 780;BA.debugLine="types.Put(\"txt\",\"text/plain\")";
_types.Put((Object)("txt"),(Object)("text/plain"));
 //BA.debugLineNum = 781;BA.debugLine="types.Put(\"wav\",\"audio/wav, audio/x-wav\")";
_types.Put((Object)("wav"),(Object)("audio/wav, audio/x-wav"));
 //BA.debugLineNum = 782;BA.debugLine="types.Put(\"xlam\",\"Application/vnd.ms-excel.addi";
_types.Put((Object)("xlam"),(Object)("Application/vnd.ms-excel.addin.macroEnabled.12"));
 //BA.debugLineNum = 783;BA.debugLine="types.Put(\"xls\",\"Application/vnd.ms-excel\")";
_types.Put((Object)("xls"),(Object)("Application/vnd.ms-excel"));
 //BA.debugLineNum = 784;BA.debugLine="types.Put(\"xlsb\",\"Application/vnd.ms-excel.shee";
_types.Put((Object)("xlsb"),(Object)("Application/vnd.ms-excel.sheet.binary.macroEnabled.12"));
 //BA.debugLineNum = 785;BA.debugLine="types.Put(\"xlsx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("xlsx"),(Object)("Application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"));
 //BA.debugLineNum = 786;BA.debugLine="types.Put(\"xltx\",\"Application/vnd.openxmlformat";
_types.Put((Object)("xltx"),(Object)("Application/vnd.openxmlformats-officedocument.spreadsheetml.template"));
 //BA.debugLineNum = 787;BA.debugLine="types.Put(\"xml\",\"Application/xml\")";
_types.Put((Object)("xml"),(Object)("Application/xml"));
 //BA.debugLineNum = 788;BA.debugLine="types.Put(\"zip\",\"Application/zip, Application/x";
_types.Put((Object)("zip"),(Object)("Application/zip, Application/x-compressed-zip"));
 //BA.debugLineNum = 790;BA.debugLine="If types.ContainsKey(ext) Then";
if (_types.ContainsKey((Object)(_ext))) { 
 //BA.debugLineNum = 791;BA.debugLine="i.SetType(types.Get(ext))";
_i.SetType(BA.ObjectToString(_types.Get((Object)(_ext))));
 }else {
 //BA.debugLineNum = 793;BA.debugLine="i.SetType(\"application/vnd.android.package-arc";
_i.SetType("application/vnd.android.package-archive");
 };
 };
 //BA.debugLineNum = 798;BA.debugLine="Dim jo As JavaObject = I";
_jo = new anywheresoftware.b4j.object.JavaObject();
_jo = (anywheresoftware.b4j.object.JavaObject) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4j.object.JavaObject(), (java.lang.Object)(_i.getObject()));
 //BA.debugLineNum = 799;BA.debugLine="StartActivity(jo.RunMethod(\"createChooser\", Arra";
anywheresoftware.b4a.keywords.Common.StartActivity(processBA,_jo.RunMethod("createChooser",new Object[]{(Object)(_i.getObject()),(Object)("")}));
 } 
       catch (Exception e79) {
			processBA.setLastException(e79); //BA.debugLineNum = 802;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("355967835",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 805;BA.debugLine="End Sub";
return "";
}
public static String  _l_peyvast_click() throws Exception{
 //BA.debugLineNum = 552;BA.debugLine="Sub l_Peyvast_Click";
 //BA.debugLineNum = 553;BA.debugLine="popup1.Show";
mostCurrent._vvvvvvvvvvvv7.Show();
 //BA.debugLineNum = 554;BA.debugLine="End Sub";
return "";
}
public static String  _l_send_click() throws Exception{
 //BA.debugLineNum = 810;BA.debugLine="Sub l_Send_Click";
 //BA.debugLineNum = 812;BA.debugLine="If ed_chat.Text.Trim.Length > 0 Then";
if (mostCurrent._ed_chat.getText().trim().length()>0) { 
 //BA.debugLineNum = 814;BA.debugLine="sendKol(3,ed_chat.Text)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2((int) (3),mostCurrent._ed_chat.getText());
 }else {
 //BA.debugLineNum = 817;BA.debugLine="func.ToastERROR(func.gland(381))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (381)));
 };
 //BA.debugLineNum = 820;BA.debugLine="End Sub";
return "";
}
public static String  _lab_back_click() throws Exception{
 //BA.debugLineNum = 912;BA.debugLine="Sub lab_back_Click";
 //BA.debugLineNum = 913;BA.debugLine="close";
_vvvvvvvvvvvv1();
 //BA.debugLineNum = 914;BA.debugLine="End Sub";
return "";
}
public static String  _pan_click() throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
int _pos = 0;
int _kk = 0;
String _urlss = "";
int _strti = 0;
int _strti2 = 0;
String _ur2lss = "";
 //BA.debugLineNum = 443;BA.debugLine="Sub pan_Click";
 //BA.debugLineNum = 444;BA.debugLine="Dim pan As Panel = Sender";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
_pan = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(anywheresoftware.b4a.keywords.Common.Sender(mostCurrent.activityBA)));
 //BA.debugLineNum = 445;BA.debugLine="Dim pos As Int = pan.Tag";
_pos = (int)(BA.ObjectToNumber(_pan.getTag()));
 //BA.debugLineNum = 447;BA.debugLine="Dim kk As Int = listTf.Get(pos)";
_kk = (int)(BA.ObjectToNumber(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Get(_pos)));
 //BA.debugLineNum = 449;BA.debugLine="If kk = 3 Then";
if (_kk==3) { 
 //BA.debugLineNum = 451;BA.debugLine="Dim urlss As String = listMatn.Get(pos)";
_urlss = BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Get(_pos));
 //BA.debugLineNum = 453;BA.debugLine="If urlss.StartsWith(\"http\") Or urlss.StartsWith(";
if (_urlss.startsWith("http") || _urlss.startsWith("www")) { 
 //BA.debugLineNum = 454;BA.debugLine="csClick(urlss )";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(_urlss);
 }else if(_urlss.contains("Ꞵ")) { 
 //BA.debugLineNum = 457;BA.debugLine="Dim strtI As Int=urlss.IndexOf2(\"Ꞵ\",0)";
_strti = _urlss.indexOf("Ꞵ",(int) (0));
 //BA.debugLineNum = 458;BA.debugLine="Dim strtI2 As Int=urlss.IndexOf2(\"Ꞵ\",strtI+1)";
_strti2 = _urlss.indexOf("Ꞵ",(int) (_strti+1));
 //BA.debugLineNum = 460;BA.debugLine="If strtI <> -1 And strtI2 <> -1 Then";
if (_strti!=-1 && _strti2!=-1) { 
 //BA.debugLineNum = 461;BA.debugLine="csClick(urlss.SubString2(strtI+1,strtI2).Trim)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7(_urlss.substring((int) (_strti+1),_strti2).trim());
 };
 };
 }else {
 //BA.debugLineNum = 467;BA.debugLine="Dim urlss As String = listMatn.Get(pos)";
_urlss = BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Get(_pos));
 //BA.debugLineNum = 468;BA.debugLine="Dim ur2lss As String = list2Matn.Get(pos)";
_ur2lss = BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Get(_pos));
 //BA.debugLineNum = 470;BA.debugLine="If 1 = listType_c.Get(pos) Or  \"1\" = listType_c.";
if (1==(double)(BA.ObjectToNumber(mostCurrent._listtype_c.Get(_pos))) || ("1").equals(BA.ObjectToString(mostCurrent._listtype_c.Get(_pos)))) { 
 //BA.debugLineNum = 472;BA.debugLine="If File.Exists(File.DirInternal&\"/abtahi/suppor";
if (anywheresoftware.b4a.keywords.Common.File.Exists(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_urlss)) { 
 //BA.debugLineNum = 473;BA.debugLine="Intent_OpenFile(File.DirInternal&\"/abtahi/supp";
_intent_openfile(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_urlss);
 }else {
 //BA.debugLineNum = 475;BA.debugLine="Log(\"notFound\")";
anywheresoftware.b4a.keywords.Common.LogImpl("355050272","notFound",0);
 //BA.debugLineNum = 476;BA.debugLine="download.download(ur2lss,urlss)";
mostCurrent._vvvvvvvvvv1._vvvvvvvvvv1 /*String*/ (_ur2lss,_urlss);
 };
 }else {
 //BA.debugLineNum = 481;BA.debugLine="If File.Exists(File.DirInternal&\"/abtahi/suppor";
if (anywheresoftware.b4a.keywords.Common.File.Exists(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_urlss)) { 
 //BA.debugLineNum = 482;BA.debugLine="Intent_OpenFile(File.DirInternal&\"/abtahi/supp";
_intent_openfile(anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",_urlss);
 }else {
 //BA.debugLineNum = 484;BA.debugLine="download.download(ur2lss,urlss)";
mostCurrent._vvvvvvvvvv1._vvvvvvvvvv1 /*String*/ (_ur2lss,_urlss);
 };
 };
 };
 //BA.debugLineNum = 491;BA.debugLine="End Sub";
return "";
}
public static String  _pan_longclick() throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
int _pos = 0;
b4a.util.BClipboard _cops = null;
 //BA.debugLineNum = 431;BA.debugLine="Sub pan_LongClick";
 //BA.debugLineNum = 433;BA.debugLine="Dim pan As Panel = Sender";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
_pan = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(anywheresoftware.b4a.keywords.Common.Sender(mostCurrent.activityBA)));
 //BA.debugLineNum = 434;BA.debugLine="Dim pos As Int = pan.Tag";
_pos = (int)(BA.ObjectToNumber(_pan.getTag()));
 //BA.debugLineNum = 436;BA.debugLine="Dim cops As BClipboard";
_cops = new b4a.util.BClipboard();
 //BA.debugLineNum = 437;BA.debugLine="cops.setText(func.PersianNumbers(listMatn.Get(pos";
_cops.setText(mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvvv5 /*String*/ (mostCurrent.activityBA,BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Get(_pos))).replace("Ꞵ",""));
 //BA.debugLineNum = 439;BA.debugLine="func.ToastERROR(func.gland(88))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (88)));
 //BA.debugLineNum = 441;BA.debugLine="End Sub";
return "";
}
public static String  _pancover_touch(int _action,float _x,float _y) throws Exception{
 //BA.debugLineNum = 807;BA.debugLine="Sub panCover_Touch (Action As Int, X As Float, Y A";
 //BA.debugLineNum = 808;BA.debugLine="End Sub";
return "";
}
public static String  _permit_ref() throws Exception{
 //BA.debugLineNum = 570;BA.debugLine="Sub permit_ref";
 //BA.debugLineNum = 571;BA.debugLine="If boolViPi Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1) { 
 //BA.debugLineNum = 572;BA.debugLine="cc.Show(\"video/*\", \"Choose video\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7.Show(processBA,"video/*","Choose video");
 }else {
 //BA.debugLineNum = 574;BA.debugLine="cc.Show(\"image/*\", \"Choose image\")";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7.Show(processBA,"image/*","Choose image");
 };
 //BA.debugLineNum = 576;BA.debugLine="End Sub";
return "";
}
public static String  _popup1_itemclicked(de.amberhome.objects.appcompat.ACMenuItemWrapper _item) throws Exception{
 //BA.debugLineNum = 556;BA.debugLine="Sub popup1_ItemClicked (Item As ACMenuItem)";
 //BA.debugLineNum = 558;BA.debugLine="If Item.Id = 1 Then";
if (_item.getId()==1) { 
 //BA.debugLineNum = 559;BA.debugLine="boolViPi = False";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = anywheresoftware.b4a.keywords.Common.False;
 //BA.debugLineNum = 560;BA.debugLine="TFsp = 4";
_vvvvvvvvv3 = (int) (4);
 }else {
 //BA.debugLineNum = 562;BA.debugLine="boolViPi = True";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = anywheresoftware.b4a.keywords.Common.True;
 //BA.debugLineNum = 563;BA.debugLine="TFsp = 2";
_vvvvvvvvv3 = (int) (2);
 };
 //BA.debugLineNum = 566;BA.debugLine="permit.PermissionRequest";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv5._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2 /*String*/ ();
 //BA.debugLineNum = 568;BA.debugLine="End Sub";
return "";
}
public static String  _process_globals() throws Exception{
 //BA.debugLineNum = 6;BA.debugLine="Sub Process_Globals";
 //BA.debugLineNum = 8;BA.debugLine="Public TFsp As Int";
_vvvvvvvvv3 = 0;
 //BA.debugLineNum = 10;BA.debugLine="End Sub";
return "";
}
public static String  _ptar_touch(int _action,float _x,float _y) throws Exception{
 //BA.debugLineNum = 304;BA.debugLine="Sub Ptar_Touch (Action As Int, X As Float, Y As F";
 //BA.debugLineNum = 306;BA.debugLine="End Sub";
return "";
}
public static int  _rcver_getitemcount() throws Exception{
 //BA.debugLineNum = 318;BA.debugLine="Sub RCver_GetItemCount As Int";
 //BA.debugLineNum = 320;BA.debugLine="Return listType_c.Size";
if (true) return mostCurrent._listtype_c.getSize();
 //BA.debugLineNum = 322;BA.debugLine="End Sub";
return 0;
}
public static String  _rcver_onbindviewholder(anywheresoftware.b4a.objects.PanelWrapper _parent,int _position) throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
anywheresoftware.b4a.objects.LabelWrapper _lab = null;
anywheresoftware.b4a.objects.LabelWrapper _lab1 = null;
anywheresoftware.b4a.objects.LabelWrapper _lab2 = null;
String _dddl = "";
int _kk = 0;
 //BA.debugLineNum = 345;BA.debugLine="Private Sub RCver_onBindViewHolder (Parent As Pane";
 //BA.debugLineNum = 347;BA.debugLine="Dim pan As Panel = Parent.GetView(0)";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
_pan = (anywheresoftware.b4a.objects.PanelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.PanelWrapper(), (android.view.ViewGroup)(_parent.GetView((int) (0)).getObject()));
 //BA.debugLineNum = 349;BA.debugLine="Dim lab   As Label = pan.GetView(0)";
_lab = new anywheresoftware.b4a.objects.LabelWrapper();
_lab = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_pan.GetView((int) (0)).getObject()));
 //BA.debugLineNum = 350;BA.debugLine="Dim lab1  As Label = pan.GetView(1)";
_lab1 = new anywheresoftware.b4a.objects.LabelWrapper();
_lab1 = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_pan.GetView((int) (1)).getObject()));
 //BA.debugLineNum = 351;BA.debugLine="Dim lab2  As Label = pan.GetView(2)";
_lab2 = new anywheresoftware.b4a.objects.LabelWrapper();
_lab2 = (anywheresoftware.b4a.objects.LabelWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.LabelWrapper(), (android.widget.TextView)(_pan.GetView((int) (2)).getObject()));
 //BA.debugLineNum = 353;BA.debugLine="pan.Tag = Position";
_pan.setTag((Object)(_position));
 //BA.debugLineNum = 355;BA.debugLine="If 1 = listType_c.Get(Position) Or  \"1\" = listTyp";
if (1==(double)(BA.ObjectToNumber(mostCurrent._listtype_c.Get(_position))) || ("1").equals(BA.ObjectToString(mostCurrent._listtype_c.Get(_position)))) { 
 //BA.debugLineNum = 356;BA.debugLine="pan.Left = 35%x";
_pan.setLeft(anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (35),mostCurrent.activityBA));
 //BA.debugLineNum = 357;BA.debugLine="func.SetRipple(pan,0xFF00FFA1,0xFF07C47E,5)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv3 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_pan.getObject())),((int)0xff00ffa1),((int)0xff07c47e),(float) (5));
 }else {
 //BA.debugLineNum = 359;BA.debugLine="pan.Left = 5%x";
_pan.setLeft(anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA));
 //BA.debugLineNum = 360;BA.debugLine="func.SetRipple(pan,Colors.White,0xFFD3D3D3,5)";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvv3 /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_pan.getObject())),anywheresoftware.b4a.keywords.Common.Colors.White,((int)0xffd3d3d3),(float) (5));
 };
 //BA.debugLineNum = 364;BA.debugLine="Dim dddL As String = listMatn.Get(Position)";
_dddl = BA.ObjectToString(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Get(_position));
 //BA.debugLineNum = 367;BA.debugLine="lab.Typeface=Typeface.LoadFromAssets(func.font3)";
_lab.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 368;BA.debugLine="lab.Gravity=Bit.Or(Gravity.CENTER_VERTICAL,Gravit";
_lab.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL,anywheresoftware.b4a.keywords.Common.Gravity.RIGHT));
 //BA.debugLineNum = 369;BA.debugLine="lab.TextSize=14";
_lab.setTextSize((float) (14));
 //BA.debugLineNum = 371;BA.debugLine="If dddL.StartsWith(\"http\") Or dddL.StartsWith(\"ww";
if (_dddl.startsWith("http") || _dddl.startsWith("www")) { 
 //BA.debugLineNum = 372;BA.debugLine="lab.TextColor=Colors.Blue";
_lab.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Blue);
 //BA.debugLineNum = 373;BA.debugLine="lab.Text=dddL";
_lab.setText(BA.ObjectToCharSequence(_dddl));
 }else {
 //BA.debugLineNum = 375;BA.debugLine="lab.TextColor=Colors.Black";
_lab.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.Black);
 //BA.debugLineNum = 376;BA.debugLine="lab.Text = func.setThing3(dddL,\"Ꞵ\")";
_lab.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv5 /*anywheresoftware.b4a.agraham.richstring.RichStringBuilder.RichString*/ (mostCurrent.activityBA,_dddl,"Ꞵ").getObject()));
 };
 //BA.debugLineNum = 379;BA.debugLine="lab.Height = func.heightLabel(lab,lab.Text) + 5di";
_lab.setHeight((int) (mostCurrent._vvvvvvvvvvvvvvvv7._vvv4 /*int*/ (mostCurrent.activityBA,_lab,_lab.getText())+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))));
 //BA.debugLineNum = 381;BA.debugLine="lab1.Top = lab.Top+lab.Height+5dip";
_lab1.setTop((int) (_lab.getTop()+_lab.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))));
 //BA.debugLineNum = 382;BA.debugLine="lab2.Top = lab1.Top";
_lab2.setTop(_lab1.getTop());
 //BA.debugLineNum = 385;BA.debugLine="lab1.Typeface=Typeface.LoadFromAssets(func.font3)";
_lab1.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets(mostCurrent._vvvvvvvvvvvvvvvv7._vv7 /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 386;BA.debugLine="lab1.Gravity=Bit.Or(Gravity.CENTER_VERTICAL,Gravi";
_lab1.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL,anywheresoftware.b4a.keywords.Common.Gravity.LEFT));
 //BA.debugLineNum = 387;BA.debugLine="lab1.Text=lisDate.Get(Position)";
_lab1.setText(BA.ObjectToCharSequence(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1.Get(_position)));
 //BA.debugLineNum = 388;BA.debugLine="lab1.TextSize=12";
_lab1.setTextSize((float) (12));
 //BA.debugLineNum = 389;BA.debugLine="lab1.TextColor=Colors.DarkGray";
_lab1.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.DarkGray);
 //BA.debugLineNum = 391;BA.debugLine="lab2.Typeface = Typeface.LoadFromAssets(\"fonticon";
_lab2.setTypeface(anywheresoftware.b4a.keywords.Common.Typeface.LoadFromAssets("fonticon.otf"));
 //BA.debugLineNum = 392;BA.debugLine="lab2.Gravity = Bit.Or(Gravity.CENTER,Gravity.CENT";
_lab2.setGravity(anywheresoftware.b4a.keywords.Common.Bit.Or(anywheresoftware.b4a.keywords.Common.Gravity.CENTER,anywheresoftware.b4a.keywords.Common.Gravity.CENTER_VERTICAL));
 //BA.debugLineNum = 393;BA.debugLine="lab2.TextSize = 18";
_lab2.setTextSize((float) (18));
 //BA.debugLineNum = 394;BA.debugLine="lab2.TextColor = Colors.White";
_lab2.setTextColor(anywheresoftware.b4a.keywords.Common.Colors.White);
 //BA.debugLineNum = 396;BA.debugLine="Dim kk As Int = listTf.Get(Position)";
_kk = (int)(BA.ObjectToNumber(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Get(_position)));
 //BA.debugLineNum = 398;BA.debugLine="If kk =1 Then";
if (_kk==1) { 
 //BA.debugLineNum = 399;BA.debugLine="lab2.Text = Chr(0xf130)";
_lab2.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf130))));
 //BA.debugLineNum = 400;BA.debugLine="func.color_border(lab2,0xFF18D2A0,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab2.getObject())),((int)0xff18d2a0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 }else if(_kk==2) { 
 //BA.debugLineNum = 402;BA.debugLine="lab2.Text = Chr(0xf03d)";
_lab2.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf03d))));
 //BA.debugLineNum = 403;BA.debugLine="func.color_border(lab2,0xFF35A70C,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab2.getObject())),((int)0xff35a70c),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 }else if(_kk==3) { 
 //BA.debugLineNum = 405;BA.debugLine="lab2.Text = Chr(0xf15c)";
_lab2.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf15c))));
 //BA.debugLineNum = 406;BA.debugLine="func.color_border(lab2,0xFF3AA7DE,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab2.getObject())),((int)0xff3aa7de),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 }else if(_kk==4) { 
 //BA.debugLineNum = 408;BA.debugLine="lab2.Text = Chr(0xf03e)";
_lab2.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xf03e))));
 //BA.debugLineNum = 409;BA.debugLine="func.color_border(lab2,0xFFCC2AA0,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab2.getObject())),((int)0xffcc2aa0),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 }else {
 //BA.debugLineNum = 411;BA.debugLine="lab2.Text = Chr(0xE037)";
_lab2.setText(BA.ObjectToCharSequence(anywheresoftware.b4a.keywords.Common.Chr(((int)0xe037))));
 //BA.debugLineNum = 412;BA.debugLine="func.color_border(lab2,Colors.Red,10dip)";
mostCurrent._vvvvvvvvvvvvvvvv7._color_border /*String*/ (mostCurrent.activityBA,(anywheresoftware.b4a.objects.ConcreteViewWrapper) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.ConcreteViewWrapper(), (android.view.View)(_lab2.getObject())),anywheresoftware.b4a.keywords.Common.Colors.Red,anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)));
 };
 //BA.debugLineNum = 415;BA.debugLine="pan.Height=lab1.Top+lab1.Height+5dip";
_pan.setHeight((int) (_lab1.getTop()+_lab1.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (5))));
 //BA.debugLineNum = 417;BA.debugLine="If Position = listType_c.Size-1 Then";
if (_position==mostCurrent._listtype_c.getSize()-1) { 
 //BA.debugLineNum = 418;BA.debugLine="If mKeyboardIsVisible Then";
if (_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1) { 
 //BA.debugLineNum = 419;BA.debugLine="Parent.Height=pan.Top+pan.Height + 50%y";
_parent.setHeight((int) (_pan.getTop()+_pan.getHeight()+anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (50),mostCurrent.activityBA)));
 }else {
 //BA.debugLineNum = 421;BA.debugLine="Parent.Height=pan.Top+pan.Height";
_parent.setHeight((int) (_pan.getTop()+_pan.getHeight()));
 };
 }else {
 //BA.debugLineNum = 424;BA.debugLine="Parent.Height=pan.Top+pan.Height";
_parent.setHeight((int) (_pan.getTop()+_pan.getHeight()));
 };
 //BA.debugLineNum = 427;BA.debugLine="Parent.Width=100%x";
_parent.setWidth(anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (100),mostCurrent.activityBA));
 //BA.debugLineNum = 429;BA.debugLine="End Sub";
return "";
}
public static String  _rcver_oncreateviewholder(anywheresoftware.b4a.objects.PanelWrapper _parent,int _viewtype) throws Exception{
anywheresoftware.b4a.objects.PanelWrapper _pan = null;
anywheresoftware.b4a.objects.LabelWrapper _lab = null;
anywheresoftware.b4a.objects.LabelWrapper _lab1 = null;
anywheresoftware.b4a.objects.LabelWrapper _lab2 = null;
 //BA.debugLineNum = 325;BA.debugLine="Private Sub RCver_onCreateViewHolder (Parent As Pa";
 //BA.debugLineNum = 327;BA.debugLine="Dim pan As Panel";
_pan = new anywheresoftware.b4a.objects.PanelWrapper();
 //BA.debugLineNum = 328;BA.debugLine="pan.Initialize(\"pan\")";
_pan.Initialize(mostCurrent.activityBA,"pan");
 //BA.debugLineNum = 329;BA.debugLine="Parent.AddView(pan,5%x,10dip,60%x,50dip)";
_parent.AddView((android.view.View)(_pan.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (60),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (50)));
 //BA.debugLineNum = 331;BA.debugLine="Dim lab As Label";
_lab = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 332;BA.debugLine="lab.Initialize(\"\")";
_lab.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 333;BA.debugLine="pan.AddView(lab,5%x,2dip,50%x,35dip)";
_pan.AddView((android.view.View)(_lab.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (5),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2)),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)));
 //BA.debugLineNum = 335;BA.debugLine="Dim lab1 As Label";
_lab1 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 336;BA.debugLine="lab1.Initialize(\"\")";
_lab1.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 337;BA.debugLine="pan.AddView(lab1,4%x+35dip,lab.Top+lab.Height+2di";
_pan.AddView((android.view.View)(_lab1.getObject()),(int) (anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (4),mostCurrent.activityBA)+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35))),(int) (_lab.getTop()+_lab.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (50),mostCurrent.activityBA),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)));
 //BA.debugLineNum = 339;BA.debugLine="Dim lab2 As Label";
_lab2 = new anywheresoftware.b4a.objects.LabelWrapper();
 //BA.debugLineNum = 340;BA.debugLine="lab2.Initialize(\"\")";
_lab2.Initialize(mostCurrent.activityBA,"");
 //BA.debugLineNum = 341;BA.debugLine="pan.AddView(lab2,2%x,lab.Top+lab.Height+2dip,35di";
_pan.AddView((android.view.View)(_lab2.getObject()),anywheresoftware.b4a.keywords.Common.PerXToCurrent((float) (2),mostCurrent.activityBA),(int) (_lab.getTop()+_lab.getHeight()+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2))),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)),anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (35)));
 //BA.debugLineNum = 343;BA.debugLine="End Sub";
return "";
}
public static String  _refulv1() throws Exception{
 //BA.debugLineNum = 309;BA.debugLine="Private Sub RefUlv1";
 //BA.debugLineNum = 311;BA.debugLine="RCver.Adapter2.NotifyDataSetChanged";
mostCurrent._rcver.getAdapter2().NotifyDataSetChanged();
 //BA.debugLineNum = 312;BA.debugLine="RCver.Adapter2.NotifyItemRemoved(0)";
mostCurrent._rcver.getAdapter2().NotifyItemRemoved((int) (0));
 //BA.debugLineNum = 314;BA.debugLine="RCver.ScrollToPosition(listType_c.Size-1)";
mostCurrent._rcver.ScrollToPosition((int) (mostCurrent._listtype_c.getSize()-1));
 //BA.debugLineNum = 316;BA.debugLine="End Sub";
return "";
}
public static String  _vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2(int _tf,String _txt) throws Exception{
anywheresoftware.b4a.objects.collections.Map _params = null;
anywheresoftware.b4a.objects.collections.Map _params1 = null;
anywheresoftware.b4a.phone.Phone _phone = null;
 //BA.debugLineNum = 822;BA.debugLine="Sub sendKol(tf As Int,txt As String)";
 //BA.debugLineNum = 824;BA.debugLine="li4.Top = (panCover.Height/2)-17.5dip";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTop((int) ((mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.getHeight()/(double)2)-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (17.5))));
 //BA.debugLineNum = 825;BA.debugLine="panCover.Visible = True";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setVisible(anywheresoftware.b4a.keywords.Common.True);
 //BA.debugLineNum = 827;BA.debugLine="Dim params As Map";
_params = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 828;BA.debugLine="Dim params1 As Map";
_params1 = new anywheresoftware.b4a.objects.collections.Map();
 //BA.debugLineNum = 829;BA.debugLine="params.Initialize";
_params.Initialize();
 //BA.debugLineNum = 830;BA.debugLine="params1.Initialize";
_params1.Initialize();
 //BA.debugLineNum = 832;BA.debugLine="mainTf = tf";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1 = _tf;
 //BA.debugLineNum = 833;BA.debugLine="mainTxt = txt";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0 = _txt;
 //BA.debugLineNum = 835;BA.debugLine="Dim phone As Phone";
_phone = new anywheresoftware.b4a.phone.Phone();
 //BA.debugLineNum = 837;BA.debugLine="params.Put(\"user\",func.Android_Id)";
_params.Put((Object)("user"),(Object)(mostCurrent._vvvvvvvvvvvvvvvv7._android_id /*String*/ (mostCurrent.activityBA)));
 //BA.debugLineNum = 838;BA.debugLine="params.Put(\"matn\",mainTxt)";
_params.Put((Object)("matn"),(Object)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0));
 //BA.debugLineNum = 839;BA.debugLine="params.Put(\"text_or_file\",mainTf)";
_params.Put((Object)("text_or_file"),(Object)(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1));
 //BA.debugLineNum = 840;BA.debugLine="params.Put(\"info_mobile\",phone.Manufacturer&\";;\"&";
_params.Put((Object)("info_mobile"),(Object)(_phone.getManufacturer()+";;"+_phone.getModel()+";;"+_phone.getProduct()+";;"+BA.NumberToString(_phone.getSdkVersion())));
 //BA.debugLineNum = 841;BA.debugLine="params.Put(\"version_app\",Application.VersionCode&";
_params.Put((Object)("version_app"),(Object)(BA.NumberToString(anywheresoftware.b4a.keywords.Common.Application.getVersionCode())+";;"+anywheresoftware.b4a.keywords.Common.Application.getVersionName()));
 //BA.debugLineNum = 843;BA.debugLine="params1.Put(\"request_params\",params)";
_params1.Put((Object)("request_params"),(Object)(_params.getObject()));
 //BA.debugLineNum = 845;BA.debugLine="Retrofit.Json(\"skill1\",urls.send_chats,Retrofit.t";
mostCurrent._vvvvvvvvvvvvvv4.Json("skill1",mostCurrent._vvvvvvvvvvvvvvvvv5._send_chats /*String*/ (mostCurrent.activityBA),mostCurrent._vvvvvvvvvvvvvv4.toJson((Object)(_params1.getObject())));
 //BA.debugLineNum = 847;BA.debugLine="End Sub";
return "";
}
public static String  _skill_onerror(String _error) throws Exception{
 //BA.debugLineNum = 295;BA.debugLine="Sub skill_onError(Error As String)";
 //BA.debugLineNum = 297;BA.debugLine="ProgressDialogHide";
anywheresoftware.b4a.keywords.Common.ProgressDialogHide();
 //BA.debugLineNum = 299;BA.debugLine="Log(Error)";
anywheresoftware.b4a.keywords.Common.LogImpl("354591492",_error,0);
 //BA.debugLineNum = 300;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 302;BA.debugLine="End Sub";
return "";
}
public static String  _skill_onnext(aghajari.retrofit.Amir_ResponseBody _responsebody) throws Exception{
anywheresoftware.b4a.objects.collections.JSONParser _parser = null;
anywheresoftware.b4a.objects.collections.Map _root = null;
anywheresoftware.b4a.objects.collections.Map _response = null;
int _code = 0;
String[] _components = null;
Object _message = null;
anywheresoftware.b4a.objects.collections.List _kk = null;
anywheresoftware.b4a.objects.collections.Map _colmessage = null;
String _text_or_file = "";
String _date_fa = "";
String _typec = "";
String _matn = "";
int _id = 0;
 //BA.debugLineNum = 228;BA.debugLine="Sub skill_onNext(ResponseBody As Amir_ResponseBody";
 //BA.debugLineNum = 230;BA.debugLine="ProgressDialogHide";
anywheresoftware.b4a.keywords.Common.ProgressDialogHide();
 //BA.debugLineNum = 232;BA.debugLine="Try";
try { //BA.debugLineNum = 234;BA.debugLine="Dim parser As JSONParser";
_parser = new anywheresoftware.b4a.objects.collections.JSONParser();
 //BA.debugLineNum = 235;BA.debugLine="parser.Initialize(ResponseBody.String)";
_parser.Initialize(_responsebody.getString());
 //BA.debugLineNum = 236;BA.debugLine="Dim root As Map = parser.NextObject";
_root = new anywheresoftware.b4a.objects.collections.Map();
_root = _parser.NextObject();
 //BA.debugLineNum = 237;BA.debugLine="Dim response As Map = root.Get(\"response\")";
_response = new anywheresoftware.b4a.objects.collections.Map();
_response = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_root.Get((Object)("response"))));
 //BA.debugLineNum = 238;BA.debugLine="Dim code As Int = response.Get(\"code\")";
_code = (int)(BA.ObjectToNumber(_response.Get((Object)("code"))));
 //BA.debugLineNum = 240;BA.debugLine="If code = 200 Then";
if (_code==200) { 
 //BA.debugLineNum = 242;BA.debugLine="listType_c.Clear";
mostCurrent._listtype_c.Clear();
 //BA.debugLineNum = 243;BA.debugLine="listMatn.Clear";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Clear();
 //BA.debugLineNum = 244;BA.debugLine="list2Matn.Clear";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Clear();
 //BA.debugLineNum = 245;BA.debugLine="lisDate.Clear";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1.Clear();
 //BA.debugLineNum = 246;BA.debugLine="listTf.Clear";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Clear();
 //BA.debugLineNum = 248;BA.debugLine="Dim components() As String";
_components = new String[(int) (0)];
java.util.Arrays.fill(_components,"");
 //BA.debugLineNum = 250;BA.debugLine="Dim message As Object = response.Get(\"message\")";
_message = _response.Get((Object)("message"));
 //BA.debugLineNum = 252;BA.debugLine="If func.IsList(message) Then";
if (mostCurrent._vvvvvvvvvvvvvvvv7._vvv6 /*boolean*/ (mostCurrent.activityBA,_message)) { 
 //BA.debugLineNum = 254;BA.debugLine="Dim kk As List = message";
_kk = new anywheresoftware.b4a.objects.collections.List();
_kk = (anywheresoftware.b4a.objects.collections.List) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.List(), (java.util.List)(_message));
 //BA.debugLineNum = 255;BA.debugLine="For Each colmessage As Map In kk";
_colmessage = new anywheresoftware.b4a.objects.collections.Map();
{
final anywheresoftware.b4a.BA.IterableList group18 = _kk;
final int groupLen18 = group18.getSize()
;int index18 = 0;
;
for (; index18 < groupLen18;index18++){
_colmessage = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(group18.Get(index18)));
 //BA.debugLineNum = 257;BA.debugLine="Dim text_or_file As String = colmessage.Get(\"";
_text_or_file = BA.ObjectToString(_colmessage.Get((Object)("text_or_file")));
 //BA.debugLineNum = 258;BA.debugLine="Dim date_fa As String = colmessage.Get(\"date_";
_date_fa = BA.ObjectToString(_colmessage.Get((Object)("date_fa")));
 //BA.debugLineNum = 259;BA.debugLine="Dim typec As String = colmessage.Get(\"type\")";
_typec = BA.ObjectToString(_colmessage.Get((Object)("type")));
 //BA.debugLineNum = 260;BA.debugLine="Dim matn As String = colmessage.Get(\"matn\")";
_matn = BA.ObjectToString(_colmessage.Get((Object)("matn")));
 //BA.debugLineNum = 261;BA.debugLine="Dim id As Int = colmessage.Get(\"id\")";
_id = (int)(BA.ObjectToNumber(_colmessage.Get((Object)("id"))));
 //BA.debugLineNum = 263;BA.debugLine="list2Matn.Add(matn)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Add((Object)(_matn));
 //BA.debugLineNum = 265;BA.debugLine="If text_or_file<>3 Then";
if ((_text_or_file).equals(BA.NumberToString(3)) == false) { 
 //BA.debugLineNum = 266;BA.debugLine="components = Regex.Split(\"/\", matn)";
_components = anywheresoftware.b4a.keywords.Common.Regex.Split("/",_matn);
 //BA.debugLineNum = 267;BA.debugLine="matn = components(components.Length-1)";
_matn = _components[(int) (_components.length-1)];
 };
 //BA.debugLineNum = 270;BA.debugLine="listTf.Add(text_or_file)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Add((Object)(_text_or_file));
 //BA.debugLineNum = 271;BA.debugLine="lisDate.Add(date_fa)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1.Add((Object)(_date_fa));
 //BA.debugLineNum = 272;BA.debugLine="listType_c.Add(typec)";
mostCurrent._listtype_c.Add((Object)(_typec));
 //BA.debugLineNum = 273;BA.debugLine="listMatn.Add(matn)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Add((Object)(_matn));
 //BA.debugLineNum = 275;BA.debugLine="mainID = id";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv3 = _id;
 }
};
 };
 //BA.debugLineNum = 282;BA.debugLine="CallSubDelayed(Me,\"RefUlv1\")";
anywheresoftware.b4a.keywords.Common.CallSubDelayed(processBA,support.getObject(),"RefUlv1");
 }else {
 //BA.debugLineNum = 285;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 };
 } 
       catch (Exception e41) {
			processBA.setLastException(e41); //BA.debugLineNum = 289;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 290;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("354526014",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 293;BA.debugLine="End Sub";
return "";
}
public static String  _skill1_onerror(String _error) throws Exception{
 //BA.debugLineNum = 902;BA.debugLine="Sub skill1_onError(Error As String)";
 //BA.debugLineNum = 904;BA.debugLine="panCover.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 906;BA.debugLine="Log(Error)";
anywheresoftware.b4a.keywords.Common.LogImpl("356295428",_error,0);
 //BA.debugLineNum = 907;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 909;BA.debugLine="End Sub";
return "";
}
public static String  _skill1_onnext(aghajari.retrofit.Amir_ResponseBody _responsebody) throws Exception{
anywheresoftware.b4a.objects.collections.JSONParser _parser = null;
anywheresoftware.b4a.objects.collections.Map _root = null;
anywheresoftware.b4a.objects.collections.Map _response = null;
int _code = 0;
String _message = "";
 //BA.debugLineNum = 849;BA.debugLine="Sub skill1_onNext(ResponseBody As Amir_ResponseBod";
 //BA.debugLineNum = 851;BA.debugLine="panCover.Visible = False";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setVisible(anywheresoftware.b4a.keywords.Common.False);
 //BA.debugLineNum = 855;BA.debugLine="Try";
try { //BA.debugLineNum = 856;BA.debugLine="Dim parser As JSONParser";
_parser = new anywheresoftware.b4a.objects.collections.JSONParser();
 //BA.debugLineNum = 857;BA.debugLine="parser.Initialize(ResponseBody.String)";
_parser.Initialize(_responsebody.getString());
 //BA.debugLineNum = 858;BA.debugLine="Dim root As Map = parser.NextObject";
_root = new anywheresoftware.b4a.objects.collections.Map();
_root = _parser.NextObject();
 //BA.debugLineNum = 859;BA.debugLine="Dim response As Map = root.Get(\"response\")";
_response = new anywheresoftware.b4a.objects.collections.Map();
_response = (anywheresoftware.b4a.objects.collections.Map) anywheresoftware.b4a.AbsObjectWrapper.ConvertToWrapper(new anywheresoftware.b4a.objects.collections.Map(), (java.util.Map)(_root.Get((Object)("response"))));
 //BA.debugLineNum = 860;BA.debugLine="Dim code As Int = response.Get(\"code\")";
_code = (int)(BA.ObjectToNumber(_response.Get((Object)("code"))));
 //BA.debugLineNum = 862;BA.debugLine="If code = 200 Then";
if (_code==200) { 
 //BA.debugLineNum = 863;BA.debugLine="Dim message As String = response.Get(\"message\")";
_message = BA.ObjectToString(_response.Get((Object)("message")));
 //BA.debugLineNum = 865;BA.debugLine="listTf.Add(mainTf)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.Add((Object)(_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1));
 //BA.debugLineNum = 866;BA.debugLine="listType_c.Add(1)";
mostCurrent._listtype_c.Add((Object)(1));
 //BA.debugLineNum = 867;BA.debugLine="listMatn.Add(mainTxt)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv6.Add((Object)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0));
 //BA.debugLineNum = 868;BA.debugLine="list2Matn.Add(mainTxt)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0.Add((Object)(mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0));
 //BA.debugLineNum = 869;BA.debugLine="lisDate.Add(message)";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv1.Add((Object)(_message));
 //BA.debugLineNum = 871;BA.debugLine="ime.HideKeyboard";
mostCurrent._vvvvvvvvvvvvvvvvvv0.HideKeyboard(mostCurrent.activityBA);
 //BA.debugLineNum = 873;BA.debugLine="ed_chat.Text = \"\"";
mostCurrent._ed_chat.setText(BA.ObjectToCharSequence(""));
 //BA.debugLineNum = 877;BA.debugLine="pan_chat.Top = 100%y - (45dip + 10dip)";
mostCurrent._pan_chat.setTop((int) (anywheresoftware.b4a.keywords.Common.PerYToCurrent((float) (100),mostCurrent.activityBA)-(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10)))));
 //BA.debugLineNum = 878;BA.debugLine="ed_chat.Top = 2.5dip";
mostCurrent._ed_chat.setTop(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (2.5)));
 //BA.debugLineNum = 879;BA.debugLine="pan_chat.Height = 45dip + 10dip";
mostCurrent._pan_chat.setHeight((int) (anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45))+anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (10))));
 //BA.debugLineNum = 880;BA.debugLine="ed_chat.Height = 45dip";
mostCurrent._ed_chat.setHeight(anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (45)));
 //BA.debugLineNum = 882;BA.debugLine="panCover.Top = ed_chat.Top";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setTop(mostCurrent._ed_chat.getTop());
 //BA.debugLineNum = 883;BA.debugLine="panCover.Height = ed_chat.Height";
mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv4.setHeight(mostCurrent._ed_chat.getHeight());
 //BA.debugLineNum = 885;BA.debugLine="l_Peyvast.Top = pan_chat.Height-52.5dip";
mostCurrent._l_peyvast.setTop((int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))));
 //BA.debugLineNum = 886;BA.debugLine="l_Send.Top = pan_chat.Height-52.5dip";
mostCurrent._l_send.setTop((int) (mostCurrent._pan_chat.getHeight()-anywheresoftware.b4a.keywords.Common.DipToCurrent((int) (52.5))));
 //BA.debugLineNum = 889;BA.debugLine="CallSubDelayed(Me,\"RefUlv1\")";
anywheresoftware.b4a.keywords.Common.CallSubDelayed(processBA,support.getObject(),"RefUlv1");
 }else {
 //BA.debugLineNum = 892;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 };
 } 
       catch (Exception e30) {
			processBA.setLastException(e30); //BA.debugLineNum = 896;BA.debugLine="func.ToastERROR(func.gland(3))";
mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (3)));
 //BA.debugLineNum = 897;BA.debugLine="Log(LastException)";
anywheresoftware.b4a.keywords.Common.LogImpl("356229936",BA.ObjectToString(anywheresoftware.b4a.keywords.Common.LastException(mostCurrent.activityBA)),0);
 };
 //BA.debugLineNum = 900;BA.debugLine="End Sub";
return "";
}
public static void  _upload_completed(String _s1) throws Exception{
ResumableSub_upload_completed rsub = new ResumableSub_upload_completed(null,_s1);
rsub.resume(processBA, null);
}
public static class ResumableSub_upload_completed extends BA.ResumableSub {
public ResumableSub_upload_completed(com.pas.abtahibo.parvaz.support parent,String _s1) {
this.parent = parent;
this._s1 = _s1;
}
com.pas.abtahibo.parvaz.support parent;
String _s1;
boolean _success = false;

@Override
public void resume(BA ba, Object[] result) throws Exception{

    while (true) {
        switch (state) {
            case -1:
return;

case 0:
//C
this.state = 1;
 //BA.debugLineNum = 687;BA.debugLine="If s1 = \"successfull\" Then";
if (true) break;

case 1:
//if
this.state = 10;
if ((_s1).equals("successfull")) { 
this.state = 3;
}else {
this.state = 9;
}if (true) break;

case 3:
//C
this.state = 4;
 //BA.debugLineNum = 689;BA.debugLine="If File.Exists(File.DirInternal,\"abtahi/support\"";
if (true) break;

case 4:
//if
this.state = 7;
if (anywheresoftware.b4a.keywords.Common.File.Exists(anywheresoftware.b4a.keywords.Common.File.getDirInternal(),"abtahi/support")==anywheresoftware.b4a.keywords.Common.False) { 
this.state = 6;
}if (true) break;

case 6:
//C
this.state = 7;
 //BA.debugLineNum = 690;BA.debugLine="File.MakeDir(File.DirInternal,\"abtahi/support\")";
anywheresoftware.b4a.keywords.Common.File.MakeDir(anywheresoftware.b4a.keywords.Common.File.getDirInternal(),"abtahi/support");
 if (true) break;

case 7:
//C
this.state = 10;
;
 //BA.debugLineNum = 693;BA.debugLine="Wait For (File.CopyAsync(mainDir,mainName,File.D";
anywheresoftware.b4a.keywords.Common.WaitFor("complete", processBA, this, anywheresoftware.b4a.keywords.Common.File.CopyAsync(processBA,parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv7,parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv0,anywheresoftware.b4a.keywords.Common.File.getDirInternal()+"/abtahi/support",parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2));
this.state = 11;
return;
case 11:
//C
this.state = 10;
_success = (Boolean) result[0];
;
 //BA.debugLineNum = 694;BA.debugLine="Log(\"Success: \" & Success)";
anywheresoftware.b4a.keywords.Common.LogImpl("355836680","Success: "+BA.ObjectToString(_success),0);
 //BA.debugLineNum = 696;BA.debugLine="sendKol(TFsp,picName)";
_vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2(parent._vvvvvvvvv3,parent.mostCurrent._vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv2);
 if (true) break;

case 9:
//C
this.state = 10;
 //BA.debugLineNum = 699;BA.debugLine="func.ToastERROR(func.gland(380))";
parent.mostCurrent._vvvvvvvvvvvvvvvv7._vvvvvvv0 /*String*/ (mostCurrent.activityBA,parent.mostCurrent._vvvvvvvvvvvvvvvv7._vvv1 /*String*/ (mostCurrent.activityBA,(int) (380)));
 if (true) break;

case 10:
//C
this.state = -1;
;
 //BA.debugLineNum = 702;BA.debugLine="p_aria.Dismiss";
parent.mostCurrent._p_aria.dismiss();
 //BA.debugLineNum = 704;BA.debugLine="End Sub";
if (true) break;

            }
        }
    }
}
public static String  _upload_onprogressupdate(String _s1) throws Exception{
 //BA.debugLineNum = 706;BA.debugLine="Sub upload_onProgressUpdate(s1 As String)";
 //BA.debugLineNum = 707;BA.debugLine="p_aria.setProgress(s1)";
mostCurrent._p_aria.setProgress((int)(Double.parseDouble(_s1)));
 //BA.debugLineNum = 708;BA.debugLine="End Sub";
return "";
}
}
