<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 700px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
</style>
<script>
jQuery('body').prepend(
'<div id="myModal" class="modal">'
	+'<div class="modal-content">'
		+'<label style="font-size:1.5em !important;">Please fill in your Email and Phone no.</label><span class="close">&times;</span><br><br>'
		+'<form id="form_vote" name="form_vote"><input type="hidden" name="votepostid" id="votepostid" value="">'
		+'<input type="hidden" name="votetype" id="votetype" value="">'
		+'<label>Email: </label>'
		+'<input type="text" id="email" name="email">'
		+'<label>Phone No.: </label>'
		+'<input type="number" id="phone" name="phone">'
		+'<input type="button" name="it_epoll_survey-vote-button" id="it_epoll_survey-vote-button" value="Submit" onclick="submitvote();"></form>'
	+'</div>'
+'</div>');

var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];

span.onclick = function() {
  modal.style.display = "none";
}

window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}


window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_on').html('ON - Lim Xiao Mun &#038; Cha Jian Chen');	
})


function voteon(a){
	modal.style.display = "block";
	jQuery('#votetype').val('on');
}

function submitvote(){
	votetype = jQuery('#votetype').val();
	if(votetype == 'on'){
		submitvoteon();
	}else if(votetype == 'os'){
		submitvoteos();
	}
}

function submitvoteon(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownon').show();
		jQuery('.voteon').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownon').hide();
			jQuery('.voteon').show();
			
		  } else {
			jQuery('#countdownon').html(timeleft + " seconds remaining");
		   // document.getElementById("countdownon").innerHTML = timeleft + " seconds remaining";
		  }
		  timeleft -= 1;
		}, 1000);
			
			nama = jQuery('.nama').html();
			var form = jQuery('#form_vote')[0];
			var formData = new FormData(form);
			formData.append('action', 'rwvoting_submiton');
			formData.append('nama', 'Lim Xiao Mun &#038; Cha Jian Chen');
			
				jQuery.ajax({
					type: "POST",
					url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
					data: formData,
					async: false,
					cache: false,
					contentType: false,
					enctype: 'multipart/form-data',
					processData: false,
					success: function (data) {
						var json = JSON.parse(data);
						percentage = json.percentage;
						msg_total = json.msg_total;
						
						jQuery('.percenton').html(percentage+'%');
						jQuery('.onwidth').css('width',percentage+'%');
						
						if(msg_total == 'Full'){
							alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
						}
					},
					error: function (data) {
						//console.log("fail: " + data);
					}
				});
	}
}


jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percenton&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percenton').html(result+'%');
		jQuery('.onwidth').css('width',result+'%');
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script><script>
window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_os').html('OS - Lim Xiao Mun &#038; Cha Jian Chen');
})

function voteos(a){
	modal.style.display = "block";
		jQuery('#votetype').val('os');
}

function submitvoteos(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownos').show();
		jQuery('.voteos').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownos').hide();
			jQuery('.voteos').show();
			
		  } else {
			jQuery('#countdownos').html(timeleft + " seconds remaining");
		  }
		  timeleft -= 1;
		}, 1000);
			
		nama = jQuery('.nama').html();
		var form = jQuery('#form_vote')[0];
		var formData = new FormData(form);
		formData.append('action', 'rwvoting_submitos');
		formData.append('nama', 'Lim Xiao Mun &#038; Cha Jian Chen');

		jQuery.ajax({
			type: "POST",
			url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
			data: formData,
			async: false,
			cache: false,
			contentType: false,
			enctype: 'multipart/form-data',
			processData: false,
			success: function (data) {
				var json = JSON.parse(data);
				percentage = json.percentage;
				msg_total = json.msg_total;
				
				jQuery('.percentos').html(percentage+'%');
				jQuery('.oswidth').css('width',percentage+'%');
				
				if(msg_total == 'Full'){
					alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
				}
			},
			error: function (data) {
				//console.log("fail: " + data);
			}
		});
	}
}

jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percentos&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percentos').html(result+'%');
		jQuery('.oswidth').css('width',result+'%');
		
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script>{"id":2889,"date":"2021-11-17T08:35:10","date_gmt":"2021-11-17T00:35:10","guid":{"rendered":"https:\/\/bms.awan.la\/?p=2889"},"modified":"2022-02-15T10:35:35","modified_gmt":"2022-02-15T02:35:35","slug":"cha-jian-chen-lim-xiao-mun","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=2889","title":{"rendered":"Lim Xiao Mun &#038; Cha Jian Chen"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-ww0syx-83c4fe50d9a8581bba770dc52ce1aed0 main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_section  avia-builder-el-first  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-u0ldrd-116f2237e7888831e0f244a4d09f20c5\">\n#top .av-special-heading.av-u0ldrd-116f2237e7888831e0f244a4d09f20c5{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-u0ldrd-116f2237e7888831e0f244a4d09f20c5 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-u0ldrd-116f2237e7888831e0f244a4d09f20c5 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-u0ldrd-116f2237e7888831e0f244a4d09f20c5 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-u0ldrd-116f2237e7888831e0f244a4d09f20c5 av-special-heading-h2 custom-color-heading  avia-builder-el-1  el_before_av_one_third  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PESERTA<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-t1m5yx-bb45c4b6c64c4113de480387d58ac28c\">\n.flex_column.av-t1m5yx-bb45c4b6c64c4113de480387d58ac28c{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-t1m5yx-bb45c4b6c64c4113de480387d58ac28c av_one_third  avia-builder-el-2  el_after_av_heading  el_before_av_two_third  first flex_column_div av-animated-generic pop-up av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2rc0sp-017c38ead548e1d5be60c2a7ad61a3e9\">\n#top .hr.hr-invisible.av-2rc0sp-017c38ead548e1d5be60c2a7ad61a3e9{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2rc0sp-017c38ead548e1d5be60c2a7ad61a3e9 hr-invisible  avia-builder-el-3  el_before_av_iconlist  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kw2scti6-b4901756be913fdbe6ecda6818074d50\">\n#top .avia-icon-list-container.av-kw2scti6-b4901756be913fdbe6ecda6818074d50 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#635ec6;\n}\n#top .avia-icon-list-container.av-kw2scti6-b4901756be913fdbe6ecda6818074d50 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-kw2scti6-b4901756be913fdbe6ecda6818074d50  avia-builder-el-4  el_after_av_hr  avia-builder-el-last '><ul class='avia-icon-list avia_animate_when_almost_visible avia-icon-list-left av-iconlist-big av-kw2scti6-b4901756be913fdbe6ecda6818074d50 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-kw2s5xj9-161eae569342656c380fe1d4a0f60f5e avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Cha Jian Chen &amp; Lim Xiao Mun <\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw2sa26l-14d95868e00ac88a2aaf567d753e2b21 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue8b1' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: LOKASI: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >LOKASI: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Kuala Lumpur<br \/>\n<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw2scitw-7fd43a9d9bc5c90902d735011bec55ec avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue805' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: EMEL:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >EMEL:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li>chajianchen77@gmail.com<\/li>\n<li>yukilim100@gmail.com<\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-kw2s9u28-4c0d75a8b798dc9d919003a26027ac85 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><ul>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Cha-Jian-Chen-Zero_cv.pdf\" target=\"_blank\" rel=\"noopener\">Cha Jian Chen<\/a><\/li>\n<li><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Lim-Xiao-Mun-Yuki_cv.pdf\" target=\"_blank\" rel=\"noopener\">Lim Xiao Mun<\/a><\/li>\n<\/ul>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-prqjwp-d332739934f33d6951f9b797dcc664a1\">\n.flex_column.av-prqjwp-d332739934f33d6951f9b797dcc664a1{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-prqjwp-d332739934f33d6951f9b797dcc664a1 av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kw2sehlg-d1c5402897e3ac3a0d207d49cc80fdb5\">\n.avia-image-container.av-kw2sehlg-d1c5402897e3ac3a0d207d49cc80fdb5 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-kw2sehlg-d1c5402897e3ac3a0d207d49cc80fdb5 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-kw2sehlg-d1c5402897e3ac3a0d207d49cc80fdb5 av-styling- avia-align-center  avia-builder-el-6  avia-builder-el-no-sibling '   itemprop=\"image\" itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/ImageObject\" ><div class=\"avia-image-container-inner\"><div class=\"avia-image-overlay-wrap\"><img decoding=\"async\" fetchpriority=\"high\" class='wp-image-5054 avia-img-lazy-loading-not-5054 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4.png\" alt='' title='YUKI 4'  height=\"963\" width=\"1539\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4.png 1539w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-300x188.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-1030x645.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-768x481.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-1536x961.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-1500x939.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4-705x441.png 705w\" sizes=\"(max-width: 1539px) 100vw, 1539px\" \/><\/div><\/div><\/div><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-ob7ox5-f9f9af8b328a457d9879938503c51afe main_color avia-section-default avia-no-border-styling  avia-builder-el-7  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-molzuh-dc907a2e78e9d960499c82cfb866d055\">\n.flex_column.av-molzuh-dc907a2e78e9d960499c82cfb866d055{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-molzuh-dc907a2e78e9d960499c82cfb866d055 av_one_full  avia-builder-el-8  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kw5lw9-f46cf5e6582757243b912c5a5c850066\">\n#top .av-special-heading.av-kw5lw9-f46cf5e6582757243b912c5a5c850066{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kw5lw9-f46cf5e6582757243b912c5a5c850066 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kw5lw9-f46cf5e6582757243b912c5a5c850066 .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kw5lw9-f46cf5e6582757243b912c5a5c850066 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kw5lw9-f46cf5e6582757243b912c5a5c850066 av-special-heading-h2 custom-color-heading  avia-builder-el-9  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >CADANGAN <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-jqlzax-25d49a0d354a1fa8727dc718df84bc06\">\n#top .hr.hr-invisible.av-jqlzax-25d49a0d354a1fa8727dc718df84bc06{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-jqlzax-25d49a0d354a1fa8727dc718df84bc06 hr-invisible  avia-builder-el-10  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kw2shh69-e14e59272f6470248d5d94b7bbd5698a '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">In our opinion, everyone has a responsibility to practice social distancing to prevent spread of COVID-19. However, there are still some of the irresponsible groups in our society and many grey zone in SOP that the politicians made decisions with fickle mind to caused confusion to people during this situation. Although there are many outdoor activities restrictions, and some individual may feel the emotional impacts. But the pandemic we are facing now is just a temporary moment, even it takes more years to end.<\/p>\n<p style=\"text-align: justify;\">According to our studies ideas (0.3, 0.4), we intend to mesh two artists panting on one canvas. The new piece of artwork we are targeting, is the visual with formal and expressions style to depict emotional intensity of this pandemic situation happened, despite of those issues.<\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-a5adl-b98029b429b53bf197d451cbaf77d8ae '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone wp-image-5052 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2.png\" alt=\"\" width=\"1270\" height=\"862\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2.png 1270w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2-300x204.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2-1030x699.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2-768x521.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-2-705x479.png 705w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone wp-image-5051 size-full\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3.png\" alt=\"\" width=\"1998\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3.png 1998w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-300x155.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-1030x531.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-768x396.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-1536x792.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-1500x773.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-3-705x363.png 705w\" sizes=\"(max-width: 1998px) 100vw, 1998px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-gqr3cp-5738fea41502486468786790c7d2df32 main_color avia-section-default avia-no-border-styling  avia-builder-el-13  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ggbsjt-07448a1f909d5df1c9f57e97b2d0c1b9\">\n.flex_column.av-ggbsjt-07448a1f909d5df1c9f57e97b2d0c1b9{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-ggbsjt-07448a1f909d5df1c9f57e97b2d0c1b9 av_one_full  avia-builder-el-14  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-dvjlmx-92ec14e892d52807c6f407b02aa793eb\">\n#top .av-special-heading.av-dvjlmx-92ec14e892d52807c6f407b02aa793eb{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-dvjlmx-92ec14e892d52807c6f407b02aa793eb .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-dvjlmx-92ec14e892d52807c6f407b02aa793eb .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-dvjlmx-92ec14e892d52807c6f407b02aa793eb .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-dvjlmx-92ec14e892d52807c6f407b02aa793eb av-special-heading-h2 custom-color-heading  avia-builder-el-15  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >LAKARAN<span style=\"color: #ffffff;\">CADANGAN <\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-d1aco9-0057969b5faebed0c073598f24c47cd4\">\n#top .hr.hr-invisible.av-d1aco9-0057969b5faebed0c073598f24c47cd4{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-d1aco9-0057969b5faebed0c073598f24c47cd4 hr-invisible  avia-builder-el-16  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-45bkqx-1df51f67258f42465b536534dec19e5d '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-aosii1-bdfbc6363117f23b1daefd36c1df4c96 main_color avia-section-default avia-no-border-styling  avia-builder-el-18  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-94n4ft-cbc9848b270d73becbbd85f649de534a\">\n.flex_column.av-94n4ft-cbc9848b270d73becbbd85f649de534a{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-94n4ft-cbc9848b270d73becbbd85f649de534a av_one_full  avia-builder-el-19  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-6yvp49-12937372c7dab5e2f6a4c1b9b47539d0\">\n#top .hr.hr-invisible.av-6yvp49-12937372c7dab5e2f6a4c1b9b47539d0{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-6yvp49-12937372c7dab5e2f6a4c1b9b47539d0 hr-invisible  avia-builder-el-21  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kw2sjxrb-3efd0a2d32742e7d1bcbb14f48333e2f '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-full wp-image-5049\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI.png\" alt=\"\" width=\"1782\" height=\"1410\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI.png 1782w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-300x237.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-1030x815.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-768x608.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-1536x1215.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-1500x1187.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-705x558.png 705w\" sizes=\"(max-width: 1782px) 100vw, 1782px\" \/><\/p>\n<p style=\"text-align: justify;\">Subject matter mostly focuses on public activities of irresponsible group and changes in the surrounding environment (floor tape, scanning, 2 pax rule, etc) related to the MCO and CMCO with the revised SOPs in Malaysia.<\/p>\n<p style=\"text-align: justify;\">Composition may improvise during the painting process for final outcome. The artwork composed of its basic elements with color, line, composition and texture based on two artists style to present on the art form.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-5jcezt-8da12e0d4e11aa386951f17a1048a97a main_color avia-section-default avia-no-border-styling  avia-builder-el-23  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4okb0p-8c9654e4b697f8e15499cd4f1574de7c\">\n.flex_column.av-4okb0p-8c9654e4b697f8e15499cd4f1574de7c{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4okb0p-8c9654e4b697f8e15499cd4f1574de7c av_one_full  avia-builder-el-24  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e\">\n#top .av-special-heading.av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e{\npadding-bottom:10px;\ncolor:#635ec6;\n}\nbody .av-special-heading.av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e .special-heading-inner-border{\nborder-color:#635ec6;\n}\n.av-special-heading.av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-kw2skg1l-b624f83bcb6a2a7110a240f8af0c9b5e av-special-heading-h2 custom-color-heading  avia-builder-el-25  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >. <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2gauyh-b939d710b03bccceaa4e1eb318ec6b17\">\n#top .hr.hr-invisible.av-2gauyh-b939d710b03bccceaa4e1eb318ec6b17{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-2gauyh-b939d710b03bccceaa4e1eb318ec6b17 hr-invisible  avia-builder-el-26  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-kw2slvpi-eeb2afd267cb3a8fee22ba0cbfb8a748 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-full wp-image-5047\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303.png\" alt=\"\" width=\"1057\" height=\"868\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303.png 1057w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303-300x246.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303-1030x846.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303-768x631.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/Screenshot_2021_1215_151303-705x579.png 705w\" sizes=\"(max-width: 1057px) 100vw, 1057px\" \/><\/p>\n<\/div><\/section>\n<div  class='avia-video av-ky77l3i2-a46fe3bb40cf0667a90d7b9294e783ba avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/k03OGdkcPWs '><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"BAKAT MUDA SEZAMAN 2021 | (ZON TENGAH) 37.5C - YUKI LIM ZERO\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/k03OGdkcPWs?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian'  class='avia-section av-bxfdq1-9425dba048cf8f79e331ab54946442ff main_color avia-section-default avia-no-border-styling  avia-builder-el-29  el_after_av_section  avia-builder-el-last  voting avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-2889'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-atnesp-fb30c287044ca24bfdcf17a81d05c25b sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-atnesp-fb30c287044ca24bfdcf17a81d05c25b\">\n.flex_column.av-atnesp-fb30c287044ca24bfdcf17a81d05c25b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-atnesp-fb30c287044ca24bfdcf17a81d05c25b av_one_half  avia-builder-el-30  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-9voug9-5b3347f53582422273c2d3f9e69d851d '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\" \"=\"\">\n\t<h1 class=\" it_epoll_title\">\n\t<span class=\"it_epoll_title_exact_on\"><\/span>\n\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/online.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4.png\">\n\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t<\/svg>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t<div class=\"it_epoll_survey-item-action \">\n\t\t\t\t\t<form id=\"form_voteon\">\n\t\t\t\t\t\t<input type=\"hidden\" name=\"onpostid\" id=\"onpostid\" value=\"\">\n\t\t\t\t\t\t<div id=\"countdownon\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteon\" value=\"Vote\" onclick=\"voteon('online');\">\n\t\t\t\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient onwidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percenton\"> 0% <\/span>\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"5\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 5 \/ 5 <\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n\n<\/div><\/section><\/div><div class='av-flex-placeholder'><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-830qq1-ce36862f9ca9f97d9070b5fa657b3b41\">\n.flex_column.av-830qq1-ce36862f9ca9f97d9070b5fa657b3b41{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-830qq1-ce36862f9ca9f97d9070b5fa657b3b41 av_one_half  avia-builder-el-32  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-5cead5-c6191238c196f9a7b47733d2cd49565a '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\">\n\t<h1 class=\"it_epoll_title\">\n\t\t<span class=\"it_epoll_title_exact_os\"><\/span>\n\t\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/onsite.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2021\/11\/YUKI-4.png\">\n\t\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-item-action it_epoll_survey-item-action-disabled\">\n\t\t\t\t\t\t<form id=\"form_voteos\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"ospostid\" id=\"ospostid\" value=\"\">\n\t\t\t\t\t\t\t<div id=\"countdownos\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteos\" value=\"Vote\" onclick=\"voteos('os')\">\n\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient oswidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percentos\"> 0% <\/span>\n\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"3\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 3 \/ 3 <\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n<\/div><\/section><\/div><\/div><!--close column table wrapper. Autoclose: 1 -->\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4nsvd5-a07c2f7e27a2bca9e4123fb6ae259aa5\">\n.flex_column.av-4nsvd5-a07c2f7e27a2bca9e4123fb6ae259aa5{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4nsvd5-a07c2f7e27a2bca9e4123fb6ae259aa5 av_one_full  avia-builder-el-34  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-2xq049-db82b8f9ee412823b8906def53843e2e '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: center;\"><img decoding=\"async\" src=\"https:\/\/chart.googleapis.com\/chart?chs=300x300&cht=qr&chl=https:\/\/www.artgallery.gov.my\/bms&choe=UTF-8\" \/><\/p>\n<\/div><\/section><\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":5054,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[],"class_list":["post-2889","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-kuala-lumpur-2021"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2889","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2889"}],"version-history":[{"count":17,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2889\/revisions"}],"predecessor-version":[{"id":3766,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/2889\/revisions\/3766"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/5054"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2889"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2889"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}