<!DOCTYPE html>
<html lang="en-US">
<head itemscope itemtype="https://schema.org/WebSite">
<meta charset="UTF-8" />
<meta name="description" content="Zomi Daily is an online news &amp; magazine portal for Zomi around the world. Let&#039;s promote Zomi people and their literature called Zolai (Zomi language) to the world!" />
<meta name="keywords" content="biakna, burma, burmese, chin, chin hill, chin people, chin state, chinhill, chinland, falam, hakha, inn kuan, Innkuan, kuki, lai, lamka, lusei, lushai, minam, mizo, mizoram, myanmar, ngeina, paite, teddim, tedim, zo, zogam, zolai, zoan, zo an, zo biakna, zo la, zo lam, zo mi, zo ngei na, zoan, zobiakna, zola, zolam, zomi, zongeina, zopau, zou, zomi refugee, zomi news" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ZOMI DAILY &#8211; Online News &amp; Magazine</title>
    <style>
        .pro-wccp:before {
            content: "\f160";
            top: 3px;
        }
        .pro-wccp:before{
            color:#02CA03 !important
        }
        .pro-wccp {
            transform: rotate(45deg);
        }
    </style>
    <script id="wccp_pro_disable_selection">

var image_save_msg = 'You are not allowed to save images!';

var no_menu_msg = 'Context menu disabled!';

var smessage = "Nadeihleh Comment ah hong zasak inmaw!";


"use strict";
/* This because search property "includes" does not supported by IE*/
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
  if (typeof start !== 'number') {
	start = 0;
  }

  if (start + search.length > this.length) {
	return false;
  } else {
	return this.indexOf(search, start) !== -1;
  }
};
}
/*////////////////////////////////////*/
let canCall = true;

function call_disable_copy_WithDelay(e) {
  if (canCall) {
    canCall = false;
    disable_copy(e);
    setTimeout(() => {
      canCall = true;
    }, 1000);
  }
}

function disable_copy(e)
{
	window.wccp_pro_iscontenteditable_flag = false;
	
	wccp_pro_log_to_console_if_allowed("disable_copy");
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	if (apply_class_exclusion(e) == "Yes") return true;

	if(wccp_pro_iscontenteditable(e) == true) {return true;}
	
	if(is_content_editable_element(current_clicked_element) == true)
	{
		return true;
	}
	else
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			//wccp_pro_clear_any_selection();
			
			return false;
		}
	}
	
	/*disable context menu when shift + right click is pressed*/
	var shiftPressed = 0;
	
	var evt = e?e:window.event;
	
	if (parseInt(navigator.appVersion)>3) {
		
		if (document.layers && navigator.appName=="Netscape")
			
			shiftPressed = (e.modifiers-0>3);
			
		else
			
			shiftPressed = e.shiftKey;
			
		if (shiftPressed) {
			
			if (smessage !== "") show_wccp_pro_message(smessage);
			
			var isFirefox = typeof InstallTrigger !== 'undefined';   /* Firefox 1.0+ */
			
			if (isFirefox) {
			evt.cancelBubble = true;
			if (evt.stopPropagation) evt.stopPropagation();
			if (evt.preventDefault()) evt.preventDefault();
			show_wccp_pro_message (smessage);
			wccp_pro_clear_any_selection();
			return false;
			}
			
			wccp_pro_clear_any_selection();
			return false;
		}
	}
	
	if(e.which === 2 ){
	var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
	   show_wccp_pro_message(smessage);
       wccp_pro_clear_any_selection(); return false;
    }
	var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
	var checker_IMG = 'checked';
	if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}

    //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			wccp_pro_clear_any_selection(); return false;
		}
	}
	else
	{
		return true;
	}
}
////////////////////////////
function disable_copy_ie()
{
	wccp_pro_log_to_console_if_allowed("disable_copy_ie_function_started");
	
	var e = e || window.event;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
  	var target = e.target || e.srcElement;
	
	var elemtype = window.event.srcElement.nodeName;
	
	elemtype = elemtype.toUpperCase();

	if(wccp_pro_iscontenteditable(e) == true) return true;
	
	if (apply_class_exclusion(e) == "Yes") return true;
	
	if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}
	
	//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		return false;
	}
}
function disable_drag_text(e)
{
	wccp_pro_log_to_console_if_allowed("disable_drag_text");
	
	/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
	/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/
  	
	var target = e.target || e.srcElement;
	
	/*For contenteditable tags*/
	
	if (apply_class_exclusion(e) == "Yes") return true;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	var disable_drag_text_drop = 'checked';
	
	if (disable_drag_text_drop != "checked")  return true;
	
	if (window.location.href.indexOf("/user/") > -1) {
      return true; /*To allow users to drag & drop images when editing thier profiles*/
    }
	
	return false;
}

/*/////////////////special for safari Start////////////////*/
var onlongtouch;

var timer;

var touchduration = 1000; /*length of time we want the user to touch before we do something*/

var elemtype = "";

function touchstart(e)
{
	wccp_pro_log_to_console_if_allowed("touchstart");
	
	e = e || window.event;// also there is no e.target property in IE. instead IE uses window.event.srcElement
	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	//if (elemtype == "A") return;

	if (apply_class_exclusion(elemtype) == 'Yes') return;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
	
	if(!wccp_pro_is_passive()) e.preventDefault();
	if (!timer) {
		timer = setTimeout(onlongtouch, touchduration);
	}
}

function touchend()
{
	wccp_pro_log_to_console_if_allowed("touchend");
	
    /*stops short touches from firing the event*/
    if (timer) {
        clearTimeout(timer);
        timer = null;
    }
	onlongtouch();
}

onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
{
	wccp_pro_log_to_console_if_allowed("onlongtouch");
	
	if (is_content_editable_element(elemtype) == false)
	{
		if (window.getSelection) {
			if (window.getSelection().empty) { /*Chrome*/
			window.getSelection().empty();
			} else if (window.getSelection().removeAllRanges) {  /*Firefox*/
			window.getSelection().removeAllRanges();
			}
		} else if (document.selection) {  /*IE?*/
			var textRange = document.body.createTextRange();
			textRange.moveToElementText(element);
			textRange.select();

			document.selection.empty();
		}
		return false;
	}
};

document.addEventListener("DOMContentLoaded", function(event)
	{ 
		window.addEventListener("touchstart", touchstart, false);
		window.addEventListener("touchend", touchend, false);
	});


function wccp_pro_is_passive()
{
	wccp_pro_log_to_console_if_allowed("wccp_pro_is_passive");
	
	var cold = false,
	hike = function() {};

	try {
	var aid = Object.defineProperty({}, 'passive', {
	get() {cold = true}
	});
	window.addEventListener('test', hike, aid);
	window.removeEventListener('test', hike, aid);
	} catch (e) {}

	return cold;
}
/*/////////////////////////////////////////////////////////////////*/
function reEnable()
{
	return true;
}

if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
{
	document.ondragstart = disable_drag_text;
	document.onselectstart = call_disable_copy_WithDelay;
	document.onselectionchange = call_disable_copy_WithDelay;
	//document.onmousedown = disable_copy;
	//document.addEventListener('click', disable_copy, false);
	//document.addEventListener('click', set_current_clicked_element, false);
	document.addEventListener('mousedown', set_current_clicked_element, false);
	//document.onclick = reEnable;
}else
{
	document.onselectstart = disable_copy_ie;
}

var current_clicked_element = "";

var current_clicked_object = null;

function set_current_clicked_element(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	current_clicked_element = elemtype;
	
	wccp_pro_log_to_console_if_allowed("current_clicked_element = " + current_clicked_element, arguments.callee.name);
}
</script>
	<script id="wccp_pro_css_disable_selection">
	function wccp_pro_msieversion() 
		{
			var ua = window.navigator.userAgent;
			var msie = ua.indexOf("MSIE");
			var msie2 = ua.indexOf("Edge");
			var msie3 = ua.indexOf("Trident");

		if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
		{
			return "IE";
		}
		else  // If another browser, return 0
		{
			return "otherbrowser";
		}
	}
    
	var e = document.getElementsByTagName('H1')[0];
	if(e && wccp_pro_msieversion() == "IE")
	{
		e.setAttribute('unselectable',"on");
	}
	</script>
<script id="wccp_pro_disable_hot_keys">
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;

function wccp_pro_iscontenteditable(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;
	
	var iscontenteditable = "false";
		
	if(typeof target.getAttribute!="undefined" )
	{
		iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
		
		if(typeof target.hasAttribute!="undefined")
		{
			if(target.hasAttribute("contenteditable"))
				iscontenteditable = true;
		}
	}
	
	wccp_pro_log_to_console_if_allowed("iscontenteditable:" + iscontenteditable);
	
	var iscontenteditable2 = false;
	
	if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean

	if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
	
	if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
	{
		if(typeof target.style!="undefined" ) target.style.cursor = "text";
		
		wccp_pro_iscontenteditable_flag = true;
		
		wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
	if(window.wccp_pro_iscontenteditable_flag == true) return;
	
	wccp_pro_log_to_console_if_allowed("wccp_pro_clear_any_selection");
	
	var myName = wccp_pro_clear_any_selection.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));

	wccp_pro_log_to_console_if_allowed("called_by: " + myName);
	
	if (window.getSelection)
	{
		if (window.getSelection().empty)
		{  // Chrome
			window.getSelection().empty();
		} else if (window.getSelection().removeAllRanges) 
		{  // Firefox
			window.getSelection().removeAllRanges();
		}
	} else if (document.selection)
	{  // IE?
		document.selection.empty();
	}
	
	//show_wccp_pro_message("You are not allowed to make this operation");
}


/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
	if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK_WCCP")
	{
		wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_content_editable_element: false >>" + element_name);
	
	return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
	if (is_content_editable_element == true)
	{
		wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);
	
	return false;
}
*/
/*Hot keys function  */
function disable_hot_keys(e)
{
	wccp_pro_log_to_console_if_allowed("disable_hot_keys");
	
	e = e || window.event;
	
	//console.log(e);
	
	if (!e) return;
	
	var key;

		if(window.event)
			  key = window.event.keyCode;     /*IE*/
		else if (e.hasOwnProperty("which")) key = e.which;     /*firefox (97)*/

	wccp_pro_log_to_console_if_allowed("Data:", key);
	
			
		if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
		{
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			
			return false;
		}
		
	var elemtype = e.target.tagName;
	
	elemtype = elemtype.toUpperCase();
	
	var sel = getSelectionTextAndContainerElement();
	
	if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */

	/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
	if (is_content_editable_element(elemtype) == true)
	{
		elemtype = 'TEXT';
	}
	
	if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
	
		if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
		{
			copyTextToClipboard("");
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			return false;
		}	
	if (e.ctrlKey || e.metaKey)
	{
		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
		{
			 show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			 return false;
		}
		if (elemtype!= 'TEXT')
		{
						
			if (key == 65)
			{
				show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
				return false;
			}			
						
			if (key == 67)
			{
				show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
				return false;
			}			
						
			if (key == 88)
			{
				show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
				return false;
			}			
						
			if (key == 86)
			{
				show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
				return false;
			}		}
				
		if (key == 85)
		{
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			return false;
		}		
				if (key == 80)
		{
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			return false;
		}		
				if (key == 44)
		{
			copyTextToClipboard("no");
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			return false;
		}		
		
					if (key == 73)//F12 chrome developer key disable
			{
				show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
				return false;
			}
				
				
		if (key == 83)
		{
			show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
			return false;
		}    }
return true;
}


window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function() {
	  jQuery(document).bind("keyup keydown", disable_hot_keys);
	});
});

</script>
	<script id="wccp_pro_disable_Right_Click">

	function wccp_pro_nocontext(e)
	{
		wccp_pro_log_to_console_if_allowed("wccp_pro_nocontext function");
		
		const caller = wccp_pro_nocontext.caller;
		
		if (caller) wccp_pro_log_to_console_if_allowed("Caller function is: " + caller.name);
		
		e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		if (apply_class_exclusion(e) == 'Yes') return true;
		
		var exception_tags = 'NOTAG,';
		
		var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
		
		wccp_pro_log_to_console_if_allowed("clickedTag: " + clickedTag);
		
		var target = e.target || e.srcElement;
		
		var parent_tag = ""; var parent_of_parent_tag = "";
		
		if(target.parentElement != null)
		{
			parent_tag = target.parentElement.tagName;
			
			if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
		}
		
		var checker = 'checked';
		if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
			if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
			return false;
		}else {exception_tags = exception_tags + 'IMG,';}
		
		checker = '';
		if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
			if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
			return false;
		}else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}
		
		checker = 'checked';
		if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
			if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
			return false;
		}else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}

		checker = 'checked';
		if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" ||  clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
			if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
			return false;
		}else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}
		
		checker = 'checked';
		if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
			if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
			return false;
		}else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}
		
		checker = 'checked';
		if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
			if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
			return false;
		}else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}
		
		checker = 'checked';
		if (clickedTag == "TEXTAREA" && checker == 'checked') {
			if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
			return false;
		}else {exception_tags = exception_tags + 'TEXTAREA,';}
		
		checker = 'checked';
		if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
			if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
			return false;
		}
		else
		{
			if (exception_tags.indexOf(clickedTag)!=-1)
			{
				return true;
			}
			else
			return false;
		}
	}
	
	function disable_drag_images(e)
	{return;
		wccp_pro_log_to_console_if_allowed("disable_drag_images");
		
		var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		var target = e.target || e.srcElement;
		
		//For contenteditable tags
		if (apply_class_exclusion(e) == "Yes") return true;

		var elemtype = e.target.nodeName;
		
		if (elemtype != "IMG") {return;}
		
		elemtype = elemtype.toUpperCase();
		
		var disable_drag_drop_images = 'checked';
		
		if (disable_drag_drop_images != "checked")  return true;
		
		if (window.location.href.indexOf("/user/") > -1) {
		  return true; //To allow users to drag & drop images when editing thier profiles
		}
		
		show_wccp_pro_message(alertMsg_IMG);
		
		return false;
	}
	
	var alertMsg_IMG = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_A = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_PB = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_INPUT = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_H = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_TEXTAREA = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_EmptySpaces = "Nadeihleh Comment ah hong zasak inmaw!";
	var alertMsg_VIDEO = "Nadeihleh Comment ah hong zasak inmaw!";
	//document.oncontextmenu=null;
	window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function(){
		jQuery(document).on('contextmenu', wccp_pro_nocontext);
	});
	});
	window.addEventListener('load', function (){
	if (typeof jQuery === 'undefined')
	{
		alert("no jquery");
		document.oncontextmenu = wccp_pro_nocontext;
		document.addEventListener("contextmenu",wccp_pro_nocontext);
		window.addEventListener("contextmenu",wccp_pro_nocontext);
	}
	});
</script>
	
	<script id="wccp_pro_disable_drag_images">
	document.ondragstart = disable_drag_images;
		window.addEventListener('load', function (){
			if(window.Zepto || !window.jQuery) jQuery =  $;
			jQuery(document).ready(function(){
				jQuery('img').each(function() {
					jQuery(this).attr('draggable', false);
				});
			});
		});
	</script>
	<style id="wccp_pro_style1">
		img{
			-moz-user-select: none;
			-webkit-user-select: none;
			-ms-user-select: none;
			-khtml-user-select: none;
			user-select: none;
			-webkit-user-drag: none;
		}
	</style>
<script id="wccp_pro_class_exclusion">
function copyToClipboard(elem) {
	  // create hidden text element, if it doesn't already exist
    var targetId = "_wccp_pro_hiddenCopyText_";
    {
        // must use a temporary form element for the selection and copy
        target = document.getElementById(targetId);
        if (!target) {
            var target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    // select the content
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);
    
    // copy the selection
    var succeed;
    try {
    	  succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }

    // restore original focus
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }
    
    
	// clear temporary content
	target.textContent = "";
	document.getElementsByTagName('span')[0].innerHTML = " ";
    return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(data = "")
{//return;
	var myName = "";
	
	if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));
	
	}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
  var textArea = document.createElement("textarea");
  textArea.value = text;
  document.body.appendChild(textArea);
  textArea.focus();
  textArea.select();

  try {
    var successful = document.execCommand("copy");
    var msg = successful ? "successful" : "unsuccessful";
    wccp_pro_log_to_console_if_allowed("Fallback: Copying text command was " + msg);
  } catch (err) {
    console.error("Fallback: Oops, unable to copy", err);
  }

  document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
  if (!navigator.clipboard) {
    fallbackCopyTextToClipboard(text);
    return;
  }
  navigator.clipboard.writeText(text).then(
    function() {
      console.log("Async: Copying to clipboard was successful!");
    },
    function(err) {
      console.error("Async: Could not copy text: ", err);
    }
  );
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
    var text = "", containerElement = null;
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var node = sel.getRangeAt(0).commonAncestorContainer;
            containerElement = node.nodeType == 1 ? node : node.parentNode;
			if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
            text = sel.toString();
        }
    } else if (typeof document.selection != "undefined" && document.selection.type != "Control")
	{
        var textRange = document.selection.createRange();
        containerElement = textRange.parentElement();
        text = textRange.text;
    }
    
	return {
        text: text,
        containerElement: containerElement
    };
}

function getSelectionParentElement() {
    var parentEl = null, sel;
	
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            parentEl = sel.getRangeAt(0).commonAncestorContainer;
			//sel.getRangeAt(0).startContainer.parentNode;
            if (parentEl.nodeType != 1) {
                parentEl = parentEl.parentNode;
            }
        }
    } else if ( (sel = document.selection) && sel.type != "Control") {
        parentEl = sel.createRange().parentElement();
    }
	
	let arr = new Array();
	
	arr["nodeName"] = "cant_find_parent_element";
	
	if(parentEl != null)
		return parentEl;
	else
		return arr;
}
/*****************************************/
function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
</script>

<script id="apply_class_exclusion">
function apply_class_exclusion(e)
{
	wccp_pro_log_to_console_if_allowed(e);
	
	var my_return = 'No';
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement || e || 'nothing';
	
	var excluded_classes = '' + '';
	
	var class_to_exclude = "";
	
	if(target.parentElement != null)
	{
		class_to_exclude = target.className + ' ' + target.parentElement.className || '';
	}else{
		class_to_exclude = target.className;
	}
	
	var class_to_exclude_array = Array();
	
	//console.log(class_to_exclude);
	
	if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
	
	//console.log (class_to_exclude_array);
	
	class_to_exclude_array.forEach(function(item)
	{
		if(item != '' && excluded_classes.indexOf(item)>=0)
		{
			//target.style.cursor = "text";
			
			//console.log ('Yes');
			
			my_return = 'Yes';
		}
	});

	try {
		class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
		}
	catch(err) 
		{
		class_to_exclude = '';
		}
	
	if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
	{
		//target.style.cursor = "text";
		my_return = 'Yes';
	}

	return my_return;
}
</script>
<style id="wccp_pro_style2" data-asas-style="">

	
	*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
	  -webkit-user-select: auto !important;
	  cursor: text !important;
	  user-select: text !important;
	  pointer-events: auto !important;
	}
	
	/*
	*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
	*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
	input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	*/
	a{ cursor: pointer ; pointer-events: auto !important;}

	</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style>	<script id="wccp_pro_alert_message">
	window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign
	
	window.addEventListener('load', function (){
		// Create the first div element with the "oncontextmenu" attribute
		const wccp_pro_mask = document.createElement('div');
		wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
		wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

		// Create the second div element with the "msgmsg-box-wpcp hideme" classes
		const wpcp_error_message = document.createElement('div');
		wpcp_error_message.setAttribute('id', 'wpcp-error-message');
		wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

		// Add a span element with the "error: " text inside the second div
		const error_span = document.createElement('span');
		error_span.innerText = 'error: ';
		wpcp_error_message.appendChild(error_span);

		// Add the error message text inside the second div
		const error_text = document.createTextNode('Nadeihleh Comment ah hong zasak inmaw!');
		wpcp_error_message.appendChild(error_text);

		// Add the div elements to the document body
		document.body.appendChild(wccp_pro_mask);
		document.body.appendChild(wpcp_error_message);
	});

	var timeout_result;
	function show_wccp_pro_message(smessage="", style="")
	{
		wccp_pro_log_to_console_if_allowed(smessage);
				
		timeout = 3000;
		
		if(style == "") style = "warning-wpcp";
		
		if (smessage !== "" && timeout!=0)
		{
			var smessage_text = smessage;
			jquery_fadeTo();
			document.getElementById("wpcp-error-message").innerHTML = smessage_text;
			document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
		else
		{
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
	}
	function hide_message()
	{
		jquery_fadeOut();
		document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
	}
	function jquery_fadeTo()
	{
		try {
			jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
		}
		catch(err) {
			//alert(err.message);
			}
	}
	function jquery_fadeOut()
	{
		try {
			jQuery("#wccp_pro_mask").fadeOut( "slow" );
		}
		catch(err) {}
	}
	</script>
	<style>
	#wccp_pro_mask
	{
		position: absolute;
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		background-color: #000;
		pointer-events: none;
		display: none;
		z-index: 10000;
		animation: 0.5s ease 0s normal none 1 running ngdialog-fadein;
		background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	}
	#wpcp-error-message {
	    direction: ltr;
	    text-align: center;
	    transition: opacity 900ms ease 0s;
		pointer-events: none;
	    z-index: 99999999;
	}
	.hideme {
    	opacity:0;
    	visibility: hidden;
	}
	.showme {
    	opacity:1;
    	visibility: visible;
	}
	.msgmsg-box-wpcp {
		border-radius: 10px;
		color: #555555;
		font-family: Tahoma;
		font-size: 12px;
		margin: 10px !important;
		padding: 10px 36px !important;
		position: fixed;
		width: 255px;
		top: 50%;
		left: 50%;
		margin-top: -10px !important;
		margin-left: -130px !important;
	}
	.msgmsg-box-wpcp b {
		font-weight:bold;
	}
		.warning-wpcp {
		background:#ffecec url('https://zomidaily.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
		border:1px solid #f2bfbf;
		-webkit-box-shadow: 0px 0px 34px 2px #f2bfbf;
		-moz-box-shadow: 0px 0px 34px 2px #f2bfbf;
		box-shadow: 0px 0px 34px 2px #f2bfbf;
	}
	.success-wpcp {
		background: #fafafa url('https://zomidaily.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
		border: 1px solid #00b38f;
		box-shadow: 0px 0px 34px 2px #adc;
	}
    </style>
<meta name='robots' content='max-image-preview:large' />
<!-- Jetpack Site Verification Tags -->
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//jetpack.wordpress.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//public-api.wordpress.com' />
<link rel='dns-prefetch' href='//secure.gravatar.com' />
<link rel='preconnect' href='//i0.wp.com' />
<link rel='preconnect' href='//c0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="ZOMI DAILY &raquo; Feed" href="https://zomidaily.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="ZOMI DAILY &raquo; Comments Feed" href="https://zomidaily.com/comments/feed/" />
<link rel="canonical" href="https://zomidaily.com/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<link rel='stylesheet' id='authority-pro-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/style.css?ver=1.0.5' media='all' />
<style id="authority-pro-inline-css">

		.single .content .entry-content > p:first-of-type {
			color: #111111;
			font-size: 20px;
			font-size: 2rem;
			font-style: italic;
			line-height: 1.7;
			margin: 0 0 35px;
		}
		
/*# sourceURL=authority-pro-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
</style>
<style id="classic-theme-styles-inline-css">
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>

<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
/*# sourceURL=global-styles-inline-css */
</style>

<link rel='stylesheet' id='authority-fonts-css' href='//fonts.googleapis.com/css?family=Source+Sans+Pro:600,700,900|Libre+Baskerville:400,400italic,700&#038;ver=1.0.5' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://c0.wp.com/c/7.0/wp-includes/css/dashicons.min.css' media='all' />
<link rel='stylesheet' id='css-protect.css-css' href='https://zomidaily.com/wp-content/plugins/wccp-pro/css/css-protect.css?ver=1' media='all' />
<link rel='stylesheet' id='print-protection.css-css' href='https://zomidaily.com/wp-content/plugins/wccp-pro/css/print-protection.css?css_js_files_version_num=1&#038;ver=7.0' media='all' />
<link rel='stylesheet' id='authority-front-styles-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/css/style-front.css?ver=1.0.5' media='all' />
<link rel='stylesheet' id='authority-hero-styles-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/css/style-hero.css?ver=1.0.5' media='all' />
<script id="jquery-core-js" src="https://c0.wp.com/c/7.0/wp-includes/js/jquery/jquery.min.js"></script>
<script id="jquery-migrate-js" src="https://c0.wp.com/c/7.0/wp-includes/js/jquery/jquery-migrate.min.js"></script>
<link rel="https://api.w.org/" href="https://zomidaily.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://zomidaily.com/xmlrpc.php?rsd" />
	<style>img#wpstats{display:none}</style>
		<link rel="next" href="https://zomidaily.com/page/2/" />
<meta itemprop="name" content="ZOMI DAILY" />
<meta itemprop="url" content="https://zomidaily.com/" />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="ZOMI DAILY" />
<meta property="og:description" content="Online News &amp; Magazine" />
<meta property="og:url" content="https://zomidaily.com/" />
<meta property="og:site_name" content="ZOMI DAILY" />
<meta property="og:image" content="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=512%2C512&#038;ssl=1" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:site" content="@zomidaily" />

<!-- End Jetpack Open Graph Tags -->
<link rel="icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=32%2C32&#038;ssl=1" sizes="32x32" />
<link rel="icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=192%2C192&#038;ssl=1" sizes="192x192" />
<link rel="apple-touch-icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=180%2C180&#038;ssl=1" />
<meta name="msapplication-TileImage" content="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=270%2C270&#038;ssl=1" />
</head>
<body class="home blog wp-theme-genesis wp-child-theme-zdmainblog header-full-width full-width-content genesis-breadcrumbs-hidden has-featured-images front-page" itemscope itemtype="https://schema.org/WebPage"><ul class="genesis-skip-link"><li><a href="#genesis-content" class="screen-reader-shortcut"> Skip to main content</a></li><li><a href="#footer" class="screen-reader-shortcut"> Skip to footer</a></li></ul><div class="site-container"><h2 id="additional-menu-label" class="screen-reader-text">Additional menu</h2><header class="site-header" itemscope itemtype="https://schema.org/WPHeader"><div class="wrap"><div class="title-area"><h1 class="site-title" itemprop="headline"><a href="https://zomidaily.com/">ZOMI DAILY</a></h1><p class="site-description" itemprop="description">Online News &amp; Magazine</p></div><nav class="nav-primary" aria-label="Main" itemscope itemtype="https://schema.org/SiteNavigationElement" id="genesis-nav-primary"><div class="wrap"><ul id="menu-main-menu" class="menu genesis-nav-menu menu-primary js-superfish"><li id="menu-item-9482" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-9482"><a href="https://zomidaily.com" aria-current="page" itemprop="url"><span itemprop="name">HOME</span></a></li>
<li id="menu-item-9469" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-has-children menu-item-9469"><a href="https://zomidaily.com/tag/news/" itemprop="url"><span itemprop="name">NEWS</span></a>
<ul class="sub-menu">
	<li id="menu-item-12233" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12233"><a href="https://zomidaily.com/tag/zomi/" itemprop="url"><span itemprop="name">ZOMI</span></a></li>
	<li id="menu-item-26144" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-26144"><a href="https://zomidaily.com/tag/world/" itemprop="url"><span itemprop="name">WORLD</span></a></li>
	<li id="menu-item-12234" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12234"><a href="https://zomidaily.com/tag/myanmar/" itemprop="url"><span itemprop="name">MYANMAR</span></a></li>
	<li id="menu-item-12235" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12235"><a href="https://zomidaily.com/tag/malaysia/" itemprop="url"><span itemprop="name">MALAYSIA</span></a></li>
</ul>
</li>
<li id="menu-item-9473" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9473"><a href="https://zomidaily.com/tag/politics/" itemprop="url"><span itemprop="name">POLITICS</span></a></li>
<li id="menu-item-9472" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9472"><a href="https://zomidaily.com/tag/biakna/" itemprop="url"><span itemprop="name">BIAKNA</span></a></li>
<li id="menu-item-9475" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9475"><a href="https://zomidaily.com/tag/health/" itemprop="url"><span itemprop="name">HEALTH</span></a></li>
<li id="menu-item-9471" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9471"><a href="https://zomidaily.com/tag/article/" itemprop="url"><span itemprop="name">ARTICLE</span></a></li>
<li id="menu-item-16447" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-16447"><a href="https://zomidaily.com/tag/interview/" itemprop="url"><span itemprop="name">INTERVIEW</span></a></li>
</ul></div></nav></div></header><div class="site-inner"><div class="wrap hero-section has-columns"><div class="hero-section-column left one-half first"><h2 class="hero-title">Hello! dammaw?</h2><p class="hero-description">Nakepnop nadeih giugiau aomleh Comment pan ahi zongin, Email zomidaily@gmail.com pan ahi zongin hong zasak inmaw. Suahsaknop, puahphatnop leh lakkhiat saknop cihte aom lehzong hong zasak inmaw, lungdam.</p></div><div class="hero-section-column right one-half">
		<img class="hero-portrait" src="https://zomidaily.com/wp-content/uploads/2016/01/zdlogo.png" alt="" /><div class="hero-portrait-caption">ZOMI DAILY</div></div></div><div class="content-sidebar-wrap"><main class="content" id="genesis-content"><h2 class="screen-reader-text">Main Content</h2><div id="front-page-1" class="front-page-1"><div class="flexible-widgets widget-area widget-odd no-bg"><div class="wrap"><section id="featured-post-9" class="widget featured-content featuredpost"><div class="widget-wrap"><article class="post-26958 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Kan masa in"><a href="https://zomidaily.com/kan-masa-in/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="34" data-permalink="https://zomidaily.com/cimphawng-kipuah-kawm/001davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001davidtuang" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/kan-masa-in/">Kan masa in</a></h4></header><div class="entry-content"><p>Kan masa in

&#x1f538;Mi khat na muhdah ma-in ahang kan masa in.
&#x1f538;Mi khat na mawhsak ma-in ahang kan masa in.
&#x1f538;Mi khat na gensiat &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/kan-masa-in/">Continue Reading <span class="screen-reader-text">about Kan masa in</span> &#x2192;</a></p></div></article><article class="post-26956 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Ka ut kei-a, ka phal kei hi"><a href="https://zomidaily.com/ka-ut-kei-a-ka-phal-kei-hi/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="34" data-permalink="https://zomidaily.com/cimphawng-kipuah-kawm/001davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001davidtuang" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/ka-ut-kei-a-ka-phal-kei-hi/">Ka ut kei-a, ka phal kei hi</a></h4></header><div class="entry-content"><p>Ka ut kei-a, ka phal kei hi

&#x1f449; Kei hangin ka gam/leitang sungah gitloh ngongtatna aom ding ka ut kei a, kei hangin ka gam/leitang sungah gal &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/ka-ut-kei-a-ka-phal-kei-hi/">Continue Reading <span class="screen-reader-text">about Ka ut kei-a, ka phal kei hi</span> &#x2192;</a></p></div></article><article class="post-26953 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Teek leh Mo ~ David Tuang"><a href="https://zomidaily.com/teek-leh-mo-david-tuang/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="34" data-permalink="https://zomidaily.com/cimphawng-kipuah-kawm/001davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001davidtuang" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/teek-leh-mo-david-tuang/">Teek leh Mo ~ David Tuang</a></h4></header><div class="entry-content"><p>Teek leh Mo ~ David Tuang

Nute’ Ni hun sung tawh kizom in, “TEEK LEH MO” thu zong gen nuam hang. Banghang hiam cih leh teek leh mo i cih teng pen &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/teek-leh-mo-david-tuang/">Continue Reading <span class="screen-reader-text">about Teek leh Mo ~ David Tuang</span> &#x2192;</a></p></div></article><article class="post-26949 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Tuunnu&#8217; itna"><a href="https://zomidaily.com/tuunnu-itna/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/05/08davidt.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" data-attachment-id="26952" data-permalink="https://zomidaily.com/tuunnu-itna/08davidt/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/05/08davidt.jpg?fit=490%2C575&amp;ssl=1" data-orig-size="490,575" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="08davidt" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/05/08davidt.jpg?fit=368%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/tuunnu-itna/">Tuunnu&#8217; itna</a></h4></header><div class="entry-content"><p>Tuunnu' itna

Ka neu lai-in, ka nu pen zingsang nai 4/5 pawl in tho den in, lam nawl khat ah, mehteh mehgah zuak in tu den ahih lam ka phawkkikkik &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/tuunnu-itna/">Continue Reading <span class="screen-reader-text">about Tuunnu&#8217; itna</span> &#x2192;</a></p></div></article><article class="post-26948 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Hazatna lungsim paikhia in"><a href="https://zomidaily.com/hazatna-lungsim-paikhia-in/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/12/003think_jigsaw.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/12/003think_jigsaw.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/12/003think_jigsaw.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="16524" data-permalink="https://zomidaily.com/phisian-ding-om-phisian-lohding-om/003think_jigsaw/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/12/003think_jigsaw.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003think_jigsaw" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/12/003think_jigsaw.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/hazatna-lungsim-paikhia-in/">Hazatna lungsim paikhia in</a></h4></header><div class="entry-content"><p>Hazatna lungsim paikhia in

Nupi khat in a vengte’ inn kiim a om lingpakte pen hoihsa lua mahmah ahih manin a inn panin gal et sim zelzel hi. Ama &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/hazatna-lungsim-paikhia-in/">Continue Reading <span class="screen-reader-text">about Hazatna lungsim paikhia in</span> &#x2192;</a></p></div></article><article class="post-26947 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="I khentatna thupi mahmah"><a href="https://zomidaily.com/i-khentatna-thupi-mahmah/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/08/002highway_lithonia.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/08/002highway_lithonia.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/08/002highway_lithonia.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="20770" data-permalink="https://zomidaily.com/zomite-business-as-usual-angsung/003highway_lithonia/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/08/002highway_lithonia.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003highway_lithonia" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/08/002highway_lithonia.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/i-khentatna-thupi-mahmah/">I khentatna thupi mahmah</a></h4></header><div class="entry-content"><p>I khentatna thupi mahmah

Hun khat lai-in tangval khat a lawm ngaihnu tawh kikhen ahih manin naa sa lua in amah leh amah hong kisihbawl sawm hi. &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/i-khentatna-thupi-mahmah/">Continue Reading <span class="screen-reader-text">about I khentatna thupi mahmah</span> &#x2192;</a></p></div></article><article class="post-26945 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Naupang khat aneulai in lampi maan tawnsak lecin, ateek dongin lampial nawnloding hi (Pau 22:6)"><a href="https://zomidaily.com/naupang-khat-aneulai-in-lampi-maan-tawnsak-lecin/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="22612" data-permalink="https://zomidaily.com/happy-mothers-day-pau-tun-thang/10mother-sunset/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="10mother-sunset" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/naupang-khat-aneulai-in-lampi-maan-tawnsak-lecin/">Naupang khat aneulai in lampi maan tawnsak lecin, ateek dongin lampial nawnloding hi (Pau 22:6)</a></h4></header><div class="entry-content"><p>Naupang khat aneulai in lampi maan tawnsak lecin, ateek dongin lampial nawnloding hi (Pau 22:6)

Hih Lai Siangtho mun pen tate'n theih leh zong hoih &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/naupang-khat-aneulai-in-lampi-maan-tawnsak-lecin/">Continue Reading <span class="screen-reader-text">about Naupang khat aneulai in lampi maan tawnsak lecin, ateek dongin lampial nawnloding hi (Pau 22:6)</span> &#x2192;</a></p></div></article><article class="post-26943 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Aki lekkim tate etzia/bawlzia"><a href="https://zomidaily.com/aki-lekkim-tate-etzia-bawlzia/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/04/22davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/04/22davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/04/22davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="26944" data-permalink="https://zomidaily.com/aki-lekkim-tate-etzia-bawlzia/22davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/04/22davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="22davidtuang" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2026/04/22davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/aki-lekkim-tate-etzia-bawlzia/">Aki lekkim tate etzia/bawlzia</a></h4></header><div class="entry-content"><p>Aki lekkim tate etzia/bawlzia

Nu leh pa tampi takin i tate ki deidan kha thei zel a, eilam mintapte ahih kei leh i thu hong mang zawdeuhte a &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/aki-lekkim-tate-etzia-bawlzia/">Continue Reading <span class="screen-reader-text">about Aki lekkim tate etzia/bawlzia</span> &#x2192;</a></p></div></article><article class="post-26939 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Vaisah mahmah aive"><a href="https://zomidaily.com/vaisah-mahmah-aive/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="26592" data-permalink="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/29davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="29davidtuang" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/vaisah-mahmah-aive/">Vaisah mahmah aive</a></h4></header><div class="entry-content"><p>Vaisah mahmah aive

&#x1f449; I ut, i nuam aa mikhat peuh cigawp dikdek(gensia dikdek in)tua khit ciang, tawm hong dawngkik pian leh, kha lamah a &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/vaisah-mahmah-aive/">Continue Reading <span class="screen-reader-text">about Vaisah mahmah aive</span> &#x2192;</a></p></div></article><article class="post-26838 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Maisakna pen mangngilh sitsetna hilo"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="Photo from Unsplash" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="22832" data-permalink="https://zomidaily.com/tangpi-khantohnading-pau-sian-lian/003mountain_sunset/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003mountain_sunset" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/">Maisakna pen mangngilh sitsetna hilo</a></h4></header><div class="entry-content"><p>Maisakna pen mangngilh sitsetna hilo

Mi pawlkhat in, “maisakna pen mangngilh sitsetna hi” ci uh hi. Tua ahih leh maisak ing na cihte pen na maisak &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/">Continue Reading <span class="screen-reader-text">about Maisakna pen mangngilh sitsetna hilo</span> &#x2192;</a></p></div></article><article class="post-26788 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang tag-tuunlehzua entry" aria-label="Tuunnu&#8217; Itna ~ David Tuang"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="22612" data-permalink="https://zomidaily.com/happy-mothers-day-pau-tun-thang/10mother-sunset/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="10mother-sunset" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2013/08/10mother-sunset.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/">Tuunnu&#8217; Itna ~ David Tuang</a></h4></header><div class="entry-content"><p>Tuunnu' Itna ~ David Tuang

Ka neu lai-in, ka nu pen zingsang nai 4/5 pawl in tho den in, lam nawl khat ah, mehteh mehgah zuak in tu den ahih lam ka &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/">Continue Reading <span class="screen-reader-text">about Tuunnu&#8217; Itna ~ David Tuang</span> &#x2192;</a></p></div></article><article class="post-26700 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-politics entry" aria-label="Zo/Chin/Zomi ~ Nang Kim Mang"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="24051" data-permalink="https://zomidaily.com/khuahunluan-le-khangthak-te-nok-kam/003author_male/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003author_male" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/">Zo/Chin/Zomi ~ Nang Kim Mang</a></h4></header><div class="entry-content"><p>Zo/Chin/Zomi ~ Nang Kim Mang

I Pu/Pa te’ tenna Khamtung gam (Chin State, Myanmar) ah ni tumna gam lam pan British galkapte le American missionaryte &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/">Continue Reading <span class="screen-reader-text">about Zo/Chin/Zomi ~ Nang Kim Mang</span> &#x2192;</a></p></div></article><article class="post-26664 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-biakna tag-davidtuang entry" aria-label="Na pianthak loh phamawh"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="21403" data-permalink="https://zomidaily.com/003cross_parral/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003cross_parral" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/">Na pianthak loh phamawh</a></h4></header><div class="entry-content"><p>Na pianthak loh phamawh

Kumkhat khit kumkhat hong beibei-in, khua hun paiziate hong kidang semsem a, mulkimhuai lipkhaphuai leh patauhhuai thu &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/">Continue Reading <span class="screen-reader-text">about Na pianthak loh phamawh</span> &#x2192;</a></p></div></article><article class="post-26660 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-zya entry" aria-label="ZYA &#8211; Vision, Mission, Objectives and Policy"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="193" data-permalink="https://zomidaily.com/zya-kilamzia-gencianna/001zya/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001zya" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/">ZYA &#8211; Vision, Mission, Objectives and Policy</a></h4></header><div class="entry-content"><p>ZYA - Vision, Mission, Objectives and Policy

1. Vision

To build holistic development in our communities through unity among the Zomis

2. &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/">Continue Reading <span class="screen-reader-text">about ZYA &#8211; Vision, Mission, Objectives and Policy</span> &#x2192;</a></p></div></article><article class="post-26658 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-zya entry" aria-label="Zomi Youth Association (ZYA) hong pianzia"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="193" data-permalink="https://zomidaily.com/zya-kilamzia-gencianna/001zya/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001zya" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/">Zomi Youth Association (ZYA) hong pianzia</a></h4></header><div class="entry-content"><p>Zomi Youth Association (ZYA) hong pianzia - ZYA History

January 17, 2005 in Sia Mangpu (Pastor Peter Khual Lam Mang, Dr. Chin Do Kham naupa) in &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/">Continue Reading <span class="screen-reader-text">about Zomi Youth Association (ZYA) hong pianzia</span> &#x2192;</a></p></div></article><article class="post-26650 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Siangtho nuntakna bangzah takin thupi"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003sunset_palm_hut.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003sunset_palm_hut.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003sunset_palm_hut.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="23331" data-permalink="https://zomidaily.com/nuntakpih-ding-dimno-pa/003sunset_palm_hut/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003sunset_palm_hut.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003sunset_palm_hut" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="&lt;p&gt;003sunset_palm_hut&lt;/p&gt;
" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003sunset_palm_hut.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/">Siangtho nuntakna bangzah takin thupi</a></h4></header><div class="entry-content"><p>Siangtho nuntakna bangzah takin thupi

Josef in, simmawh bawlsiatna leh haksatna tampitak a thuak banah Pasian mai-ah thuman citakin a siangthona &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/">Continue Reading <span class="screen-reader-text">about Siangtho nuntakna bangzah takin thupi</span> &#x2192;</a></p></div></article><article class="post-26645 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Lamdawt tawnse dahni"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="23779" data-permalink="https://zomidaily.com/lamphei-tawndah-leh-thupha-ngaidah-omlo-dr-sian-za-kham/002road_zuluk/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003road_zuluk" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/">Lamdawt tawnse dahni</a></h4></header><div class="entry-content"><p>Lamdawt tawnse dahni

 Lamdawt tot pen kitungbaih napi-in, kigim mahmah hi. Lamdawt tot pen hun tomno adingin, ahoih bang napi-in, mailam hun saupi &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/">Continue Reading <span class="screen-reader-text">about Lamdawt tawnse dahni</span> &#x2192;</a></p></div></article><article class="post-26643 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-ngulkhanpau entry" aria-label="Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="102" data-permalink="https://zomidaily.com/tuhun-khristian-te-kisap-dr-ngul-khan-pau/001ngulkhanpau/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001ngulkhanpau" data-image-description="" data-image-caption="" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/">Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau</a></h4></header><div class="entry-content"><p>Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau

US President kiteelna November kha ciang om ding tawh kisai tulaitak gamsung makaite’n buaipih mahmah, &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/">Continue Reading <span class="screen-reader-text">about Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau</span> &#x2192;</a></p></div></article></div></section>
</div></div></div></main></div></div><div id="footer" class="footer-widgets"><h2 class="genesis-sidebar-title screen-reader-text">Footer</h2><div class="flexible-widgets widget-area widget-odd"><div class="wrap"><section id="custom_html-7" class="widget_text widget widget_custom_html"><div class="widget_text widget-wrap"><h3 class="widgettitle widget-title">Adang na simbeh nuamhia?</h3>
<div class="textwidget custom-html-widget"><p>Zomi Daily website tungah 2008 pekpan ihkaihkhop Article leh News akigawm in 12,845 valbang kikoihkhin hi. News leh Article na lunggulh bangbang anuai ah namek inla, nasim zelzel inmaw.....</p>

<p><a class="button" href="https://zomidaily.com/tag/news/">News thuthang</a>   <a class="button primary" href="https://zomidaily.com/tag/article/">Article tuamtuam</a></p></div></div></section>
</div></div></div><footer class="site-footer" itemscope itemtype="https://schema.org/WPFooter"><div class="wrap"><nav class="nav-secondary" aria-label="Secondary" itemscope itemtype="https://schema.org/SiteNavigationElement"><div class="wrap"><ul id="menu-social-menu" class="menu genesis-nav-menu menu-secondary js-superfish"><li id="menu-item-16270" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16270"><a target="_blank" href="https://www.facebook.com/ZomiDaily/" itemprop="url"><span itemprop="name">Facebook</span></a></li>
<li id="menu-item-16271" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16271"><a target="_blank" href="https://twitter.com/zomidaily" itemprop="url"><span itemprop="name">Twitter</span></a></li>
<li id="menu-item-16272" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16272"><a target="_blank" href="https://www.youtube.com/@zomidaily?sub_confirmation=1" itemprop="url"><span itemprop="name">YouTube</span></a></li>
<li id="menu-item-16273" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16273"><a target="_blank" href="https://groups.google.com/forum/#!forum/zomidaily/join" itemprop="url"><span itemprop="name">Groupmail</span></a></li>
<li id="menu-item-17040" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17040"><a href="https://zomidaily.com/our-story/" itemprop="url"><span itemprop="name">Our story</span></a></li>
<li id="menu-item-17041" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17041"><a href="https://zomidaily.com/disclaimer/" itemprop="url"><span itemprop="name">Disclaimer</span></a></li>
<li id="menu-item-17042" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17042"><a href="https://zomidaily.com/contact-us/" itemprop="url"><span itemprop="name">Contact Us</span></a></li>
<li id="menu-item-17043" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17043"><a href="https://zomidaily.com/about-us/" itemprop="url"><span itemprop="name">About Us</span></a></li>
</ul></div></nav><p>ESTD 2008 © Some <a href="https://zomidaily.com/">Rights</a> Reserved</p></div></footer></div><script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/zdmainblog/*","/wp-content/themes/genesis/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="hoverIntent-js" src="https://c0.wp.com/c/7.0/wp-includes/js/hoverIntent.min.js"></script>
<script id="superfish-js" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/menu/superfish.min.js?ver=1.7.10"></script>
<script id="superfish-args-js" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/menu/superfish.args.min.js?ver=3.6.2"></script>
<script id="skip-links-js" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/skip-links.min.js?ver=3.6.2"></script>
<script id="authority-responsive-menu-js-extra">
var genesis_responsive_menu = {"mainMenu":"Menu","menuIconClass":"dashicons-before dashicons-menu","subMenu":"Submenu","subMenuIconClass":"dashicons-before dashicons-arrow-down-alt2","menuClasses":{"combine":[".nav-primary",".nav-social"],"others":[]}};
//# sourceURL=authority-responsive-menu-js-extra
</script>
<script id="authority-responsive-menu-js" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/responsive-menus.min.js?ver=1.0.5"></script>
<script id="wccp_pro_admin_bar_ajax-js-extra">
var ajax_object = {"ajaxurl":"https://zomidaily.com/wp-admin/admin-ajax.php","link":"https://zomidaily.com/"};
//# sourceURL=wccp_pro_admin_bar_ajax-js-extra
</script>
<script id="wccp_pro_admin_bar_ajax-js" src="https://zomidaily.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=7.0"></script>
<script id="authority-front-js-js" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/front.js?ver=1.0.5"></script>
<script id="authority-hero-js-js" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/hero.js?ver=1.0.5"></script>
<script id="jetpack-stats-js-before">
_stq = window._stq || [];
_stq.push([ "view", {"v":"ext","blog":"74436939","post":"0","tz":"8","srv":"zomidaily.com","arch_home":"1","j":"1:15.8"} ]);
_stq.push([ "clickTrackerInit", "74436939", "0" ]);
//# sourceURL=jetpack-stats-js-before
</script>
<script data-wp-strategy="defer" defer id="jetpack-stats-js" src="https://stats.wp.com/e-202623.js"></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://zomidaily.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=https://zomidaily.com/wp-includes/js/wp-emoji-loader.min.js
</script>
</body></html>
