diff --git a/.gitignore b/.gitignore index b9bc05f11d..a32720075a 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ info.php sftp-config.json .php-cs-fixer.cache .htaccess +*.sql mitra # Abaikan file cache milik phpintel (plugin sublime text) diff --git a/app/Libraries/TinyMCE.php b/app/Libraries/TinyMCE.php index 0a23921755..3eb307194c 100644 --- a/app/Libraries/TinyMCE.php +++ b/app/Libraries/TinyMCE.php @@ -73,7 +73,7 @@ class TinyMCE '; - public const TOP = 3; // cm + public const TOP = 4; // cm public const BOTTOM = 2; // cm public function getTemplate() @@ -617,26 +617,30 @@ private function getIsianPost($data = []) $input = $data['input']; // Statis Post - $postStatis = [ - [ - 'nama' => 'Mulai Berlaku', - 'kode' => '[mulai_berlaku]', - ], - [ - 'nama' => 'Berlaku Sampai', - 'kode' => '[berlaku_sampai]', - ], - ]; + $postStatis = []; - $postStatis = collect($postStatis) - ->map(static function ($item, $key) use ($input) { - return [ - 'judul' => $item['nama'], - 'isian' => $item['kode'], - 'data' => $input[underscore($item['nama'], true, true)], - ]; - }) - ->toArray(); + if ((int) $data['surat']['masa_berlaku'] > 0) { + $postStatis = [ + [ + 'nama' => 'Mulai Berlaku', + 'kode' => '[mulai_berlaku]', + ], + [ + 'nama' => 'Berlaku Sampai', + 'kode' => '[berlaku_sampai]', + ], + ]; + + $postStatis = collect($postStatis) + ->map(static function ($item, $key) use ($input) { + return [ + 'judul' => $item['nama'], + 'isian' => $item['kode'], + 'data' => $input[underscore($item['nama'], true, true)], + ]; + }) + ->toArray(); + } // Dinamis $postDinamis = collect(json_decode($data['surat']['kode_isian'])) @@ -710,7 +714,6 @@ public function getPenandatangan($input = []) public function substitusiNomorSurat($nomor = null, $format = '') { // TODO : Cek jika null, cari no surat terakhir berdasarkan kelompok - $format = str_replace('[nomor_surat]', "{$nomor}", $format); if (preg_match_all('/\[nomor_surat,\s*\d+\]/', $format, $matches)) { foreach ($matches[0] as $match) { diff --git a/app/Models/Anak.php b/app/Models/Anak.php index 35494906f7..67562a556d 100644 --- a/app/Models/Anak.php +++ b/app/Models/Anak.php @@ -43,6 +43,72 @@ class Anak extends Model { + /** + * Static data status gizi anak + * + * @var array + */ + public const STATUS_GIZI_ANAK = [ + [ + 'id' => 1, + 'simbol' => 'N', + 'nama' => 'Sehat / Normal (N)', + ], + [ + 'id' => 2, + 'simbol' => 'GK', + 'nama' => 'Gizi Kurang (GK)', + ], + [ + 'id' => 3, + 'simbol' => 'GB', + 'nama' => 'Gizi Buruk (GB)', + ], + [ + 'id' => 4, + 'simbol' => 'S', + 'nama' => 'Stunting (S)', + ], + ]; + + /** + * Static data status tikar anak + * + * @var array + */ + public const STATUS_TIKAR_ANAK = [ + [ + 'id' => 1, + 'simbol' => 'TD', + 'nama' => 'Tidak Diukur (TD)', + ], + [ + 'id' => 2, + 'simbol' => 'M', + 'nama' => 'Merah (M)', + ], + [ + 'id' => 3, + 'simbol' => 'K', + 'nama' => 'Kuning (K)', + ], + [ + 'id' => 4, + 'simbol' => 'H', + 'nama' => 'Hijau (H)', + ], + ]; + + /** + * Static data status imunisasi campak + * + * @var array + */ + public const STATUS_IMUNISASI_CAMPAK = [ + 1 => 'Belum', + 2 => 'Sudah', + ]; + /** * The table associated with the model. * diff --git a/app/Models/IbuHamil.php b/app/Models/IbuHamil.php index 87030d959a..b37463f5c7 100644 --- a/app/Models/IbuHamil.php +++ b/app/Models/IbuHamil.php @@ -43,6 +43,29 @@ class IbuHamil extends Model { + /** + * Static data status kehamilan ibu + * + * @var array + */ + public const STATUS_KEHAMILAN_IBU = [ + [ + 'id' => 1, + 'simbol' => 'N', + 'nama' => 'Normal (N)', + ], + [ + 'id' => 2, + 'simbol' => 'Risti', + 'nama' => 'Risiko Tinggi (Risti)', + ], + [ + 'id' => 3, + 'simbol' => 'KEK', + 'nama' => 'Kekurangan Energi Kronis (KEK)', + ], + ]; + /** * The table associated with the model. * diff --git a/app/Models/RefFontSurat.php b/app/Models/RefFontSurat.php new file mode 100644 index 0000000000..ce9e4d5722 --- /dev/null +++ b/app/Models/RefFontSurat.php @@ -0,0 +1,64 @@ +hasOne(Pamong::class, 'pamong_id', 'pamong_id'); } + + /** + * Scope query untuk status pengguna + * + * @param mixed $query + * @param mixed $status + * + * @return Builder + */ + public function scopeStatus($query, $status = 1) + { + return $query->where('active', $status); + } } diff --git a/assets/bootstrap/css/bootstrap-datetimepicker.min.css b/assets/bootstrap/css/bootstrap-datetimepicker.min.css index 00486502c6..859e4769b0 100644 --- a/assets/bootstrap/css/bootstrap-datetimepicker.min.css +++ b/assets/bootstrap/css/bootstrap-datetimepicker.min.css @@ -1,5 +1,5 @@ -/*! - * Datetimepicker for Bootstrap 3 - * version : 4.17.47 - * https://github.com/Eonasdan/bootstrap-datetimepicker/ +/*! + * Datetimepicker for Bootstrap 3 + * version : 4.17.47 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px;color:black;}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} \ No newline at end of file diff --git a/assets/js/script.js b/assets/js/script.js index f4d9fd8335..e1023d0aed 100644 --- a/assets/js/script.js +++ b/assets/js/script.js @@ -421,6 +421,13 @@ function notification(type, message) ); } +function cek_koneksi() { + $('#maincontent').prepend('
' + + '

  Informasi

' + + '

Aplikasi tidak dapat terhubung dengan koneksi internet, beberapa modul mungkin tidak berjalan dengan baik.

'+ + '
'); +} + function cari_nik() { $('#cari_nik').change(function() diff --git a/assets/js/sweetalert2/sweetalert2.all.min.js b/assets/js/sweetalert2/sweetalert2.all.min.js index 5f45ad4f86..43dfcbcdbe 100644 --- a/assets/js/sweetalert2/sweetalert2.all.min.js +++ b/assets/js/sweetalert2/sweetalert2.all.min.js @@ -1,2 +1,2 @@ -!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).Sweetalert2=t()}(this,function(){"use strict";const D="SweetAlert2:",q=e=>e.charAt(0).toUpperCase()+e.slice(1),i=e=>Array.prototype.slice.call(e),r=e=>{console.warn("".concat(D," ").concat("object"==typeof e?e.join(" "):e))},l=e=>{console.error("".concat(D," ").concat(e))},V=[],N=(e,t)=>{e='"'.concat(e,'" is deprecated and will be removed in the next major release. Please use "').concat(t,'" instead.'),V.includes(e)||(V.push(e),r(e))},R=e=>"function"==typeof e?e():e,F=e=>e&&"function"==typeof e.toPromise,u=e=>F(e)?e.toPromise():Promise.resolve(e),U=e=>e&&Promise.resolve(e)===e,a={title:"",titleText:"",text:"",html:"",footer:"",icon:void 0,iconColor:void 0,iconHtml:void 0,template:void 0,toast:!1,showClass:{popup:"swal2-show",backdrop:"swal2-backdrop-show",icon:"swal2-icon-show"},hideClass:{popup:"swal2-hide",backdrop:"swal2-backdrop-hide",icon:"swal2-icon-hide"},customClass:{},target:"body",color:void 0,backdrop:!0,heightAuto:!0,allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!0,stopKeydownPropagation:!0,keydownListenerCapture:!1,showConfirmButton:!0,showDenyButton:!1,showCancelButton:!1,preConfirm:void 0,preDeny:void 0,confirmButtonText:"OK",confirmButtonAriaLabel:"",confirmButtonColor:void 0,denyButtonText:"No",denyButtonAriaLabel:"",denyButtonColor:void 0,cancelButtonText:"Cancel",cancelButtonAriaLabel:"",cancelButtonColor:void 0,buttonsStyling:!0,reverseButtons:!1,focusConfirm:!0,focusDeny:!1,focusCancel:!1,returnFocus:!0,showCloseButton:!1,closeButtonHtml:"×",closeButtonAriaLabel:"Close this dialog",loaderHtml:"",showLoaderOnConfirm:!1,showLoaderOnDeny:!1,imageUrl:void 0,imageWidth:void 0,imageHeight:void 0,imageAlt:"",timer:void 0,timerProgressBar:!1,width:void 0,padding:void 0,background:void 0,input:void 0,inputPlaceholder:"",inputLabel:"",inputValue:"",inputOptions:{},inputAutoTrim:!0,inputAttributes:{},inputValidator:void 0,returnInputValueOnDeny:!1,validationMessage:void 0,grow:!1,position:"center",progressSteps:[],currentProgressStep:void 0,progressStepsDistance:void 0,willOpen:void 0,didOpen:void 0,didRender:void 0,willClose:void 0,didClose:void 0,didDestroy:void 0,scrollbarPadding:!0},W=["allowEscapeKey","allowOutsideClick","background","buttonsStyling","cancelButtonAriaLabel","cancelButtonColor","cancelButtonText","closeButtonAriaLabel","closeButtonHtml","color","confirmButtonAriaLabel","confirmButtonColor","confirmButtonText","currentProgressStep","customClass","denyButtonAriaLabel","denyButtonColor","denyButtonText","didClose","didDestroy","footer","hideClass","html","icon","iconColor","iconHtml","imageAlt","imageHeight","imageUrl","imageWidth","preConfirm","preDeny","progressSteps","returnFocus","reverseButtons","showCancelButton","showCloseButton","showConfirmButton","showDenyButton","text","title","titleText","willClose"],z={},K=["allowOutsideClick","allowEnterKey","backdrop","focusConfirm","focusDeny","focusCancel","returnFocus","heightAuto","keydownListenerCapture"],_=e=>Object.prototype.hasOwnProperty.call(a,e),Y=e=>-1!==W.indexOf(e),Z=e=>z[e],$=e=>{!e.backdrop&&e.allowOutsideClick&&r('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`');for(const n in e)t=n,_(t)||r('Unknown parameter "'.concat(t,'"')),e.toast&&(t=n,K.includes(t)&&r('The parameter "'.concat(t,'" is incompatible with toasts'))),t=n,Z(t)&&N(t,Z(t));var t};var e=e=>{const t={};for(const n in e)t[e[n]]="swal2-"+e[n];return t};const p=e(["container","shown","height-auto","iosfix","popup","modal","no-backdrop","no-transition","toast","toast-shown","show","hide","close","title","html-container","actions","confirm","deny","cancel","default-outline","footer","icon","icon-content","image","input","file","range","select","radio","checkbox","label","textarea","inputerror","input-label","validation-message","progress-steps","active-progress-step","progress-step","progress-step-line","loader","loading","styled","top","top-start","top-end","top-left","top-right","center","center-start","center-end","center-left","center-right","bottom","bottom-start","bottom-end","bottom-left","bottom-right","grow-row","grow-column","grow-fullscreen","rtl","timer-progress-bar","timer-progress-bar-container","scrollbar-measure","icon-success","icon-warning","icon-info","icon-question","icon-error","no-war"]),o=e(["success","warning","info","question","error"]),m=()=>document.body.querySelector(".".concat(p.container)),J=e=>{const t=m();return t?t.querySelector(e):null},t=e=>J(".".concat(e)),g=()=>t(p.popup),X=()=>t(p.icon),G=()=>t(p.title),Q=()=>t(p["html-container"]),ee=()=>t(p.image),te=()=>t(p["progress-steps"]),ne=()=>t(p["validation-message"]),h=()=>J(".".concat(p.actions," .").concat(p.confirm)),f=()=>J(".".concat(p.actions," .").concat(p.deny));const d=()=>J(".".concat(p.loader)),b=()=>J(".".concat(p.actions," .").concat(p.cancel)),oe=()=>t(p.actions),ie=()=>t(p.footer),re=()=>t(p["timer-progress-bar"]),ae=()=>t(p.close),se=()=>{const e=i(g().querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])')).sort((e,t)=>{e=parseInt(e.getAttribute("tabindex")),t=parseInt(t.getAttribute("tabindex"));return t"-1"!==e.getAttribute("tabindex"));return(t=>{const n=[];for(let e=0;eB(e))},ce=()=>s(document.body,p.shown)&&!s(document.body,p["toast-shown"])&&!s(document.body,p["no-backdrop"]),le=()=>g()&&s(g(),p.toast);function ue(e){var t=1{n.style.transition="width ".concat(e/1e3,"s linear"),n.style.width="0%"},10))}const n={previousBodyPadding:null},v=(t,e)=>{if(t.textContent="",e){const n=new DOMParser,o=n.parseFromString(e,"text/html");i(o.querySelector("head").childNodes).forEach(e=>{t.appendChild(e)}),i(o.querySelector("body").childNodes).forEach(e=>{t.appendChild(e)})}},s=(t,e)=>{if(!e)return!1;var n=e.split(/\s+/);for(let e=0;e{i(t.classList).forEach(e=>{Object.values(p).includes(e)||Object.values(o).includes(e)||Object.values(n.showClass).includes(e)||t.classList.remove(e)})},y=(e,t,n)=>{if(de(e,t),t.customClass&&t.customClass[n]){if("string"!=typeof t.customClass[n]&&!t.customClass[n].forEach)return r("Invalid type of customClass.".concat(n,'! Expected string or iterable object, got "').concat(typeof t.customClass[n],'"'));w(e,t.customClass[n])}},pe=(e,t)=>{if(!t)return null;switch(t){case"select":case"textarea":case"file":return e.querySelector(".".concat(p.popup," > .").concat(p[t]));case"checkbox":return e.querySelector(".".concat(p.popup," > .").concat(p.checkbox," input"));case"radio":return e.querySelector(".".concat(p.popup," > .").concat(p.radio," input:checked"))||e.querySelector(".".concat(p.popup," > .").concat(p.radio," input:first-child"));case"range":return e.querySelector(".".concat(p.popup," > .").concat(p.range," input"));default:return e.querySelector(".".concat(p.popup," > .").concat(p.input))}},me=e=>{var t;e.focus(),"file"!==e.type&&(t=e.value,e.value="",e.value=t)},ge=(e,t,n)=>{e&&t&&(t="string"==typeof t?t.split(/\s+/).filter(Boolean):t).forEach(t=>{Array.isArray(e)?e.forEach(e=>{n?e.classList.add(t):e.classList.remove(t)}):n?e.classList.add(t):e.classList.remove(t)})},w=(e,t)=>{ge(e,t,!0)},C=(e,t)=>{ge(e,t,!1)},k=(e,t)=>{var n=i(e.childNodes);for(let e=0;e{(n=n==="".concat(parseInt(n))?parseInt(n):n)||0===parseInt(n)?e.style[t]="number"==typeof n?"".concat(n,"px"):n:e.style.removeProperty(t)},A=function(e){e.style.display=1{e.style.display="none"},he=(e,t,n,o)=>{const i=e.querySelector(t);i&&(i.style[n]=o)},fe=function(e,t){var n=2!(!e||!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)),be=()=>!B(h())&&!B(f())&&!B(b()),ve=e=>!!(e.scrollHeight>e.clientHeight),ye=e=>{const t=window.getComputedStyle(e);var e=parseFloat(t.getPropertyValue("animation-duration")||"0"),n=parseFloat(t.getPropertyValue("transition-duration")||"0");return 0"undefined"==typeof window||"undefined"==typeof document,Ce=100,x={},ke=()=>{x.previousActiveElement instanceof HTMLElement?(x.previousActiveElement.focus(),x.previousActiveElement=null):document.body&&document.body.focus()},Ae=o=>new Promise(e=>{if(!o)return e();var t=window.scrollX,n=window.scrollY;x.restoreFocusTimeout=setTimeout(()=>{ke(),e()},Ce),window.scrollTo(t,n)}),Pe='\n
\n \n
    \n
    \n \n

    \n
    \n \n \n
    \n \n \n
    \n \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n').replace(/(^|\n)\s*/g,""),Be=()=>{const e=m();return!!e&&(e.remove(),C([document.documentElement,document.body],[p["no-backdrop"],p["toast-shown"],p["has-column"]]),!0)},E=()=>{x.currentInstance.resetValidationMessage()},xe=()=>{const e=g(),t=k(e,p.input),n=k(e,p.file),o=e.querySelector(".".concat(p.range," input")),i=e.querySelector(".".concat(p.range," output")),r=k(e,p.select),a=e.querySelector(".".concat(p.checkbox," input")),s=k(e,p.textarea);t.oninput=E,n.onchange=E,r.onchange=E,a.onchange=E,s.oninput=E,o.oninput=()=>{E(),i.value=o.value},o.onchange=()=>{E(),i.value=o.value}},Ee=e=>"string"==typeof e?document.querySelector(e):e,Te=e=>{const t=g();t.setAttribute("role",e.toast?"alert":"dialog"),t.setAttribute("aria-live",e.toast?"polite":"assertive"),e.toast||t.setAttribute("aria-modal","true")},Se=e=>{"rtl"===window.getComputedStyle(e).direction&&w(m(),p.rtl)},Le=(e,t)=>{if(e instanceof HTMLElement)t.appendChild(e);else if("object"==typeof e){var n=e,o=t;if(n.jquery)Oe(o,n);else v(o,n.toString())}else e&&v(t,e)},Oe=(t,n)=>{if(t.textContent="",0 in n)for(let e=0;e in n;e++)t.appendChild(n[e].cloneNode(!0));else t.appendChild(n.cloneNode(!0))},je=(()=>{if(we())return!1;var e=document.createElement("div"),t={WebkitAnimation:"webkitAnimationEnd",animation:"animationend"};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&void 0!==e.style[n])return t[n];return!1})(),Me=(e,t)=>{var n,o,i,r,a,s=oe(),c=d();(t.showConfirmButton||t.showDenyButton||t.showCancelButton?A:P)(s),y(s,t,"actions"),s=s,n=c,o=t,i=h(),r=f(),a=b(),He(i,"confirm",o),He(r,"deny",o),He(a,"cancel",o),function(e,t,n,o){if(!o.buttonsStyling)return C([e,t,n],p.styled);w([e,t,n],p.styled),o.confirmButtonColor&&(e.style.backgroundColor=o.confirmButtonColor,w(e,p["default-outline"]));o.denyButtonColor&&(t.style.backgroundColor=o.denyButtonColor,w(t,p["default-outline"]));o.cancelButtonColor&&(n.style.backgroundColor=o.cancelButtonColor,w(n,p["default-outline"]))}(i,r,a,o),o.reverseButtons&&(o.toast?(s.insertBefore(a,i),s.insertBefore(r,i)):(s.insertBefore(a,n),s.insertBefore(r,n),s.insertBefore(i,n))),v(c,t.loaderHtml),y(c,t,"loader")};function He(e,t,n){fe(e,n["show".concat(q(t),"Button")],"inline-block"),v(e,n["".concat(t,"ButtonText")]),e.setAttribute("aria-label",n["".concat(t,"ButtonAriaLabel")]),e.className=p[t],y(e,n,"".concat(t,"Button")),w(e,n["".concat(t,"ButtonClass")])}const Ie=(e,t)=>{var n,o,i=m();i&&(o=i,"string"==typeof(n=t.backdrop)?o.style.background=n:n||w([document.documentElement,document.body],p["no-backdrop"]),o=i,(n=t.position)in p?w(o,p[n]):(r('The "position" parameter is not valid, defaulting to "center"'),w(o,p.center)),n=i,(o=t.grow)&&"string"==typeof o&&(o="grow-".concat(o))in p&&w(n,p[o]),y(i,t,"container"))};var T={awaitingPromise:new WeakMap,promise:new WeakMap,innerParams:new WeakMap,domCache:new WeakMap};const De=["input","file","range","select","radio","checkbox","textarea"],qe=(e,a)=>{const s=g();var t,e=T.innerParams.get(e);const c=!e||a.input!==e.input;De.forEach(e=>{const t=k(s,p[e]);{var n=e,o=a.inputAttributes;const i=pe(g(),n);if(i){Ve(i);for(const r in o)i.setAttribute(r,o[r])}}t.className=p[e],c&&P(t)}),a.input&&(c&&(e=>{if(!S[e.input])return l('Unexpected type of input! Expected "text", "email", "password", "number", "tel", "select", "radio", "checkbox", "textarea", "file" or "url", got "'.concat(e.input,'"'));const t=Fe(e.input),n=S[e.input](t,e);A(t),setTimeout(()=>{me(n)})})(a),e=a,t=Fe(e.input),"object"==typeof e.customClass&&w(t,e.customClass.input))},Ve=t=>{for(let e=0;e{e.placeholder&&!t.inputPlaceholder||(e.placeholder=t.inputPlaceholder)},Re=(e,t,n)=>{if(n.inputLabel){e.id=p.input;const i=document.createElement("label");var o=p["input-label"];i.setAttribute("for",e.id),i.className=o,"object"==typeof n.customClass&&w(i,n.customClass.inputLabel),i.innerText=n.inputLabel,t.insertAdjacentElement("beforebegin",i)}},Fe=e=>k(g(),p[e]||p.input),Ue=(e,t)=>{["string","number"].includes(typeof t)?e.value="".concat(t):U(t)||r('Unexpected type of inputValue! Expected "string", "number" or "Promise", got "'.concat(typeof t,'"'))},S={},We=(S.text=S.email=S.password=S.number=S.tel=S.url=(e,t)=>(Ue(e,t.inputValue),Re(e,e,t),Ne(e,t),e.type=t.input,e),S.file=(e,t)=>(Re(e,e,t),Ne(e,t),e),S.range=(e,t)=>{const n=e.querySelector("input");var o=e.querySelector("output");return Ue(n,t.inputValue),n.type=t.input,Ue(o,t.inputValue),Re(n,e,t),e},S.select=(e,t)=>{if(e.textContent="",t.inputPlaceholder){const n=document.createElement("option");v(n,t.inputPlaceholder),n.value="",n.disabled=!0,n.selected=!0,e.appendChild(n)}return Re(e,e,t),e},S.radio=e=>(e.textContent="",e),S.checkbox=(e,t)=>{const n=pe(g(),"checkbox");n.value="1",n.id=p.checkbox,n.checked=Boolean(t.inputValue);e=e.querySelector("span");return v(e,t.inputPlaceholder),n},S.textarea=(n,e)=>{Ue(n,e.inputValue),Ne(n,e),Re(n,n,e);return setTimeout(()=>{if("MutationObserver"in window){const t=parseInt(window.getComputedStyle(g()).width);new MutationObserver(()=>{var e=n.offsetWidth+(e=n,parseInt(window.getComputedStyle(e).marginLeft)+parseInt(window.getComputedStyle(e).marginRight));e>t?g().style.width="".concat(e,"px"):g().style.width=null}).observe(n,{attributes:!0,attributeFilter:["style"]})}}),n},(e,t)=>{const n=Q();y(n,t,"htmlContainer"),t.html?(Le(t.html,n),A(n,"block")):t.text?(n.textContent=t.text,A(n,"block")):P(n),qe(e,t)}),ze=(e,t)=>{var n=ie();fe(n,t.footer),t.footer&&Le(t.footer,n),y(n,t,"footer")},Ke=(e,t)=>{const n=ae();v(n,t.closeButtonHtml),y(n,t,"closeButton"),fe(n,t.showCloseButton),n.setAttribute("aria-label",t.closeButtonAriaLabel)},_e=(e,t)=>{var e=T.innerParams.get(e),n=X();if(e&&t.icon===e.icon)return Xe(n,t),void Ye(n,t);if(t.icon||t.iconHtml){if(t.icon&&-1===Object.keys(o).indexOf(t.icon))return l('Unknown icon! Expected "success", "error", "warning", "info" or "question", got "'.concat(t.icon,'"')),void P(n);A(n),Xe(n,t),Ye(n,t),w(n,t.showClass.icon)}else P(n)},Ye=(e,t)=>{for(const n in o)t.icon!==n&&C(e,o[n]);w(e,o[t.icon]),Ge(e,t),Ze(),y(e,t,"icon")},Ze=()=>{const e=g();var t=window.getComputedStyle(e).getPropertyValue("background-color");const n=e.querySelectorAll("[class^=swal2-success-circular-line], .swal2-success-fix");for(let e=0;e\n \n
    \n
    \n',Je='\n \n \n \n \n',Xe=(e,t)=>{let n=e.innerHTML,o;var i;t.iconHtml?o=Qe(t.iconHtml):"success"===t.icon?(o=$e,n=n.replace(/ style=".*?"/g,"")):o="error"===t.icon?Je:(i={question:"?",warning:"!",info:"i"},Qe(i[t.icon])),n.trim()!==o.trim()&&v(e,o)},Ge=(e,t)=>{if(t.iconColor){e.style.color=t.iconColor,e.style.borderColor=t.iconColor;for(const n of[".swal2-success-line-tip",".swal2-success-line-long",".swal2-x-mark-line-left",".swal2-x-mark-line-right"])he(e,n,"backgroundColor",t.iconColor);he(e,".swal2-success-ring","borderColor",t.iconColor)}},Qe=e=>'
    ').concat(e,"
    "),et=(e,t)=>{const n=ee();if(!t.imageUrl)return P(n);A(n,""),n.setAttribute("src",t.imageUrl),n.setAttribute("alt",t.imageAlt),c(n,"width",t.imageWidth),c(n,"height",t.imageHeight),n.className=p.image,y(n,t,"image")},tt=(e,n)=>{const o=te();if(!n.progressSteps||0===n.progressSteps.length)return P(o);A(o),o.textContent="",n.currentProgressStep>=n.progressSteps.length&&r("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)"),n.progressSteps.forEach((e,t)=>{var e=(e=>{const t=document.createElement("li");return w(t,p["progress-step"]),v(t,e),t})(e);o.appendChild(e),t===n.currentProgressStep&&w(e,p["active-progress-step"]),t!==n.progressSteps.length-1&&(e=(e=>{const t=document.createElement("li");if(w(t,p["progress-step-line"]),e.progressStepsDistance)c(t,"width",e.progressStepsDistance);return t})(n),o.appendChild(e))})},nt=(e,t)=>{const n=G();fe(n,t.title||t.titleText,"block"),t.title&&Le(t.title,n),t.titleText&&(n.innerText=t.titleText),y(n,t,"title")},ot=(e,t)=>{var n=m();const o=g();t.toast?(c(n,"width",t.width),o.style.width="100%",o.insertBefore(d(),X())):c(o,"width",t.width),c(o,"padding",t.padding),t.color&&(o.style.color=t.color),t.background&&(o.style.background=t.background),P(ne());n=o;(n.className="".concat(p.popup," ").concat(B(n)?t.showClass.popup:""),t.toast)?(w([document.documentElement,document.body],p["toast-shown"]),w(n,p.toast)):w(n,p.modal);y(n,t,"popup"),"string"==typeof t.customClass&&w(n,t.customClass);t.icon&&w(n,p["icon-".concat(t.icon)])},it=(e,t)=>{ot(e,t),Ie(e,t),tt(e,t),_e(e,t),et(e,t),nt(e,t),Ke(e,t),We(e,t),Me(e,t),ze(e,t),"function"==typeof t.didRender&&t.didRender(g())},L=Object.freeze({cancel:"cancel",backdrop:"backdrop",close:"close",esc:"esc",timer:"timer"}),rt=()=>{const e=i(document.body.children);e.forEach(e=>{e===m()||e.contains(m())||(e.hasAttribute("aria-hidden")&&e.setAttribute("data-previous-aria-hidden",e.getAttribute("aria-hidden")),e.setAttribute("aria-hidden","true"))})},at=()=>{const e=i(document.body.children);e.forEach(e=>{e.hasAttribute("data-previous-aria-hidden")?(e.setAttribute("aria-hidden",e.getAttribute("data-previous-aria-hidden")),e.removeAttribute("data-previous-aria-hidden")):e.removeAttribute("aria-hidden")})},st=["swal-title","swal-html","swal-footer"],ct=e=>{const n={};return i(e.querySelectorAll("swal-param")).forEach(e=>{O(e,["name","value"]);var t=e.getAttribute("name"),e=e.getAttribute("value");"boolean"==typeof a[t]&&"false"===e&&(n[t]=!1),"object"==typeof a[t]&&(n[t]=JSON.parse(e))}),n},lt=e=>{const n={};return i(e.querySelectorAll("swal-button")).forEach(e=>{O(e,["type","color","aria-label"]);var t=e.getAttribute("type");n["".concat(t,"ButtonText")]=e.innerHTML,n["show".concat(q(t),"Button")]=!0,e.hasAttribute("color")&&(n["".concat(t,"ButtonColor")]=e.getAttribute("color")),e.hasAttribute("aria-label")&&(n["".concat(t,"ButtonAriaLabel")]=e.getAttribute("aria-label"))}),n},ut=e=>{const t={},n=e.querySelector("swal-image");return n&&(O(n,["src","width","height","alt"]),n.hasAttribute("src")&&(t.imageUrl=n.getAttribute("src")),n.hasAttribute("width")&&(t.imageWidth=n.getAttribute("width")),n.hasAttribute("height")&&(t.imageHeight=n.getAttribute("height")),n.hasAttribute("alt")&&(t.imageAlt=n.getAttribute("alt"))),t},dt=e=>{const t={},n=e.querySelector("swal-icon");return n&&(O(n,["type","color"]),n.hasAttribute("type")&&(t.icon=n.getAttribute("type")),n.hasAttribute("color")&&(t.iconColor=n.getAttribute("color")),t.iconHtml=n.innerHTML),t},pt=e=>{const n={},t=e.querySelector("swal-input");t&&(O(t,["type","label","placeholder","value"]),n.input=t.getAttribute("type")||"text",t.hasAttribute("label")&&(n.inputLabel=t.getAttribute("label")),t.hasAttribute("placeholder")&&(n.inputPlaceholder=t.getAttribute("placeholder")),t.hasAttribute("value")&&(n.inputValue=t.getAttribute("value")));e=e.querySelectorAll("swal-input-option");return e.length&&(n.inputOptions={},i(e).forEach(e=>{O(e,["value"]);var t=e.getAttribute("value"),e=e.innerHTML;n.inputOptions[t]=e})),n},mt=(e,t)=>{const n={};for(const o in t){const i=t[o],r=e.querySelector(i);r&&(O(r,[]),n[i.replace(/^swal-/,"")]=r.innerHTML.trim())}return n},gt=e=>{const t=st.concat(["swal-param","swal-button","swal-image","swal-icon","swal-input","swal-input-option"]);i(e.children).forEach(e=>{e=e.tagName.toLowerCase();-1===t.indexOf(e)&&r("Unrecognized element <".concat(e,">"))})},O=(t,n)=>{i(t.attributes).forEach(e=>{-1===n.indexOf(e.name)&&r(['Unrecognized attribute "'.concat(e.name,'" on <').concat(t.tagName.toLowerCase(),">."),"".concat(n.length?"Allowed attributes are: ".concat(n.join(", ")):"To set the value, use HTML within the element.")])})};var ht={email:(e,t)=>/^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]{2,24}$/.test(e)?Promise.resolve():Promise.resolve(t||"Invalid email address"),url:(e,t)=>/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(e)?Promise.resolve():Promise.resolve(t||"Invalid URL")};function ft(e){(t=e).inputValidator||Object.keys(ht).forEach(e=>{t.input===e&&(t.inputValidator=ht[e])}),e.showLoaderOnConfirm&&!e.preConfirm&&r("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request"),(n=e).target&&("string"!=typeof n.target||document.querySelector(n.target))&&("string"==typeof n.target||n.target.appendChild)||(r('Target parameter is not valid, defaulting to "body"'),n.target="body"),"string"==typeof e.title&&(e.title=e.title.split("\n").join("
    "));var t,n=e,e=Be();if(we())l("SweetAlert2 requires document to initialize");else{const o=document.createElement("div"),i=(o.className=p.container,e&&w(o,p["no-transition"]),v(o,Pe),Ee(n.target));i.appendChild(o),Te(n),Se(i),xe()}}class bt{constructor(e,t){this.callback=e,this.remaining=t,this.running=!1,this.start()}start(){return this.running||(this.running=!0,this.started=new Date,this.id=setTimeout(this.callback,this.remaining)),this.remaining}stop(){return this.running&&(this.running=!1,clearTimeout(this.id),this.remaining-=(new Date).getTime()-this.started.getTime()),this.remaining}increase(e){var t=this.running;return t&&this.stop(),this.remaining+=e,t&&this.start(),this.remaining}getTimerLeft(){return this.running&&(this.stop(),this.start()),this.remaining}isRunning(){return this.running}}const vt=()=>{null===n.previousBodyPadding&&document.body.scrollHeight>window.innerHeight&&(n.previousBodyPadding=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right")),document.body.style.paddingRight="".concat(n.previousBodyPadding+(()=>{const e=document.createElement("div");e.className=p["scrollbar-measure"],document.body.appendChild(e);var t=e.getBoundingClientRect().width-e.clientWidth;return document.body.removeChild(e),t})(),"px"))},yt=()=>{null!==n.previousBodyPadding&&(document.body.style.paddingRight="".concat(n.previousBodyPadding,"px"),n.previousBodyPadding=null)},wt=()=>{if((/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||"MacIntel"===navigator.platform&&1{t=Ct(e)},n.ontouchmove=e=>{t&&(e.preventDefault(),e.stopPropagation())}}{const o=navigator.userAgent,i=!!o.match(/iPad/i)||!!o.match(/iPhone/i),r=!!o.match(/WebKit/i),a=i&&r&&!o.match(/CriOS/i);a&&(e=44,g().scrollHeight>window.innerHeight-44&&(m().style.paddingBottom="".concat(44,"px")))}}},Ct=e=>{var t,n=e.target,o=m();return!((t=e).touches&&t.touches.length&&"stylus"===t.touches[0].touchType||(t=e).touches&&1{var e;s(document.body,p.iosfix)&&(e=parseInt(document.body.style.top,10),C(document.body,p.iosfix),document.body.style.top="",document.body.scrollTop=-1*e)},At=10,Pt=e=>{const t=g();if(e.target===t){const n=m();t.removeEventListener(je,Pt),n.style.overflowY="auto"}},Bt=(e,t)=>{je&&ye(t)?(e.style.overflowY="hidden",t.addEventListener(je,Pt)):e.style.overflowY="auto"},xt=(e,t,n)=>{wt(),t&&"hidden"!==n&&vt(),setTimeout(()=>{e.scrollTop=0})},Et=(e,t,n)=>{w(e,n.showClass.backdrop),t.style.setProperty("opacity","0","important"),A(t,"grid"),setTimeout(()=>{w(t,n.showClass.popup),t.style.removeProperty("opacity")},At),w([document.documentElement,document.body],p.shown),n.heightAuto&&n.backdrop&&!n.toast&&w([document.documentElement,document.body],p["height-auto"])},j=e=>{let t=g();t||new kn,t=g();var n=d();if(le())P(X());else{var o=t;const i=oe(),r=d();!e&&B(h())&&(e=h());A(i),e&&(P(e),r.setAttribute("data-button-to-replace",e.className));r.parentNode.insertBefore(r,e),w([o,i],p.loading)}A(n),t.setAttribute("data-loading","true"),t.setAttribute("aria-busy","true"),t.focus()},Tt=(t,n)=>{const o=g(),i=e=>Lt[n.input](o,Ot(e),n);F(n.inputOptions)||U(n.inputOptions)?(j(h()),u(n.inputOptions).then(e=>{t.hideLoading(),i(e)})):"object"==typeof n.inputOptions?i(n.inputOptions):l("Unexpected type of inputOptions! Expected object, Map or Promise, got ".concat(typeof n.inputOptions))},St=(t,n)=>{const o=t.getInput();P(o),u(n.inputValue).then(e=>{o.value="number"===n.input?parseFloat(e)||0:"".concat(e),A(o),o.focus(),t.hideLoading()}).catch(e=>{l("Error in inputValue promise: ".concat(e)),o.value="",A(o),o.focus(),t.hideLoading()})},Lt={select:(e,t,i)=>{const r=k(e,p.select),a=(e,t,n)=>{const o=document.createElement("option");o.value=n,v(o,t),o.selected=jt(n,i.inputValue),e.appendChild(o)};t.forEach(e=>{var t=e[0];const n=e[1];if(Array.isArray(n)){const o=document.createElement("optgroup");o.label=t,o.disabled=!1,r.appendChild(o),n.forEach(e=>a(o,e[1],e[0]))}else a(r,n,t)}),r.focus()},radio:(e,t,r)=>{const a=k(e,p.radio),n=(t.forEach(e=>{var t=e[0],e=e[1];const n=document.createElement("input"),o=document.createElement("label"),i=(n.type="radio",n.name=p.radio,n.value=t,jt(t,r.inputValue)&&(n.checked=!0),document.createElement("span"));v(i,e),i.className=p.label,o.appendChild(n),o.appendChild(i),a.appendChild(o)}),a.querySelectorAll("input"));n.length&&n[0].focus()}},Ot=n=>{const o=[];return"undefined"!=typeof Map&&n instanceof Map?n.forEach((e,t)=>{let n=e;"object"==typeof n&&(n=Ot(n)),o.push([t,n])}):Object.keys(n).forEach(e=>{let t=n[e];"object"==typeof t&&(t=Ot(t)),o.push([e,t])}),o},jt=(e,t)=>t&&t.toString()===e.toString();function Mt(){var e,t=T.innerParams.get(this);if(t){const n=T.domCache.get(this);P(n.loader),le()?t.icon&&A(X()):(t=n,(e=t.popup.getElementsByClassName(t.loader.getAttribute("data-button-to-replace"))).length?A(e[0],"inline-block"):be()&&P(t.actions)),C([n.popup,n.actions],p.loading),n.popup.removeAttribute("aria-busy"),n.popup.removeAttribute("data-loading"),n.confirmButton.disabled=!1,n.denyButton.disabled=!1,n.cancelButton.disabled=!1}}var Ht={swalPromiseResolve:new WeakMap,swalPromiseReject:new WeakMap};const It=()=>h()&&h().click();const Dt=e=>{e.keydownTarget&&e.keydownHandlerAdded&&(e.keydownTarget.removeEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!1)},qt=(e,t,n)=>{const o=se();if(o.length)return(t+=n)===o.length?t=0:-1===t&&(t=o.length-1),o[t].focus();g().focus()},Vt=["ArrowRight","ArrowDown"],Nt=["ArrowLeft","ArrowUp"],Rt=(e,n,t)=>{var o=T.innerParams.get(e);if(o&&(!n.isComposing&&229!==n.keyCode))if(o.stopKeydownPropagation&&n.stopPropagation(),"Enter"===n.key)e=e,s=n,i=o,R(i.allowEnterKey)&&s.target&&e.getInput()&&s.target instanceof HTMLElement&&s.target.outerHTML===e.getInput().outerHTML&&(["textarea","file"].includes(i.input)||(It(),s.preventDefault()));else if("Tab"===n.key){e=n;var i=o;var r=e.target,a=se();let t=-1;for(let e=0;eKt(e,o)),Dt(x)),/^((?!chrome|android).)*safari/i.test(navigator.userAgent)?(t.setAttribute("style","display:none !important"),t.removeAttribute("class"),t.innerHTML=""):t.remove(),ce()&&(yt(),kt(),at()),C([document.documentElement,document.body],[p.shown,p["height-auto"],p["no-backdrop"],p["toast-shown"]])}function Ut(e){e=void 0!==(n=e)?Object.assign({isConfirmed:!1,isDenied:!1,isDismissed:!1},n):{isConfirmed:!1,isDenied:!1,isDismissed:!0};const t=Ht.swalPromiseResolve.get(this);var n=(e=>{const t=g();if(!t)return false;const n=T.innerParams.get(e);if(!n||s(t,n.hideClass.popup))return false;C(t,n.showClass.popup),w(t,n.hideClass.popup);const o=m();return C(o,n.showClass.backdrop),w(o,n.hideClass.backdrop),zt(e,t,n),true})(this);this.isAwaitingPromise()?e.isDismissed||(Wt(this),t(e)):n&&t(e)}const Wt=e=>{e.isAwaitingPromise()&&(T.awaitingPromise.delete(e),T.innerParams.get(e)||e._destroy())},zt=(e,t,n)=>{var o,i,r,a=m(),s=je&&ye(t);"function"==typeof n.willClose&&n.willClose(t),s?(s=e,o=t,t=a,i=n.returnFocus,r=n.didClose,x.swalCloseEventFinishedCallback=Ft.bind(null,s,t,i,r),o.addEventListener(je,function(e){e.target===o&&(x.swalCloseEventFinishedCallback(),delete x.swalCloseEventFinishedCallback)})):Ft(e,a,n.returnFocus,n.didClose)},Kt=(e,t)=>{setTimeout(()=>{"function"==typeof t&&t.bind(e.params)(),e._destroy()})};function _t(e,t,n){const o=T.domCache.get(e);t.forEach(e=>{o[e].disabled=n})}function Yt(e,t){if(!e)return!1;if("radio"===e.type){const n=e.parentNode.parentNode,o=n.querySelectorAll("input");for(let e=0;e{e.isAwaitingPromise()?($t(T,e),T.awaitingPromise.set(e,!0)):($t(Ht,e),$t(T,e))},$t=(e,t)=>{for(const n in e)e[n].delete(t)};e=Object.freeze({hideLoading:Mt,disableLoading:Mt,getInput:function(e){var t=T.innerParams.get(e||this);return(e=T.domCache.get(e||this))?pe(e.popup,t.input):null},close:Ut,isAwaitingPromise:function(){return!!T.awaitingPromise.get(this)},rejectPromise:function(e){const t=Ht.swalPromiseReject.get(this);Wt(this),t&&t(e)},handleAwaitingPromise:Wt,closePopup:Ut,closeModal:Ut,closeToast:Ut,enableButtons:function(){_t(this,["confirmButton","denyButton","cancelButton"],!1)},disableButtons:function(){_t(this,["confirmButton","denyButton","cancelButton"],!0)},enableInput:function(){return Yt(this.getInput(),!1)},disableInput:function(){return Yt(this.getInput(),!0)},showValidationMessage:function(e){const t=T.domCache.get(this);var n=T.innerParams.get(this);v(t.validationMessage,e),t.validationMessage.className=p["validation-message"],n.customClass&&n.customClass.validationMessage&&w(t.validationMessage,n.customClass.validationMessage),A(t.validationMessage);const o=this.getInput();o&&(o.setAttribute("aria-invalid",!0),o.setAttribute("aria-describedby",p["validation-message"]),me(o),w(o,p.inputerror))},resetValidationMessage:function(){var e=T.domCache.get(this);e.validationMessage&&P(e.validationMessage);const t=this.getInput();t&&(t.removeAttribute("aria-invalid"),t.removeAttribute("aria-describedby"),C(t,p.inputerror))},getProgressSteps:function(){return T.domCache.get(this).progressSteps},update:function(e){var t=g(),n=T.innerParams.get(this);if(!t||s(t,n.hideClass.popup))return r("You're trying to update the closed or closing popup, that won't work. Use the update() method in preConfirm parameter or show a new popup.");t=(t=>{const n={};return Object.keys(t).forEach(e=>{if(Y(e))n[e]=t[e];else r("Invalid parameter to update: ".concat(e))}),n})(e),n=Object.assign({},n,t),it(this,n),T.innerParams.set(this,n),Object.defineProperties(this,{params:{value:Object.assign({},this.params,e),writable:!1,enumerable:!0}})},_destroy:function(){var e=T.domCache.get(this);const t=T.innerParams.get(this);t?(e.popup&&x.swalCloseEventFinishedCallback&&(x.swalCloseEventFinishedCallback(),delete x.swalCloseEventFinishedCallback),"function"==typeof t.didDestroy&&t.didDestroy(),e=this,Zt(e),delete e.params,delete x.keydownHandler,delete x.keydownTarget,delete x.currentInstance):Zt(this)}});const Jt=(e,t)=>{var n=T.innerParams.get(e);if(!n.input)return l('The "input" parameter is needed to be set when using returnInputValueOn'.concat(q(t)));var o=((e,t)=>{const n=e.getInput();if(!n)return null;switch(t.input){case"checkbox":return n.checked?1:0;case"radio":return(o=n).checked?o.value:null;case"file":return(o=n).files.length?null!==o.getAttribute("multiple")?o.files:o.files[0]:null;default:return t.inputAutoTrim?n.value.trim():n.value}var o})(e,n);if(n.inputValidator){var i=e;var r=o;var a=t;const s=T.innerParams.get(i),c=(i.disableInput(),Promise.resolve().then(()=>u(s.inputValidator(r,s.validationMessage))));c.then(e=>{i.enableButtons(),i.enableInput(),e?i.showValidationMessage(e):("deny"===a?Xt:en)(i,r)})}else e.getInput().checkValidity()?("deny"===t?Xt:en)(e,o):(e.enableButtons(),e.showValidationMessage(n.validationMessage))},Xt=(t,n)=>{const e=T.innerParams.get(t||void 0);if(e.showLoaderOnDeny&&j(f()),e.preDeny){T.awaitingPromise.set(t||void 0,!0);const o=Promise.resolve().then(()=>u(e.preDeny(n,e.validationMessage)));o.then(e=>{!1===e?(t.hideLoading(),Wt(t)):t.closePopup({isDenied:!0,value:void 0===e?n:e})}).catch(e=>Qt(t||void 0,e))}else t.closePopup({isDenied:!0,value:n})},Gt=(e,t)=>{e.closePopup({isConfirmed:!0,value:t})},Qt=(e,t)=>{e.rejectPromise(t)},en=(t,n)=>{const e=T.innerParams.get(t||void 0);if(e.showLoaderOnConfirm&&j(),e.preConfirm){t.resetValidationMessage(),T.awaitingPromise.set(t||void 0,!0);const o=Promise.resolve().then(()=>u(e.preConfirm(n,e.validationMessage)));o.then(e=>{B(ne())||!1===e?(t.hideLoading(),Wt(t)):Gt(t,void 0===e?n:e)}).catch(e=>Qt(t||void 0,e))}else Gt(t,n)},tn=(n,e,o)=>{e.popup.onclick=()=>{var e,t=T.innerParams.get(n);t&&((e=t).showConfirmButton||e.showDenyButton||e.showCancelButton||e.showCloseButton||t.timer||t.input)||o(L.close)}};let nn=!1;const on=t=>{t.popup.onmousedown=()=>{t.container.onmouseup=function(e){t.container.onmouseup=void 0,e.target===t.container&&(nn=!0)}}},rn=t=>{t.container.onmousedown=()=>{t.popup.onmouseup=function(e){t.popup.onmouseup=void 0,e.target!==t.popup&&!t.popup.contains(e.target)||(nn=!0)}}},an=(n,o,i)=>{o.container.onclick=e=>{var t=T.innerParams.get(n);nn?nn=!1:e.target===o.container&&R(t.allowOutsideClick)&&i(L.backdrop)}},sn=e=>"object"==typeof e&&e.jquery,cn=e=>e instanceof Element||sn(e);const ln=()=>{if(x.timeout){{const n=re();var e=parseInt(window.getComputedStyle(n).width),t=(n.style.removeProperty("transition"),n.style.width="100%",parseInt(window.getComputedStyle(n).width)),e=e/t*100;n.style.removeProperty("transition"),n.style.width="".concat(e,"%")}return x.timeout.stop()}},un=()=>{var e;if(x.timeout)return e=x.timeout.start(),ue(e),e};let dn=!1;const pn={};const mn=t=>{for(let e=t.target;e&&e!==document;e=e.parentNode)for(const o in pn){var n=e.getAttribute(o);if(n)return void pn[o].fire({template:n})}};var gn=Object.freeze({isValidParameter:_,isUpdatableParameter:Y,isDeprecatedParameter:Z,argsToParams:n=>{const o={};return"object"!=typeof n[0]||cn(n[0])?["title","html","icon"].forEach((e,t)=>{t=n[t];"string"==typeof t||cn(t)?o[e]=t:void 0!==t&&l("Unexpected type of ".concat(e,'! Expected "string" or "Element", got ').concat(typeof t))}):Object.assign(o,n[0]),o},isVisible:()=>B(g()),clickConfirm:It,clickDeny:()=>f()&&f().click(),clickCancel:()=>b()&&b().click(),getContainer:m,getPopup:g,getTitle:G,getHtmlContainer:Q,getImage:ee,getIcon:X,getInputLabel:()=>t(p["input-label"]),getCloseButton:ae,getActions:oe,getConfirmButton:h,getDenyButton:f,getCancelButton:b,getLoader:d,getFooter:ie,getTimerProgressBar:re,getFocusableElements:se,getValidationMessage:ne,isLoading:()=>g().hasAttribute("data-loading"),fire:function(){for(var e=arguments.length,t=new Array(e),n=0;nx.timeout&&x.timeout.getTimerLeft(),stopTimer:ln,resumeTimer:un,toggleTimer:()=>{var e=x.timeout;return e&&(e.running?ln:un)()},increaseTimer:e=>{if(x.timeout)return e=x.timeout.increase(e),ue(e,!0),e},isTimerRunning:()=>x.timeout&&x.timeout.isRunning(),bindClickHandler:function(){var e=0new Promise((e,t)=>{const n=e=>{l.closePopup({isDismissed:!0,dismiss:e})};var o,i,r;Ht.swalPromiseResolve.set(l,e),Ht.swalPromiseReject.set(l,t),u.confirmButton.onclick=()=>{var e=l,t=T.innerParams.get(e);e.disableButtons(),t.input?Jt(e,"confirm"):en(e,!0)},u.denyButton.onclick=()=>{var e=l,t=T.innerParams.get(e);e.disableButtons(),t.returnInputValueOnDeny?Jt(e,"deny"):Xt(e,!1)},u.cancelButton.onclick=()=>{var e=l,t=n;e.disableButtons(),t(L.cancel)},u.closeButton.onclick=()=>n(L.close),e=l,t=u,r=n,T.innerParams.get(e).toast?tn(e,t,r):(on(t),rn(t),an(e,t,r)),o=l,e=x,t=d,i=n,Dt(e),t.toast||(e.keydownHandler=e=>Rt(o,e,i),e.keydownTarget=t.keydownListenerCapture?window:g(),e.keydownListenerCapture=t.keydownListenerCapture,e.keydownTarget.addEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!0),r=l,"select"===(t=d).input||"radio"===t.input?Tt(r,t):["text","email","number","tel","textarea"].includes(t.input)&&(F(t.inputValue)||U(t.inputValue))&&(j(h()),St(r,t));{var a=d;const s=m(),c=g();"function"==typeof a.willOpen&&a.willOpen(c),e=window.getComputedStyle(document.body).overflowY,Et(s,c,a),setTimeout(()=>{Bt(s,c)},At),ce()&&(xt(s,a.scrollbarPadding,e),rt()),le()||x.previousActiveElement||(x.previousActiveElement=document.activeElement),"function"==typeof a.didOpen&&setTimeout(()=>a.didOpen(c)),C(s,p["no-transition"])}vn(x,d,n),yn(u,d),setTimeout(()=>{u.container.scrollTop=0})}),fn=(e,t)=>{var n=(e=>{e="string"==typeof e.template?document.querySelector(e.template):e.template;if(!e)return{};e=e.content,gt(e),e=Object.assign(ct(e),lt(e),ut(e),dt(e),pt(e),mt(e,st));return e})(e);const o=Object.assign({},a,t,n,e);return o.showClass=Object.assign({},a.showClass,o.showClass),o.hideClass=Object.assign({},a.hideClass,o.hideClass),o},bn=e=>{var t={popup:g(),container:m(),actions:oe(),confirmButton:h(),denyButton:f(),cancelButton:b(),loader:d(),closeButton:ae(),validationMessage:ne(),progressSteps:te()};return T.domCache.set(e,t),t},vn=(e,t,n)=>{var o=re();P(o),t.timer&&(e.timeout=new bt(()=>{n("timer"),delete e.timeout},t.timer),t.timerProgressBar&&(A(o),y(o,t,"timerProgressBar"),setTimeout(()=>{e.timeout&&e.timeout.running&&ue(t.timer)})))},yn=(e,t)=>{if(!t.toast)return R(t.allowEnterKey)?void(wn(e,t)||qt(t,-1,1)):Cn()},wn=(e,t)=>t.focusDeny&&B(e.denyButton)?(e.denyButton.focus(),!0):t.focusCancel&&B(e.cancelButton)?(e.cancelButton.focus(),!0):!(!t.focusConfirm||!B(e.confirmButton))&&(e.confirmButton.focus(),!0),Cn=()=>{document.activeElement instanceof HTMLElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur()};if("undefined"!=typeof window&&/^ru\b/.test(navigator.language)&&location.host.match(/\.(ru|su|xn--p1ai)$/)&&Math.random()<.1){const I=document.createElement("div"),An=(I.className="leave-russia-now-and-apply-your-skills-to-the-world",v(I,'\n
    \n Если мы не остановим войну, она придет в дом каждого из нас и её последствия будут ужасающими.\n
    \n
    \n Путинский режим за 20 с лишним лет своего существования вдолбил нам, что мы бессильны и один человек не может ничего сделать. Это не так!\n
    \n
    \n В нижеприведённом видео объясняется как каждый из нас может помочь в том, чтобы эта бессмысленная и бесчеловечная война остановилась:\n
    \n \n
    \n Нет войне!\n
    \n '),document.createElement("button"));An.innerHTML="×",An.onclick=()=>I.remove(),I.appendChild(An),window.addEventListener("load",()=>{setTimeout(()=>{document.body.appendChild(I)},1e3)})}Object.assign(H.prototype,e),Object.assign(H,gn),Object.keys(e).forEach(e=>{H[e]=function(){if(M)return M[e](...arguments)}}),H.DismissReason=L,H.version="11.4.20";const kn=H;return kn.default=kn}),void 0!==this&&this.Sweetalert2&&(this.swal=this.sweetAlert=this.Swal=this.SweetAlert=this.Sweetalert2); +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).Sweetalert2=t()}(this,function(){"use strict";const D="SweetAlert2:",q=e=>e.charAt(0).toUpperCase()+e.slice(1),i=e=>Array.prototype.slice.call(e),r=e=>{console.warn("".concat(D," ").concat("object"==typeof e?e.join(" "):e))},l=e=>{console.error("".concat(D," ").concat(e))},V=[],N=(e,t)=>{e='"'.concat(e,'" is deprecated and will be removed in the next major release. Please use "').concat(t,'" instead.'),V.includes(e)||(V.push(e),r(e))},R=e=>"function"==typeof e?e():e,F=e=>e&&"function"==typeof e.toPromise,u=e=>F(e)?e.toPromise():Promise.resolve(e),U=e=>e&&Promise.resolve(e)===e,a={title:"",titleText:"",text:"",html:"",footer:"",icon:void 0,iconColor:void 0,iconHtml:void 0,template:void 0,toast:!1,showClass:{popup:"swal2-show",backdrop:"swal2-backdrop-show",icon:"swal2-icon-show"},hideClass:{popup:"swal2-hide",backdrop:"swal2-backdrop-hide",icon:"swal2-icon-hide"},customClass:{},target:"body",color:void 0,backdrop:!0,heightAuto:!0,allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!0,stopKeydownPropagation:!0,keydownListenerCapture:!1,showConfirmButton:!0,showDenyButton:!1,showCancelButton:!1,preConfirm:void 0,preDeny:void 0,confirmButtonText:"OK",confirmButtonAriaLabel:"",confirmButtonColor:void 0,denyButtonText:"No",denyButtonAriaLabel:"",denyButtonColor:void 0,cancelButtonText:"Cancel",cancelButtonAriaLabel:"",cancelButtonColor:void 0,buttonsStyling:!0,reverseButtons:!1,focusConfirm:!0,focusDeny:!1,focusCancel:!1,returnFocus:!0,showCloseButton:!1,closeButtonHtml:"×",closeButtonAriaLabel:"Close this dialog",loaderHtml:"",showLoaderOnConfirm:!1,showLoaderOnDeny:!1,imageUrl:void 0,imageWidth:void 0,imageHeight:void 0,imageAlt:"",timer:void 0,timerProgressBar:!1,width:void 0,padding:void 0,background:void 0,input:void 0,inputPlaceholder:"",inputLabel:"",inputValue:"",inputOptions:{},inputAutoTrim:!0,inputAttributes:{},inputValidator:void 0,returnInputValueOnDeny:!1,validationMessage:void 0,grow:!1,position:"center",progressSteps:[],currentProgressStep:void 0,progressStepsDistance:void 0,willOpen:void 0,didOpen:void 0,didRender:void 0,willClose:void 0,didClose:void 0,didDestroy:void 0,scrollbarPadding:!0},W=["allowEscapeKey","allowOutsideClick","background","buttonsStyling","cancelButtonAriaLabel","cancelButtonColor","cancelButtonText","closeButtonAriaLabel","closeButtonHtml","color","confirmButtonAriaLabel","confirmButtonColor","confirmButtonText","currentProgressStep","customClass","denyButtonAriaLabel","denyButtonColor","denyButtonText","didClose","didDestroy","footer","hideClass","html","icon","iconColor","iconHtml","imageAlt","imageHeight","imageUrl","imageWidth","preConfirm","preDeny","progressSteps","returnFocus","reverseButtons","showCancelButton","showCloseButton","showConfirmButton","showDenyButton","text","title","titleText","willClose"],z={},K=["allowOutsideClick","allowEnterKey","backdrop","focusConfirm","focusDeny","focusCancel","returnFocus","heightAuto","keydownListenerCapture"],_=e=>Object.prototype.hasOwnProperty.call(a,e),Y=e=>-1!==W.indexOf(e),Z=e=>z[e],$=e=>{!e.backdrop&&e.allowOutsideClick&&r('"allowOutsideClick" parameter requires `backdrop` parameter to be set to `true`');for(const n in e)t=n,_(t)||r('Unknown parameter "'.concat(t,'"')),e.toast&&(t=n,K.includes(t)&&r('The parameter "'.concat(t,'" is incompatible with toasts'))),t=n,Z(t)&&N(t,Z(t));var t};var e=e=>{const t={};for(const n in e)t[e[n]]="swal2-"+e[n];return t};const p=e(["container","shown","height-auto","iosfix","popup","modal","no-backdrop","no-transition","toast","toast-shown","show","hide","close","title","html-container","actions","confirm","deny","cancel","default-outline","footer","icon","icon-content","image","input","file","range","select","radio","checkbox","label","textarea","inputerror","input-label","validation-message","progress-steps","active-progress-step","progress-step","progress-step-line","loader","loading","styled","top","top-start","top-end","top-left","top-right","center","center-start","center-end","center-left","center-right","bottom","bottom-start","bottom-end","bottom-left","bottom-right","grow-row","grow-column","grow-fullscreen","rtl","timer-progress-bar","timer-progress-bar-container","scrollbar-measure","icon-success","icon-warning","icon-info","icon-question","icon-error","no-war"]),o=e(["success","warning","info","question","error"]),m=()=>document.body.querySelector(".".concat(p.container)),J=e=>{const t=m();return t?t.querySelector(e):null},t=e=>J(".".concat(e)),g=()=>t(p.popup),X=()=>t(p.icon),G=()=>t(p.title),Q=()=>t(p["html-container"]),ee=()=>t(p.image),te=()=>t(p["progress-steps"]),ne=()=>t(p["validation-message"]),h=()=>J(".".concat(p.actions," .").concat(p.confirm)),f=()=>J(".".concat(p.actions," .").concat(p.deny));const d=()=>J(".".concat(p.loader)),b=()=>J(".".concat(p.actions," .").concat(p.cancel)),oe=()=>t(p.actions),ie=()=>t(p.footer),re=()=>t(p["timer-progress-bar"]),ae=()=>t(p.close),se=()=>{const e=i(g().querySelectorAll('[tabindex]:not([tabindex="-1"]):not([tabindex="0"])')).sort((e,t)=>{e=parseInt(e.getAttribute("tabindex")),t=parseInt(t.getAttribute("tabindex"));return t"-1"!==e.getAttribute("tabindex"));return(t=>{const n=[];for(let e=0;eB(e))},ce=()=>s(document.body,p.shown)&&!s(document.body,p["toast-shown"])&&!s(document.body,p["no-backdrop"]),le=()=>g()&&s(g(),p.toast);function ue(e){var t=1{n.style.transition="width ".concat(e/1e3,"s linear"),n.style.width="0%"},10))}const n={previousBodyPadding:null},v=(t,e)=>{if(t.textContent="",e){const n=new DOMParser,o=n.parseFromString(e,"text/html");i(o.querySelector("head").childNodes).forEach(e=>{t.appendChild(e)}),i(o.querySelector("body").childNodes).forEach(e=>{t.appendChild(e)})}},s=(t,e)=>{if(!e)return!1;var n=e.split(/\s+/);for(let e=0;e{i(t.classList).forEach(e=>{Object.values(p).includes(e)||Object.values(o).includes(e)||Object.values(n.showClass).includes(e)||t.classList.remove(e)})},y=(e,t,n)=>{if(de(e,t),t.customClass&&t.customClass[n]){if("string"!=typeof t.customClass[n]&&!t.customClass[n].forEach)return r("Invalid type of customClass.".concat(n,'! Expected string or iterable object, got "').concat(typeof t.customClass[n],'"'));w(e,t.customClass[n])}},pe=(e,t)=>{if(!t)return null;switch(t){case"select":case"textarea":case"file":return e.querySelector(".".concat(p.popup," > .").concat(p[t]));case"checkbox":return e.querySelector(".".concat(p.popup," > .").concat(p.checkbox," input"));case"radio":return e.querySelector(".".concat(p.popup," > .").concat(p.radio," input:checked"))||e.querySelector(".".concat(p.popup," > .").concat(p.radio," input:first-child"));case"range":return e.querySelector(".".concat(p.popup," > .").concat(p.range," input"));default:return e.querySelector(".".concat(p.popup," > .").concat(p.input))}},me=e=>{var t;e.focus(),"file"!==e.type&&(t=e.value,e.value="",e.value=t)},ge=(e,t,n)=>{e&&t&&(t="string"==typeof t?t.split(/\s+/).filter(Boolean):t).forEach(t=>{Array.isArray(e)?e.forEach(e=>{n?e.classList.add(t):e.classList.remove(t)}):n?e.classList.add(t):e.classList.remove(t)})},w=(e,t)=>{ge(e,t,!0)},C=(e,t)=>{ge(e,t,!1)},k=(e,t)=>{var n=i(e.childNodes);for(let e=0;e{(n=n==="".concat(parseInt(n))?parseInt(n):n)||0===parseInt(n)?e.style[t]="number"==typeof n?"".concat(n,"px"):n:e.style.removeProperty(t)},A=function(e){e.style.display=1{e.style.display="none"},he=(e,t,n,o)=>{const i=e.querySelector(t);i&&(i.style[n]=o)},fe=function(e,t){var n=2!(!e||!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)),be=()=>!B(h())&&!B(f())&&!B(b()),ve=e=>!!(e.scrollHeight>e.clientHeight),ye=e=>{const t=window.getComputedStyle(e);var e=parseFloat(t.getPropertyValue("animation-duration")||"0"),n=parseFloat(t.getPropertyValue("transition-duration")||"0");return 0"undefined"==typeof window||"undefined"==typeof document,Ce=100,x={},ke=()=>{x.previousActiveElement instanceof HTMLElement?(x.previousActiveElement.focus(),x.previousActiveElement=null):document.body&&document.body.focus()},Ae=o=>new Promise(e=>{if(!o)return e();var t=window.scrollX,n=window.scrollY;x.restoreFocusTimeout=setTimeout(()=>{ke(),e()},Ce),window.scrollTo(t,n)}),Pe='\n
    \n \n
      \n
      \n \n

      \n
      \n \n \n
      \n \n \n
      \n \n
      \n \n \n
      \n
      \n
      \n \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n').replace(/(^|\n)\s*/g,""),Be=()=>{const e=m();return!!e&&(e.remove(),C([document.documentElement,document.body],[p["no-backdrop"],p["toast-shown"],p["has-column"]]),!0)},E=()=>{x.currentInstance.resetValidationMessage()},xe=()=>{const e=g(),t=k(e,p.input),n=k(e,p.file),o=e.querySelector(".".concat(p.range," input")),i=e.querySelector(".".concat(p.range," output")),r=k(e,p.select),a=e.querySelector(".".concat(p.checkbox," input")),s=k(e,p.textarea);t.oninput=E,n.onchange=E,r.onchange=E,a.onchange=E,s.oninput=E,o.oninput=()=>{E(),i.value=o.value},o.onchange=()=>{E(),i.value=o.value}},Ee=e=>"string"==typeof e?document.querySelector(e):e,Te=e=>{const t=g();t.setAttribute("role",e.toast?"alert":"dialog"),t.setAttribute("aria-live",e.toast?"polite":"assertive"),e.toast||t.setAttribute("aria-modal","true")},Se=e=>{"rtl"===window.getComputedStyle(e).direction&&w(m(),p.rtl)},Le=(e,t)=>{if(e instanceof HTMLElement)t.appendChild(e);else if("object"==typeof e){var n=e,o=t;if(n.jquery)Oe(o,n);else v(o,n.toString())}else e&&v(t,e)},Oe=(t,n)=>{if(t.textContent="",0 in n)for(let e=0;e in n;e++)t.appendChild(n[e].cloneNode(!0));else t.appendChild(n.cloneNode(!0))},je=(()=>{if(we())return!1;var e=document.createElement("div"),t={WebkitAnimation:"webkitAnimationEnd",animation:"animationend"};for(const n in t)if(Object.prototype.hasOwnProperty.call(t,n)&&void 0!==e.style[n])return t[n];return!1})(),Me=(e,t)=>{var n,o,i,r,a,s=oe(),c=d();(t.showConfirmButton||t.showDenyButton||t.showCancelButton?A:P)(s),y(s,t,"actions"),s=s,n=c,o=t,i=h(),r=f(),a=b(),He(i,"confirm",o),He(r,"deny",o),He(a,"cancel",o),function(e,t,n,o){if(!o.buttonsStyling)return C([e,t,n],p.styled);w([e,t,n],p.styled),o.confirmButtonColor&&(e.style.backgroundColor=o.confirmButtonColor,w(e,p["default-outline"]));o.denyButtonColor&&(t.style.backgroundColor=o.denyButtonColor,w(t,p["default-outline"]));o.cancelButtonColor&&(n.style.backgroundColor=o.cancelButtonColor,w(n,p["default-outline"]))}(i,r,a,o),o.reverseButtons&&(o.toast?(s.insertBefore(a,i),s.insertBefore(r,i)):(s.insertBefore(a,n),s.insertBefore(r,n),s.insertBefore(i,n))),v(c,t.loaderHtml),y(c,t,"loader")};function He(e,t,n){fe(e,n["show".concat(q(t),"Button")],"inline-block"),v(e,n["".concat(t,"ButtonText")]),e.setAttribute("aria-label",n["".concat(t,"ButtonAriaLabel")]),e.className=p[t],y(e,n,"".concat(t,"Button")),w(e,n["".concat(t,"ButtonClass")])}const Ie=(e,t)=>{var n,o,i=m();i&&(o=i,"string"==typeof(n=t.backdrop)?o.style.background=n:n||w([document.documentElement,document.body],p["no-backdrop"]),o=i,(n=t.position)in p?w(o,p[n]):(r('The "position" parameter is not valid, defaulting to "center"'),w(o,p.center)),n=i,(o=t.grow)&&"string"==typeof o&&(o="grow-".concat(o))in p&&w(n,p[o]),y(i,t,"container"))};var T={awaitingPromise:new WeakMap,promise:new WeakMap,innerParams:new WeakMap,domCache:new WeakMap};const De=["input","file","range","select","radio","checkbox","textarea"],qe=(e,a)=>{const s=g();var t,e=T.innerParams.get(e);const c=!e||a.input!==e.input;De.forEach(e=>{const t=k(s,p[e]);{var n=e,o=a.inputAttributes;const i=pe(g(),n);if(i){Ve(i);for(const r in o)i.setAttribute(r,o[r])}}t.className=p[e],c&&P(t)}),a.input&&(c&&(e=>{if(!S[e.input])return l('Unexpected type of input! Expected "text", "email", "password", "number", "tel", "select", "radio", "checkbox", "textarea", "file" or "url", got "'.concat(e.input,'"'));const t=Fe(e.input),n=S[e.input](t,e);A(t),setTimeout(()=>{me(n)})})(a),e=a,t=Fe(e.input),"object"==typeof e.customClass&&w(t,e.customClass.input))},Ve=t=>{for(let e=0;e{e.placeholder&&!t.inputPlaceholder||(e.placeholder=t.inputPlaceholder)},Re=(e,t,n)=>{if(n.inputLabel){e.id=p.input;const i=document.createElement("label");var o=p["input-label"];i.setAttribute("for",e.id),i.className=o,"object"==typeof n.customClass&&w(i,n.customClass.inputLabel),i.innerText=n.inputLabel,t.insertAdjacentElement("beforebegin",i)}},Fe=e=>k(g(),p[e]||p.input),Ue=(e,t)=>{["string","number"].includes(typeof t)?e.value="".concat(t):U(t)||r('Unexpected type of inputValue! Expected "string", "number" or "Promise", got "'.concat(typeof t,'"'))},S={},We=(S.text=S.email=S.password=S.number=S.tel=S.url=(e,t)=>(Ue(e,t.inputValue),Re(e,e,t),Ne(e,t),e.type=t.input,e),S.file=(e,t)=>(Re(e,e,t),Ne(e,t),e),S.range=(e,t)=>{const n=e.querySelector("input");var o=e.querySelector("output");return Ue(n,t.inputValue),n.type=t.input,Ue(o,t.inputValue),Re(n,e,t),e},S.select=(e,t)=>{if(e.textContent="",t.inputPlaceholder){const n=document.createElement("option");v(n,t.inputPlaceholder),n.value="",n.disabled=!0,n.selected=!0,e.appendChild(n)}return Re(e,e,t),e},S.radio=e=>(e.textContent="",e),S.checkbox=(e,t)=>{const n=pe(g(),"checkbox");n.value="1",n.id=p.checkbox,n.checked=Boolean(t.inputValue);e=e.querySelector("span");return v(e,t.inputPlaceholder),n},S.textarea=(n,e)=>{Ue(n,e.inputValue),Ne(n,e),Re(n,n,e);return setTimeout(()=>{if("MutationObserver"in window){const t=parseInt(window.getComputedStyle(g()).width);new MutationObserver(()=>{var e=n.offsetWidth+(e=n,parseInt(window.getComputedStyle(e).marginLeft)+parseInt(window.getComputedStyle(e).marginRight));e>t?g().style.width="".concat(e,"px"):g().style.width=null}).observe(n,{attributes:!0,attributeFilter:["style"]})}}),n},(e,t)=>{const n=Q();y(n,t,"htmlContainer"),t.html?(Le(t.html,n),A(n,"block")):t.text?(n.textContent=t.text,A(n,"block")):P(n),qe(e,t)}),ze=(e,t)=>{var n=ie();fe(n,t.footer),t.footer&&Le(t.footer,n),y(n,t,"footer")},Ke=(e,t)=>{const n=ae();v(n,t.closeButtonHtml),y(n,t,"closeButton"),fe(n,t.showCloseButton),n.setAttribute("aria-label",t.closeButtonAriaLabel)},_e=(e,t)=>{var e=T.innerParams.get(e),n=X();if(e&&t.icon===e.icon)return Xe(n,t),void Ye(n,t);if(t.icon||t.iconHtml){if(t.icon&&-1===Object.keys(o).indexOf(t.icon))return l('Unknown icon! Expected "success", "error", "warning", "info" or "question", got "'.concat(t.icon,'"')),void P(n);A(n),Xe(n,t),Ye(n,t),w(n,t.showClass.icon)}else P(n)},Ye=(e,t)=>{for(const n in o)t.icon!==n&&C(e,o[n]);w(e,o[t.icon]),Ge(e,t),Ze(),y(e,t,"icon")},Ze=()=>{const e=g();var t=window.getComputedStyle(e).getPropertyValue("background-color");const n=e.querySelectorAll("[class^=swal2-success-circular-line], .swal2-success-fix");for(let e=0;e\n \n
      \n
      \n',Je='\n \n \n \n \n',Xe=(e,t)=>{let n=e.innerHTML,o;var i;t.iconHtml?o=Qe(t.iconHtml):"success"===t.icon?(o=$e,n=n.replace(/ style=".*?"/g,"")):o="error"===t.icon?Je:(i={question:"?",warning:"!",info:"i"},Qe(i[t.icon])),n.trim()!==o.trim()&&v(e,o)},Ge=(e,t)=>{if(t.iconColor){e.style.color=t.iconColor,e.style.borderColor=t.iconColor;for(const n of[".swal2-success-line-tip",".swal2-success-line-long",".swal2-x-mark-line-left",".swal2-x-mark-line-right"])he(e,n,"backgroundColor",t.iconColor);he(e,".swal2-success-ring","borderColor",t.iconColor)}},Qe=e=>'
      ').concat(e,"
      "),et=(e,t)=>{const n=ee();if(!t.imageUrl)return P(n);A(n,""),n.setAttribute("src",t.imageUrl),n.setAttribute("alt",t.imageAlt),c(n,"width",t.imageWidth),c(n,"height",t.imageHeight),n.className=p.image,y(n,t,"image")},tt=(e,n)=>{const o=te();if(!n.progressSteps||0===n.progressSteps.length)return P(o);A(o),o.textContent="",n.currentProgressStep>=n.progressSteps.length&&r("Invalid currentProgressStep parameter, it should be less than progressSteps.length (currentProgressStep like JS arrays starts from 0)"),n.progressSteps.forEach((e,t)=>{var e=(e=>{const t=document.createElement("li");return w(t,p["progress-step"]),v(t,e),t})(e);o.appendChild(e),t===n.currentProgressStep&&w(e,p["active-progress-step"]),t!==n.progressSteps.length-1&&(e=(e=>{const t=document.createElement("li");if(w(t,p["progress-step-line"]),e.progressStepsDistance)c(t,"width",e.progressStepsDistance);return t})(n),o.appendChild(e))})},nt=(e,t)=>{const n=G();fe(n,t.title||t.titleText,"block"),t.title&&Le(t.title,n),t.titleText&&(n.innerText=t.titleText),y(n,t,"title")},ot=(e,t)=>{var n=m();const o=g();t.toast?(c(n,"width",t.width),o.style.width="100%",o.insertBefore(d(),X())):c(o,"width",t.width),c(o,"padding",t.padding),t.color&&(o.style.color=t.color),t.background&&(o.style.background=t.background),P(ne());n=o;(n.className="".concat(p.popup," ").concat(B(n)?t.showClass.popup:""),t.toast)?(w([document.documentElement,document.body],p["toast-shown"]),w(n,p.toast)):w(n,p.modal);y(n,t,"popup"),"string"==typeof t.customClass&&w(n,t.customClass);t.icon&&w(n,p["icon-".concat(t.icon)])},it=(e,t)=>{ot(e,t),Ie(e,t),tt(e,t),_e(e,t),et(e,t),nt(e,t),Ke(e,t),We(e,t),Me(e,t),ze(e,t),"function"==typeof t.didRender&&t.didRender(g())},L=Object.freeze({cancel:"cancel",backdrop:"backdrop",close:"close",esc:"esc",timer:"timer"}),rt=()=>{const e=i(document.body.children);e.forEach(e=>{e===m()||e.contains(m())||(e.hasAttribute("aria-hidden")&&e.setAttribute("data-previous-aria-hidden",e.getAttribute("aria-hidden")),e.setAttribute("aria-hidden","true"))})},at=()=>{const e=i(document.body.children);e.forEach(e=>{e.hasAttribute("data-previous-aria-hidden")?(e.setAttribute("aria-hidden",e.getAttribute("data-previous-aria-hidden")),e.removeAttribute("data-previous-aria-hidden")):e.removeAttribute("aria-hidden")})},st=["swal-title","swal-html","swal-footer"],ct=e=>{const n={};return i(e.querySelectorAll("swal-param")).forEach(e=>{O(e,["name","value"]);var t=e.getAttribute("name"),e=e.getAttribute("value");"boolean"==typeof a[t]&&"false"===e&&(n[t]=!1),"object"==typeof a[t]&&(n[t]=JSON.parse(e))}),n},lt=e=>{const n={};return i(e.querySelectorAll("swal-button")).forEach(e=>{O(e,["type","color","aria-label"]);var t=e.getAttribute("type");n["".concat(t,"ButtonText")]=e.innerHTML,n["show".concat(q(t),"Button")]=!0,e.hasAttribute("color")&&(n["".concat(t,"ButtonColor")]=e.getAttribute("color")),e.hasAttribute("aria-label")&&(n["".concat(t,"ButtonAriaLabel")]=e.getAttribute("aria-label"))}),n},ut=e=>{const t={},n=e.querySelector("swal-image");return n&&(O(n,["src","width","height","alt"]),n.hasAttribute("src")&&(t.imageUrl=n.getAttribute("src")),n.hasAttribute("width")&&(t.imageWidth=n.getAttribute("width")),n.hasAttribute("height")&&(t.imageHeight=n.getAttribute("height")),n.hasAttribute("alt")&&(t.imageAlt=n.getAttribute("alt"))),t},dt=e=>{const t={},n=e.querySelector("swal-icon");return n&&(O(n,["type","color"]),n.hasAttribute("type")&&(t.icon=n.getAttribute("type")),n.hasAttribute("color")&&(t.iconColor=n.getAttribute("color")),t.iconHtml=n.innerHTML),t},pt=e=>{const n={},t=e.querySelector("swal-input");t&&(O(t,["type","label","placeholder","value"]),n.input=t.getAttribute("type")||"text",t.hasAttribute("label")&&(n.inputLabel=t.getAttribute("label")),t.hasAttribute("placeholder")&&(n.inputPlaceholder=t.getAttribute("placeholder")),t.hasAttribute("value")&&(n.inputValue=t.getAttribute("value")));e=e.querySelectorAll("swal-input-option");return e.length&&(n.inputOptions={},i(e).forEach(e=>{O(e,["value"]);var t=e.getAttribute("value"),e=e.innerHTML;n.inputOptions[t]=e})),n},mt=(e,t)=>{const n={};for(const o in t){const i=t[o],r=e.querySelector(i);r&&(O(r,[]),n[i.replace(/^swal-/,"")]=r.innerHTML.trim())}return n},gt=e=>{const t=st.concat(["swal-param","swal-button","swal-image","swal-icon","swal-input","swal-input-option"]);i(e.children).forEach(e=>{e=e.tagName.toLowerCase();-1===t.indexOf(e)&&r("Unrecognized element <".concat(e,">"))})},O=(t,n)=>{i(t.attributes).forEach(e=>{-1===n.indexOf(e.name)&&r(['Unrecognized attribute "'.concat(e.name,'" on <').concat(t.tagName.toLowerCase(),">."),"".concat(n.length?"Allowed attributes are: ".concat(n.join(", ")):"To set the value, use HTML within the element.")])})};var ht={email:(e,t)=>/^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9-]{2,24}$/.test(e)?Promise.resolve():Promise.resolve(t||"Invalid email address"),url:(e,t)=>/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-z]{2,63}\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(e)?Promise.resolve():Promise.resolve(t||"Invalid URL")};function ft(e){(t=e).inputValidator||Object.keys(ht).forEach(e=>{t.input===e&&(t.inputValidator=ht[e])}),e.showLoaderOnConfirm&&!e.preConfirm&&r("showLoaderOnConfirm is set to true, but preConfirm is not defined.\nshowLoaderOnConfirm should be used together with preConfirm, see usage example:\nhttps://sweetalert2.github.io/#ajax-request"),(n=e).target&&("string"!=typeof n.target||document.querySelector(n.target))&&("string"==typeof n.target||n.target.appendChild)||(r('Target parameter is not valid, defaulting to "body"'),n.target="body"),"string"==typeof e.title&&(e.title=e.title.split("\n").join("
      "));var t,n=e,e=Be();if(we())l("SweetAlert2 requires document to initialize");else{const o=document.createElement("div"),i=(o.className=p.container,e&&w(o,p["no-transition"]),v(o,Pe),Ee(n.target));i.appendChild(o),Te(n),Se(i),xe()}}class bt{constructor(e,t){this.callback=e,this.remaining=t,this.running=!1,this.start()}start(){return this.running||(this.running=!0,this.started=new Date,this.id=setTimeout(this.callback,this.remaining)),this.remaining}stop(){return this.running&&(this.running=!1,clearTimeout(this.id),this.remaining-=(new Date).getTime()-this.started.getTime()),this.remaining}increase(e){var t=this.running;return t&&this.stop(),this.remaining+=e,t&&this.start(),this.remaining}getTimerLeft(){return this.running&&(this.stop(),this.start()),this.remaining}isRunning(){return this.running}}const vt=()=>{null===n.previousBodyPadding&&document.body.scrollHeight>window.innerHeight&&(n.previousBodyPadding=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right")),document.body.style.paddingRight="".concat(n.previousBodyPadding+(()=>{const e=document.createElement("div");e.className=p["scrollbar-measure"],document.body.appendChild(e);var t=e.getBoundingClientRect().width-e.clientWidth;return document.body.removeChild(e),t})(),"px"))},yt=()=>{null!==n.previousBodyPadding&&(document.body.style.paddingRight="".concat(n.previousBodyPadding,"px"),n.previousBodyPadding=null)},wt=()=>{if((/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||"MacIntel"===navigator.platform&&1{t=Ct(e)},n.ontouchmove=e=>{t&&(e.preventDefault(),e.stopPropagation())}}{const o=navigator.userAgent,i=!!o.match(/iPad/i)||!!o.match(/iPhone/i),r=!!o.match(/WebKit/i),a=i&&r&&!o.match(/CriOS/i);a&&(e=44,g().scrollHeight>window.innerHeight-44&&(m().style.paddingBottom="".concat(44,"px")))}}},Ct=e=>{var t,n=e.target,o=m();return!((t=e).touches&&t.touches.length&&"stylus"===t.touches[0].touchType||(t=e).touches&&1{var e;s(document.body,p.iosfix)&&(e=parseInt(document.body.style.top,10),C(document.body,p.iosfix),document.body.style.top="",document.body.scrollTop=-1*e)},At=10,Pt=e=>{const t=g();if(e.target===t){const n=m();t.removeEventListener(je,Pt),n.style.overflowY="auto"}},Bt=(e,t)=>{je&&ye(t)?(e.style.overflowY="hidden",t.addEventListener(je,Pt)):e.style.overflowY="auto"},xt=(e,t,n)=>{wt(),t&&"hidden"!==n&&vt(),setTimeout(()=>{e.scrollTop=0})},Et=(e,t,n)=>{w(e,n.showClass.backdrop),t.style.setProperty("opacity","0","important"),A(t,"grid"),setTimeout(()=>{w(t,n.showClass.popup),t.style.removeProperty("opacity")},At),w([document.documentElement,document.body],p.shown),n.heightAuto&&n.backdrop&&!n.toast&&w([document.documentElement,document.body],p["height-auto"])},j=e=>{let t=g();t||new kn,t=g();var n=d();if(le())P(X());else{var o=t;const i=oe(),r=d();!e&&B(h())&&(e=h());A(i),e&&(P(e),r.setAttribute("data-button-to-replace",e.className));r.parentNode.insertBefore(r,e),w([o,i],p.loading)}A(n),t.setAttribute("data-loading","true"),t.setAttribute("aria-busy","true"),t.focus()},Tt=(t,n)=>{const o=g(),i=e=>Lt[n.input](o,Ot(e),n);F(n.inputOptions)||U(n.inputOptions)?(j(h()),u(n.inputOptions).then(e=>{t.hideLoading(),i(e)})):"object"==typeof n.inputOptions?i(n.inputOptions):l("Unexpected type of inputOptions! Expected object, Map or Promise, got ".concat(typeof n.inputOptions))},St=(t,n)=>{const o=t.getInput();P(o),u(n.inputValue).then(e=>{o.value="number"===n.input?parseFloat(e)||0:"".concat(e),A(o),o.focus(),t.hideLoading()}).catch(e=>{l("Error in inputValue promise: ".concat(e)),o.value="",A(o),o.focus(),t.hideLoading()})},Lt={select:(e,t,i)=>{const r=k(e,p.select),a=(e,t,n)=>{const o=document.createElement("option");o.value=n,v(o,t),o.selected=jt(n,i.inputValue),e.appendChild(o)};t.forEach(e=>{var t=e[0];const n=e[1];if(Array.isArray(n)){const o=document.createElement("optgroup");o.label=t,o.disabled=!1,r.appendChild(o),n.forEach(e=>a(o,e[1],e[0]))}else a(r,n,t)}),r.focus()},radio:(e,t,r)=>{const a=k(e,p.radio),n=(t.forEach(e=>{var t=e[0],e=e[1];const n=document.createElement("input"),o=document.createElement("label"),i=(n.type="radio",n.name=p.radio,n.value=t,jt(t,r.inputValue)&&(n.checked=!0),document.createElement("span"));v(i,e),i.className=p.label,o.appendChild(n),o.appendChild(i),a.appendChild(o)}),a.querySelectorAll("input"));n.length&&n[0].focus()}},Ot=n=>{const o=[];return"undefined"!=typeof Map&&n instanceof Map?n.forEach((e,t)=>{let n=e;"object"==typeof n&&(n=Ot(n)),o.push([t,n])}):Object.keys(n).forEach(e=>{let t=n[e];"object"==typeof t&&(t=Ot(t)),o.push([e,t])}),o},jt=(e,t)=>t&&t.toString()===e.toString();function Mt(){var e,t=T.innerParams.get(this);if(t){const n=T.domCache.get(this);P(n.loader),le()?t.icon&&A(X()):(t=n,(e=t.popup.getElementsByClassName(t.loader.getAttribute("data-button-to-replace"))).length?A(e[0],"inline-block"):be()&&P(t.actions)),C([n.popup,n.actions],p.loading),n.popup.removeAttribute("aria-busy"),n.popup.removeAttribute("data-loading"),n.confirmButton.disabled=!1,n.denyButton.disabled=!1,n.cancelButton.disabled=!1}}var Ht={swalPromiseResolve:new WeakMap,swalPromiseReject:new WeakMap};const It=()=>h()&&h().click();const Dt=e=>{e.keydownTarget&&e.keydownHandlerAdded&&(e.keydownTarget.removeEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!1)},qt=(e,t,n)=>{const o=se();if(o.length)return(t+=n)===o.length?t=0:-1===t&&(t=o.length-1),o[t].focus();g().focus()},Vt=["ArrowRight","ArrowDown"],Nt=["ArrowLeft","ArrowUp"],Rt=(e,n,t)=>{var o=T.innerParams.get(e);if(o&&(!n.isComposing&&229!==n.keyCode))if(o.stopKeydownPropagation&&n.stopPropagation(),"Enter"===n.key)e=e,s=n,i=o,R(i.allowEnterKey)&&s.target&&e.getInput()&&s.target instanceof HTMLElement&&s.target.outerHTML===e.getInput().outerHTML&&(["textarea","file"].includes(i.input)||(It(),s.preventDefault()));else if("Tab"===n.key){e=n;var i=o;var r=e.target,a=se();let t=-1;for(let e=0;eKt(e,o)),Dt(x)),/^((?!chrome|android).)*safari/i.test(navigator.userAgent)?(t.setAttribute("style","display:none !important"),t.removeAttribute("class"),t.innerHTML=""):t.remove(),ce()&&(yt(),kt(),at()),C([document.documentElement,document.body],[p.shown,p["height-auto"],p["no-backdrop"],p["toast-shown"]])}function Ut(e){e=void 0!==(n=e)?Object.assign({isConfirmed:!1,isDenied:!1,isDismissed:!1},n):{isConfirmed:!1,isDenied:!1,isDismissed:!0};const t=Ht.swalPromiseResolve.get(this);var n=(e=>{const t=g();if(!t)return false;const n=T.innerParams.get(e);if(!n||s(t,n.hideClass.popup))return false;C(t,n.showClass.popup),w(t,n.hideClass.popup);const o=m();return C(o,n.showClass.backdrop),w(o,n.hideClass.backdrop),zt(e,t,n),true})(this);this.isAwaitingPromise()?e.isDismissed||(Wt(this),t(e)):n&&t(e)}const Wt=e=>{e.isAwaitingPromise()&&(T.awaitingPromise.delete(e),T.innerParams.get(e)||e._destroy())},zt=(e,t,n)=>{var o,i,r,a=m(),s=je&&ye(t);"function"==typeof n.willClose&&n.willClose(t),s?(s=e,o=t,t=a,i=n.returnFocus,r=n.didClose,x.swalCloseEventFinishedCallback=Ft.bind(null,s,t,i,r),o.addEventListener(je,function(e){e.target===o&&(x.swalCloseEventFinishedCallback(),delete x.swalCloseEventFinishedCallback)})):Ft(e,a,n.returnFocus,n.didClose)},Kt=(e,t)=>{setTimeout(()=>{"function"==typeof t&&t.bind(e.params)(),e._destroy()})};function _t(e,t,n){const o=T.domCache.get(e);t.forEach(e=>{o[e].disabled=n})}function Yt(e,t){if(!e)return!1;if("radio"===e.type){const n=e.parentNode.parentNode,o=n.querySelectorAll("input");for(let e=0;e{e.isAwaitingPromise()?($t(T,e),T.awaitingPromise.set(e,!0)):($t(Ht,e),$t(T,e))},$t=(e,t)=>{for(const n in e)e[n].delete(t)};e=Object.freeze({hideLoading:Mt,disableLoading:Mt,getInput:function(e){var t=T.innerParams.get(e||this);return(e=T.domCache.get(e||this))?pe(e.popup,t.input):null},close:Ut,isAwaitingPromise:function(){return!!T.awaitingPromise.get(this)},rejectPromise:function(e){const t=Ht.swalPromiseReject.get(this);Wt(this),t&&t(e)},handleAwaitingPromise:Wt,closePopup:Ut,closeModal:Ut,closeToast:Ut,enableButtons:function(){_t(this,["confirmButton","denyButton","cancelButton"],!1)},disableButtons:function(){_t(this,["confirmButton","denyButton","cancelButton"],!0)},enableInput:function(){return Yt(this.getInput(),!1)},disableInput:function(){return Yt(this.getInput(),!0)},showValidationMessage:function(e){const t=T.domCache.get(this);var n=T.innerParams.get(this);v(t.validationMessage,e),t.validationMessage.className=p["validation-message"],n.customClass&&n.customClass.validationMessage&&w(t.validationMessage,n.customClass.validationMessage),A(t.validationMessage);const o=this.getInput();o&&(o.setAttribute("aria-invalid",!0),o.setAttribute("aria-describedby",p["validation-message"]),me(o),w(o,p.inputerror))},resetValidationMessage:function(){var e=T.domCache.get(this);e.validationMessage&&P(e.validationMessage);const t=this.getInput();t&&(t.removeAttribute("aria-invalid"),t.removeAttribute("aria-describedby"),C(t,p.inputerror))},getProgressSteps:function(){return T.domCache.get(this).progressSteps},update:function(e){var t=g(),n=T.innerParams.get(this);if(!t||s(t,n.hideClass.popup))return r("You're trying to update the closed or closing popup, that won't work. Use the update() method in preConfirm parameter or show a new popup.");t=(t=>{const n={};return Object.keys(t).forEach(e=>{if(Y(e))n[e]=t[e];else r("Invalid parameter to update: ".concat(e))}),n})(e),n=Object.assign({},n,t),it(this,n),T.innerParams.set(this,n),Object.defineProperties(this,{params:{value:Object.assign({},this.params,e),writable:!1,enumerable:!0}})},_destroy:function(){var e=T.domCache.get(this);const t=T.innerParams.get(this);t?(e.popup&&x.swalCloseEventFinishedCallback&&(x.swalCloseEventFinishedCallback(),delete x.swalCloseEventFinishedCallback),"function"==typeof t.didDestroy&&t.didDestroy(),e=this,Zt(e),delete e.params,delete x.keydownHandler,delete x.keydownTarget,delete x.currentInstance):Zt(this)}});const Jt=(e,t)=>{var n=T.innerParams.get(e);if(!n.input)return l('The "input" parameter is needed to be set when using returnInputValueOn'.concat(q(t)));var o=((e,t)=>{const n=e.getInput();if(!n)return null;switch(t.input){case"checkbox":return n.checked?1:0;case"radio":return(o=n).checked?o.value:null;case"file":return(o=n).files.length?null!==o.getAttribute("multiple")?o.files:o.files[0]:null;default:return t.inputAutoTrim?n.value.trim():n.value}var o})(e,n);if(n.inputValidator){var i=e;var r=o;var a=t;const s=T.innerParams.get(i),c=(i.disableInput(),Promise.resolve().then(()=>u(s.inputValidator(r,s.validationMessage))));c.then(e=>{i.enableButtons(),i.enableInput(),e?i.showValidationMessage(e):("deny"===a?Xt:en)(i,r)})}else e.getInput().checkValidity()?("deny"===t?Xt:en)(e,o):(e.enableButtons(),e.showValidationMessage(n.validationMessage))},Xt=(t,n)=>{const e=T.innerParams.get(t||void 0);if(e.showLoaderOnDeny&&j(f()),e.preDeny){T.awaitingPromise.set(t||void 0,!0);const o=Promise.resolve().then(()=>u(e.preDeny(n,e.validationMessage)));o.then(e=>{!1===e?(t.hideLoading(),Wt(t)):t.closePopup({isDenied:!0,value:void 0===e?n:e})}).catch(e=>Qt(t||void 0,e))}else t.closePopup({isDenied:!0,value:n})},Gt=(e,t)=>{e.closePopup({isConfirmed:!0,value:t})},Qt=(e,t)=>{e.rejectPromise(t)},en=(t,n)=>{const e=T.innerParams.get(t||void 0);if(e.showLoaderOnConfirm&&j(),e.preConfirm){t.resetValidationMessage(),T.awaitingPromise.set(t||void 0,!0);const o=Promise.resolve().then(()=>u(e.preConfirm(n,e.validationMessage)));o.then(e=>{B(ne())||!1===e?(t.hideLoading(),Wt(t)):Gt(t,void 0===e?n:e)}).catch(e=>Qt(t||void 0,e))}else Gt(t,n)},tn=(n,e,o)=>{e.popup.onclick=()=>{var e,t=T.innerParams.get(n);t&&((e=t).showConfirmButton||e.showDenyButton||e.showCancelButton||e.showCloseButton||t.timer||t.input)||o(L.close)}};let nn=!1;const on=t=>{t.popup.onmousedown=()=>{t.container.onmouseup=function(e){t.container.onmouseup=void 0,e.target===t.container&&(nn=!0)}}},rn=t=>{t.container.onmousedown=()=>{t.popup.onmouseup=function(e){t.popup.onmouseup=void 0,e.target!==t.popup&&!t.popup.contains(e.target)||(nn=!0)}}},an=(n,o,i)=>{o.container.onclick=e=>{var t=T.innerParams.get(n);nn?nn=!1:e.target===o.container&&R(t.allowOutsideClick)&&i(L.backdrop)}},sn=e=>"object"==typeof e&&e.jquery,cn=e=>e instanceof Element||sn(e);const ln=()=>{if(x.timeout){{const n=re();var e=parseInt(window.getComputedStyle(n).width),t=(n.style.removeProperty("transition"),n.style.width="100%",parseInt(window.getComputedStyle(n).width)),e=e/t*100;n.style.removeProperty("transition"),n.style.width="".concat(e,"%")}return x.timeout.stop()}},un=()=>{var e;if(x.timeout)return e=x.timeout.start(),ue(e),e};let dn=!1;const pn={};const mn=t=>{for(let e=t.target;e&&e!==document;e=e.parentNode)for(const o in pn){var n=e.getAttribute(o);if(n)return void pn[o].fire({template:n})}};var gn=Object.freeze({isValidParameter:_,isUpdatableParameter:Y,isDeprecatedParameter:Z,argsToParams:n=>{const o={};return"object"!=typeof n[0]||cn(n[0])?["title","html","icon"].forEach((e,t)=>{t=n[t];"string"==typeof t||cn(t)?o[e]=t:void 0!==t&&l("Unexpected type of ".concat(e,'! Expected "string" or "Element", got ').concat(typeof t))}):Object.assign(o,n[0]),o},isVisible:()=>B(g()),clickConfirm:It,clickDeny:()=>f()&&f().click(),clickCancel:()=>b()&&b().click(),getContainer:m,getPopup:g,getTitle:G,getHtmlContainer:Q,getImage:ee,getIcon:X,getInputLabel:()=>t(p["input-label"]),getCloseButton:ae,getActions:oe,getConfirmButton:h,getDenyButton:f,getCancelButton:b,getLoader:d,getFooter:ie,getTimerProgressBar:re,getFocusableElements:se,getValidationMessage:ne,isLoading:()=>g().hasAttribute("data-loading"),fire:function(){for(var e=arguments.length,t=new Array(e),n=0;nx.timeout&&x.timeout.getTimerLeft(),stopTimer:ln,resumeTimer:un,toggleTimer:()=>{var e=x.timeout;return e&&(e.running?ln:un)()},increaseTimer:e=>{if(x.timeout)return e=x.timeout.increase(e),ue(e,!0),e},isTimerRunning:()=>x.timeout&&x.timeout.isRunning(),bindClickHandler:function(){var e=0new Promise((e,t)=>{const n=e=>{l.closePopup({isDismissed:!0,dismiss:e})};var o,i,r;Ht.swalPromiseResolve.set(l,e),Ht.swalPromiseReject.set(l,t),u.confirmButton.onclick=()=>{var e=l,t=T.innerParams.get(e);e.disableButtons(),t.input?Jt(e,"confirm"):en(e,!0)},u.denyButton.onclick=()=>{var e=l,t=T.innerParams.get(e);e.disableButtons(),t.returnInputValueOnDeny?Jt(e,"deny"):Xt(e,!1)},u.cancelButton.onclick=()=>{var e=l,t=n;e.disableButtons(),t(L.cancel)},u.closeButton.onclick=()=>n(L.close),e=l,t=u,r=n,T.innerParams.get(e).toast?tn(e,t,r):(on(t),rn(t),an(e,t,r)),o=l,e=x,t=d,i=n,Dt(e),t.toast||(e.keydownHandler=e=>Rt(o,e,i),e.keydownTarget=t.keydownListenerCapture?window:g(),e.keydownListenerCapture=t.keydownListenerCapture,e.keydownTarget.addEventListener("keydown",e.keydownHandler,{capture:e.keydownListenerCapture}),e.keydownHandlerAdded=!0),r=l,"select"===(t=d).input||"radio"===t.input?Tt(r,t):["text","email","number","tel","textarea"].includes(t.input)&&(F(t.inputValue)||U(t.inputValue))&&(j(h()),St(r,t));{var a=d;const s=m(),c=g();"function"==typeof a.willOpen&&a.willOpen(c),e=window.getComputedStyle(document.body).overflowY,Et(s,c,a),setTimeout(()=>{Bt(s,c)},At),ce()&&(xt(s,a.scrollbarPadding,e),rt()),le()||x.previousActiveElement||(x.previousActiveElement=document.activeElement),"function"==typeof a.didOpen&&setTimeout(()=>a.didOpen(c)),C(s,p["no-transition"])}vn(x,d,n),yn(u,d),setTimeout(()=>{u.container.scrollTop=0})}),fn=(e,t)=>{var n=(e=>{e="string"==typeof e.template?document.querySelector(e.template):e.template;if(!e)return{};e=e.content,gt(e),e=Object.assign(ct(e),lt(e),ut(e),dt(e),pt(e),mt(e,st));return e})(e);const o=Object.assign({},a,t,n,e);return o.showClass=Object.assign({},a.showClass,o.showClass),o.hideClass=Object.assign({},a.hideClass,o.hideClass),o},bn=e=>{var t={popup:g(),container:m(),actions:oe(),confirmButton:h(),denyButton:f(),cancelButton:b(),loader:d(),closeButton:ae(),validationMessage:ne(),progressSteps:te()};return T.domCache.set(e,t),t},vn=(e,t,n)=>{var o=re();P(o),t.timer&&(e.timeout=new bt(()=>{n("timer"),delete e.timeout},t.timer),t.timerProgressBar&&(A(o),y(o,t,"timerProgressBar"),setTimeout(()=>{e.timeout&&e.timeout.running&&ue(t.timer)})))},yn=(e,t)=>{if(!t.toast)return R(t.allowEnterKey)?void(wn(e,t)||qt(t,-1,1)):Cn()},wn=(e,t)=>t.focusDeny&&B(e.denyButton)?(e.denyButton.focus(),!0):t.focusCancel&&B(e.cancelButton)?(e.cancelButton.focus(),!0):!(!t.focusConfirm||!B(e.confirmButton))&&(e.confirmButton.focus(),!0),Cn=()=>{document.activeElement instanceof HTMLElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur()};if("undefined"!=typeof window&&/^ru\b/.test(navigator.language)&&location.host.match(/\.(ru|su|xn--p1ai)$/)&&Math.random()<.1){const I=document.createElement("div"),An=(I.className="leave-russia-now-and-apply-your-skills-to-the-world",v(I,'\n
      \n Если мы не остановим войну, она придет в дом каждого из нас и её последствия будут ужасающими.\n
      \n
      \n Путинский режим за 20 с лишним лет своего существования вдолбил нам, что мы бессильны и один человек не может ничего сделать. Это не так!\n
      \n
      \n В нижеприведённом видео объясняется как каждый из нас может помочь в том, чтобы эта бессмысленная и бесчеловечная война остановилась:\n
      \n \n
      \n Нет войне!\n
      \n '),document.createElement("button"));An.innerHTML="×",An.onclick=()=>I.remove(),I.appendChild(An),window.addEventListener("load",()=>{setTimeout(()=>{document.body.appendChild(I)},1e3)})}Object.assign(H.prototype,e),Object.assign(H,gn),Object.keys(e).forEach(e=>{H[e]=function(){if(M)return M[e](...arguments)}}),H.DismissReason=L,H.version="11.4.20";const kn=H;return kn.default=kn}),void 0!==this&&this.Sweetalert2&&(this.swal=this.sweetAlert=this.Swal=this.SweetAlert=this.Sweetalert2); "undefined"!=typeof document&&function(e,t){var n=e.createElement("style");if(e.getElementsByTagName("head")[0].appendChild(n),n.styleSheet)n.styleSheet.disabled||(n.styleSheet.cssText=t);else try{n.innerHTML=t}catch(e){n.innerText=t}}(document,".swal2-popup.swal2-toast{box-sizing:border-box;grid-column:1/4!important;grid-row:1/4!important;grid-template-columns:1fr 99fr 1fr;padding:1em;overflow-y:hidden;background:#fff;box-shadow:0 0 1px hsla(0deg,0%,0%,.075),0 1px 2px hsla(0deg,0%,0%,.075),1px 2px 4px hsla(0deg,0%,0%,.075),1px 3px 8px hsla(0deg,0%,0%,.075),2px 4px 16px hsla(0deg,0%,0%,.075);pointer-events:all}.swal2-popup.swal2-toast>*{grid-column:2}.swal2-popup.swal2-toast .swal2-title{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.5em;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-popup.swal2-toast .swal2-html-container{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-popup.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{justify-content:flex-start;height:auto;margin:0;margin-top:.5em;padding:0 .5em}.swal2-popup.swal2-toast .swal2-styled{margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-toast-animate-success-line-tip .75s;animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-toast-animate-success-line-long .75s;animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:swal2-toast-show .5s;animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:swal2-toast-hide .1s forwards;animation:swal2-toast-hide .1s forwards}.swal2-container{display:grid;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;box-sizing:border-box;grid-template-areas:\"top-start top top-end\" \"center-start center center-end\" \"bottom-start bottom-center bottom-end\";grid-template-rows:minmax(-webkit-min-content,auto) minmax(-webkit-min-content,auto) minmax(-webkit-min-content,auto);grid-template-rows:minmax(min-content,auto) minmax(min-content,auto) minmax(min-content,auto);height:100%;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-bottom-start,.swal2-container.swal2-center-start,.swal2-container.swal2-top-start{grid-template-columns:minmax(0,1fr) auto auto}.swal2-container.swal2-bottom,.swal2-container.swal2-center,.swal2-container.swal2-top{grid-template-columns:auto minmax(0,1fr) auto}.swal2-container.swal2-bottom-end,.swal2-container.swal2-center-end,.swal2-container.swal2-top-end{grid-template-columns:auto auto minmax(0,1fr)}.swal2-container.swal2-top-start>.swal2-popup{align-self:start}.swal2-container.swal2-top>.swal2-popup{grid-column:2;align-self:start;justify-self:center}.swal2-container.swal2-top-end>.swal2-popup,.swal2-container.swal2-top-right>.swal2-popup{grid-column:3;align-self:start;justify-self:end}.swal2-container.swal2-center-left>.swal2-popup,.swal2-container.swal2-center-start>.swal2-popup{grid-row:2;align-self:center}.swal2-container.swal2-center>.swal2-popup{grid-column:2;grid-row:2;align-self:center;justify-self:center}.swal2-container.swal2-center-end>.swal2-popup,.swal2-container.swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;align-self:center;justify-self:end}.swal2-container.swal2-bottom-left>.swal2-popup,.swal2-container.swal2-bottom-start>.swal2-popup{grid-column:1;grid-row:3;align-self:end}.swal2-container.swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;justify-self:center;align-self:end}.swal2-container.swal2-bottom-end>.swal2-popup,.swal2-container.swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;align-self:end;justify-self:end}.swal2-container.swal2-grow-fullscreen>.swal2-popup,.swal2-container.swal2-grow-row>.swal2-popup{grid-column:1/4;width:100%}.swal2-container.swal2-grow-column>.swal2-popup,.swal2-container.swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}.swal2-container.swal2-no-transition{transition:none!important}.swal2-popup{display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0,100%);width:32em;max-width:100%;padding:0 0 1.25em;border:none;border-radius:5px;background:#fff;color:#545454;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-title{position:relative;max-width:100%;margin:0;padding:.8em 1em 0;color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:auto;margin:1.25em auto 0;padding:0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-loader{display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 transparent #2778c4 transparent}.swal2-styled{margin:.3125em;padding:.625em 1.1em;transition:box-shadow .1s;box-shadow:0 0 0 3px transparent;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#7066e0;color:#fff;font-size:1em}.swal2-styled.swal2-confirm:focus{box-shadow:0 0 0 3px rgba(112,102,224,.5)}.swal2-styled.swal2-deny{border:0;border-radius:.25em;background:initial;background-color:#dc3741;color:#fff;font-size:1em}.swal2-styled.swal2-deny:focus{box-shadow:0 0 0 3px rgba(220,55,65,.5)}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#6e7881;color:#fff;font-size:1em}.swal2-styled.swal2-cancel:focus{box-shadow:0 0 0 3px rgba(110,120,129,.5)}.swal2-styled.swal2-default-outline:focus{box-shadow:0 0 0 3px rgba(100,150,200,.5)}.swal2-styled:focus{outline:0}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1em 0 0;padding:1em 1em 0;border-top:1px solid #eee;color:inherit;font-size:1em}.swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto!important;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}.swal2-timer-progress-bar{width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:2em auto 1em}.swal2-close{z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:color .1s,box-shadow .1s;border:none;border-radius:5px;background:0 0;color:#ccc;font-family:serif;font-family:monospace;font-size:2.5em;cursor:pointer;justify-self:end}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close:focus{outline:0;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}.swal2-close::-moz-focus-inner{border:0}.swal2-html-container{z-index:1;justify-content:center;margin:1em 1.6em .3em;padding:0;overflow:auto;color:inherit;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word;word-break:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em 2em 3px}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:auto;transition:border-color .1s,box-shadow .1s;border:1px solid #d9d9d9;border-radius:.1875em;background:0 0;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px transparent;color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(100,150,200,.5)}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file:-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em 2em 3px;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-file{width:75%;margin-right:auto;margin-left:auto;background:0 0;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:0 0;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{flex-shrink:0;margin:0 .4em}.swal2-input-label{display:flex;justify-content:center;margin:1em auto 0}.swal2-validation-message{align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:\"!\";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;border:.25em solid transparent;border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-warning.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content{-webkit-animation:swal2-animate-i-mark .5s;animation:swal2-animate-i-mark .5s}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-info.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content{-webkit-animation:swal2-animate-i-mark .8s;animation:swal2-animate-i-mark .8s}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-question.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content{-webkit-animation:swal2-animate-question-mark .8s;animation:swal2-animate-question-mark .8s}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:0 0;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}.leave-russia-now-and-apply-your-skills-to-the-world{display:flex;position:fixed;z-index:1939;top:0;right:0;bottom:0;left:0;flex-direction:column;align-items:center;justify-content:center;padding:25px 0 20px;background:#20232a;color:#fff;text-align:center}.leave-russia-now-and-apply-your-skills-to-the-world div{max-width:560px;margin:10px;line-height:146%}.leave-russia-now-and-apply-your-skills-to-the-world iframe{max-width:100%;max-height:55.5555555556vmin;margin:16px auto}.leave-russia-now-and-apply-your-skills-to-the-world strong{border-bottom:2px dashed #fff}.leave-russia-now-and-apply-your-skills-to-the-world button{display:flex;position:fixed;z-index:1940;top:0;right:0;align-items:center;justify-content:center;width:48px;height:48px;margin-right:10px;margin-bottom:-10px;border:none;background:0 0;color:#aaa;font-size:48px;font-weight:700;cursor:pointer}.leave-russia-now-and-apply-your-skills-to-the-world button:hover{color:#fff}@-webkit-keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@-webkit-keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@-webkit-keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@-webkit-keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-webkit-keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@-webkit-keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{background-color:transparent!important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:all}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:transparent;pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}"); \ No newline at end of file diff --git a/catatan_rilis.md b/catatan_rilis.md index 004f97b13f..4a35dedd67 100644 --- a/catatan_rilis.md +++ b/catatan_rilis.md @@ -1,75 +1,91 @@ -Di rilis ini, versi 23.02 menyediakan integrasi aplikasi stunting ke OpenSID dan fitur baru surat TinyMCE. Rilis ini juga berisi penambahan fitur dan perbaikan lain yang diminta Komunitas SID. - -Terima kasih pada balongbesuk yang terus berkontribusi. +Di rilis ini, versi v23.03 menyediakan pengaturan masa berlaku surat agar bisa dipilih untuk dihilangkan atau ditampilkan pada form surat. Rilis ini juga berisi penambahan fitur dan perbaikan lain yang diminta Komunitas SID. +Terima kasih pada Irvan1609 yang terus berkontribusi. #### Penambahan Fitur -1. [#5206](https://github.com/OpenSID/OpenSID/issues/5206) Tampilkan peringatan langganan SaaS akan berakhir. -2. [#5210](https://github.com/OpenSID/OpenSID/issues/5210) Backup folder desa secara inkremental. -3. [#4680](https://github.com/OpenSID/OpenSID/issues/4680) Integrasikan aplikasi stunting oleh komunitas ke OpenSID. -4. [#5108](https://github.com/OpenSID/OpenSID/issues/5108) Buat template surat menggunakan TinyMCE. + +1. [#5311](https://github.com/OpenSID/OpenSID/issues/5311) Bersihkan cache blade setiap selesai migrasi. +2. [#5307](https://github.com/OpenSID/OpenSID/issues/5307) Menambahkan masa berlaku surat agar bisa dipilih untuk dihilangkan atau ditampilkan pada form surat. +3. [#5306](https://github.com/OpenSID/OpenSID/issues/5306) Mengalihkan ke arsip atau daftar surat setelah cetak surat. +4. [#5313](https://github.com/OpenSID/OpenSID/issues/5313) Periksa database pengguna dan kata sandi bawaan. +5. [#5305](https://github.com/OpenSID/OpenSID/issues/5305) Menambahkan pengaturan jenis huruf bawaan. +6. [#5405](https://github.com/OpenSID/OpenSID/issues/5405) Menambahkan info email yg terkirim untuk verifikasi pendaftaran kerjasama. +7. [#5409](https://github.com/OpenSID/OpenSID/issues/5409) Surat yang sudah selesai dibuatkan pdf dan hasilnya tersimpan di dalam server. #### Perbaikan BUG -1. [#5249](https://github.com/OpenSID/OpenSID/issues/5249) Perbaiki impor data penduduk terbaca ganda. -2. [#5255](https://github.com/OpenSID/OpenSID/issues/5255) Perbaiki qr code surat yaang mengarah ke github opensid. -3. [#5261](https://github.com/OpenSID/OpenSID/issues/5261) Perbaiki data lampiran surat keterangan pindah penduduk tidak tampil. -4. [#5264](https://github.com/OpenSID/OpenSID/issues/5264) Perbaiki IDM Kemendes tidak dapat di perbaharui jika respon dari api tidak sesuai. -5. [#5263](https://github.com/OpenSID/OpenSID/issues/5263) Perbaiki statistik pada peta wilayah dusun tidak tampil. -6. [#5177](https://github.com/OpenSID/OpenSID/issues/5177) Perbaiki data jumlah keluarga tidak tampil pada Statistik Penduduk Laporan Bulanan. -7. [#5267](https://github.com/OpenSID/OpenSID/issues/5267) Perbaiki isian jumlah biaya pembangunan tidak bisa lebih dari 9 digit. -8. [#5265](https://github.com/OpenSID/OpenSID/issues/5265) Perbaiki duplikasi peserta program bantuan pada semua sasaran bantuan. -9. [#5269](https://github.com/OpenSID/OpenSID/issues/5269) Perbaiki error saat ubah artikel dengan grup pengguna bukan bawaan sistem. -10. [#5272](https://github.com/OpenSID/OpenSID/issues/5272) Perbaiki tidak bisa tampilkan feed. -11. [#5279](https://github.com/OpenSID/OpenSID/issues/5279) Perbaiki an/ub pada menu permohonan surat tidak muncul. -12. [#5277](https://github.com/OpenSID/OpenSID/issues/5277) Perbaiki masih bisa hapus pengguna yang sudah lakukan absensi kehadiran. -13. [#5285](https://github.com/OpenSID/OpenSID/issues/5285) Perbaiki notifikasi status langganan. -14. [#5286](https://github.com/OpenSID/OpenSID/issues/5286) Perbaiki error console [Uncaught TypeError: Cannot read properties of undefined (reading 'settings')] -15. [#5287](https://github.com/OpenSID/OpenSID/issues/5287) Perbaiki surat keterangan pindah penduduk. -16. [#5289](https://github.com/OpenSID/OpenSID/issues/5289) Perbaiki gagal install v22.06-premium di shared hosting. -17. [#5321](https://github.com/OpenSID/OpenSID/issues/5321) Merapikan informasi report ketika ada duplicate data tanggal. -18. [#5314](https://github.com/OpenSID/OpenSID/issues/5314) Membatasi Impor data penduduk dengan No KK < 16 digit akan gagal import. -19. [#5339](https://github.com/OpenSID/OpenSID/issues/5339) Mengatasi paging halaman tidak ditemukan pada album galeri yang lebih dari 10 gambar. -20. [#5341](https://github.com/OpenSID/OpenSID/issues/5341) Mengatasi tombol batal pada popup pengaturan pelanggan yang tidak berfungsi. -21. [#5322](https://github.com/OpenSID/OpenSID/issues/5322) Menambahkan keterangan & notifikasi tidak bisa input kode lembaga & kelompok. -22. [#5312](https://github.com/OpenSID/OpenSID/issues/5312) Mengatasi duplikat atas nama di pengurus & memperbarui penyesuaian a.n pamong ketika di update. -23. [#5320](https://github.com/OpenSID/OpenSID/issues/5320) Menghilangkan menu pertahanan didalam grup stunting pada pengguna. -24. [#5323](https://github.com/OpenSID/OpenSID/issues/5323) Mengatasi penambahan surat baru dengan cara menambahkannya di folder desa/template-surat. -25. [#5369](https://github.com/OpenSID/OpenSID/issues/5369) Manampilkan token dari layanan di opensid untuk dicopy oleh pengguna. -26. [#5352](https://github.com/OpenSID/OpenSID/issues/5352) Menampilkan QR Code yang tidak muncul saat surat dicetak padahal sudah diatur di pengaturan surat. -27. [#5310](https://github.com/OpenSID/OpenSID/issues/5310) Mengatasi Foto dan JK pada KK kosong yang tidak sesuai. -28. [#5370](https://github.com/OpenSID/OpenSID/issues/5370) Menambahkan validasi dan ketentuan-ketentuan yang berhubungan dengan pendaftaran kerjasama. -29. [#5377](https://github.com/OpenSID/OpenSID/issues/5377) Merapikan typo pada alert saat menambah hari libur dengan tanggal yang sama. -30. [#5379](https://github.com/OpenSID/OpenSID/issues/5379) Mengatasi error saat cetak PDF di menu cetak surat saat hanya ada a.n. -31. [#5380](https://github.com/OpenSID/OpenSID/issues/5380) Mengatasi error saat cetak surat menggunakan tinyMce. -32. [#5351](https://github.com/OpenSID/OpenSID/issues/5351) Mengatasi penginputan NIK lebih dari 16 digit saat mencetak surat domisili non warga. -33. [#5357](https://github.com/OpenSID/OpenSID/issues/5357) Mengatasi tidak bisa mengisi umur lebih dari 12 bulan pada data stunting pemantauan bulanan anak 0-2 tahun -34. [#5373](https://github.com/OpenSID/OpenSID/issues/5373) Mengatasi gambar gagal disimpan tapi alert nya berhasil disimpan. -35. [#5389](https://github.com/OpenSID/OpenSID/issues/5389) Perbaikan upload dokumen kerjasama menjadi tidak wajib. -36. [#5374](https://github.com/OpenSID/OpenSID/issues/5374) Perbaiki validasi saat input token pelanggan dan perbaiki notif yang tidak muncul. -37. [#5402](https://github.com/OpenSID/OpenSID/issues/5402) Perbaiki tampilan keterangan gambar di peta agar bisa enter ke bawah. -38. [#5390](https://github.com/OpenSID/OpenSID/issues/5390) Merubah cara backup inkremental yang memberatkan menjadi lebih ringan. -39. [#5394](https://github.com/OpenSID/OpenSID/issues/5394) Mengatasi menu aktif pada saat klik kategori lembaga. -40. [#5346](https://github.com/OpenSID/OpenSID/issues/5346) Menambahkan notifikasi gagal masuk jika akun staf / perangkat desa di non-aktifkan. -41. [#5416](https://github.com/OpenSID/OpenSID/issues/5416) Memperbaiki struktur perangkat tidak akan tampil/ tidak tersusun jika salah satu nama menggunakan tanda petik. -42. [#5390](https://github.com/OpenSID/OpenSID/issues/5390) Menambahkan daftar folder pada backup inkremental. -43. [#5180](https://github.com/OpenSID/OpenSID/issues/5180) Menampilkan icon waktu pada posting artikel & edit artikel. -44. [#5366](https://github.com/OpenSID/OpenSID/issues/5366) Memperbaiki tombol edit pada menu stunting bulanan ibu hamil. -45. [#5420](https://github.com/OpenSID/OpenSID/issues/5420) Merapikan tombol pada edit data penduduk. -46. [#5418](https://github.com/OpenSID/OpenSID/issues/5418) Memperbaiki tidak bisa hapus data hasil dari input stunting bulanan ibu hamil. -47. [#5427](https://github.com/OpenSID/OpenSID/issues/5427) Menampilkan data Logo, alamat, telepon pada 48. -48. [#5426](https://github.com/OpenSID/OpenSID/issues/5426) Memperbaiki tidak bisa menghapus surat tinymce yang dibuat baru di Pengaturan surat. -49. [#5419](https://github.com/OpenSID/OpenSID/issues/5419) Memperbaiki hasil expor DB yang tidak bisa di impor kembali krn adanya tgl 0000-000-000 00:00:00. -50. [#5325](https://github.com/OpenSID/OpenSID/issues/5325) Memperbaiki solusi croping gambar slider menjadi menyesuaikan panjang dan lebar slider. -51. [#1132](https://github.com/OpenSID/premium/issues/1132) Memperbaiki permohonan surat di layanan mandiri yang tidak bisa dibatalkan. -52. [#5268](https://github.com/OpenSID/OpenSID/issues/5268) Memperbaiki gagal buka halaman jika tidak bisa akses layanan. -53. [#5359](https://github.com/OpenSID/OpenSID/issues/5359) Memperbaiki realisasi APBDes tidak sama antara OpenSID dan Siskeudes. -54. [#5431](https://github.com/OpenSID/OpenSID/issues/5431) Menambahkan kategori di feed. -55. [#5421](https://github.com/OpenSID/OpenSID/issues/5421) Memperbaiki laporan jumlah awal bulan tidak sesuai denga akhir bulan sebelumnya. + +1. [#5321](https://github.com/OpenSID/OpenSID/issues/5321) Merapikan informasi report ketika ada duplicate data tanggal. +2. [#5314](https://github.com/OpenSID/OpenSID/issues/5314) Membatasi Impor data penduduk dengan No KK < 16 digit akan gagal import. +3. [#5339](https://github.com/OpenSID/OpenSID/issues/5339) Mengatasi paging halaman tidak ditemukan pada album galeri yang lebih dari 10 gambar. +4. [#5341](https://github.com/OpenSID/OpenSID/issues/5341) Mengatasi tombol batal pada popup pengaturan pelanggan yang tidak berfungsi. +5. [#5322](https://github.com/OpenSID/OpenSID/issues/5322) Menambahkan keterangan & notifikasi tidak bisa input kode lembaga & kelompok. +6. [#5312](https://github.com/OpenSID/OpenSID/issues/5312) Mengatasi duplikat atas nama di pengurus & memperbarui penyesuaian a.n pamong ketika di update. +7. [#5320](https://github.com/OpenSID/OpenSID/issues/5320) Menghilangkan menu pertahanan didalam grup stunting pada pengguna. +8. [#5323](https://github.com/OpenSID/OpenSID/issues/5323) Mengatasi penambahan surat baru dengan cara menambahkannya di folder desa/template-surat. +9. [#5369](https://github.com/OpenSID/OpenSID/issues/5369) Manampilkan token dari layanan di opensid untuk dicopy oleh pengguna. +10. [#5352](https://github.com/OpenSID/OpenSID/issues/5352) Menampilkan QR Code yang tidak muncul saat surat dicetak padahal sudah diatur di pengaturan surat. +11. [#5310](https://github.com/OpenSID/OpenSID/issues/5310) Mengatasi Foto dan JK pada KK kosong yang tidak sesuai. +12. [#5370](https://github.com/OpenSID/OpenSID/issues/5370) Menambahkan validasi dan ketentuan-ketentuan yang berhubungan dengan pendaftaran kerjasama. +13. [#5377](https://github.com/OpenSID/OpenSID/issues/5377) Merapikan typo pada alert saat menambah hari libur dengan tanggal yang sama. +14. [#5379](https://github.com/OpenSID/OpenSID/issues/5379) Mengatasi error saat cetak PDF di menu cetak surat saat hanya ada a.n. +15. [#5380](https://github.com/OpenSID/OpenSID/issues/5380) Mengatasi error saat cetak surat menggunakan tinyMce. +16. [#5351](https://github.com/OpenSID/OpenSID/issues/5351) Mengatasi penginputan NIK lebih dari 16 digit saat mencetak surat domisili non warga. +17. [#5357](https://github.com/OpenSID/OpenSID/issues/5357) Mengatasi tidak bisa mengisi umur lebih dari 12 bulan pada data stunting pemantauan bulanan anak 0-2 tahun +18. [#5373](https://github.com/OpenSID/OpenSID/issues/5373) Mengatasi gambar gagal disimpan tapi alert nya berhasil disimpan. +19. [#5389](https://github.com/OpenSID/OpenSID/issues/5389) Perbaikan upload dokumen kerjasama menjadi tidak wajib. +20. [#5374](https://github.com/OpenSID/OpenSID/issues/5374) Perbaiki validasi saat input token pelanggan dan perbaiki notif yang tidak muncul. +21. [#5402](https://github.com/OpenSID/OpenSID/issues/5402) Perbaiki tampilan keterangan gambar di peta agar bisa enter ke bawah. +22. [#5390](https://github.com/OpenSID/OpenSID/issues/5390) Merubah cara backup inkremental yang memberatkan menjadi lebih ringan. +23. [#5394](https://github.com/OpenSID/OpenSID/issues/5394) Mengatasi menu aktif pada saat klik kategori lembaga. +24. [#5346](https://github.com/OpenSID/OpenSID/issues/5346) Menambahkan notifikasi gagal masuk jika akun staf / perangkat desa di non-aktifkan. +25. [#5416](https://github.com/OpenSID/OpenSID/issues/5416) Memperbaiki struktur perangkat tidak akan tampil/ tidak tersusun jika salah satu nama menggunakan tanda petik. +26. [#5390](https://github.com/OpenSID/OpenSID/issues/5390) Menambahkan daftar folder pada backup inkremental. +27. [#5180](https://github.com/OpenSID/OpenSID/issues/5180) Menampilkan icon waktu pada posting artikel & edit artikel. +28. [#5366](https://github.com/OpenSID/OpenSID/issues/5366) Memperbaiki tombol edit pada menu stunting bulanan ibu hamil. +29. [#5420](https://github.com/OpenSID/OpenSID/issues/5420) Merapikan tombol pada edit data penduduk. +30. [#5418](https://github.com/OpenSID/OpenSID/issues/5418) Memperbaiki tidak bisa hapus data hasil dari input stunting bulanan ibu hamil. +31. [#5427](https://github.com/OpenSID/OpenSID/issues/5427) Menampilkan data Logo, alamat, telepon pada halaman maintenace ketika mode offline yang sebelumnya tidak tampil. +32. [#5426](https://github.com/OpenSID/OpenSID/issues/5426) Memperbaiki tidak bisa menghapus surat tinymce yang dibuat baru di Pengaturan surat. +33. [#5419](https://github.com/OpenSID/OpenSID/issues/5419) Memperbaiki hasil expor DB yang tidak bisa di impor kembali krn adanya tgl 0000-000-000 00:00:00. +34. [#5325](https://github.com/OpenSID/OpenSID/issues/5325) Memperbaiki solusi croping gambar slider menjadi menyesuaikan panjang dan lebar slider. +35. [#1132](https://github.com/OpenSID/premium/issues/1132) Memperbaiki permohonan surat di layanan mandiri yang tidak bisa dibatalkan. +36. [#5268](https://github.com/OpenSID/OpenSID/issues/5268) Memperbaiki gagal buka halaman jika tidak bisa akses layanan. +37. [#5359](https://github.com/OpenSID/OpenSID/issues/5359) Memperbaiki realisasi APBDes tidak sama antara OpenSID dan Siskeudes. +38. [#5431](https://github.com/OpenSID/OpenSID/issues/5431) Menambahkan kategori di feed. +39. [#5421](https://github.com/OpenSID/OpenSID/issues/5421) Memperbaiki laporan jumlah awal bulan tidak sesuai denga akhir bulan sebelumnya. +40. [#5452](https://github.com/OpenSID/OpenSID/issues/5452) Menghilangkan tampil tag ["desa"] pada halaman periksa. +41. [#5457](https://github.com/OpenSID/OpenSID/issues/5457) Menambahkan inputan manual untuk nama desa jika tidak ada respon dari pantau. +42. [#1188](https://github.com/OpenSID/premium/issues/1188) Menambahkan notifikasi beberapa modul gagal muat jika tidak terhubung ke internet. +43. [#5472](https://github.com/OpenSID/OpenSID/issues/5472) Mengatasi data entri NIK warga luar desa tidak bisa input lebih dari satu kali di menu buku tanah. +44. [#5471](https://github.com/OpenSID/OpenSID/issues/5471) Memperbaiki perintah group by pada Laporan rincian realisasi hasil dari impor siekudes. +45. [#5456](https://github.com/OpenSID/OpenSID/issues/5456) Memperbaiki buat surat tinymce yang tidak berhasil generate pdf. +46. [#1202](https://github.com/OpenSID/premium/issues/1202) Menghapus pengecekan url tidak valid di identitas desa. +47. [#5475](https://github.com/OpenSID/OpenSID/issues/5475) Perbaiki last login tidak diperbarui setelah login. +48. [#5478](https://github.com/OpenSID/OpenSID/issues/5478) Memperbaiki jJudul pada jumlah covid desa tidak tampil. +49. [#5477](https://github.com/OpenSID/OpenSID/issues/5477) Memperbaiki notifikasi saat mengembalikan status dasar penduduk. +50. [#5486](https://github.com/OpenSID/OpenSID/issues/5486) Memperbaiki pencarian nama ibu dari tambah anak ke 2 dari menu kia. +51. [#5487](https://github.com/OpenSID/OpenSID/issues/5487) Memperbaiki tampilan konsisten infrastruktur desa yang ditampilkan pada web dan admin. +52. [#5497](https://github.com/OpenSID/OpenSID/issues/5497) Memperbaiki tampilan inputan klasifikasi pindah pada form lampiran F-1.03. +53. [#5504](https://github.com/OpenSID/OpenSID/issues/5504) Memperbaiki tampilan data pada tabel status gizi anak menjadi singkatan huruf. +54. [#5513](https://github.com/OpenSID/OpenSID/issues/5513) Memperbaiki tampilan pengaturan margin. +55. [#5498](https://github.com/OpenSID/OpenSID/issues/5498) Memperbaiki laporan analisis saat di unduh datanya tidak tampil. +56. [#1187](https://github.com/OpenSID/premium/issues/1187) Cek koneksi saat memanggil asset external agar dapat opensid jalan tanpa internet. +57. [#5476](https://github.com/OpenSID/OpenSID/issues/5476) Memperbaiki luas tanah tidak bisa tersimpan di menu bumindes tanah kas desa. +58. [#5522](https://github.com/OpenSID/OpenSID/issues/5522) Memperbaiki footer surat mepet dengan isi surat. +59. [#5482](https://github.com/OpenSID/OpenSID/issues/5482) Merubah nama file foto aparatur desa yang menampilkan NIK. +60. [#5528](https://github.com/OpenSID/OpenSID/issues/5528) Memperbaiki pengaturan masa berlaku tidak berfungsi pada surat pengantar. +61. [#5527](https://github.com/OpenSID/OpenSID/issues/5527) Memperbaiki edit sebelum cetak PDF tidak berfungsi. +62. [#5505](https://github.com/OpenSID/OpenSID/issues/5505) Memperbaiki scorecard konvergensi pada tabel jumlah sasaran dan tabel hasil pengukuran tidak berfungsi dengan benar. +63. [#5545](https://github.com/OpenSID/OpenSID/issues/5545) Memperbaiki judul peraturan desa tidak tersimpan / kosong. +64. [#5541](https://github.com/OpenSID/OpenSID/issues/5541) Memperbaiki surat rtf mengganti masa berlaku menjadi "-" ketika pengaturan masa berlaku 0. +65. [#1277](https://github.com/OpenSID/OpenSID/issues/1277) Perbaiki sinkronisasi program bantuan yang terhapus di opendk. #### Perubahan Teknis -1. [#5260](https://github.com/OpenSID/OpenSID/issues/5260) Menghilangkan Fitur Kosongkan Database. -2. Update .gitignore. -3. [#1070](https://github.com/OpenSID/premium/pull/1070) Teknis perbaiki view database blank, rubah ke error 500. -4. [#1075](https://github.com/OpenSID/premium/pull/1075) Teknis perbaiki backup tidak jalan di VPS. -5. [#1080](https://github.com/OpenSID/premium/pull/1080) Teknis perbaiki hapus fungsi yang tidak diperlukan. -6. [#109](https://github.com/OpenSID/wiki-layanan-opendesa/issues/109) Teknis tidak bisa cetak nota pelanggan jika ada layanan yg belum lunas. \ No newline at end of file +1. Teknis rapikan penulisan code seeder data awal. +2. Pengecekan validasi premium dimulai dari identitas desa. +3. Merapikan select option pada pilih tahun id menu status desa. +4. Menambahkan required pada form edit album. +5. Mengembalikan fungsi pencarian cetak surat. +6. Menambahkan penjelasan tambahan di impor analisis. +7. Memperbarui .gitignore. +8. [#5260](https://github.com/OpenSID/OpenSID/issues/5260) Menghilangkan fitur kosongkan database. \ No newline at end of file diff --git a/composer.lock b/composer.lock index 5f14eb1ef3..5873605bda 100644 --- a/composer.lock +++ b/composer.lock @@ -279,16 +279,16 @@ }, { "name": "firebase/php-jwt", - "version": "v6.3.2", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "ea7dda77098b96e666c5ef382452f94841e439cd" + "reference": "4dd1e007f22a927ac77da5a3fbb067b42d3bc224" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/ea7dda77098b96e666c5ef382452f94841e439cd", - "reference": "ea7dda77098b96e666c5ef382452f94841e439cd", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/4dd1e007f22a927ac77da5a3fbb067b42d3bc224", + "reference": "4dd1e007f22a927ac77da5a3fbb067b42d3bc224", "shasum": "" }, "require": { @@ -303,6 +303,7 @@ "psr/http-factory": "^1.0" }, "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" }, "type": "library", @@ -335,9 +336,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.3.2" + "source": "https://github.com/firebase/php-jwt/tree/v6.4.0" }, - "time": "2022-12-19T17:10:46+00:00" + "time": "2023-02-09T21:01:23+00:00" }, { "name": "google/apiclient", @@ -411,16 +412,16 @@ }, { "name": "google/apiclient-services", - "version": "v0.281.0", + "version": "v0.289.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "ce774773c6e11510145ce1db4c333017298599c5" + "reference": "937f83a927db2d09db7eebb69ce2ac4114559bd7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/ce774773c6e11510145ce1db4c333017298599c5", - "reference": "ce774773c6e11510145ce1db4c333017298599c5", + "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/937f83a927db2d09db7eebb69ce2ac4114559bd7", + "reference": "937f83a927db2d09db7eebb69ce2ac4114559bd7", "shasum": "" }, "require": { @@ -449,22 +450,22 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client-services/issues", - "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.281.0" + "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.289.0" }, - "time": "2022-12-24T01:38:12+00:00" + "time": "2023-02-26T01:10:11+00:00" }, { "name": "google/auth", - "version": "v1.24.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-auth-library-php.git", - "reference": "1f8cff5aa324700d041efd2df1a0855112a2e7ae" + "reference": "0865c44ab50378f7b145827dfcbd1e7a238f7759" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/1f8cff5aa324700d041efd2df1a0855112a2e7ae", - "reference": "1f8cff5aa324700d041efd2df1a0855112a2e7ae", + "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/0865c44ab50378f7b145827dfcbd1e7a238f7759", + "reference": "0865c44ab50378f7b145827dfcbd1e7a238f7759", "shasum": "" }, "require": { @@ -507,9 +508,9 @@ "support": { "docs": "https://googleapis.github.io/google-auth-library-php/main/", "issues": "https://github.com/googleapis/google-auth-library-php/issues", - "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.24.0" + "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.25.0" }, - "time": "2022-11-28T18:29:23+00:00" + "time": "2023-01-26T22:04:14+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1669,16 +1670,16 @@ }, { "name": "monolog/monolog", - "version": "2.8.0", + "version": "2.9.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", - "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", + "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", "shasum": "" }, "require": { @@ -1693,7 +1694,7 @@ "doctrine/couchdb": "~1.0@dev", "elasticsearch/elasticsearch": "^7 || ^8", "ext-json": "*", - "graylog2/gelf-php": "^1.4.2", + "graylog2/gelf-php": "^1.4.2 || ^2@dev", "guzzlehttp/guzzle": "^7.4", "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", @@ -1755,7 +1756,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.8.0" + "source": "https://github.com/Seldaek/monolog/tree/2.9.1" }, "funding": [ { @@ -1767,20 +1768,20 @@ "type": "tidelift" } ], - "time": "2022-07-24T11:55:47+00:00" + "time": "2023-02-06T13:44:46+00:00" }, { "name": "nesbot/carbon", - "version": "2.64.1", + "version": "2.66.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c" + "reference": "496712849902241f04902033b0441b269effe001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c", - "reference": "f2e59963f4c4f4fdfb9fcfd752e8d2e2b79a4e2c", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", + "reference": "496712849902241f04902033b0441b269effe001", "shasum": "" }, "require": { @@ -1869,7 +1870,7 @@ "type": "tidelift" } ], - "time": "2023-01-01T23:17:36+00:00" + "time": "2023-01-29T18:53:47+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -2577,16 +2578,16 @@ }, { "name": "spipu/html2pdf", - "version": "v5.2.5", + "version": "v5.2.7", "source": { "type": "git", "url": "https://github.com/spipu/html2pdf.git", - "reference": "c002749cf21733d53fb9e50d082ca3d1bde06c85" + "reference": "b0f477711de3052041072897510e690975aa37ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spipu/html2pdf/zipball/c002749cf21733d53fb9e50d082ca3d1bde06c85", - "reference": "c002749cf21733d53fb9e50d082ca3d1bde06c85", + "url": "https://api.github.com/repos/spipu/html2pdf/zipball/b0f477711de3052041072897510e690975aa37ce", + "reference": "b0f477711de3052041072897510e690975aa37ce", "shasum": "" }, "require": { @@ -2596,7 +2597,7 @@ "tecnickcom/tcpdf": "^6.3" }, "require-dev": { - "phpunit/phpunit": "^5.0" + "phpunit/phpunit": "^5.0 || ^9.0" }, "suggest": { "ext-gd": "Allows to embed images into the PDF", @@ -2628,22 +2629,22 @@ ], "support": { "issues": "https://github.com/spipu/html2pdf/issues", - "source": "https://github.com/spipu/html2pdf/tree/v5.2.5" + "source": "https://github.com/spipu/html2pdf/tree/v5.2.7" }, - "time": "2022-04-03T22:05:23+00:00" + "time": "2023-02-02T15:50:45+00:00" }, { "name": "symfony/console", - "version": "v5.4.17", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f" + "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f", - "reference": "58422fdcb0e715ed05b385f70d3e8b5ed4bbd45f", + "url": "https://api.github.com/repos/symfony/console/zipball/c77433ddc6cdc689caf48065d9ea22ca0853fbd9", + "reference": "c77433ddc6cdc689caf48065d9ea22ca0853fbd9", "shasum": "" }, "require": { @@ -2713,7 +2714,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.4.17" + "source": "https://github.com/symfony/console/tree/v5.4.21" }, "funding": [ { @@ -2729,7 +2730,7 @@ "type": "tidelift" } ], - "time": "2022-12-28T14:15:31+00:00" + "time": "2023-02-25T16:59:41+00:00" }, { "name": "symfony/deprecation-contracts", @@ -2800,16 +2801,16 @@ }, { "name": "symfony/finder", - "version": "v5.4.17", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "40c08632019838dfb3350f18cf5563b8080055fc" + "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/40c08632019838dfb3350f18cf5563b8080055fc", - "reference": "40c08632019838dfb3350f18cf5563b8080055fc", + "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19", + "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19", "shasum": "" }, "require": { @@ -2843,7 +2844,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.4.17" + "source": "https://github.com/symfony/finder/tree/v5.4.21" }, "funding": [ { @@ -2859,7 +2860,7 @@ "type": "tidelift" } ], - "time": "2022-12-22T10:31:03+00:00" + "time": "2023-02-16T09:33:00+00:00" }, { "name": "symfony/polyfill-ctype", @@ -3355,16 +3356,16 @@ }, { "name": "symfony/process", - "version": "v5.4.11", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1" + "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/6e75fe6874cbc7e4773d049616ab450eff537bf1", - "reference": "6e75fe6874cbc7e4773d049616ab450eff537bf1", + "url": "https://api.github.com/repos/symfony/process/zipball/d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd", + "reference": "d4ce417ebcb0b7d090b4c178ed6d3accc518e8bd", "shasum": "" }, "require": { @@ -3397,7 +3398,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.4.11" + "source": "https://github.com/symfony/process/tree/v5.4.21" }, "funding": [ { @@ -3413,7 +3414,7 @@ "type": "tidelift" } ], - "time": "2022-06-27T16:58:25+00:00" + "time": "2023-02-21T19:46:44+00:00" }, { "name": "symfony/service-contracts", @@ -3500,16 +3501,16 @@ }, { "name": "symfony/string", - "version": "v5.4.17", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "55733a8664b8853b003e70251c58bc8cb2d82a6b" + "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/55733a8664b8853b003e70251c58bc8cb2d82a6b", - "reference": "55733a8664b8853b003e70251c58bc8cb2d82a6b", + "url": "https://api.github.com/repos/symfony/string/zipball/edac10d167b78b1d90f46a80320d632de0bd9f2f", + "reference": "edac10d167b78b1d90f46a80320d632de0bd9f2f", "shasum": "" }, "require": { @@ -3566,7 +3567,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.4.17" + "source": "https://github.com/symfony/string/tree/v5.4.21" }, "funding": [ { @@ -3582,20 +3583,20 @@ "type": "tidelift" } ], - "time": "2022-12-12T15:54:21+00:00" + "time": "2023-02-22T08:00:55+00:00" }, { "name": "symfony/translation", - "version": "v5.4.14", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab" + "reference": "6996affeea65705086939894b77110e9a7f80874" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/f0ed07675863aa6e3939df8b1bc879450b585cab", - "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab", + "url": "https://api.github.com/repos/symfony/translation/zipball/6996affeea65705086939894b77110e9a7f80874", + "reference": "6996affeea65705086939894b77110e9a7f80874", "shasum": "" }, "require": { @@ -3663,7 +3664,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.4.14" + "source": "https://github.com/symfony/translation/tree/v5.4.21" }, "funding": [ { @@ -3679,7 +3680,7 @@ "type": "tidelift" } ], - "time": "2022-10-07T08:01:20+00:00" + "time": "2023-02-21T19:46:44+00:00" }, { "name": "symfony/translation-contracts", @@ -3761,16 +3762,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.4.17", + "version": "v5.4.21", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "ad74890513d07060255df2575703daf971de92c7" + "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad74890513d07060255df2575703daf971de92c7", - "reference": "ad74890513d07060255df2575703daf971de92c7", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6c5ac3a1be8b849d59a1a77877ee110e1b55eb74", + "reference": "6c5ac3a1be8b849d59a1a77877ee110e1b55eb74", "shasum": "" }, "require": { @@ -3830,7 +3831,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.17" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.21" }, "funding": [ { @@ -3846,7 +3847,7 @@ "type": "tidelift" } ], - "time": "2022-12-22T10:31:03+00:00" + "time": "2023-02-23T10:00:28+00:00" }, { "name": "tecnickcom/tcpdf", diff --git a/donjo-app/config/routes.php b/donjo-app/config/routes.php index 947c317514..ee6ea58914 100644 --- a/donjo-app/config/routes.php +++ b/donjo-app/config/routes.php @@ -102,7 +102,6 @@ $route['data_analisis'] = 'first/data_analisis'; $route['data_analisis/(.+)'] = 'first/data_analisis/$1'; $route['jawaban_analisis/(.+)'] = 'first/jawaban_analisis/$1'; -$route['peta'] = 'first/peta'; $route['load_aparatur_desa'] = 'first/load_aparatur_desa'; $route['load_aparatur_wilayah/(.+)'] = 'first/load_aparatur_wilayah/$1'; $route['status-sdgs'] = 'first/status_sdgs'; diff --git a/donjo-app/config/routes/web.php b/donjo-app/config/routes/web.php index 7acd0fa61c..a69f5f9096 100644 --- a/donjo-app/config/routes/web.php +++ b/donjo-app/config/routes/web.php @@ -41,3 +41,4 @@ $route['data-lembaga/(:any)'] = WEB . '/lembaga/detail/$1'; $route['status-idm/(:num)'] = WEB . '/idm/index/$1'; $route['pemerintah'] = WEB . '/pemerintah'; +$route['peta'] = WEB . '/peta/index'; diff --git a/donjo-app/config/sid_ini.php b/donjo-app/config/sid_ini.php index 7e1122c1c2..039b6cacda 100644 --- a/donjo-app/config/sid_ini.php +++ b/donjo-app/config/sid_ini.php @@ -73,7 +73,7 @@ 3 => '345612', ]; -$config['defaultAdminAuthInfo'] = [ +$config['demo_user'] = [ 'username' => 'admin', 'password' => 'sid304', ]; diff --git a/donjo-app/controllers/Analisis_respon.php b/donjo-app/controllers/Analisis_respon.php index 3cdbfa7d02..f720166dc3 100644 --- a/donjo-app/controllers/Analisis_respon.php +++ b/donjo-app/controllers/Analisis_respon.php @@ -267,15 +267,22 @@ public function data_ajax() $this->load->view('analisis_respon/import/data_ajax'); } - public function data_unduh($p = 0, $o = 0) + /** + * Unduh data analisis respon + * + * @param int $tipe | 1. Dengan isian data, 2. Dengan kode isian + * + * @return void + */ + public function data_unduh($tipe = 1) { $data['subjek_tipe'] = $this->session->subjek_tipe; - $data['main'] = $this->analisis_respon_model->data_unduh($p, $o); + $data['main'] = $this->analisis_respon_model->data_unduh(1, 0); $data['periode'] = $this->analisis_master_model->get_aktif_periode(); - $data['indikator'] = $this->analisis_respon_model->indikator_unduh($p, $o); - - $key = ($data['periode'] + 3) * ($this->session->analisis_master + 7) * ($this->session->subjek_tipe * 3); - $data['key'] = 'AN' . $key; + $data['indikator'] = $this->analisis_respon_model->indikator_unduh(1); + $data['tipe'] = $tipe; + $key = ($data['periode'] + 3) * ($this->session->analisis_master + 7) * ($this->session->subjek_tipe * 3); + $data['key'] = 'AN' . $key; switch ($this->session->subjek_tipe) { case 5: diff --git a/donjo-app/controllers/First.php b/donjo-app/controllers/First.php index a063da3ea1..55ec494c97 100644 --- a/donjo-app/controllers/First.php +++ b/donjo-app/controllers/First.php @@ -467,40 +467,6 @@ public function add_comment($id = 0) redirect($_SERVER['HTTP_REFERER'] . '#kolom-komentar'); } - public function peta() - { - if (! $this->web_menu_model->menu_aktif('peta')) { - show_404(); - } - - $this->load->model('wilayah_model'); - $this->load->model('data_persil_model'); - $this->load->model('pembangunan_model'); - - $data = $this->includes; - - $data['list_dusun'] = $this->wilayah_model->list_dusun(); - $data['wilayah'] = $this->wilayah_model->list_wil(); - $data['desa'] = $this->config_model->get_data(); - $data['title'] = 'Peta ' . ucwords($this->setting->sebutan_desa . ' ' . $data['desa']['nama_desa']); - $data['dusun_gis'] = $data['list_dusun']; - $data['rw_gis'] = $this->wilayah_model->list_rw(); - $data['rt_gis'] = $this->wilayah_model->list_rt(); - $data['list_ref'] = $this->referensi_model->list_ref(STAT_PENDUDUK); - $data['covid'] = $this->laporan_penduduk_model->list_data('covid'); - $data['lokasi'] = $this->plan_lokasi_model->list_lokasi(); - $data['garis'] = $this->plan_garis_model->list_garis(); - $data['area'] = $this->plan_area_model->list_area(); - $data['lokasi_pembangunan'] = $this->pembangunan_model->list_lokasi_pembangunan(); - $data['persil'] = $this->data_persil_model->list_data(); - - $data['halaman_peta'] = 'web/halaman_statis/peta'; - $this->_get_common_data($data); - - $this->set_template('layouts/peta_statis.tpl.php'); - $this->load->view($this->template, $data); - } - public function load_apbdes() { $data['transparansi'] = $this->keuangan_grafik_model->grafik_keuangan_tema(); diff --git a/donjo-app/controllers/Gis.php b/donjo-app/controllers/Gis.php index 7079f552c4..f6e563a0ad 100644 --- a/donjo-app/controllers/Gis.php +++ b/donjo-app/controllers/Gis.php @@ -106,9 +106,9 @@ public function index() $data['list_dusun'] = $this->wilayah_model->list_dusun(); $data['wilayah'] = $this->wilayah_model->list_wil(); $data['desa'] = $this->config_model->get_data(); - $data['lokasi'] = $this->plan_lokasi_model->list_data(); - $data['garis'] = $this->plan_garis_model->list_data(); - $data['area'] = $this->plan_area_model->list_data(); + $data['lokasi'] = $this->plan_lokasi_model->list_lokasi(); + $data['garis'] = $this->plan_garis_model->list_garis(); + $data['area'] = $this->plan_area_model->list_area(); $data['lokasi_pembangunan'] = $this->pembangunan_model->list_lokasi_pembangunan(); $data['penduduk'] = $this->penduduk_model->list_data_map(); $data['keyword'] = $this->penduduk_model->autocomplete(); diff --git a/donjo-app/controllers/Lembaga_master.php b/donjo-app/controllers/Lembaga_master.php index 1fa6cc5bf0..943546f2c2 100644 --- a/donjo-app/controllers/Lembaga_master.php +++ b/donjo-app/controllers/Lembaga_master.php @@ -1,53 +1,53 @@ -modul_ini = 200; - $this->sub_modul_ini = 327; - } -} +modul_ini = 200; + $this->sub_modul_ini = 327; + } +} diff --git a/donjo-app/controllers/Main.php b/donjo-app/controllers/Main.php index 1060f12714..7f0117eec4 100644 --- a/donjo-app/controllers/Main.php +++ b/donjo-app/controllers/Main.php @@ -1,85 +1,85 @@ -load->model(['track_model', 'grup_model']); - } - - public function index() - { - // Kalau sehabis periksa data, paksa harus login lagi - if ($this->session->periksa_data == 1) { - $this->user_model->logout(); - } - - if (isset($_SESSION['siteman']) && $_SESSION['siteman'] == 1) { - $this->track_model->track_desa('main'); - $this->load->model('user_model'); - $grup = $this->user_model->sesi_grup($_SESSION['sesi']); - - switch ($grup) { - case 1: redirect('hom_sid'); - break; - - case 2: redirect('hom_sid'); - break; - - case 3: redirect('web/clear'); - break; - - case 4: redirect('web/clear'); - break; - - default: - $modul_awal = $this->grup_model->modul_awal($grup); - redirect($modul_awal); - break; - } - } elseif ($this->setting->offline_mode > 0) { - // Jika website hanya bisa diakses user, maka harus login dulu - redirect('siteman'); - } else { - redirect('/'); - } - } -} +load->model(['track_model', 'grup_model']); + } + + public function index() + { + // Kalau sehabis periksa data, paksa harus login lagi + if ($this->session->periksa_data == 1) { + $this->user_model->logout(); + } + + if (isset($_SESSION['siteman']) && $_SESSION['siteman'] == 1) { + $this->track_model->track_desa('main'); + $this->load->model('user_model'); + $grup = $this->user_model->sesi_grup($_SESSION['sesi']); + + switch ($grup) { + case 1: redirect('hom_sid'); + break; + + case 2: redirect('hom_sid'); + break; + + case 3: redirect('web/clear'); + break; + + case 4: redirect('web/clear'); + break; + + default: + $modul_awal = $this->grup_model->modul_awal($grup); + redirect($modul_awal); + break; + } + } elseif ($this->setting->offline_mode > 0) { + // Jika website hanya bisa diakses user, maka harus login dulu + redirect('siteman'); + } else { + redirect('/'); + } + } +} diff --git a/donjo-app/controllers/Periksa.php b/donjo-app/controllers/Periksa.php index ab557dd3d8..6df4b0b283 100644 --- a/donjo-app/controllers/Periksa.php +++ b/donjo-app/controllers/Periksa.php @@ -86,20 +86,19 @@ public function perbaiki() // Login khusus untuk periksa public function login() { + if ($this->session->periksa_data == 1) { + redirect('periksa'); + } + $this->session->siteman_wait = 0; - $this->user_model->login(); - $data = [ + $data = [ 'header' => $this->header, 'form_action' => site_url('periksa/auth'), ]; - $this->setting->sebutan_desa = $this->getSetting('sebutan_desa'); - $this->setting->sebutan_kabupaten = $this->getSetting('sebutan_kabupaten'); - $this->load->view('siteman', $data); - } - private function getSetting($key) - { - return SettingAplikasi::where('key', $key)->pluck('value'); + $this->setting->sebutan_desa = $this->periksa_model->getSetting('sebutan_desa'); + $this->setting->sebutan_kabupaten = $this->periksa_model->getSetting('sebutan_kabupaten'); + $this->load->view('siteman', $data); } // Login khusus untuk periksa diff --git a/donjo-app/controllers/Sinkronisasi.php b/donjo-app/controllers/Sinkronisasi.php index d906737bb6..d5556f9d6e 100644 --- a/donjo-app/controllers/Sinkronisasi.php +++ b/donjo-app/controllers/Sinkronisasi.php @@ -68,11 +68,13 @@ public function index() 'path' => 'kirim_program_bantuan', 'modul' => 'program-bantuan', 'model' => 'Bantuan', + 'inkremental' => 0 ], [ 'path' => 'kirim_peserta_program_bantuan', 'modul' => 'program-bantuan-peserta', 'model' => 'BantuanPeserta', + 'inkremental' => 0 ], ], 'Pembangunan' => [ @@ -80,11 +82,13 @@ public function index() 'path' => 'kirim_pembangunan', 'modul' => 'pembangunan', 'model' => 'Pembangunan', + 'inkremental' => 1 ], [ 'path' => 'kirim_dokumentasi_pembangunan', 'modul' => 'pembangunan-dokumentasi', 'model' => 'PembangunanDokumentasi', + 'inkremental' => 1 ], ], ]; @@ -368,6 +372,10 @@ public function total() if ($this->input->is_ajax_request()) { $modul = $this->input->post('modul'); $model = $this->input->post('model'); + $inkremental = $this->input->post('inkremental'); + if ($inkremental == '0') { + return json(1); // tanpa inkremental + } $model = 'App\\Models\\' . $model; $tgl_sinkronisasi = LogSinkronisasi::where('modul', '=', $modul)->first()->updated_at ?? null; if ($tgl_sinkronisasi) { @@ -423,11 +431,6 @@ public function kirim_program_bantuan() public function data_program_bantuan() { - $limit = 100; - $p = $this->input->get('p'); - - // cek tanggal akhir sinkronisasi - $tgl_sinkronisasi = LogSinkronisasi::where('modul', '=', 'program-bantuan')->first()->updated_at ?? null; $writer = WriterEntityFactory::createCSVWriter(); // Buat data Program bantuan @@ -451,14 +454,7 @@ public function data_program_bantuan() $header = WriterEntityFactory::createRowFromArray($judul); $writer->addRow($header); - $get = Bantuan::when($tgl_sinkronisasi != null, static function ($q) use ($tgl_sinkronisasi) { - return $q->where('updated_at', '>', $tgl_sinkronisasi); - }) - ->when($tgl_sinkronisasi == null, static function ($q) use ($limit, $p) { - return $q->skip($p * $limit)->take($limit); - })->get(); - - foreach ($get as $row) { + foreach (Bantuan::get() as $row) { $program = [ $this->kode_desa, $row->id, @@ -516,12 +512,6 @@ public function kirim_peserta_program_bantuan() public function data_peserta_program_bantuan() { - $limit = 100; - $p = $this->input->get('p'); - - // cek tanggal akhir sinkronisasi - $tgl_sinkronisasi = LogSinkronisasi::where('modul', '=', 'peserta-bantuan')->first()->updated_at ?? null; - // Buat data Peserta Program Bantuan $writer = WriterEntityFactory::createCSVWriter(); $peserta = LOKASI_SINKRONISASI_ZIP . namafile('peserta program bantuan') . '_opendk.csv'; @@ -546,15 +536,7 @@ public function data_peserta_program_bantuan() $header = WriterEntityFactory::createRowFromArray($judul); $writer->addRow($header); - $get = BantuanPeserta::when($tgl_sinkronisasi != null, static function ($q) use ($tgl_sinkronisasi) { - return $q->where('updated_at', '>', $tgl_sinkronisasi); - }) - ->when($tgl_sinkronisasi == null, static function ($q) use ($limit, $p) { - return $q->skip($p * $limit)->take($limit); - }) - ->get(); - - foreach ($get as $row) { + foreach (BantuanPeserta::get() as $row) { $program = [ $this->kode_desa, $row->id, diff --git a/donjo-app/controllers/Siteman.php b/donjo-app/controllers/Siteman.php index 1f1a005740..02304d44cd 100644 --- a/donjo-app/controllers/Siteman.php +++ b/donjo-app/controllers/Siteman.php @@ -54,6 +54,8 @@ public function index() // Kalau sehabis periksa data, paksa harus login lagi if ($this->session->periksa_data == 1) { $this->user_model->logout(); + + redirect('siteman'); } if (isset($_SESSION['siteman']) && $_SESSION['siteman'] == 1) { @@ -62,6 +64,7 @@ public function index() unset($_SESSION['balik_ke']); $data['header'] = $this->config_model->get_data(); $data['latar_login'] = $this->theme_model->latar_login(); + $data['form_action'] = site_url('siteman/auth'); //Initialize Session ------------ if (! isset($_SESSION['siteman'])) { @@ -85,7 +88,7 @@ public function auth() $method = $this->input->method(true); $allow_method = ['POST']; if (! in_array($method, $allow_method)) { - redirect('siteman/login'); + redirect('siteman'); } $this->user_model->siteman(); @@ -112,18 +115,11 @@ public function auth() } } - public function login() - { - $this->user_model->login(); - $data['header'] = $this->config_model->get_data(); - $data['form_action'] = site_url('siteman/auth'); - $this->load->view('siteman', $data); - } - public function logout() { $this->user_model->logout(); - $this->index(); + + redirect('siteman'); } public function lupa_sandi() @@ -141,7 +137,7 @@ public function kirim_lupa_sandi() $securimage = new Securimage(); if (! $securimage->check($this->input->post('captcha_code'))) { - $this->session->set_flashdata('notif', 'Kode captcha anda salah. Silakan ulangi lagi.'); + set_session('notif', 'Kode captcha anda salah. Silakan ulangi lagi.'); redirect('siteman/lupa_sandi'); } @@ -153,12 +149,12 @@ public function kirim_lupa_sandi() } catch (\Exception $e) { log_message('error', $e); - $this->session->set_flashdata('notif', 'Tidak berhasil mengirim email, harap mencoba kembali.'); + set_session('notif', 'Tidak berhasil mengirim email, harap mencoba kembali.'); redirect('siteman/lupa_sandi'); } - $this->session->set_flashdata('notif', lang($status)); + set_session('notif', lang($status)); redirect('siteman/lupa_sandi'); } @@ -182,7 +178,7 @@ public function verifikasi_sandi() $request = (object) $this->input->post(); if ($request->password !== $request->konfirmasi_password) { - $this->session->set_flashdata('notif', 'Bidang konfirmasi password tidak cocok dengan bidang password.'); + set_session('notif', 'Bidang konfirmasi password tidak cocok dengan bidang password.'); redirect("siteman/reset_kata_sandi/{$request->token}?email={$request->email}"); } @@ -197,12 +193,12 @@ function ($user, $password) { } catch (\Exception $e) { log_message('error', $e); - $this->session->set_flashdata('notif', 'Tidak berhasil memverifikasi kata sandi, silahkan coba kembali.'); + set_session('notif', 'Tidak berhasil memverifikasi kata sandi, silahkan coba kembali.'); redirect("siteman/reset_kata_sandi/{$request->token}?email={$request->email}"); } - $this->session->set_flashdata('notif', lang($status)); + set_session('notif', lang($status)); if ($status === 'reset') { redirect('siteman'); diff --git a/donjo-app/controllers/Status_desa.php b/donjo-app/controllers/Status_desa.php index 4157a52d61..aeb15b2867 100644 --- a/donjo-app/controllers/Status_desa.php +++ b/donjo-app/controllers/Status_desa.php @@ -55,23 +55,20 @@ public function index() $tahun = session('tahun') ?? ($this->input->post('tahun') ?? ($this->setting->tahun_idm)); $cache = 'idm_' . $tahun . '_' . $kode_desa; - if (cek_koneksi_internet()) { - $this->data_publik - ->set_api_url(config_item('api_idm') . "/{$kode_desa}/{$tahun}", $cache) - ->set_interval(7) - ->set_cache_folder(config_item('cache_path')); + $this->data_publik->set_api_url(config_item('api_idm') . "/{$kode_desa}/{$tahun}", $cache) + ->set_interval(7) + ->set_cache_folder(config_item('cache_path')); - $idm = $this->data_publik->get_url_content(); - if (! $idm->body || $idm->body->error) { - $idm->body->mapData->error_msg = ($idm->body->message ? '' . $idm->header->url . '' : 'Tidak dapat mengambil data IDM') . '

      Periksa Kode Desa di ' . SebutanDesa('Identitas [Desa]') . ' dan masukkan kode lengkap. Contoh : 3507012006
      '; - } - - $data = [ - 'tahun' => (int) $tahun, - 'idm' => $idm->body->mapData, - ]; + $idm = $this->data_publik->get_url_content(); + if (! $idm->body || $idm->body->error) { + $idm->body->mapData->error_msg = ($idm->body->message ? '
      ' . $idm->header->url . '' : 'Tidak dapat mengambil data IDM') . '
    • Periksa koneksi internet anda.
    • Periksa Kode Desa di ' . SebutanDesa('Identitas [Desa]') . ' dan masukkan kode lengkap. Contoh : 3507012006
    • '; } + $data = [ + 'tahun' => (int) $tahun, + 'idm' => $idm->body->mapData, + ]; + return view('admin.status_desa.index', $data); } diff --git a/donjo-app/controllers/Stunting.php b/donjo-app/controllers/Stunting.php index 82e22e35c7..218d2cd6f9 100644 --- a/donjo-app/controllers/Stunting.php +++ b/donjo-app/controllers/Stunting.php @@ -212,21 +212,21 @@ public function formKia($id = null) { $this->redirect_hak_akses('u'); - $ibuId = []; - $anakId = []; - - foreach (KiA::all() as $data) { - $ibuId[] = $data->ibu_id ?? 0; - $anakId[] = $data->anak_id ?? 0; - } - $data = $this->widget(); $data['navigasi'] = 'kia'; - $data['ibu'] = Penduduk::whereNotIn('id', $ibuId)->where(static function ($query) { - $query->where('kk_level', 3) - ->orWhere('kk_level', 1); - })->where('sex', 2)->get(); - $data['anak'] = Penduduk::whereNotIn('id', $anakId)->where('kk_level', 4)->where('tanggallahir', '>=', Carbon::now()->subYears(6))->get(); + $data['ibu'] = Penduduk::select(['id', 'nik', 'nama']) + ->where(static function ($query) { + $query->where('kk_level', 3) + ->orWhere('kk_level', 1); + }) + ->where('sex', 2) + ->get(); + + $data['anak'] = Penduduk::select(['id', 'nik', 'nama']) + ->whereNotIn('id', KIA::pluck('anak_id')) + ->where('kk_level', 4) + ->where('tanggallahir', '>=', Carbon::now()->subYears(6)) + ->get(); if ($id) { $data['action'] = 'Ubah'; @@ -362,15 +362,12 @@ public function formIbuHamil($id = null) $data = $this->widget(); $data['navigasi'] = 'pemantauan-bulanan-ibu-hamil'; $data['kia'] = KIA::with('ibu')->get(); - $data['posyandu'] = Posyandu::all(); + $data['posyandu'] = Posyandu::pluck('nama', 'id'); if ($this->input->is_ajax_request()) { - $kia = $this->input->get('kia'); - $hamil = KIA::find($kia); - $anak = $hamil->anak_id ?? 0; - echo $anak; + $hamil = KIA::find($this->input->get('kia')); - exit(); + return json($hamil->anak_id ?? 0); } if ($id) { @@ -383,6 +380,8 @@ public function formIbuHamil($id = null) $data['ibuHamil'] = null; } + $data['status_kehamilan_ibu'] = collect(IbuHamil::STATUS_KEHAMILAN_IBU)->pluck('nama', 'id'); + return view('admin.stunting.pemantauan_ibu_hamil_form', $data); } @@ -561,7 +560,10 @@ public function formAnak($id = null) $query->where('tanggallahir', '>', Carbon::now()->subMonths(24)); }) ->get(); - $data['posyandu'] = Posyandu::all(); + $data['posyandu'] = Posyandu::pluck('nama', 'id'); + $data['status_gizi_anak'] = collect(Anak::STATUS_GIZI_ANAK)->pluck('nama', 'id'); + $data['status_tikar_anak'] = collect(Anak::STATUS_TIKAR_ANAK)->pluck('nama', 'id'); + $data['status_imunisasi_campak'] = Anak::STATUS_IMUNISASI_CAMPAK; if ($id) { $data['action'] = 'Ubah'; @@ -673,7 +675,8 @@ public function eksporAnak() $writer->openToBrowser(namafile('Laporan Bulanan Anak') . '.xlsx'); $writer->addRow(WriterEntityFactory::createRowFromArray($judul)); - $dataAnak = Anak::with(['kia', 'kia.anak'])->filter($filters)->get(); + $dataAnak = Anak::with(['kia', 'kia.anak'])->filter($filters)->get(); + $status_tikar = collect(Anak::STATUS_TIKAR_ANAK)->pluck('simbol', 'id'); foreach ($dataAnak as $row) { if ($row->status_gizi == 1) { @@ -686,16 +689,6 @@ public function eksporAnak() $row->status_gizi = 'S'; } - if ($row->status_tikar == 1) { - $row->status_tikar = 'TD'; - } elseif ($row->status_tikar == 2) { - $row->status_tikar = 'M'; - } elseif ($row->status_tikar == 3) { - $row->status_tikar = 'K'; - } else { - $row->status_tikar = 'H'; - } - $data = [ $row->kia->no_kia, $row->kia->anak->nama, @@ -703,7 +696,7 @@ public function eksporAnak() tgl_indo($row->kia->anak->tanggallahir), $row->status_gizi, $row->umur_bulan, - $row->status_tikar, + $status_tikar[$row->status_tikar], $row->pemberian_imunisasi_dasar == 1 ? 'v' : 'x', $row->pengukuran_berat_badan == 1 ? 'v' : 'x', $row->pengukuran_tinggi_badan == 1 ? 'v' : 'x', @@ -1066,8 +1059,19 @@ public function scorecard_konvergensi($kuartal = null, $tahun = null, $id = null $ibu_hamil = $this->rekap->get_data_ibu_hamil($kuartal, $tahun, $id); $bulanan_anak = $this->rekap->get_data_bulanan_anak($kuartal, $tahun, $id); + //HITUNG KEK ATAU RISTI + $jumlahKekRisti = 0; + + foreach ($ibu_hamil['dataFilter'] as $item) { + if (! in_array($item['user']['status_kehamilan'], [null, '1'])) { + $jumlahKekRisti++; + } + } + //HITUNG HASIL PENGUKURAN TIKAR PERTUMBUHAN - $tikar = ['TD' => 0, 'M' => 0, 'K' => 0, 'H' => 0]; + $status_tikar = collect(Anak::STATUS_TIKAR_ANAK)->pluck('simbol', 'id'); + $tikar = ['TD' => 0, 'M' => 0, 'K' => 0, 'H' => 0]; + if ($bulanan_anak['dataGrup'] != null) { foreach ($bulanan_anak['dataGrup'] as $detail) { $totalItem = count($detail); @@ -1075,30 +1079,21 @@ public function scorecard_konvergensi($kuartal = null, $tahun = null, $id = null foreach ($detail as $item) { if (++$i === $totalItem) { - $tikar[$item['status_tikar']]++; + $tikar[$status_tikar[$item['status_tikar']]]++; } } } - //HITUNG KEK ATAU RISTI - $jumlahKekRisti = 0; - - foreach ($ibu_hamil['dataFilter'] as $item) { - if ($item['user']['status_kehamilan'] != 'NORMAL') { - $jumlahKekRisti++; - } - } - $jumlahGiziBukanNormal = 0; foreach ($bulanan_anak['dataFilter'] as $item) { + // N = 1 if ($item['umur_dan_gizi']['status_gizi'] != 'N') { $jumlahGiziBukanNormal++; } } } else { $dataNoKia = []; - $jumlahKekRisti = 0; $jumlahGiziBukanNormal = 0; } diff --git a/donjo-app/controllers/Surat.php b/donjo-app/controllers/Surat.php index 6b4c65f63b..c0ef985030 100644 --- a/donjo-app/controllers/Surat.php +++ b/donjo-app/controllers/Surat.php @@ -60,7 +60,9 @@ public function __construct() public function index() { - return view('admin.surat.index'); + $data['cetak_surat'] = FormatSurat::orderBy('favorit')->pluck('nama', 'url_surat'); + + return view('admin.surat.index', $data); } public function datatables() @@ -293,7 +295,8 @@ public function pdf() $html2pdf->setTestTdInOnePage(false); $html2pdf->setDefaultFont('Arial'); $html2pdf->writeHTML($logo_qrcode); - $html2pdf->output($nama_surat, 'D'); + // $html2pdf->output($nama_surat, 'D'); + $html2pdf->output(FCPATH . LOKASI_ARSIP . $nama_surat, 'FI'); // Untuk surat yang sudah dicetak, simpan isian suratnya yang sudah jadi (siap di konversi) $surat->isi_surat = $isi_cetak; @@ -371,6 +374,11 @@ public function cetak($id) $surat = LogSurat::find($id); if ($surat->status) { + // Cek ada file + if (file_exists($file = FCPATH . LOKASI_ARSIP . $surat->nama_surat)) { + return ambilBerkas($surat->nama_surat, $this->controller); + } + $isi_cetak = $surat->isi_surat; $nama_surat = $surat->nama_surat; $cetak['surat'] = $surat->formatSurat; @@ -396,14 +404,13 @@ public function cetak($id) $html2pdf->setTestTdInOnePage(false); $html2pdf->setDefaultFont('Arial'); $html2pdf->writeHTML($isi_cetak); - $html2pdf->output($nama_surat, 'D'); + // $html2pdf->output($nama_surat, 'D'); + $html2pdf->output(FCPATH . LOKASI_ARSIP . $nama_surat, 'FI'); } catch (Html2PdfException $e) { $html2pdf->clean(); $formatter = new ExceptionFormatter($e); log_message('error', $formatter->getHtmlMessage()); } - - // redirect('surat/pdf'); } else { $log_surat = [ 'id_format_surat' => $surat->id_format_surat, @@ -469,6 +476,10 @@ private function replceKodeIsian($data = [], $kecuali = []) $tinymce = new TinyMCE(); $kodeIsian = $tinymce->getFormatedKodeIsian($data, true); + if ((int) $data['surat']['masa_berlaku'] == 0) { + $result = str_replace('[mulai_berlaku] s/d [berlaku_sampai]', '-', $result); + } + foreach ($kodeIsian as $key => $value) { if (in_array($key, $kecuali)) { $result = $result; diff --git a/donjo-app/controllers/Surat_master.php b/donjo-app/controllers/Surat_master.php index f52ad27c07..1ef329c8df 100644 --- a/donjo-app/controllers/Surat_master.php +++ b/donjo-app/controllers/Surat_master.php @@ -38,6 +38,7 @@ use App\Libraries\TinyMCE; use App\Models\FormatSurat; use App\Models\KlasifikasiSurat; +use App\Models\RefFontSurat; use App\Models\SettingAplikasi; use App\Models\SyaratSurat; @@ -137,8 +138,9 @@ public function form($id = null) $masaBerlaku = FormatSurat::MASA_BERLAKU; $klasifikasiSurat = KlasifikasiSurat::orderBy('kode')->enabled()->get(['kode', 'nama']); + $pengaturanSurat = SettingAplikasi::whereKategori('format_surat')->pluck('value', 'key')->toArray(); - return view('admin.pengaturan_surat.form', compact('action', 'formAction', 'suratMaster', 'masaBerlaku', 'klasifikasiSurat', 'kodeIsian', 'margins', 'orientations', 'sizes', 'qrCode')); + return view('admin.pengaturan_surat.form', compact('action', 'formAction', 'suratMaster', 'masaBerlaku', 'klasifikasiSurat', 'kodeIsian', 'margins', 'orientations', 'sizes', 'qrCode', 'pengaturanSurat')); } public function syaratSuratDatatables($id = null) @@ -423,8 +425,9 @@ public function pengaturan() $pengaturanSurat = SettingAplikasi::whereKategori('format_surat')->pluck('value', 'key')->toArray(); $aksi = route('surat_master.update'); $formAksi = route('surat_master.edit_pengaturan'); + $fonts = RefFontSurat::all(); - return view('admin.pengaturan_surat.pengaturan', compact('pengaturanSurat', 'aksi', 'formAksi')); + return view('admin.pengaturan_surat.pengaturan', compact('pengaturanSurat', 'aksi', 'formAksi', 'fonts')); } public function edit_pengaturan() diff --git a/donjo-app/controllers/fweb/Galeri.php b/donjo-app/controllers/fweb/Galeri.php index dcb984243b..cb2ada119a 100644 --- a/donjo-app/controllers/fweb/Galeri.php +++ b/donjo-app/controllers/fweb/Galeri.php @@ -1,85 +1,85 @@ -load->model('first_gallery_m'); - if (! $this->web_menu_model->menu_aktif('galeri')) { - show_404(); - } - } - - public function index($p = 1) - { - $data = $this->includes; - $data['p'] = $p; - $data['paging'] = $this->first_gallery_m->paging($p); - $data['paging_range'] = 3; - $data['start_paging'] = max($data['paging']->start_link, $p - $data['paging_range']); - $data['end_paging'] = min($data['paging']->end_link, $p + $data['paging_range']); - $data['pages'] = range($data['start_paging'], $data['end_paging']); - $data['gallery'] = $this->first_gallery_m->gallery_show($data['paging']->offset, $data['paging']->per_page); - $data['paging_page'] = 'galeri/index'; - - $this->_get_common_data($data); - $this->set_template('layouts/gallery.tpl.php'); - $this->load->view($this->template, $data); - } - - public function detail($parent = 0, $p = 1) - { - $data = $this->includes; - $data['p'] = $p; - $data['paging'] = $this->first_gallery_m->paging2($parent, $p); - $data['paging_range'] = 3; - $data['start_paging'] = max($data['paging']->start_link, $p - $data['paging_range']); - $data['end_paging'] = min($data['paging']->end_link, $p + $data['paging_range']); - $data['pages'] = range($data['start_paging'], $data['end_paging']); - $data['gallery'] = $this->first_gallery_m->sub_gallery_show($parent, $data['paging']->offset, $data['paging']->per_page); - $data['parent'] = $this->first_gallery_m->get_parent($parent); - $data['paging_page'] = "galeri/{$parent}/index"; - - $this->_get_common_data($data); - $this->set_template('layouts/sub_gallery.tpl.php'); - $this->load->view($this->template, $data); - } -} +load->model('first_gallery_m'); + if (! $this->web_menu_model->menu_aktif('galeri')) { + show_404(); + } + } + + public function index($p = 1) + { + $data = $this->includes; + $data['p'] = $p; + $data['paging'] = $this->first_gallery_m->paging($p); + $data['paging_range'] = 3; + $data['start_paging'] = max($data['paging']->start_link, $p - $data['paging_range']); + $data['end_paging'] = min($data['paging']->end_link, $p + $data['paging_range']); + $data['pages'] = range($data['start_paging'], $data['end_paging']); + $data['gallery'] = $this->first_gallery_m->gallery_show($data['paging']->offset, $data['paging']->per_page); + $data['paging_page'] = 'galeri/index'; + + $this->_get_common_data($data); + $this->set_template('layouts/gallery.tpl.php'); + $this->load->view($this->template, $data); + } + + public function detail($parent = 0, $p = 1) + { + $data = $this->includes; + $data['p'] = $p; + $data['paging'] = $this->first_gallery_m->paging2($parent, $p); + $data['paging_range'] = 3; + $data['start_paging'] = max($data['paging']->start_link, $p - $data['paging_range']); + $data['end_paging'] = min($data['paging']->end_link, $p + $data['paging_range']); + $data['pages'] = range($data['start_paging'], $data['end_paging']); + $data['gallery'] = $this->first_gallery_m->sub_gallery_show($parent, $data['paging']->offset, $data['paging']->per_page); + $data['parent'] = $this->first_gallery_m->get_parent($parent); + $data['paging_page'] = "galeri/{$parent}/index"; + + $this->_get_common_data($data); + $this->set_template('layouts/sub_gallery.tpl.php'); + $this->load->view($this->template, $data); + } +} diff --git a/donjo-app/controllers/fweb/Peta.php b/donjo-app/controllers/fweb/Peta.php new file mode 100644 index 0000000000..611f6fd08d --- /dev/null +++ b/donjo-app/controllers/fweb/Peta.php @@ -0,0 +1,72 @@ +web_menu_model->menu_aktif('peta')) { + show_404(); + } + + $this->load->model(['wilayah_model', 'referensi_model', 'laporan_penduduk_model', 'plan_garis_model', 'plan_lokasi_model', 'data_persil_model', 'plan_area_model', 'pembangunan_model']); + + $data = $this->includes; + + $data['list_dusun'] = $this->wilayah_model->list_dusun(); + $data['wilayah'] = $this->wilayah_model->list_wil(); + $data['desa'] = $this->header; + $data['title'] = 'Peta ' . ucwords($this->setting->sebutan_desa . ' ' . $data['desa']['nama_desa']); + $data['dusun_gis'] = $data['list_dusun']; + $data['rw_gis'] = $this->wilayah_model->list_rw(); + $data['rt_gis'] = $this->wilayah_model->list_rt(); + $data['list_ref'] = $this->referensi_model->list_ref(STAT_PENDUDUK); + $data['covid'] = $this->laporan_penduduk_model->list_data('covid'); + $data['lokasi'] = $this->plan_lokasi_model->list_lokasi(1); + $data['garis'] = $this->plan_garis_model->list_garis(1); + $data['area'] = $this->plan_area_model->list_area(1); + $data['lokasi_pembangunan'] = $this->pembangunan_model->list_lokasi_pembangunan(1); + $data['persil'] = $this->data_persil_model->list_data(); + $data['halaman_peta'] = 'web/halaman_statis/peta'; + + $this->_get_common_data($data); + $this->set_template('layouts/peta_statis.tpl.php'); + $this->load->view($this->template, $data); + } +} diff --git a/donjo-app/helpers/opensid_helper.php b/donjo-app/helpers/opensid_helper.php index 43c90bca73..6d520e4b53 100644 --- a/donjo-app/helpers/opensid_helper.php +++ b/donjo-app/helpers/opensid_helper.php @@ -43,7 +43,7 @@ * beta => premium-beta[nomor urut dua digit] * [nomor urut dua digit] : minggu 1 => 01, dst */ -define('VERSION', '23.02'); +define('VERSION', '23.03'); /** * VERSI_DATABASE * Ubah setiap kali mengubah struktur database atau melakukan proses rilis (tgl 01) @@ -51,7 +51,7 @@ * Versi database = [yyyymmdd][nomor urut dua digit] * [nomor urut dua digit] : 01 => rilis umum, 51 => rilis bugfix, 71 => rilis premium, */ -define('VERSI_DATABASE', '2023010501'); +define('VERSI_DATABASE', '2023030101'); // Desa define('LOKASI_LOGO_DESA', 'desa/logo/'); diff --git a/donjo-app/libraries/Curly.php b/donjo-app/libraries/Curly.php index bcbef58f93..575cad4b19 100644 --- a/donjo-app/libraries/Curly.php +++ b/donjo-app/libraries/Curly.php @@ -1,404 +1,404 @@ -getMessage()); - } catch (Exception $e) { - // Error on PHP 5 - throw new Exception('Unable to obtain CA bundle: ' . $e->getMessage()); - } - } - - $curl = curl_init(); - - // Batasi waktu koneksi dan ambil data supaya tidak menggantung kalau ada error koneksi - curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 4); - curl_setopt($curl, CURLOPT_TIMEOUT, 5); - - curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, static::$secure ? 1 : 0); - curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, static::$secure ? 2 : 0); - curl_setopt($curl, CURLOPT_CAINFO, static::$secure ? static::$certificate : null); - curl_setopt($curl, CURLOPT_CAPATH, static::$secure ? static::$certificate : null); - - curl_setopt($curl, CURLOPT_AUTOREFERER, 1); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curl, CURLOPT_USERAGENT, static::agent()); - - $query = empty($params) ? null : http_build_query($params, '', '&', PHP_QUERY_RFC1738); - - switch (strtolower($method)) { - case 'get': - $url .= $query ? '?' . $query : ''; - curl_setopt($curl, CURLOPT_HTTPGET, 1); - break; - - case 'post': - if ($query) { - curl_setopt($curl, CURLOPT_POSTFIELDS, $query); - } - - // Check if user passes custom options to the $options parameter. - // Then add a proper Content-Type header to our query string. - if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { - $options[CURLOPT_HTTPHEADER] = array_merge( - $options[CURLOPT_HTTPHEADER], - ['Content-Type: application/x-www-form-urlencoded'] - ); - } else { - $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; - } - - curl_setopt($curl, CURLOPT_POST, 1); - break; - - case 'put': - if ($query) { - curl_setopt($curl, CURLOPT_POSTFIELDS, $query); - } - - // Check if user passes custom options to the $options parameter. - // Then add a proper Content-Type header to our query string. - if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { - $options[CURLOPT_HTTPHEADER] = array_merge( - $options[CURLOPT_HTTPHEADER], - ['Content-Type: application/x-www-form-urlencoded'] - ); - } else { - $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; - } - - curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PUT'); - break; - - case 'delete': - if ($query) { - curl_setopt($curl, CURLOPT_POSTFIELDS, $query); - } - - // Check if the programmer passes custom options to the $options parameter. - // Then add a proper Content-Type header to our query string. - if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { - $options[CURLOPT_HTTPHEADER] = array_merge( - $options[CURLOPT_HTTPHEADER], - ['Content-Type: application/x-www-form-urlencoded'] - ); - } else { - $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; - } - - curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE'); - break; - - default: - throw new Exception('Usupported request method: ' . strtoupper($method)); - break; - } - - if (! empty($options)) { - curl_setopt_array($curl, $options); - } - - curl_setopt($curl, CURLOPT_URL, $url); - - $body = curl_exec($curl); - - if (false === $body) { - $code = curl_errno($curl); - $message = curl_error($curl); - - log_message('error', 'Curl error: ' . $message . ' Code: ' . $code); - log_message('error', print_r(curl_getinfo($curl), true)); - - curl_close($curl); - - // Jangan lempar exception, supaya proses bisa jalan terus - // throw new \Exception($message, $code); - } - - $header = (object) curl_getinfo($curl); - - curl_close($curl); - - // Encode response-body into json if the programmer want to. - if (false !== strpos($header->content_type, '/json')) { - $body = json_decode($body); - } - - return (object) compact('header', 'body'); - } - - /** - * Download file from given URL. - * - * @param string $url - * @param string $destination - * - * @return void - */ - public static function download($url, $destination, array $options = []) - { - if (! static::available()) { - throw new Exception('cURL extension is not available.'); - } - - if (is_file($destination)) { - throw new Exception('Destination path already exists: ' . $destination); - } - - $fopen = false; - - if (false === ($fopen = fopen($destination, 'w+b'))) { - throw new Exception('Unable to open destination file: ' . $destination); - } - - $curl = curl_init(); - - curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, static::$secure ? 1 : 0); - curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, static::$secure ? 2 : 0); - curl_setopt($curl, CURLOPT_CAINFO, static::$secure ? static::$certificate : null); - curl_setopt($curl, CURLOPT_CAPATH, static::$secure ? static::$certificate : null); - - curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); - curl_setopt($curl, CURLOPT_AUTOREFERER, 1); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curl, CURLOPT_USERAGENT, static::agent()); - curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_FILE, $fopen); - - if (! empty($options)) { - curl_setopt_array($curl, $options); - } - - $body = curl_exec($curl); - - if (false === $body) { - $code = curl_errno($curl); - $message = curl_error($curl); - - curl_close($curl); - fclose($fopen); - - throw new Exception($message, $code); - } - - curl_close($curl); - fclose($fopen); - - return true; - } - - /** - * Check if cURL extension is enabled. - * - * @return bool - */ - public static function available() - { - return extension_loaded('curl') && is_callable('curl_init'); - } - - /** - * Create a fake user-agent for our request. - * Some site such as github refuses the connection - * if it doesn't contains User-Agent header. - * - * @return string - */ - public static function agent() - { - $year = (int) gmdate('Y'); - $year = ($year < 2020) ? 2020 : $year; - - // Increase version number based on year. - $version = 77 + ($year - 2020) + 2; - - $agents = [ - 'Windows' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:[v].0) Gecko/20100101 Firefox/[v].0', - 'Linux' => 'Mozilla/5.0 (Linux x86_64; rv:[v].0) Gecko/20100101 Firefox/[v].0', - 'Darwin' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:[v].0) Gecko/20100101 Firefox/[v].0', - 'BSD' => 'Mozilla/5.0 (X11; FreeBSD amd64; rv:[v].0) Gecko/20100101 Firefox/[v].0', - 'Solaris' => 'Mozilla/5.0 (Solaris; Solaris x86_64; rv:[v].0) Gecko/20100101 Firefox/[v].0', - ]; - - $platform = static::platform(); - $platform = 'Unknown' === $platform ? 'Linux' : $platform; - - return str_replace('[v]', $version, $agents[$platform]); - } - - /** - * Get server's platform / operating system. - * - * @return string - */ - public static function platform() - { - if ('\\' === DIRECTORY_SEPARATOR) { - return 'Windows'; - } - - $platforms = [ - 'Darwin' => 'Darwin', - 'DragonFly' => 'BSD', - 'FreeBSD' => 'BSD', - 'NetBSD' => 'BSD', - 'OpenBSD' => 'BSD', - 'Linux' => 'Linux', - 'SunOS' => 'Solaris', - ]; - - return $platforms[PHP_OS] ?? 'Unknown'; - } -} +getMessage()); + } catch (Exception $e) { + // Error on PHP 5 + throw new Exception('Unable to obtain CA bundle: ' . $e->getMessage()); + } + } + + $curl = curl_init(); + + // Batasi waktu koneksi dan ambil data supaya tidak menggantung kalau ada error koneksi + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 4); + curl_setopt($curl, CURLOPT_TIMEOUT, 5); + + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, static::$secure ? 1 : 0); + curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, static::$secure ? 2 : 0); + curl_setopt($curl, CURLOPT_CAINFO, static::$secure ? static::$certificate : null); + curl_setopt($curl, CURLOPT_CAPATH, static::$secure ? static::$certificate : null); + + curl_setopt($curl, CURLOPT_AUTOREFERER, 1); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curl, CURLOPT_USERAGENT, static::agent()); + + $query = empty($params) ? null : http_build_query($params, '', '&', PHP_QUERY_RFC1738); + + switch (strtolower($method)) { + case 'get': + $url .= $query ? '?' . $query : ''; + curl_setopt($curl, CURLOPT_HTTPGET, 1); + break; + + case 'post': + if ($query) { + curl_setopt($curl, CURLOPT_POSTFIELDS, $query); + } + + // Check if user passes custom options to the $options parameter. + // Then add a proper Content-Type header to our query string. + if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { + $options[CURLOPT_HTTPHEADER] = array_merge( + $options[CURLOPT_HTTPHEADER], + ['Content-Type: application/x-www-form-urlencoded'] + ); + } else { + $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; + } + + curl_setopt($curl, CURLOPT_POST, 1); + break; + + case 'put': + if ($query) { + curl_setopt($curl, CURLOPT_POSTFIELDS, $query); + } + + // Check if user passes custom options to the $options parameter. + // Then add a proper Content-Type header to our query string. + if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { + $options[CURLOPT_HTTPHEADER] = array_merge( + $options[CURLOPT_HTTPHEADER], + ['Content-Type: application/x-www-form-urlencoded'] + ); + } else { + $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; + } + + curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PUT'); + break; + + case 'delete': + if ($query) { + curl_setopt($curl, CURLOPT_POSTFIELDS, $query); + } + + // Check if the programmer passes custom options to the $options parameter. + // Then add a proper Content-Type header to our query string. + if (isset($options[CURLOPT_HTTPHEADER]) && is_array($options[CURLOPT_HTTPHEADER])) { + $options[CURLOPT_HTTPHEADER] = array_merge( + $options[CURLOPT_HTTPHEADER], + ['Content-Type: application/x-www-form-urlencoded'] + ); + } else { + $options[CURLOPT_HTTPHEADER] = ['Content-Type: application/x-www-form-urlencoded']; + } + + curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE'); + break; + + default: + throw new Exception('Usupported request method: ' . strtoupper($method)); + break; + } + + if (! empty($options)) { + curl_setopt_array($curl, $options); + } + + curl_setopt($curl, CURLOPT_URL, $url); + + $body = curl_exec($curl); + + if (false === $body) { + $code = curl_errno($curl); + $message = curl_error($curl); + + log_message('error', 'Curl error: ' . $message . ' Code: ' . $code); + log_message('error', print_r(curl_getinfo($curl), true)); + + curl_close($curl); + + // Jangan lempar exception, supaya proses bisa jalan terus + // throw new \Exception($message, $code); + } + + $header = (object) curl_getinfo($curl); + + curl_close($curl); + + // Encode response-body into json if the programmer want to. + if (false !== strpos($header->content_type, '/json')) { + $body = json_decode($body); + } + + return (object) compact('header', 'body'); + } + + /** + * Download file from given URL. + * + * @param string $url + * @param string $destination + * + * @return void + */ + public static function download($url, $destination, array $options = []) + { + if (! static::available()) { + throw new Exception('cURL extension is not available.'); + } + + if (is_file($destination)) { + throw new Exception('Destination path already exists: ' . $destination); + } + + $fopen = false; + + if (false === ($fopen = fopen($destination, 'w+b'))) { + throw new Exception('Unable to open destination file: ' . $destination); + } + + $curl = curl_init(); + + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, static::$secure ? 1 : 0); + curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, static::$secure ? 2 : 0); + curl_setopt($curl, CURLOPT_CAINFO, static::$secure ? static::$certificate : null); + curl_setopt($curl, CURLOPT_CAPATH, static::$secure ? static::$certificate : null); + + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); + curl_setopt($curl, CURLOPT_AUTOREFERER, 1); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curl, CURLOPT_USERAGENT, static::agent()); + curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_FILE, $fopen); + + if (! empty($options)) { + curl_setopt_array($curl, $options); + } + + $body = curl_exec($curl); + + if (false === $body) { + $code = curl_errno($curl); + $message = curl_error($curl); + + curl_close($curl); + fclose($fopen); + + throw new Exception($message, $code); + } + + curl_close($curl); + fclose($fopen); + + return true; + } + + /** + * Check if cURL extension is enabled. + * + * @return bool + */ + public static function available() + { + return extension_loaded('curl') && is_callable('curl_init'); + } + + /** + * Create a fake user-agent for our request. + * Some site such as github refuses the connection + * if it doesn't contains User-Agent header. + * + * @return string + */ + public static function agent() + { + $year = (int) gmdate('Y'); + $year = ($year < 2020) ? 2020 : $year; + + // Increase version number based on year. + $version = 77 + ($year - 2020) + 2; + + $agents = [ + 'Windows' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:[v].0) Gecko/20100101 Firefox/[v].0', + 'Linux' => 'Mozilla/5.0 (Linux x86_64; rv:[v].0) Gecko/20100101 Firefox/[v].0', + 'Darwin' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:[v].0) Gecko/20100101 Firefox/[v].0', + 'BSD' => 'Mozilla/5.0 (X11; FreeBSD amd64; rv:[v].0) Gecko/20100101 Firefox/[v].0', + 'Solaris' => 'Mozilla/5.0 (Solaris; Solaris x86_64; rv:[v].0) Gecko/20100101 Firefox/[v].0', + ]; + + $platform = static::platform(); + $platform = 'Unknown' === $platform ? 'Linux' : $platform; + + return str_replace('[v]', $version, $agents[$platform]); + } + + /** + * Get server's platform / operating system. + * + * @return string + */ + public static function platform() + { + if ('\\' === DIRECTORY_SEPARATOR) { + return 'Windows'; + } + + $platforms = [ + 'Darwin' => 'Darwin', + 'DragonFly' => 'BSD', + 'FreeBSD' => 'BSD', + 'NetBSD' => 'BSD', + 'OpenBSD' => 'BSD', + 'Linux' => 'Linux', + 'SunOS' => 'Solaris', + ]; + + return $platforms[PHP_OS] ?? 'Unknown'; + } +} diff --git a/donjo-app/libraries/Paging.php b/donjo-app/libraries/Paging.php index 28c0f78f09..f52b93a1e4 100644 --- a/donjo-app/libraries/Paging.php +++ b/donjo-app/libraries/Paging.php @@ -1,124 +1,124 @@ - 0) { - $this->init($props); - } - } - - public function init($input = []) - { - if (isset($input['page'])) { - $this->page = (int) $input['page']; - } - if (isset($input['per_page'])) { - $this->per_page = (int) $input['per_page']; - } - if (isset($input['num_rows'])) { - $this->num_rows = (int) $input['num_rows']; - } - if (isset($input['suffix'])) { - $this->suffix = (string) $input['suffix']; - } - if (isset($input['num_links'])) { - $this->num_links = (int) $input['num_links']; - } - - //Sanitizing Input - if ($this->page < 1) { - $this->page = 1; - } - if ($this->per_page < 1) { - $this->per_page = 50; - } - if ($this->num_rows < 1) { - $my_num_rows = 1; - } else { - $my_num_rows = $this->num_rows; - } - - $this->num_page = (int) ((($my_num_rows - 1) / $this->per_page) + 1); - $this->offset = (int) (($this->page - 1) * $this->per_page); - - $this->prev = $this->page - 1; - $this->next = $this->page + 1; - if ($this->next > $this->num_page) { - $this->next = 0; - } - - //Create Paging Link - if ($this->page < $this->num_links) { - $start = 1; - $end = min($this->num_links, $this->num_page); - /** Aslinya sbb: - * if($this->num_page > (int)($this->num_links * 1.5)) // 30 - * $end=$this->num_links; - * else $end=$this->num_page; - */ - } elseif ($this->page > $this->num_page - $this->num_links) { - $start = (int) ($this->num_page - $this->num_links); - $end = (int) $this->num_page; - } else { - $start = (int) ($this->page - (($this->num_links / 2) - 1)); // 9 - $end = (int) ($this->page + ($this->num_links / 2)); // 10 - } - $this->start = 1; - $this->end = $this->num_page; - $this->start_link = $start; - $this->end_link = $end; - } -} + 0) { + $this->init($props); + } + } + + public function init($input = []) + { + if (isset($input['page'])) { + $this->page = (int) $input['page']; + } + if (isset($input['per_page'])) { + $this->per_page = (int) $input['per_page']; + } + if (isset($input['num_rows'])) { + $this->num_rows = (int) $input['num_rows']; + } + if (isset($input['suffix'])) { + $this->suffix = (string) $input['suffix']; + } + if (isset($input['num_links'])) { + $this->num_links = (int) $input['num_links']; + } + + //Sanitizing Input + if ($this->page < 1) { + $this->page = 1; + } + if ($this->per_page < 1) { + $this->per_page = 50; + } + if ($this->num_rows < 1) { + $my_num_rows = 1; + } else { + $my_num_rows = $this->num_rows; + } + + $this->num_page = (int) ((($my_num_rows - 1) / $this->per_page) + 1); + $this->offset = (int) (($this->page - 1) * $this->per_page); + + $this->prev = $this->page - 1; + $this->next = $this->page + 1; + if ($this->next > $this->num_page) { + $this->next = 0; + } + + //Create Paging Link + if ($this->page < $this->num_links) { + $start = 1; + $end = min($this->num_links, $this->num_page); + /** Aslinya sbb: + * if($this->num_page > (int)($this->num_links * 1.5)) // 30 + * $end=$this->num_links; + * else $end=$this->num_page; + */ + } elseif ($this->page > $this->num_page - $this->num_links) { + $start = (int) ($this->num_page - $this->num_links); + $end = (int) $this->num_page; + } else { + $start = (int) ($this->page - (($this->num_links / 2) - 1)); // 9 + $end = (int) ($this->page + ($this->num_links / 2)); // 10 + } + $this->start = 1; + $this->end = $this->num_page; + $this->start_link = $start; + $this->end_link = $end; + } +} diff --git a/donjo-app/libraries/Rekap.php b/donjo-app/libraries/Rekap.php index a8c6788906..6a0730fa74 100644 --- a/donjo-app/libraries/Rekap.php +++ b/donjo-app/libraries/Rekap.php @@ -35,6 +35,7 @@ * */ +use App\Models\Anak; use Illuminate\Support\Facades\DB; class Rekap @@ -70,6 +71,7 @@ public function get_data_ibu_hamil($kuartal = null, $tahun = null, $id = null) $ibuHamil = DB::table('ibu_hamil') ->join('kia', 'ibu_hamil.kia_id', '=', 'kia.id') ->join('tweb_penduduk', 'kia.ibu_id', '=', 'tweb_penduduk.id') + ->where('status_kehamilan', '!=', null) ->whereMonth('ibu_hamil.created_at', '>=', $batasBulanBawah) ->whereMonth('ibu_hamil.created_at', '<=', $batasBulanAtas) ->whereYear('ibu_hamil.created_at', $tahun) @@ -392,6 +394,8 @@ public function get_data_bulanan_anak($kuartal = null, $tahun = null, $id = null ->distinct() ->get(); + $status_gizi_anak = collect(Anak::STATUS_GIZI_ANAK)->pluck('simbol', 'id'); + if ($bulananAnak) { foreach ($bulananAnak as $item) { $item = (array) $item; @@ -455,7 +459,7 @@ public function get_data_bulanan_anak($kuartal = null, $tahun = null, $id = null $hitungJambanSehat++; } - $statusGizi = $item['status_gizi']; + $statusGizi = $status_gizi_anak[$item['status_gizi']]; } // HITUNG PENIMBANGAN DALAM 1 TAHUN diff --git a/donjo-app/libraries/Statistik_pengunjung.php b/donjo-app/libraries/Statistik_pengunjung.php index 7cd2354897..c2e57804b2 100644 --- a/donjo-app/libraries/Statistik_pengunjung.php +++ b/donjo-app/libraries/Statistik_pengunjung.php @@ -1,384 +1,384 @@ -ci = &get_instance(); - $this->ci->load->library('user_agent'); - } - - /** - * Counter pengunjung visitor. - * - * @return void - */ - public function counter_visitor() - { - if (isset($this->ci->session->pengunjungOnline)) { - return; - } - - if (null === ($visitor = $this->get_pengunjung_hari_ini())) { - $this->insert_visitor(); - } else { - $this->increment_visitor((int) $visitor->Jumlah, $visitor->ipAddress); - } - - $this->ci->session->set_userdata('pengunjungOnline', date('Y-m-d')); - } - - /** - * Sistem operasi pengunjung. - * - * @return string - */ - public function os() - { - return $this->ci->agent->platform(); - } - - /** - * IP Address pengunjung. - * - * @return string - */ - public function ip_address() - { - return $this->ci->input->ip_address(); - } - - /** - * Browser pengunjung. - * - * @return string - */ - public function browser() - { - if ($this->ci->agent->is_browser()) { - $browser = $this->ci->agent->browser() . ' ' . $this->ci->agent->version(); - } elseif ($this->ci->agent->is_robot()) { - $browser = $this->ci->agent->robot(); - } elseif ($this->ci->agent->is_mobile()) { - $browser = $this->ci->agent->mobile(); - } else { - $browser = 'Tidak ditemukan'; - } - - return $browser; - } - - /** - * Data mixed jumlah statitik pengunjung. - * - * @param int|null - * @param mixed $type - * - * @return mixed - */ - public function get_pengunjung($type) - { - $tgl = date('Y-m-d'); - $bln = date('m'); - $thn = date('Y'); - - $this->ci->db->select_sum('Jumlah'); - - switch ($type) { - // Hari Ini - case 1: - $this->ci->db->select('Tanggal'); - $this->kondisi($type); - $this->ci->db->group_by('Tanggal'); - - $data['lblx'] = 'Tanggal'; - $data['judul'] = 'Hari Ini ( ' . tgl_indo2($tgl) . ')'; - break; - // Kemarin - case 2: - $this->ci->db->select('Tanggal'); - $this->kondisi($type); - $this->ci->db->group_by('Tanggal'); - - $data['lblx'] = 'Tanggal'; - $data['judul'] = 'Kemarin ( ' . tgl_indo2($this->op_tgl('-1 days', $tgl)) . ')'; - break; - // 7 Hari (Minggu Ini) - case 3: - $this->ci->db->select('Tanggal'); - $this->kondisi($type); - $this->ci->db->group_by('Tanggal'); - - $data['lblx'] = 'Tanggal'; - $data['judul'] = 'Dari Tanggal ' . tgl_indo2($this->op_tgl('-6 days', $tgl)) . ' - ' . tgl_indo2($tgl); - break; - // 1 bulan(tgl 1 sampai akhir bulan) - case 4: - $this->ci->db->select('Tanggal'); - $this->kondisi($type); - $this->ci->db->group_by('Tanggal'); - - $data['lblx'] = 'Tanggal'; - $data['judul'] = 'Bulan ' . ucwords(getBulan($bln)) . ' ' . $thn; - break; - // 1 tahun / 12 Bulan - case 5: - $this->ci->db->select('MONTH(`Tanggal`) AS Tanggal'); - $this->kondisi($type); - $this->ci->db->group_by('MONTH(`Tanggal`)'); - - $data['lblx'] = 'Bulan'; - $data['judul'] = 'Tahun ' . $thn; - break; - // Semua Data - default: - $this->ci->db->select('YEAR(`Tanggal`) AS Tanggal'); - $this->ci->db->group_by('YEAR(`Tanggal`)'); - - $data['lblx'] = 'Tahun'; - $data['judul'] = 'Setiap Tahun'; - break; - } - - $this->ci->db->order_by('Tanggal', 'asc'); - $pengunjung = $this->ci->db->get($this->table)->result_array(); - $data['pengunjung'] = $pengunjung; - - $jml = 0; - - foreach ($pengunjung as $total) { - $jml += $total['Jumlah']; - } - - $data['Total'] = $jml; - - return $data; - } - - /** - * Get pengungunjung hari ini. - * - * @return object - */ - public function get_pengunjung_hari_ini() - { - return $this->ci->db->where('Tanggal', date('Y-m-d'))->get($this->table)->row(); - } - - /** - * Get pengunjung kemarin - * - * @return object - */ - public function get_pengunjung_kemarin() - { - return $this->get_pengunjung_total(2); - } - - /** - * Total pengunjung total jumlah. - * - * @param int|null - * @param mixed|null $type - * - * @return object - */ - public function get_pengunjung_total($type = null) - { - $this->ci->db->select_sum('Jumlah'); - $this->kondisi($type); - - return $this->ci->db->get($this->table)->row()->Jumlah; - } - - /** - * Insert visitor hari ini - * - * @return void - */ - public function insert_visitor() - { - return $this->ci->db->insert($this->table, [ - 'Tanggal' => date('Y-m-d'), - 'ipAddress' => json_encode(['ip_address' => [$this->ip_address()]]), - 'Jumlah' => 1, - ]); - } - - /** - * Increment visitor hari ini. - * - * @param int jumlah - * @param json $lastIpAddress - * - * @return void - */ - public function increment_visitor(int $jumlah, $lastIpAddress) - { - $ip_address = json_decode($lastIpAddress, true); - - return $this->ci->db->where('Tanggal', date('Y-m-d')) - ->update($this->table, [ - 'ipAddress' => json_encode(['ip_address' => array_merge([$this->ip_address()], $ip_address['ip_address'])]), - 'Jumlah' => $jumlah + 1, - ]); - } - - /** - * Get statistik pengunjung. - * - * @return array - */ - public function get_statistik() - { - return [ - 'hari_ini' => $this->get_pengunjung_hari_ini()->Jumlah, - 'kemarin' => $this->get_pengunjung_kemarin(), - 'total' => $this->get_pengunjung_total(), - 'os' => $this->os(), - 'ip_address' => $this->ip_address(), - 'browser' => $this->browser(), - ]; - } - - /** - * Where clause kondisi tanggal. - * - * @param int|null $type - * - * @return void - */ - protected function kondisi($type) - { - $tgl = date('Y-m-d'); - $bln = date('m'); - $thn = date('Y'); - - switch ($type) { - // Hari ini - case 1: - $this->ci->db->where('Tanggal', $tgl); - break; - // Kemarin - case 2: - $this->ci->db->where('Tanggal', $this->op_tgl('-1 days', $tgl)); - break; - // Minggu ini - case 3: - $this->ci->db->where([ - 'Tanggal >=' => $this->op_tgl('-6 days', $tgl), - 'Tanggal <=' => $tgl, - ]); - break; - // Bulan ini - case 4: - $this->ci->db->where([ - 'MONTH(`Tanggal`) = ' => $bln, - 'YEAR(`Tanggal`) = ' => $thn, - ]); - break; - // Tahun ini - case 5: - $this->ci->db->where('YEAR(Tanggal) =', $thn); - break; - // Semua jumlah pengunjung - default: - break; - } - } - - /** - * Rentang tanggal. - * - * @return string - */ - protected function op_tgl(string $op, string $tgl) - { - return date('Y-m-d', strtotime($op, strtotime($tgl))); - } -} +ci = &get_instance(); + $this->ci->load->library('user_agent'); + } + + /** + * Counter pengunjung visitor. + * + * @return void + */ + public function counter_visitor() + { + if (isset($this->ci->session->pengunjungOnline)) { + return; + } + + if (null === ($visitor = $this->get_pengunjung_hari_ini())) { + $this->insert_visitor(); + } else { + $this->increment_visitor((int) $visitor->Jumlah, $visitor->ipAddress); + } + + $this->ci->session->set_userdata('pengunjungOnline', date('Y-m-d')); + } + + /** + * Sistem operasi pengunjung. + * + * @return string + */ + public function os() + { + return $this->ci->agent->platform(); + } + + /** + * IP Address pengunjung. + * + * @return string + */ + public function ip_address() + { + return $this->ci->input->ip_address(); + } + + /** + * Browser pengunjung. + * + * @return string + */ + public function browser() + { + if ($this->ci->agent->is_browser()) { + $browser = $this->ci->agent->browser() . ' ' . $this->ci->agent->version(); + } elseif ($this->ci->agent->is_robot()) { + $browser = $this->ci->agent->robot(); + } elseif ($this->ci->agent->is_mobile()) { + $browser = $this->ci->agent->mobile(); + } else { + $browser = 'Tidak ditemukan'; + } + + return $browser; + } + + /** + * Data mixed jumlah statitik pengunjung. + * + * @param int|null + * @param mixed $type + * + * @return mixed + */ + public function get_pengunjung($type) + { + $tgl = date('Y-m-d'); + $bln = date('m'); + $thn = date('Y'); + + $this->ci->db->select_sum('Jumlah'); + + switch ($type) { + // Hari Ini + case 1: + $this->ci->db->select('Tanggal'); + $this->kondisi($type); + $this->ci->db->group_by('Tanggal'); + + $data['lblx'] = 'Tanggal'; + $data['judul'] = 'Hari Ini ( ' . tgl_indo2($tgl) . ')'; + break; + // Kemarin + case 2: + $this->ci->db->select('Tanggal'); + $this->kondisi($type); + $this->ci->db->group_by('Tanggal'); + + $data['lblx'] = 'Tanggal'; + $data['judul'] = 'Kemarin ( ' . tgl_indo2($this->op_tgl('-1 days', $tgl)) . ')'; + break; + // 7 Hari (Minggu Ini) + case 3: + $this->ci->db->select('Tanggal'); + $this->kondisi($type); + $this->ci->db->group_by('Tanggal'); + + $data['lblx'] = 'Tanggal'; + $data['judul'] = 'Dari Tanggal ' . tgl_indo2($this->op_tgl('-6 days', $tgl)) . ' - ' . tgl_indo2($tgl); + break; + // 1 bulan(tgl 1 sampai akhir bulan) + case 4: + $this->ci->db->select('Tanggal'); + $this->kondisi($type); + $this->ci->db->group_by('Tanggal'); + + $data['lblx'] = 'Tanggal'; + $data['judul'] = 'Bulan ' . ucwords(getBulan($bln)) . ' ' . $thn; + break; + // 1 tahun / 12 Bulan + case 5: + $this->ci->db->select('MONTH(`Tanggal`) AS Tanggal'); + $this->kondisi($type); + $this->ci->db->group_by('MONTH(`Tanggal`)'); + + $data['lblx'] = 'Bulan'; + $data['judul'] = 'Tahun ' . $thn; + break; + // Semua Data + default: + $this->ci->db->select('YEAR(`Tanggal`) AS Tanggal'); + $this->ci->db->group_by('YEAR(`Tanggal`)'); + + $data['lblx'] = 'Tahun'; + $data['judul'] = 'Setiap Tahun'; + break; + } + + $this->ci->db->order_by('Tanggal', 'asc'); + $pengunjung = $this->ci->db->get($this->table)->result_array(); + $data['pengunjung'] = $pengunjung; + + $jml = 0; + + foreach ($pengunjung as $total) { + $jml += $total['Jumlah']; + } + + $data['Total'] = $jml; + + return $data; + } + + /** + * Get pengungunjung hari ini. + * + * @return object + */ + public function get_pengunjung_hari_ini() + { + return $this->ci->db->where('Tanggal', date('Y-m-d'))->get($this->table)->row(); + } + + /** + * Get pengunjung kemarin + * + * @return object + */ + public function get_pengunjung_kemarin() + { + return $this->get_pengunjung_total(2); + } + + /** + * Total pengunjung total jumlah. + * + * @param int|null + * @param mixed|null $type + * + * @return object + */ + public function get_pengunjung_total($type = null) + { + $this->ci->db->select_sum('Jumlah'); + $this->kondisi($type); + + return $this->ci->db->get($this->table)->row()->Jumlah; + } + + /** + * Insert visitor hari ini + * + * @return void + */ + public function insert_visitor() + { + return $this->ci->db->insert($this->table, [ + 'Tanggal' => date('Y-m-d'), + 'ipAddress' => json_encode(['ip_address' => [$this->ip_address()]]), + 'Jumlah' => 1, + ]); + } + + /** + * Increment visitor hari ini. + * + * @param int jumlah + * @param json $lastIpAddress + * + * @return void + */ + public function increment_visitor(int $jumlah, $lastIpAddress) + { + $ip_address = json_decode($lastIpAddress, true); + + return $this->ci->db->where('Tanggal', date('Y-m-d')) + ->update($this->table, [ + 'ipAddress' => json_encode(['ip_address' => array_merge([$this->ip_address()], $ip_address['ip_address'])]), + 'Jumlah' => $jumlah + 1, + ]); + } + + /** + * Get statistik pengunjung. + * + * @return array + */ + public function get_statistik() + { + return [ + 'hari_ini' => $this->get_pengunjung_hari_ini()->Jumlah, + 'kemarin' => $this->get_pengunjung_kemarin(), + 'total' => $this->get_pengunjung_total(), + 'os' => $this->os(), + 'ip_address' => $this->ip_address(), + 'browser' => $this->browser(), + ]; + } + + /** + * Where clause kondisi tanggal. + * + * @param int|null $type + * + * @return void + */ + protected function kondisi($type) + { + $tgl = date('Y-m-d'); + $bln = date('m'); + $thn = date('Y'); + + switch ($type) { + // Hari ini + case 1: + $this->ci->db->where('Tanggal', $tgl); + break; + // Kemarin + case 2: + $this->ci->db->where('Tanggal', $this->op_tgl('-1 days', $tgl)); + break; + // Minggu ini + case 3: + $this->ci->db->where([ + 'Tanggal >=' => $this->op_tgl('-6 days', $tgl), + 'Tanggal <=' => $tgl, + ]); + break; + // Bulan ini + case 4: + $this->ci->db->where([ + 'MONTH(`Tanggal`) = ' => $bln, + 'YEAR(`Tanggal`) = ' => $thn, + ]); + break; + // Tahun ini + case 5: + $this->ci->db->where('YEAR(Tanggal) =', $thn); + break; + // Semua jumlah pengunjung + default: + break; + } + } + + /** + * Rentang tanggal. + * + * @return string + */ + protected function op_tgl(string $op, string $tgl) + { + return date('Y-m-d', strtotime($op, strtotime($tgl))); + } +} diff --git a/donjo-app/models/Analisis_import_model.php b/donjo-app/models/Analisis_import_model.php index db8724d337..a35f0d0664 100644 --- a/donjo-app/models/Analisis_import_model.php +++ b/donjo-app/models/Analisis_import_model.php @@ -58,14 +58,11 @@ private function upload_file_analisis() $this->load->library('upload'); $config['upload_path'] = sys_get_temp_dir(); - $config['allowed_types'] = 'xlsx|xlsm'; + $config['allowed_types'] = 'xlsx'; $this->upload->initialize($config); if (! $this->upload->do_upload('userfile')) { - $this->session->error_msg = $this->upload->display_errors(); - $this->session->success = -1; - - return; + return session_error($this->upload->display_errors()); } $upload = $this->upload->data(); @@ -106,8 +103,7 @@ public function impor_analisis($file = '', $kode = '00000', $jenis = 2) break; default: - $this->session->success = -1; - $this->session->error_msg = 'Bukan file impor master analisis'; + session_error('Bukan file impor master analisis'); break; } if ($this->session->success == -1) { @@ -176,9 +172,7 @@ private function impor_master($sheet, $kode, $jenis) private function impor_error() { - $error = $this->db->error(); - $this->session->success = -1; - $this->session->error_msg = $error['message']; + return session_error($this->db->error()['message']); } private function impor_pertanyaan($sheet, $id_master) diff --git a/donjo-app/models/Analisis_indikator_model.php b/donjo-app/models/Analisis_indikator_model.php index 44ec2dec38..b4f615ed4e 100644 --- a/donjo-app/models/Analisis_indikator_model.php +++ b/donjo-app/models/Analisis_indikator_model.php @@ -1,808 +1,808 @@ -load->model('analisis_master_model'); - } - - public function autocomplete() - { - return $this->autocomplete_str('pertanyaan', 'analisis_indikator'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (u.pertanyaan LIKE '{$kw}' OR u.pertanyaan LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND u.act_analisis = {$kf}"; - - return $filter_sql; - } - } - - private function master_sql() - { - if (isset($_SESSION['analisis_master'])) { - $kf = $_SESSION['analisis_master']; - $filter_sql = " AND u.id_master = {$kf}"; - - return $filter_sql; - } - } - - private function tipe_sql() - { - if (isset($_SESSION['tipe'])) { - $kf = $_SESSION['tipe']; - $filter_sql = " AND u.id_tipe = {$kf}"; - - return $filter_sql; - } - } - - private function kategori_sql() - { - if (isset($_SESSION['kategori'])) { - $kf = $_SESSION['kategori']; - $filter_sql = " AND u.id_kategori = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(id) AS id FROM analisis_indikator u WHERE 1'; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - $sql .= $this->master_sql(); - $sql .= $this->tipe_sql(); - $sql .= $this->kategori_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['id']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY LPAD(u.nomor, 10, " ")'; - break; - - case 2: $order_sql = ' ORDER BY LPAD(u.nomor, 10, " ") DESC'; - break; - - case 3: $order_sql = ' ORDER BY u.pertanyaan'; - break; - - case 4: $order_sql = ' ORDER BY u.pertanyaan DESC'; - break; - - case 5: $order_sql = ' ORDER BY u.id_kategori'; - break; - - case 6: $order_sql = ' ORDER BY u.id_kategori DESC'; - break; - - default:$order_sql = ' ORDER BY LPAD(u.nomor, 10, " ")'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - $sql = 'SELECT u.*,t.tipe AS tipe_indikator,k.kategori AS kategori FROM analisis_indikator u LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id WHERE 1 '; - - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - $sql .= $this->master_sql(); - $sql .= $this->tipe_sql(); - $sql .= $this->kategori_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - if ($data[$i]['act_analisis'] == 1) { - $data[$i]['act_analisis'] = 'Ya'; - } else { - $data[$i]['act_analisis'] = 'Tidak'; - } - $j++; - } - - return $data; - } - - private function validasi_data($post) - { - $data = [ - 'id_tipe' => $post['id_tipe'], - 'referensi' => $post['referensi'] ?? null, - 'nomor' => nomor_surat_keputusan($post['nomor']), - 'pertanyaan' => htmlentities($post['pertanyaan']), - 'id_kategori' => $post['id_kategori'] ?? null, - 'bobot' => bilangan($post['bobot']), - 'act_analisis' => $post['act_analisis'], - 'is_publik' => $post['is_publik'], - ]; - - if ($data['id_tipe'] != 1) { - $data['act_analisis'] = 2; - $data['bobot'] = 0; - } - - return $data; - } - - public function insert() - { - // Analisis sistem tidak boleh diubah - if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { - return; - } - - $data = $this->validasi_data($this->input->post()); - - $data['id_master'] = $this->session->analisis_master; - $outp = $this->db->insert('analisis_indikator', $data); - $id = $this->db->insert_id(); - - // Tambahkan Isi dari pertanyaan berdasarkan referensi - if ($id && $data['id_tipe'] == 1) { - $referensi = $this->data_tabel($this->session->subjek_tipe)[$data['referensi']]['referensi']; - if ($referensi) { - foreach ($referensi as $value) { - $insert['kode_jawaban'] = bilangan($value['id']); - $insert['jawaban'] = htmlentities($value['nama']); - $insert['nilai'] = 1; - $this->p_insert($id, $insert); - } - } - } - - status_sukses($outp); //Tampilkan Pesan - } - - private function update_indikator_sistem($id) - { - // Hanya kolom yang boleh diubah untuk analisis sistem - $data['is_publik'] = $_POST['is_publik']; - $this->db->where('id', $id)->update('analisis_indikator', $data); - $this->session->success = 1; - } - - public function update($id = 0) - { - if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { - $this->update_indikator_sistem($id); - - return; - } - - $data = $this->validasi_data($this->input->post()); - - $data['id_master'] = $this->session->analisis_master; - $outp = $this->db->where('id', $id)->update('analisis_indikator', $data); - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = 0, $semua = false) - { - // Analisis sistem tidak boleh dihapus - if ($this->analisis_master_model->is_analisis_sistem($_SESSION['analisis_master'])) { - return; - } - - // Hapus data analisis master - $outp = $this->db->where('id_indikator', $id)->delete('analisis_parameter'); - - if (! $semua) { - $this->session->success = 1; - } - $outp = $this->db->where('id', $id)->delete('analisis_indikator'); - - status_sukses($outp, true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, true); - } - } - - private function validasi_parameter($post) - { - return [ - 'kode_jawaban' => bilangan($post['kode_jawaban']), - 'jawaban' => htmlentities($post['jawaban']), - 'nilai' => bilangan($post['nilai']), - ]; - } - - public function p_insert($in = 0, $data_referensi = null) - { - // Analisis sistem tidak boleh diubah - if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { - return; - } - - $data = $data_referensi ?? $this->validasi_parameter($this->input->post()); - $data['id_indikator'] = $in; - $outp = $this->db->insert('analisis_parameter', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function p_update($id = 0) - { - $data = $this->validasi_parameter($this->input->post()); - // Analisis sistem hanya kolom tertentu boleh diubah - if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master) || $this->input->post('referensi')) { - unset($data['kode_jawaban'], $data['jawaban']); - } - $this->db->where('id', $id); - $outp = $this->db->update('analisis_parameter', $data); - status_sukses($outp); //Tampilkan Pesan - } - - public function p_delete($id = 0) - { - $this->session->success = 1; - // Analisis sistem tidak boleh dihapus - if ($this->analisis_master_model->is_analisis_sistem($_SESSION['analisis_master'])) { - return; - } - - $outp = $this->db->where('id', $id)->delete('analisis_parameter'); - - status_sukses($outp, true); //Tampilkan Pesan - } - - public function p_delete_all() - { - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->p_delete($id); - } - } - - public function list_indikator($id = 0) - { - return $this->db - ->get_where('analisis_parameter', ['id_indikator' => $id]) - ->result_array(); - } - - public function get_analisis_indikator($id = 0) - { - return $this->db - ->get_where('analisis_indikator', ['id' => $id]) - ->row_array(); - } - - public function get_analisis_parameter($id = 0) - { - return $this->db - ->get_where('analisis_parameter', ['id' => $id]) - ->row_array(); - } - - public function list_tipe() - { - return $this->db - ->get('analisis_tipe_indikator') - ->result_array(); - } - - // TODO: pindahkan ke analisis_kategori_model - public function list_kategori() - { - $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1'; - $sql .= $this->master_sql(); - $query = $this->db->query($sql); - - return $query->result_array(); - } - - public function raw_analisis_indikator_by_id_master($id = 0) - { - return $this->db - ->select('i.*, k.kategori') - ->from('analisis_indikator i') - ->join('analisis_kategori_indikator k', 'k.id = i.id_kategori', 'left') - ->where('i.id_master', $id) - ->get('')->result_array(); - } - - public function get_analisis_indikator_by_id_master($id = 0) - { - $result = []; - $list_indikator = []; - $list_parameter = []; - - $raw_indikator = $this->db - ->select('i.*') - ->from('analisis_indikator i') - ->where('i.id_master', $id) - ->get('')->result_array(); - - // Setting key array sesuai id - foreach ($raw_indikator as $val_indikator) { - $list_indikator[$val_indikator['id']] = $val_indikator['pertanyaan']; - - $temp_parameter = []; - - $raw_parameter = $this->db->where('id_indikator', $val_indikator['id'])->get('analisis_parameter')->result_array(); - - foreach ($raw_parameter as $val_parameter) { - $temp_parameter[$val_parameter['id']] = $val_parameter['jawaban']; - } - - $list_parameter[$val_indikator['id']] = $temp_parameter; - } - - return [ - 'indikator' => $list_indikator, - 'parameter' => $list_parameter, - ]; - } - - public function data_tabel($sasaran) - { - $this->load->model('referensi_model'); - - switch ($sasaran) { - /* - * Keterangan Tipe : - * 1 => Pilihan (Tunggal) - * 2 => Pilihan (Ganda) - * 3 => Isian Jumlah (Kuantitatif) / Isian berupa angka - * 4 => Isian Teks - */ - - // Penduduk - case 1: - $data = [ - 'kk_level' => [ - 'judul' => 'Hubungan Dalam Keluarga', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_hubungan'), - ], - 'rtm_level' => [ - 'judul' => 'Hubungan Dalam Rumah Tangga', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_rtm_hubungan'), - ], - 'sex' => [ - 'judul' => 'Jenis Kelamin', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_sex'), - ], - 'tempatlahir' => [ - 'judul' => 'Tempat Lahir', - ], - 'tanggallahir' => [ - 'judul' => 'Tanggal Lahir', - ], - 'agama_id' => [ - 'judul' => 'Agama', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_agama'), - ], - 'pendidikan_kk_id' => [ - 'judul' => 'Pendidikan Dalam KK', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan_kk'), - ], - 'pendidikan_sedang_id' => [ - 'judul' => 'Pendidikan Sedang Ditempuh', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan'), - ], - 'pekerjaan_id' => [ - 'judul' => 'Pekerjaan', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pekerjaan'), - ], - 'status_kawin' => [ - 'judul' => 'Status_perkawinan', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_kawin'), - ], - 'warganegara_id' => [ - 'judul' => 'Kewarganegaraan', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_warganegara'), - ], - 'dokumen_pasport' => [ - 'judul' => 'Dokumen Passport', - ], - 'dokumen_kitas' => [ - 'judul' => 'Dokumen KITAS', - ], - 'ayah_nik' => [ - 'judul' => 'NIK Ayah', - ], - 'nama_ayah' => [ - 'judul' => 'Nama Ayah', - ], - 'ibu_nik' => [ - 'judul' => 'NIK Ibu', - ], - 'nama_ibu' => [ - 'judul' => 'Nama Ibu', - ], - 'golongan_darah_id' => [ - 'judul' => 'Golongan Darah', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_golongan_darah'), - ], - // id_cluster => wilayah, agar tdk duplikasi - 'wilayah' => [ - 'judul' => 'Wilayah (Dusun/RW/RT)', - ], - 'status' => [ - 'judul' => 'Status Penduduk', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_status'), - ], - 'alamat_sebelumnya' => [ - 'judul' => 'Alamat Sebelumnya', - ], - 'alamat_sekarang' => [ - 'judul' => 'Alamat Sekarang', - ], - 'status_dasar' => [ - 'judul' => 'Status Dasar', - 'referensi' => $this->referensi_model->list_data('tweb_status_dasar'), - ], - 'hamil' => [ - 'judul' => 'Status Kehamilan', - ], - 'cacat_id' => [ - 'judul' => 'Jenis Cacat', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_cacat'), - ], - 'sakit_menahun_id' => [ - 'judul' => 'Sakit Menahun', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_sakit_menahun'), - ], - 'akta_lahir' => [ - 'judul' => 'Akta Lahir', - ], - 'akta_perkawinan' => [ - 'judul' => 'Akta Perkawinan', - ], - 'tanggalperkawinan' => [ - 'judul' => 'Tanggal Perkawinan', - ], - 'akta_perceraian' => [ - 'judul' => 'Akta Perceraian', - ], - 'tanggalperceraian' => [ - 'judul' => 'Tanggal Perceraian', - ], - 'cara_kb_id' => [ - 'judul' => 'Akseptor KB', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_cara_kb'), - ], - 'telepon' => [ - 'judul' => 'Telepon', - ], - 'tanggal_akhir_paspor' => [ - 'judul' => 'Tanggal Akhir Paspor', - ], - 'no_kk_sebelumnya' => [ - 'judul' => 'No. KK Sebelumnya', - ], - 'ktp_el' => [ - 'judul' => 'E-KTP', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_status_ktp'), - ], - 'status_rekam' => [ - 'judul' => 'Status Rekam', - 'referensi' => $this->referensi_model->list_status_rekam(), - ], - 'waktu_lahir' => [ - 'judul' => 'Waktu Lahir', - ], - 'tempat_dilahirkan' => [ - 'judul' => 'Tempat Dilahirkan', - ], - 'jenis_kelahiran' => [ - 'judul' => 'Jenis Kelahiran', - ], - 'kelahiran_anak_ke' => [ - 'judul' => 'Kelahiran Anak Ke - ', - 'tipe' => 3, - ], - 'penolong_kelahiran' => [ - 'judul' => 'Penolong Kelahiran', - ], - 'berat_lahir' => [ - 'judul' => 'Berat lahir', - 'tipe' => 3, - ], - 'panjang_lahir' => [ - 'judul' => 'Panjang Lahir', - 'tipe' => 3, - ], - 'tag_id_card' => [ - 'judul' => 'Tag ID Card', - ], - 'id_asuransi' => [ - 'judul' => 'ID Asuransi', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_asuransi'), - ], - 'no_asuransi' => [ - 'judul' => 'No. Asusransi', - ], - 'email' => [ - 'judul' => 'Email', - ], - 'bahasa_id' => [ - 'judul' => 'Dapat Membaca Huruf', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('ref_penduduk_bahasa'), - ], - 'negara_asal' => [ - 'judul' => 'Negara Asal', - ], - 'tempat_cetak_ktp' => [ - 'judul' => 'Tempat Cetak KTP', - ], - 'tanggal_cetak_ktp' => [ - 'judul' => 'Tanggal Cetak KTP', - ], - 'suku' => [ - 'judul' => 'Suku/Etnis', - ], - 'bpjs_ketenagakerjaan' => [ - 'judul' => 'BPJS Ketenagakerjaan', - ], - ]; - break; - - // Keluarga - case 2: - $data = [ - 'nik_kepala' => [ - 'judul' => 'NIK Kepala KK', - ], - 'kelas_sosial' => [ - 'judul' => 'Kelas Sosial', - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_keluarga_sejahtera'), - ], - 'alamat' => [ - 'judul' => 'Alamat', - ], - // id_cluster => wilayah, agar tdk duplikasi - 'wilayah' => [ - 'judul' => 'Wilayah (Dusun/RW/RT)', - ], - ]; - break; - - // Desa - default: - - $desa = $this->setting->sebutan_desa; - $kepala = $this->setting->sebutan_kepala_desa; - - $data = [ - - // IDENTITAS DESA - 'nama_desa' => [ - 'judul' => 'Nama ' . $desa, - ], - 'kode_desa' => [ - 'judul' => 'Kode ' . $desa, - ], - 'kode_pos' => [ - 'judul' => 'Kode POS', - ], - 'nama_kepala_desa' => [ - 'judul' => 'Nama ' . $kepala, - ], - 'nip_kepala_desa' => [ - 'judul' => 'NIP ' . $kepala, - ], - 'jk_kepala_desa' => [ - 'judul' => 'Jenis Kelamin ' . $kepala, - 'tipe' => 1, - 'referensi' => $this->referensi_model->list_data('tweb_penduduk_sex'), - ], - 'titik_koordinat_desa' => [ - 'judul' => 'Titik Koordinat ' . $desa . ' (Lintang / Bujur)', - ], - 'alamat_kantor' => [ - 'judul' => 'Alamat Kantor', - ], - 'no_telepon_kepala_desa' => [ - 'judul' => 'Nomor Telepon Rumah / HP ' . $kepala, - ], - 'no_telepon_kantor_desa' => [ - 'judul' => 'Nomor Telepon Kantor ' . $desa, - ], - 'email_desa' => [ - 'judul' => 'Email ' . $desa, - ], - 'pendidikan_kepala_desa' => [ - 'judul' => 'Pendidikan Terakhir ' . $kepala, - ], - 'nama_kecamatan' => [ - 'judul' => 'Nama Kecamatan', - ], - 'kode_kecamatan' => [ - 'judul' => 'Kode Kecamatan', - ], - 'nama_kepala_camat' => [ - 'judul' => 'Nama Kepala Camat', - ], - 'nip_kepala_camat' => [ - 'judul' => 'NIP Kepala Camat', - ], - 'kode_kabupaten' => [ - 'judul' => 'Kode Kabupaten', - ], - 'nama_propinsi' => [ - 'judul' => 'Nama Provinsi', - ], - 'kode_propinsi' => [ - 'judul' => 'Kode Provinsi', - ], - - // DEMOGRAFI - // # Penduduk - 'jumlah_total_penduduk' => [ - 'judul' => 'Jumlah Total Penduduk', - ], - 'jumlah_penduduk_laki_laki' => [ - 'judul' => 'Jumlah Penduduk Laki-laki', - ], - 'jumlah_penduduk_perempuan' => [ - 'judul' => 'Jumlah Penduduk Perempuan', - ], - 'jumlah_penduduk_pedatang' => [ - 'judul' => 'Jumlah Penduduk Pendatang', - ], - 'jumlah_penduduk_yang_pergi' => [ - 'judul' => 'Jumlah Penduduk Yang Pergi', - ], - - // # Kepala Keluarga - 'jumlah_total_kepala_keluarga' => [ - 'judul' => 'Jumlah Total Kepala Keluarga', - ], - 'jumlah_kepala_keluarga_laki_laki' => [ - 'judul' => 'Jumlah Kepala Keluarga Laki-laki', - ], - 'jumlah_kepala_keluarga_perempuan' => [ - 'judul' => 'Jumlah Kepala Keluarga Perempuan', - ], - // 'jumlah_keluarga_miskin' => [ - // 'judul' => 'Jumlah Keluarga Miskin', - // ], - - // # Jumlah Penduduk Berdasarkan Struktur Usia - // 'jumlah_penduduk_kategori_usia' => [ - // 'judul' => 'Jumlah Penduduk Berdasarkan Struktur Usia', - // ], - - // # Jumlah Penduduk Berdasarkan Pekerjaan - // 'jumlah_penduduk_kategori_pekerjaan' => [ - // 'judul' => 'Jumlah Penduduk Berdasarkan Pekerjaan', - // ], - - // # Jumlah Warga Penyandang Kebutuhan Khusus - // 'jumlah_warga_kebutuhan_khusus' => [ - // 'judul' => 'Jumlah Warga Penyandang Kebutuhan Khusus', - // ], - - // Ketersediaan Saran Kesehatan - // 'sarana_kesehatan' => [ - // 'judul' => 'Sarana Kesehatan', - // 'tipe' => 1, - // 'referensi' => null, // Data diambil dari kategori tipe lokasi - // ], - - // Tingkat Kepesertaan BPJS (BPJS Kesehatan / JKN) - 'jumlah_peserta_bpjs' => [ - 'judul' => 'Jumlah Penduduk Terdaftar BPJS Kesehatan / JKN', - ], - - // Data Tingkat Pendidikan ??? - // 'pendidikan_penduduk_desa' => [ - // 'judul' => 'Tingkat Pendidikan Sebagian Besar Penduduk ' . $desa, - // 'tipe' => 1, - // 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan_kk'), - // ], - - // Data Keagamaan ??? - // 'agama_penduduk_desa' => [ - // 'judul' => 'Agama Mayoritas', - // 'tipe' => 1, - // 'referensi' => $this->referensi_model->list_data('tweb_penduduk_agama'), - // ], - ]; - break; - } - - return $data; - } -} +load->model('analisis_master_model'); + } + + public function autocomplete() + { + return $this->autocomplete_str('pertanyaan', 'analisis_indikator'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (u.pertanyaan LIKE '{$kw}' OR u.pertanyaan LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND u.act_analisis = {$kf}"; + + return $filter_sql; + } + } + + private function master_sql() + { + if (isset($_SESSION['analisis_master'])) { + $kf = $_SESSION['analisis_master']; + $filter_sql = " AND u.id_master = {$kf}"; + + return $filter_sql; + } + } + + private function tipe_sql() + { + if (isset($_SESSION['tipe'])) { + $kf = $_SESSION['tipe']; + $filter_sql = " AND u.id_tipe = {$kf}"; + + return $filter_sql; + } + } + + private function kategori_sql() + { + if (isset($_SESSION['kategori'])) { + $kf = $_SESSION['kategori']; + $filter_sql = " AND u.id_kategori = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(id) AS id FROM analisis_indikator u WHERE 1'; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + $sql .= $this->master_sql(); + $sql .= $this->tipe_sql(); + $sql .= $this->kategori_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['id']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY LPAD(u.nomor, 10, " ")'; + break; + + case 2: $order_sql = ' ORDER BY LPAD(u.nomor, 10, " ") DESC'; + break; + + case 3: $order_sql = ' ORDER BY u.pertanyaan'; + break; + + case 4: $order_sql = ' ORDER BY u.pertanyaan DESC'; + break; + + case 5: $order_sql = ' ORDER BY u.id_kategori'; + break; + + case 6: $order_sql = ' ORDER BY u.id_kategori DESC'; + break; + + default:$order_sql = ' ORDER BY LPAD(u.nomor, 10, " ")'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + $sql = 'SELECT u.*,t.tipe AS tipe_indikator,k.kategori AS kategori FROM analisis_indikator u LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id WHERE 1 '; + + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + $sql .= $this->master_sql(); + $sql .= $this->tipe_sql(); + $sql .= $this->kategori_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + if ($data[$i]['act_analisis'] == 1) { + $data[$i]['act_analisis'] = 'Ya'; + } else { + $data[$i]['act_analisis'] = 'Tidak'; + } + $j++; + } + + return $data; + } + + private function validasi_data($post) + { + $data = [ + 'id_tipe' => $post['id_tipe'], + 'referensi' => $post['referensi'] ?? null, + 'nomor' => nomor_surat_keputusan($post['nomor']), + 'pertanyaan' => htmlentities($post['pertanyaan']), + 'id_kategori' => $post['id_kategori'] ?? null, + 'bobot' => bilangan($post['bobot']), + 'act_analisis' => $post['act_analisis'], + 'is_publik' => $post['is_publik'], + ]; + + if ($data['id_tipe'] != 1) { + $data['act_analisis'] = 2; + $data['bobot'] = 0; + } + + return $data; + } + + public function insert() + { + // Analisis sistem tidak boleh diubah + if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { + return; + } + + $data = $this->validasi_data($this->input->post()); + + $data['id_master'] = $this->session->analisis_master; + $outp = $this->db->insert('analisis_indikator', $data); + $id = $this->db->insert_id(); + + // Tambahkan Isi dari pertanyaan berdasarkan referensi + if ($id && $data['id_tipe'] == 1) { + $referensi = $this->data_tabel($this->session->subjek_tipe)[$data['referensi']]['referensi']; + if ($referensi) { + foreach ($referensi as $value) { + $insert['kode_jawaban'] = bilangan($value['id']); + $insert['jawaban'] = htmlentities($value['nama']); + $insert['nilai'] = 1; + $this->p_insert($id, $insert); + } + } + } + + status_sukses($outp); //Tampilkan Pesan + } + + private function update_indikator_sistem($id) + { + // Hanya kolom yang boleh diubah untuk analisis sistem + $data['is_publik'] = $_POST['is_publik']; + $this->db->where('id', $id)->update('analisis_indikator', $data); + $this->session->success = 1; + } + + public function update($id = 0) + { + if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { + $this->update_indikator_sistem($id); + + return; + } + + $data = $this->validasi_data($this->input->post()); + + $data['id_master'] = $this->session->analisis_master; + $outp = $this->db->where('id', $id)->update('analisis_indikator', $data); + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = 0, $semua = false) + { + // Analisis sistem tidak boleh dihapus + if ($this->analisis_master_model->is_analisis_sistem($_SESSION['analisis_master'])) { + return; + } + + // Hapus data analisis master + $outp = $this->db->where('id_indikator', $id)->delete('analisis_parameter'); + + if (! $semua) { + $this->session->success = 1; + } + $outp = $this->db->where('id', $id)->delete('analisis_indikator'); + + status_sukses($outp, true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, true); + } + } + + private function validasi_parameter($post) + { + return [ + 'kode_jawaban' => bilangan($post['kode_jawaban']), + 'jawaban' => htmlentities($post['jawaban']), + 'nilai' => bilangan($post['nilai']), + ]; + } + + public function p_insert($in = 0, $data_referensi = null) + { + // Analisis sistem tidak boleh diubah + if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master)) { + return; + } + + $data = $data_referensi ?? $this->validasi_parameter($this->input->post()); + $data['id_indikator'] = $in; + $outp = $this->db->insert('analisis_parameter', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function p_update($id = 0) + { + $data = $this->validasi_parameter($this->input->post()); + // Analisis sistem hanya kolom tertentu boleh diubah + if ($this->analisis_master_model->is_analisis_sistem($this->session->analisis_master) || $this->input->post('referensi')) { + unset($data['kode_jawaban'], $data['jawaban']); + } + $this->db->where('id', $id); + $outp = $this->db->update('analisis_parameter', $data); + status_sukses($outp); //Tampilkan Pesan + } + + public function p_delete($id = 0) + { + $this->session->success = 1; + // Analisis sistem tidak boleh dihapus + if ($this->analisis_master_model->is_analisis_sistem($_SESSION['analisis_master'])) { + return; + } + + $outp = $this->db->where('id', $id)->delete('analisis_parameter'); + + status_sukses($outp, true); //Tampilkan Pesan + } + + public function p_delete_all() + { + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->p_delete($id); + } + } + + public function list_indikator($id = 0) + { + return $this->db + ->get_where('analisis_parameter', ['id_indikator' => $id]) + ->result_array(); + } + + public function get_analisis_indikator($id = 0) + { + return $this->db + ->get_where('analisis_indikator', ['id' => $id]) + ->row_array(); + } + + public function get_analisis_parameter($id = 0) + { + return $this->db + ->get_where('analisis_parameter', ['id' => $id]) + ->row_array(); + } + + public function list_tipe() + { + return $this->db + ->get('analisis_tipe_indikator') + ->result_array(); + } + + // TODO: pindahkan ke analisis_kategori_model + public function list_kategori() + { + $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1'; + $sql .= $this->master_sql(); + $query = $this->db->query($sql); + + return $query->result_array(); + } + + public function raw_analisis_indikator_by_id_master($id = 0) + { + return $this->db + ->select('i.*, k.kategori') + ->from('analisis_indikator i') + ->join('analisis_kategori_indikator k', 'k.id = i.id_kategori', 'left') + ->where('i.id_master', $id) + ->get('')->result_array(); + } + + public function get_analisis_indikator_by_id_master($id = 0) + { + $result = []; + $list_indikator = []; + $list_parameter = []; + + $raw_indikator = $this->db + ->select('i.*') + ->from('analisis_indikator i') + ->where('i.id_master', $id) + ->get('')->result_array(); + + // Setting key array sesuai id + foreach ($raw_indikator as $val_indikator) { + $list_indikator[$val_indikator['id']] = $val_indikator['pertanyaan']; + + $temp_parameter = []; + + $raw_parameter = $this->db->where('id_indikator', $val_indikator['id'])->get('analisis_parameter')->result_array(); + + foreach ($raw_parameter as $val_parameter) { + $temp_parameter[$val_parameter['id']] = $val_parameter['jawaban']; + } + + $list_parameter[$val_indikator['id']] = $temp_parameter; + } + + return [ + 'indikator' => $list_indikator, + 'parameter' => $list_parameter, + ]; + } + + public function data_tabel($sasaran) + { + $this->load->model('referensi_model'); + + switch ($sasaran) { + /* + * Keterangan Tipe : + * 1 => Pilihan (Tunggal) + * 2 => Pilihan (Ganda) + * 3 => Isian Jumlah (Kuantitatif) / Isian berupa angka + * 4 => Isian Teks + */ + + // Penduduk + case 1: + $data = [ + 'kk_level' => [ + 'judul' => 'Hubungan Dalam Keluarga', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_hubungan'), + ], + 'rtm_level' => [ + 'judul' => 'Hubungan Dalam Rumah Tangga', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_rtm_hubungan'), + ], + 'sex' => [ + 'judul' => 'Jenis Kelamin', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_sex'), + ], + 'tempatlahir' => [ + 'judul' => 'Tempat Lahir', + ], + 'tanggallahir' => [ + 'judul' => 'Tanggal Lahir', + ], + 'agama_id' => [ + 'judul' => 'Agama', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_agama'), + ], + 'pendidikan_kk_id' => [ + 'judul' => 'Pendidikan Dalam KK', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan_kk'), + ], + 'pendidikan_sedang_id' => [ + 'judul' => 'Pendidikan Sedang Ditempuh', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan'), + ], + 'pekerjaan_id' => [ + 'judul' => 'Pekerjaan', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pekerjaan'), + ], + 'status_kawin' => [ + 'judul' => 'Status_perkawinan', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_kawin'), + ], + 'warganegara_id' => [ + 'judul' => 'Kewarganegaraan', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_warganegara'), + ], + 'dokumen_pasport' => [ + 'judul' => 'Dokumen Passport', + ], + 'dokumen_kitas' => [ + 'judul' => 'Dokumen KITAS', + ], + 'ayah_nik' => [ + 'judul' => 'NIK Ayah', + ], + 'nama_ayah' => [ + 'judul' => 'Nama Ayah', + ], + 'ibu_nik' => [ + 'judul' => 'NIK Ibu', + ], + 'nama_ibu' => [ + 'judul' => 'Nama Ibu', + ], + 'golongan_darah_id' => [ + 'judul' => 'Golongan Darah', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_golongan_darah'), + ], + // id_cluster => wilayah, agar tdk duplikasi + 'wilayah' => [ + 'judul' => 'Wilayah (Dusun/RW/RT)', + ], + 'status' => [ + 'judul' => 'Status Penduduk', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_status'), + ], + 'alamat_sebelumnya' => [ + 'judul' => 'Alamat Sebelumnya', + ], + 'alamat_sekarang' => [ + 'judul' => 'Alamat Sekarang', + ], + 'status_dasar' => [ + 'judul' => 'Status Dasar', + 'referensi' => $this->referensi_model->list_data('tweb_status_dasar'), + ], + 'hamil' => [ + 'judul' => 'Status Kehamilan', + ], + 'cacat_id' => [ + 'judul' => 'Jenis Cacat', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_cacat'), + ], + 'sakit_menahun_id' => [ + 'judul' => 'Sakit Menahun', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_sakit_menahun'), + ], + 'akta_lahir' => [ + 'judul' => 'Akta Lahir', + ], + 'akta_perkawinan' => [ + 'judul' => 'Akta Perkawinan', + ], + 'tanggalperkawinan' => [ + 'judul' => 'Tanggal Perkawinan', + ], + 'akta_perceraian' => [ + 'judul' => 'Akta Perceraian', + ], + 'tanggalperceraian' => [ + 'judul' => 'Tanggal Perceraian', + ], + 'cara_kb_id' => [ + 'judul' => 'Akseptor KB', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_cara_kb'), + ], + 'telepon' => [ + 'judul' => 'Telepon', + ], + 'tanggal_akhir_paspor' => [ + 'judul' => 'Tanggal Akhir Paspor', + ], + 'no_kk_sebelumnya' => [ + 'judul' => 'No. KK Sebelumnya', + ], + 'ktp_el' => [ + 'judul' => 'E-KTP', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_status_ktp'), + ], + 'status_rekam' => [ + 'judul' => 'Status Rekam', + 'referensi' => $this->referensi_model->list_status_rekam(), + ], + 'waktu_lahir' => [ + 'judul' => 'Waktu Lahir', + ], + 'tempat_dilahirkan' => [ + 'judul' => 'Tempat Dilahirkan', + ], + 'jenis_kelahiran' => [ + 'judul' => 'Jenis Kelahiran', + ], + 'kelahiran_anak_ke' => [ + 'judul' => 'Kelahiran Anak Ke - ', + 'tipe' => 3, + ], + 'penolong_kelahiran' => [ + 'judul' => 'Penolong Kelahiran', + ], + 'berat_lahir' => [ + 'judul' => 'Berat lahir', + 'tipe' => 3, + ], + 'panjang_lahir' => [ + 'judul' => 'Panjang Lahir', + 'tipe' => 3, + ], + 'tag_id_card' => [ + 'judul' => 'Tag ID Card', + ], + 'id_asuransi' => [ + 'judul' => 'ID Asuransi', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_asuransi'), + ], + 'no_asuransi' => [ + 'judul' => 'No. Asusransi', + ], + 'email' => [ + 'judul' => 'Email', + ], + 'bahasa_id' => [ + 'judul' => 'Dapat Membaca Huruf', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('ref_penduduk_bahasa'), + ], + 'negara_asal' => [ + 'judul' => 'Negara Asal', + ], + 'tempat_cetak_ktp' => [ + 'judul' => 'Tempat Cetak KTP', + ], + 'tanggal_cetak_ktp' => [ + 'judul' => 'Tanggal Cetak KTP', + ], + 'suku' => [ + 'judul' => 'Suku/Etnis', + ], + 'bpjs_ketenagakerjaan' => [ + 'judul' => 'BPJS Ketenagakerjaan', + ], + ]; + break; + + // Keluarga + case 2: + $data = [ + 'nik_kepala' => [ + 'judul' => 'NIK Kepala KK', + ], + 'kelas_sosial' => [ + 'judul' => 'Kelas Sosial', + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_keluarga_sejahtera'), + ], + 'alamat' => [ + 'judul' => 'Alamat', + ], + // id_cluster => wilayah, agar tdk duplikasi + 'wilayah' => [ + 'judul' => 'Wilayah (Dusun/RW/RT)', + ], + ]; + break; + + // Desa + default: + + $desa = $this->setting->sebutan_desa; + $kepala = $this->setting->sebutan_kepala_desa; + + $data = [ + + // IDENTITAS DESA + 'nama_desa' => [ + 'judul' => 'Nama ' . $desa, + ], + 'kode_desa' => [ + 'judul' => 'Kode ' . $desa, + ], + 'kode_pos' => [ + 'judul' => 'Kode POS', + ], + 'nama_kepala_desa' => [ + 'judul' => 'Nama ' . $kepala, + ], + 'nip_kepala_desa' => [ + 'judul' => 'NIP ' . $kepala, + ], + 'jk_kepala_desa' => [ + 'judul' => 'Jenis Kelamin ' . $kepala, + 'tipe' => 1, + 'referensi' => $this->referensi_model->list_data('tweb_penduduk_sex'), + ], + 'titik_koordinat_desa' => [ + 'judul' => 'Titik Koordinat ' . $desa . ' (Lintang / Bujur)', + ], + 'alamat_kantor' => [ + 'judul' => 'Alamat Kantor', + ], + 'no_telepon_kepala_desa' => [ + 'judul' => 'Nomor Telepon Rumah / HP ' . $kepala, + ], + 'no_telepon_kantor_desa' => [ + 'judul' => 'Nomor Telepon Kantor ' . $desa, + ], + 'email_desa' => [ + 'judul' => 'Email ' . $desa, + ], + 'pendidikan_kepala_desa' => [ + 'judul' => 'Pendidikan Terakhir ' . $kepala, + ], + 'nama_kecamatan' => [ + 'judul' => 'Nama Kecamatan', + ], + 'kode_kecamatan' => [ + 'judul' => 'Kode Kecamatan', + ], + 'nama_kepala_camat' => [ + 'judul' => 'Nama Kepala Camat', + ], + 'nip_kepala_camat' => [ + 'judul' => 'NIP Kepala Camat', + ], + 'kode_kabupaten' => [ + 'judul' => 'Kode Kabupaten', + ], + 'nama_propinsi' => [ + 'judul' => 'Nama Provinsi', + ], + 'kode_propinsi' => [ + 'judul' => 'Kode Provinsi', + ], + + // DEMOGRAFI + // # Penduduk + 'jumlah_total_penduduk' => [ + 'judul' => 'Jumlah Total Penduduk', + ], + 'jumlah_penduduk_laki_laki' => [ + 'judul' => 'Jumlah Penduduk Laki-laki', + ], + 'jumlah_penduduk_perempuan' => [ + 'judul' => 'Jumlah Penduduk Perempuan', + ], + 'jumlah_penduduk_pedatang' => [ + 'judul' => 'Jumlah Penduduk Pendatang', + ], + 'jumlah_penduduk_yang_pergi' => [ + 'judul' => 'Jumlah Penduduk Yang Pergi', + ], + + // # Kepala Keluarga + 'jumlah_total_kepala_keluarga' => [ + 'judul' => 'Jumlah Total Kepala Keluarga', + ], + 'jumlah_kepala_keluarga_laki_laki' => [ + 'judul' => 'Jumlah Kepala Keluarga Laki-laki', + ], + 'jumlah_kepala_keluarga_perempuan' => [ + 'judul' => 'Jumlah Kepala Keluarga Perempuan', + ], + // 'jumlah_keluarga_miskin' => [ + // 'judul' => 'Jumlah Keluarga Miskin', + // ], + + // # Jumlah Penduduk Berdasarkan Struktur Usia + // 'jumlah_penduduk_kategori_usia' => [ + // 'judul' => 'Jumlah Penduduk Berdasarkan Struktur Usia', + // ], + + // # Jumlah Penduduk Berdasarkan Pekerjaan + // 'jumlah_penduduk_kategori_pekerjaan' => [ + // 'judul' => 'Jumlah Penduduk Berdasarkan Pekerjaan', + // ], + + // # Jumlah Warga Penyandang Kebutuhan Khusus + // 'jumlah_warga_kebutuhan_khusus' => [ + // 'judul' => 'Jumlah Warga Penyandang Kebutuhan Khusus', + // ], + + // Ketersediaan Saran Kesehatan + // 'sarana_kesehatan' => [ + // 'judul' => 'Sarana Kesehatan', + // 'tipe' => 1, + // 'referensi' => null, // Data diambil dari kategori tipe lokasi + // ], + + // Tingkat Kepesertaan BPJS (BPJS Kesehatan / JKN) + 'jumlah_peserta_bpjs' => [ + 'judul' => 'Jumlah Penduduk Terdaftar BPJS Kesehatan / JKN', + ], + + // Data Tingkat Pendidikan ??? + // 'pendidikan_penduduk_desa' => [ + // 'judul' => 'Tingkat Pendidikan Sebagian Besar Penduduk ' . $desa, + // 'tipe' => 1, + // 'referensi' => $this->referensi_model->list_data('tweb_penduduk_pendidikan_kk'), + // ], + + // Data Keagamaan ??? + // 'agama_penduduk_desa' => [ + // 'judul' => 'Agama Mayoritas', + // 'tipe' => 1, + // 'referensi' => $this->referensi_model->list_data('tweb_penduduk_agama'), + // ], + ]; + break; + } + + return $data; + } +} diff --git a/donjo-app/models/Analisis_kategori_model.php b/donjo-app/models/Analisis_kategori_model.php index a0d9e96ba0..06e28bbb5e 100644 --- a/donjo-app/models/Analisis_kategori_model.php +++ b/donjo-app/models/Analisis_kategori_model.php @@ -1,174 +1,174 @@ -autocomplete_str('kategori', 'analisis_kategori_indikator'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND u.kategori LIKE '{$kw}'"; - - return $search_sql; - } - } - - private function master_sql() - { - if (isset($_SESSION['analisis_master'])) { - $kf = $_SESSION['analisis_master']; - $filter_sql = " AND u.id_master = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(id) AS id FROM analisis_kategori_indikator u WHERE 1'; - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['id']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 3: $order_sql = ' ORDER BY u.kategori'; - break; - - case 4: $order_sql = ' ORDER BY u.kategori DESC'; - break; - - default:$order_sql = ' ORDER BY u.kategori'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1 '; - - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - $j++; - } - - return $data; - } - - public function insert() - { - $data = []; - $data['id_master'] = $this->session->analisis_master; - $data['kategori'] = htmlentities($this->input->post('kategori')); - $outp = $this->db->insert('analisis_kategori_indikator', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = []; - $data['id_master'] = $this->session->analisis_master; - $data['kategori'] = htmlentities($this->input->post('kategori')); - $this->db->where('id', $id); - $outp = $this->db->update('analisis_kategori_indikator', $data); - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('analisis_kategori_indikator'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function get_analisis_kategori($id = 0) - { - $sql = 'SELECT * FROM analisis_kategori_indikator WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } -} +autocomplete_str('kategori', 'analisis_kategori_indikator'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND u.kategori LIKE '{$kw}'"; + + return $search_sql; + } + } + + private function master_sql() + { + if (isset($_SESSION['analisis_master'])) { + $kf = $_SESSION['analisis_master']; + $filter_sql = " AND u.id_master = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(id) AS id FROM analisis_kategori_indikator u WHERE 1'; + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['id']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 3: $order_sql = ' ORDER BY u.kategori'; + break; + + case 4: $order_sql = ' ORDER BY u.kategori DESC'; + break; + + default:$order_sql = ' ORDER BY u.kategori'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1 '; + + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + $j++; + } + + return $data; + } + + public function insert() + { + $data = []; + $data['id_master'] = $this->session->analisis_master; + $data['kategori'] = htmlentities($this->input->post('kategori')); + $outp = $this->db->insert('analisis_kategori_indikator', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = []; + $data['id_master'] = $this->session->analisis_master; + $data['kategori'] = htmlentities($this->input->post('kategori')); + $this->db->where('id', $id); + $outp = $this->db->update('analisis_kategori_indikator', $data); + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('analisis_kategori_indikator'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function get_analisis_kategori($id = 0) + { + $sql = 'SELECT * FROM analisis_kategori_indikator WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } +} diff --git a/donjo-app/models/Analisis_klasifikasi_model.php b/donjo-app/models/Analisis_klasifikasi_model.php index 4a95aee8db..7618d8c748 100644 --- a/donjo-app/models/Analisis_klasifikasi_model.php +++ b/donjo-app/models/Analisis_klasifikasi_model.php @@ -1,203 +1,203 @@ -autocomplete_str('nama', 'analisis_klasifikasi'); - } - - public function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (u.nama LIKE '{$kw}')"; - - return $search_sql; - } - } - - public function master_sql() - { - if (isset($_SESSION['analisis_master'])) { - $kf = $_SESSION['analisis_master']; - $filter_sql = " AND u.id_master = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(id) AS id FROM analisis_klasifikasi u WHERE 1'; - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['id']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY u.minval'; - break; - - case 2: $order_sql = ' ORDER BY u.minval DESC'; - break; - - case 3: $order_sql = ' ORDER BY u.minval'; - break; - - case 4: $order_sql = ' ORDER BY u.minval DESC'; - break; - - case 5: $order_sql = ' ORDER BY g.minval'; - break; - - case 6: $order_sql = ' ORDER BY g.minval DESC'; - break; - - default:$order_sql = ' ORDER BY u.minval'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT u.* FROM analisis_klasifikasi u WHERE 1 '; - - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - $j++; - } - - return $data; - } - - private function validasi_data($post) - { - return [ - 'nama' => nomor_surat_keputusan($post['nama']), - 'minval' => bilangan_titik($post['minval']), - 'maxval' => bilangan_titik($post['maxval']), - 'id_master' => $this->session->analisis_master, - ]; - } - - public function insert() - { - $data = $this->validasi_data($this->input->post()); - $outp = $this->db->insert('analisis_klasifikasi', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->validasi_data($this->input->post()); - $outp = $this->db->where('id', $id)->update('analisis_klasifikasi', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('analisis_klasifikasi'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function get_analisis_klasifikasi($id = 0) - { - $sql = 'SELECT * FROM analisis_klasifikasi WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } - - public function list_klasifikasi_by_id_master($id_master) - { - return $this->db - ->select('nama, minval, maxval') - ->from('analisis_klasifikasi') - ->where('id_master', $id_master) - ->order_by('id') - ->get()->result_array(); - } -} +autocomplete_str('nama', 'analisis_klasifikasi'); + } + + public function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (u.nama LIKE '{$kw}')"; + + return $search_sql; + } + } + + public function master_sql() + { + if (isset($_SESSION['analisis_master'])) { + $kf = $_SESSION['analisis_master']; + $filter_sql = " AND u.id_master = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(id) AS id FROM analisis_klasifikasi u WHERE 1'; + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['id']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY u.minval'; + break; + + case 2: $order_sql = ' ORDER BY u.minval DESC'; + break; + + case 3: $order_sql = ' ORDER BY u.minval'; + break; + + case 4: $order_sql = ' ORDER BY u.minval DESC'; + break; + + case 5: $order_sql = ' ORDER BY g.minval'; + break; + + case 6: $order_sql = ' ORDER BY g.minval DESC'; + break; + + default:$order_sql = ' ORDER BY u.minval'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT u.* FROM analisis_klasifikasi u WHERE 1 '; + + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + $j++; + } + + return $data; + } + + private function validasi_data($post) + { + return [ + 'nama' => nomor_surat_keputusan($post['nama']), + 'minval' => bilangan_titik($post['minval']), + 'maxval' => bilangan_titik($post['maxval']), + 'id_master' => $this->session->analisis_master, + ]; + } + + public function insert() + { + $data = $this->validasi_data($this->input->post()); + $outp = $this->db->insert('analisis_klasifikasi', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->validasi_data($this->input->post()); + $outp = $this->db->where('id', $id)->update('analisis_klasifikasi', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('analisis_klasifikasi'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function get_analisis_klasifikasi($id = 0) + { + $sql = 'SELECT * FROM analisis_klasifikasi WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } + + public function list_klasifikasi_by_id_master($id_master) + { + return $this->db + ->select('nama, minval, maxval') + ->from('analisis_klasifikasi') + ->where('id_master', $id_master) + ->order_by('id') + ->get()->result_array(); + } +} diff --git a/donjo-app/models/Analisis_master_model.php b/donjo-app/models/Analisis_master_model.php index 37fff384f4..6ed116e395 100644 --- a/donjo-app/models/Analisis_master_model.php +++ b/donjo-app/models/Analisis_master_model.php @@ -1,313 +1,313 @@ -load->model('referensi_model'); - $this->analisis_master = $this->get_analisis_master($this->session->analisis_master); - $this->periode = $this->get_periode(); - } - - public function autocomplete() - { - return $this->autocomplete_str('nama', 'analisis_master'); - } - - private function search_sql() - { - if (empty($cari = $this->session->cari)) { - return; - } - - $this->db - ->like('u.nama', $cari); - } - - private function filter_sql() - { - if (empty($kf = $this->session->filter)) { - return; - } - - $this->db - ->where('u.subjek_tipe', $kf); - } - - private function state_sql() - { - if (empty($kf = $this->session->state)) { - return; - } - - $this->db - ->where('u.lock', $kf); - } - - public function paging($p = 1, $o = 0) - { - $this->list_data_query(); - $jml_data = $this->db->select('COUNT(u.id) as jml_data') - ->get()->row()->jml_data; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_query() - { - $this->db - ->from('analisis_master u') - ->join('analisis_ref_subjek s', 'u.subjek_tipe = s.id', 'left'); - $this->search_sql(); - $this->filter_sql(); - $this->state_sql(); - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $desa = ucwords($this->setting->sebutan_desa); - $this->db->select('u.*') - ->select("(case when u.subjek_tipe = 5 then '{$desa}' else s.subjek end) as subjek"); - $this->list_data_query(); - - switch ($o) { - case 1: $this->db->order_by('u.lock'); - break; - - case 2: $this->db->order_by('u.lock DESC'); - break; - - case 3: $this->db->order_by('u.nama'); - break; - - case 4: $this->db->order_by('u.nama DESC'); - break; - - case 5: $this->db->order_by('s.subjek'); - break; - - case 6: $this->db->order_by('s.subjek DESC'); - break; - - default:$this->db->order_by('u.id'); - } - if ($limit > 0) { - $this->db->limit($limit, $offset); - } - - $data = $this->db->get()->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - if ($data[$i]['lock'] == 1) { - $data[$i]['lock'] = ""; - } else { - $data[$i]['lock'] = ""; - } - $j++; - } - - return $data; - } - - private function sterilkan_data($post) - { - $data = []; - $data['nama'] = alfanumerik_spasi($post['nama']); - $data['subjek_tipe'] = $post['subjek_tipe']; - $data['id_kelompok'] = $post['id_kelompok'] ?: null; - $data['lock'] = $post['lock'] ?: null; - $data['format_impor'] = $post['format_impor'] ?: null; - $data['pembagi'] = bilangan_titik($post['pembagi']); - $data['id_child'] = $post['id_child'] ?: null; - $data['deskripsi'] = htmlentities($post['deskripsi']); - - return $data; - } - - public function insert() - { - $data = $this->sterilkan_data($this->input->post()); - $outp = $this->db->insert('analisis_master', $data); - status_sukses($outp); - } - - public function update($id = 0) - { - $data = $this->sterilkan_data($this->input->post()); - // Kolom yang tidak boleh diubah untuk analisis sistem - if ($this->is_analisis_sistem($id)) { - unset($data['subjek_tipe'], $data['lock'], $data['format_impor']); - } - $this->db->where('id', $id); - $outp = $this->db->update('analisis_master', $data); - status_sukses($outp); - } - - public function is_analisis_sistem($id) - { - $jenis = $this->db->select('jenis')->where('id', $id) - ->get('analisis_master')->row()->jenis; - - return $jenis == 1; - } - - public function delete($id = '', $semua = false) - { - if ($this->is_analisis_sistem($id)) { - return; - } // Jangan hapus analisis sistem - - if (! $semua) { - $this->session->success = 1; - } - $this->sub_delete($id); - - $outp = $this->db->where('id', $id)->delete('analisis_master'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - // TODO: tambahkan relational constraint supaya data analisis terhapus secara otomatis oleh DB - private function sub_delete($id = '') - { - $sql = 'DELETE FROM analisis_parameter WHERE id_indikator IN(SELECT id FROM analisis_indikator WHERE id_master = ?)'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_respon WHERE id_periode IN(SELECT id FROM analisis_periode WHERE id_master = ?)'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_kategori_indikator WHERE id_master = ?'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_klasifikasi WHERE id_master = ?'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_respon_hasil WHERE id_master = ?'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_partisipasi WHERE id_master = ?'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_periode WHERE id_master = ?'; - $this->db->query($sql, $id); - - $sql = 'DELETE FROM analisis_indikator WHERE id_master = ?'; - $this->db->query($sql, $id); - } - - public function get_analisis_master($id = 0) - { - return $this->db - ->select('u.*, s.subjek as subjek_nama') - ->from('analisis_master u') - ->join('analisis_ref_subjek s', 'u.subjek_tipe = s.id', 'left') - ->where('u.id', $id) - ->get() - ->row_array(); - } - - // periode aktif - public function get_periode($id = null) - { - $id = $id ?: $this->session->analisis_master; - - return $this->db - ->select('*') - ->from('analisis_periode') - ->where('aktif', 1) - ->where('id_master', $id) - ->get()->row(); - } - - // id dari periode aktif - public function get_aktif_periode() - { - return $this->periode->id; - } - - public function list_subjek() - { - $subjek = $this->referensi_model->list_data('analisis_ref_subjek'); - $desa = array_search('5', array_column($subjek, 'id'), true); - $subjek[$desa]['subjek'] = ucwords($this->setting->sebutan_desa); - - return $subjek; - } - - public function list_kelompok() - { - $sql = 'SELECT * FROM kelompok_master'; - $query = $this->db->query($sql); - - return $query->result_array(); - } - - public function list_analisis_child() - { - $sql = 'SELECT * FROM analisis_master WHERE subjek_tipe = 1'; - $query = $this->db->query($sql); - - return $query->result_array(); - } -} +load->model('referensi_model'); + $this->analisis_master = $this->get_analisis_master($this->session->analisis_master); + $this->periode = $this->get_periode(); + } + + public function autocomplete() + { + return $this->autocomplete_str('nama', 'analisis_master'); + } + + private function search_sql() + { + if (empty($cari = $this->session->cari)) { + return; + } + + $this->db + ->like('u.nama', $cari); + } + + private function filter_sql() + { + if (empty($kf = $this->session->filter)) { + return; + } + + $this->db + ->where('u.subjek_tipe', $kf); + } + + private function state_sql() + { + if (empty($kf = $this->session->state)) { + return; + } + + $this->db + ->where('u.lock', $kf); + } + + public function paging($p = 1, $o = 0) + { + $this->list_data_query(); + $jml_data = $this->db->select('COUNT(u.id) as jml_data') + ->get()->row()->jml_data; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_query() + { + $this->db + ->from('analisis_master u') + ->join('analisis_ref_subjek s', 'u.subjek_tipe = s.id', 'left'); + $this->search_sql(); + $this->filter_sql(); + $this->state_sql(); + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $desa = ucwords($this->setting->sebutan_desa); + $this->db->select('u.*') + ->select("(case when u.subjek_tipe = 5 then '{$desa}' else s.subjek end) as subjek"); + $this->list_data_query(); + + switch ($o) { + case 1: $this->db->order_by('u.lock'); + break; + + case 2: $this->db->order_by('u.lock DESC'); + break; + + case 3: $this->db->order_by('u.nama'); + break; + + case 4: $this->db->order_by('u.nama DESC'); + break; + + case 5: $this->db->order_by('s.subjek'); + break; + + case 6: $this->db->order_by('s.subjek DESC'); + break; + + default:$this->db->order_by('u.id'); + } + if ($limit > 0) { + $this->db->limit($limit, $offset); + } + + $data = $this->db->get()->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + if ($data[$i]['lock'] == 1) { + $data[$i]['lock'] = ""; + } else { + $data[$i]['lock'] = ""; + } + $j++; + } + + return $data; + } + + private function sterilkan_data($post) + { + $data = []; + $data['nama'] = alfanumerik_spasi($post['nama']); + $data['subjek_tipe'] = $post['subjek_tipe']; + $data['id_kelompok'] = $post['id_kelompok'] ?: null; + $data['lock'] = $post['lock'] ?: null; + $data['format_impor'] = $post['format_impor'] ?: null; + $data['pembagi'] = bilangan_titik($post['pembagi']); + $data['id_child'] = $post['id_child'] ?: null; + $data['deskripsi'] = htmlentities($post['deskripsi']); + + return $data; + } + + public function insert() + { + $data = $this->sterilkan_data($this->input->post()); + $outp = $this->db->insert('analisis_master', $data); + status_sukses($outp); + } + + public function update($id = 0) + { + $data = $this->sterilkan_data($this->input->post()); + // Kolom yang tidak boleh diubah untuk analisis sistem + if ($this->is_analisis_sistem($id)) { + unset($data['subjek_tipe'], $data['lock'], $data['format_impor']); + } + $this->db->where('id', $id); + $outp = $this->db->update('analisis_master', $data); + status_sukses($outp); + } + + public function is_analisis_sistem($id) + { + $jenis = $this->db->select('jenis')->where('id', $id) + ->get('analisis_master')->row()->jenis; + + return $jenis == 1; + } + + public function delete($id = '', $semua = false) + { + if ($this->is_analisis_sistem($id)) { + return; + } // Jangan hapus analisis sistem + + if (! $semua) { + $this->session->success = 1; + } + $this->sub_delete($id); + + $outp = $this->db->where('id', $id)->delete('analisis_master'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + // TODO: tambahkan relational constraint supaya data analisis terhapus secara otomatis oleh DB + private function sub_delete($id = '') + { + $sql = 'DELETE FROM analisis_parameter WHERE id_indikator IN(SELECT id FROM analisis_indikator WHERE id_master = ?)'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_respon WHERE id_periode IN(SELECT id FROM analisis_periode WHERE id_master = ?)'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_kategori_indikator WHERE id_master = ?'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_klasifikasi WHERE id_master = ?'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_respon_hasil WHERE id_master = ?'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_partisipasi WHERE id_master = ?'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_periode WHERE id_master = ?'; + $this->db->query($sql, $id); + + $sql = 'DELETE FROM analisis_indikator WHERE id_master = ?'; + $this->db->query($sql, $id); + } + + public function get_analisis_master($id = 0) + { + return $this->db + ->select('u.*, s.subjek as subjek_nama') + ->from('analisis_master u') + ->join('analisis_ref_subjek s', 'u.subjek_tipe = s.id', 'left') + ->where('u.id', $id) + ->get() + ->row_array(); + } + + // periode aktif + public function get_periode($id = null) + { + $id = $id ?: $this->session->analisis_master; + + return $this->db + ->select('*') + ->from('analisis_periode') + ->where('aktif', 1) + ->where('id_master', $id) + ->get()->row(); + } + + // id dari periode aktif + public function get_aktif_periode() + { + return $this->periode->id; + } + + public function list_subjek() + { + $subjek = $this->referensi_model->list_data('analisis_ref_subjek'); + $desa = array_search('5', array_column($subjek, 'id'), true); + $subjek[$desa]['subjek'] = ucwords($this->setting->sebutan_desa); + + return $subjek; + } + + public function list_kelompok() + { + $sql = 'SELECT * FROM kelompok_master'; + $query = $this->db->query($sql); + + return $query->result_array(); + } + + public function list_analisis_child() + { + $sql = 'SELECT * FROM analisis_master WHERE subjek_tipe = 1'; + $query = $this->db->query($sql); + + return $query->result_array(); + } +} diff --git a/donjo-app/models/Analisis_periode_model.php b/donjo-app/models/Analisis_periode_model.php index 6459dcc089..7c9df54405 100644 --- a/donjo-app/models/Analisis_periode_model.php +++ b/donjo-app/models/Analisis_periode_model.php @@ -1,274 +1,274 @@ -autocomplete_str('nama', 'analisis_periode'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (u.nama LIKE '{$kw}' OR u.nama LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function master_sql() - { - if (isset($_SESSION['analisis_master'])) { - $kf = $_SESSION['analisis_master']; - $filter_sql = " AND u.id_master = {$kf}"; - - return $filter_sql; - } - } - - private function state_sql() - { - if (isset($_SESSION['state'])) { - $kf = $_SESSION['state']; - $filter_sql = " AND u.id_state = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(id) AS id FROM analisis_periode u WHERE 1'; - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $sql .= $this->state_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['id']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY u.id'; - break; - - case 2: $order_sql = ' ORDER BY u.id DESC'; - break; - - case 3: $order_sql = ' ORDER BY u.id'; - break; - - case 4: $order_sql = ' ORDER BY u.id DESC'; - break; - - case 5: $order_sql = ' ORDER BY g.id'; - break; - - case 6: $order_sql = ' ORDER BY g.id DESC'; - break; - - default:$order_sql = ' ORDER BY u.id'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT u.*,s.nama AS status FROM analisis_periode u LEFT JOIN analisis_ref_state s ON u.id_state = s.id WHERE 1 '; - - $sql .= $this->search_sql(); - $sql .= $this->master_sql(); - $sql .= $this->state_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - if ($data[$i]['aktif'] == 1) { - $data[$i]['aktif'] = ""; - } else { - $data[$i]['aktif'] = ''; - } - $j++; - } - - return $data; - } - - private function validasi_data($post) - { - $data = []; - $data['nama'] = nomor_surat_keputusan($post['nama']); - $data['id_state'] = $post['id_state'] ?: null; - $data['tahun_pelaksanaan'] = bilangan($post['tahun_pelaksanaan']); - $data['keterangan'] = htmlentities($post['keterangan']); - $data['aktif'] = $post['aktif'] ?: null; - - return $data; - } - - public function insert() - { - $data = $this->validasi_data($this->input->post()); - $data['duplikasi'] = $this->input->post('duplikasi'); - $dp = $data['duplikasi']; - unset($data['duplikasi']); - - if ($dp == 1) { - $dpd = $this->db->select('id')->where('id_master', $this->session->analisis_master)->order_by('id', 'desc')->get('analisis_periode')->row_array(); - $sblm = $dpd['id']; - } - - $akt = []; - $data['id_master'] = $this->session->analisis_master; - if ($data['aktif'] == 1) { - $akt['aktif'] = 2; - $this->db->where('id_master', $this->session->analisis_master); - $this->db->update('analisis_periode', $akt); - } - $outp = $this->db->insert('analisis_periode', $data); - - if ($dp == 1) { - $dpd = $this->db->select('id')->where('id_master', $this->session->analisis_master)->order_by('id', 'desc')->get('analisis_periode')->row_array(); - $skrg = $dpd['id']; - - $data = $this->db->select(['id_subjek', 'id_indikator', 'id_parameter'])->where('id_periode', $sblm)->get('analisis_respon')->result_array(); - - if ($data) { - for ($i = 0; $i < count($data); $i++) { - $data[$i]['id_periode'] = $skrg; - } - $outp = $this->db->insert_batch('analisis_respon', $data); - $this->load->model('analisis_respon_model'); - $this->analisis_respon_model->pre_update($skrg); - } - } - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->validasi_data($this->input->post()); - $akt = []; - - $data['id_master'] = $this->session->analisis_master; - if ($data['aktif'] == 1) { - $akt['aktif'] = 2; - $this->db->where('id_master', $this->session->analisis_master); - $this->db->update('analisis_periode', $akt); - } - $data['id_master'] = $this->session->analisis_master; - $this->db->where('id', $id); - $outp = $this->db->update('analisis_periode', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('analisis_periode'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function get_analisis_periode($id = 0) - { - $sql = 'SELECT * FROM analisis_periode WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } - - public function list_state() - { - $sql = 'SELECT * FROM analisis_ref_state'; - $query = $this->db->query($sql); - - return $query->result_array(); - } - - public function get_id_periode_aktif($id = 0) - { - $data = $this->db->where([ - 'aktif' => 1, - 'id_master' => $id, - ]) - ->get('analisis_periode') - ->row_array(); - - return $data['id']; - } -} +autocomplete_str('nama', 'analisis_periode'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (u.nama LIKE '{$kw}' OR u.nama LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function master_sql() + { + if (isset($_SESSION['analisis_master'])) { + $kf = $_SESSION['analisis_master']; + $filter_sql = " AND u.id_master = {$kf}"; + + return $filter_sql; + } + } + + private function state_sql() + { + if (isset($_SESSION['state'])) { + $kf = $_SESSION['state']; + $filter_sql = " AND u.id_state = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(id) AS id FROM analisis_periode u WHERE 1'; + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $sql .= $this->state_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['id']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY u.id'; + break; + + case 2: $order_sql = ' ORDER BY u.id DESC'; + break; + + case 3: $order_sql = ' ORDER BY u.id'; + break; + + case 4: $order_sql = ' ORDER BY u.id DESC'; + break; + + case 5: $order_sql = ' ORDER BY g.id'; + break; + + case 6: $order_sql = ' ORDER BY g.id DESC'; + break; + + default:$order_sql = ' ORDER BY u.id'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT u.*,s.nama AS status FROM analisis_periode u LEFT JOIN analisis_ref_state s ON u.id_state = s.id WHERE 1 '; + + $sql .= $this->search_sql(); + $sql .= $this->master_sql(); + $sql .= $this->state_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + if ($data[$i]['aktif'] == 1) { + $data[$i]['aktif'] = ""; + } else { + $data[$i]['aktif'] = ''; + } + $j++; + } + + return $data; + } + + private function validasi_data($post) + { + $data = []; + $data['nama'] = nomor_surat_keputusan($post['nama']); + $data['id_state'] = $post['id_state'] ?: null; + $data['tahun_pelaksanaan'] = bilangan($post['tahun_pelaksanaan']); + $data['keterangan'] = htmlentities($post['keterangan']); + $data['aktif'] = $post['aktif'] ?: null; + + return $data; + } + + public function insert() + { + $data = $this->validasi_data($this->input->post()); + $data['duplikasi'] = $this->input->post('duplikasi'); + $dp = $data['duplikasi']; + unset($data['duplikasi']); + + if ($dp == 1) { + $dpd = $this->db->select('id')->where('id_master', $this->session->analisis_master)->order_by('id', 'desc')->get('analisis_periode')->row_array(); + $sblm = $dpd['id']; + } + + $akt = []; + $data['id_master'] = $this->session->analisis_master; + if ($data['aktif'] == 1) { + $akt['aktif'] = 2; + $this->db->where('id_master', $this->session->analisis_master); + $this->db->update('analisis_periode', $akt); + } + $outp = $this->db->insert('analisis_periode', $data); + + if ($dp == 1) { + $dpd = $this->db->select('id')->where('id_master', $this->session->analisis_master)->order_by('id', 'desc')->get('analisis_periode')->row_array(); + $skrg = $dpd['id']; + + $data = $this->db->select(['id_subjek', 'id_indikator', 'id_parameter'])->where('id_periode', $sblm)->get('analisis_respon')->result_array(); + + if ($data) { + for ($i = 0; $i < count($data); $i++) { + $data[$i]['id_periode'] = $skrg; + } + $outp = $this->db->insert_batch('analisis_respon', $data); + $this->load->model('analisis_respon_model'); + $this->analisis_respon_model->pre_update($skrg); + } + } + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->validasi_data($this->input->post()); + $akt = []; + + $data['id_master'] = $this->session->analisis_master; + if ($data['aktif'] == 1) { + $akt['aktif'] = 2; + $this->db->where('id_master', $this->session->analisis_master); + $this->db->update('analisis_periode', $akt); + } + $data['id_master'] = $this->session->analisis_master; + $this->db->where('id', $id); + $outp = $this->db->update('analisis_periode', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('analisis_periode'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function get_analisis_periode($id = 0) + { + $sql = 'SELECT * FROM analisis_periode WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } + + public function list_state() + { + $sql = 'SELECT * FROM analisis_ref_state'; + $query = $this->db->query($sql); + + return $query->result_array(); + } + + public function get_id_periode_aktif($id = 0) + { + $data = $this->db->where([ + 'aktif' => 1, + 'id_master' => $id, + ]) + ->get('analisis_periode') + ->row_array(); + + return $data['id']; + } +} diff --git a/donjo-app/models/Analisis_respon_model.php b/donjo-app/models/Analisis_respon_model.php index 0b5470170f..dffe9640d6 100644 --- a/donjo-app/models/Analisis_respon_model.php +++ b/donjo-app/models/Analisis_respon_model.php @@ -1,1344 +1,1344 @@ -load->library('Spreadsheet_Excel_Reader'); - $this->load->model('analisis_master_model'); - $this->per = $this->analisis_master_model->get_aktif_periode(); - $this->master = $this->analisis_master_model->get_analisis_master($this->session->analisis_master); - $this->subjek = $this->session->subjek_tipe; - } - - public function autocomplete() - { - switch ($this->subjek) { - case 1: - $this->db - ->select('nik, u.nama') - ->from('penduduk_hidup u') - ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); - break; - - case 2: - $this->db - ->select('no_kk, p.nama') - ->from('keluarga_aktif u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 3: - $this->db - ->select('no_kk, p.nama') - ->from('tweb_rtm u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 4: - $this->db - ->select('u.nama AS no_kk, p.nama') - ->from('kelompok u') - ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 5: - $this->db - ->select('u.kode_desa AS no_kk, u.nama_desa as nama') - ->from('config u'); - break; - - case 6: - $this->db - ->select('u.dusun') - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw', '0'); - break; - - case 7: - $this->db - ->select('u.dusun, u.rw') - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw <>', '0'); - break; - - case 8: - $this->db - ->select('u.dusun, u.rw, u.rt') - ->from('tweb_wil_clusterdesa u') - ->where('u.rt <> 0') - ->where('u.rt <> "-"'); - break; - } - $this->dusun_sql(); - $this->rw_sql(); - $this->rt_sql(); - $data = $this->db->get()->result_array(); - - return autocomplete_data_ke_str($data); - } - - private function search_sql() - { - if (empty($cari = $this->session->cari)) { - return; - } - - switch ($this->subjek) { - case 1: - $this->db - ->group_start() - ->like('u.nik', $cari) - ->or_like('u.nama', $cari) - ->group_end(); - break; - - case 2: - $this->db - ->group_start() - ->like('u.no_kk', $cari) - ->or_like('p.nama', $cari) - ->group_end(); - break; - - case 3: - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $this->db - ->group_start() - ->group_start() - ->like('u.no_kk', $cari) - ->or_like('p.nama', $cari) - ->group_end() - ->or_where("(SELECT COUNT(id) FROM penduduk_hidup WHERE nik LIKE '{$kw}' AND id_rtm = u.id) > 1") - ->or_where("(SELECT COUNT(id) FROM penduduk_hidup WHERE nama LIKE '{$kw}' AND id_rtm = u.id) > 1") - ->group_end(); - break; - - case 4: - $this->db - ->group_start() - ->like('u.nama', $cari) - ->or_like('p.nama', $cari) - ->group_end(); - break; - - case 6: - $this->db - ->like('u.dusun', $cari); - break; - - case 7: - $this->db - ->group_start() - ->like('u.dusun', $cari) - ->or_like('u.rw', $cari) - ->group_end(); - break; - - case 8: - $this->db - ->group_start() - ->like('u.dusun', $cari) - ->or_like('u.rw', $cari) - ->or_like('u.rt', $cari) - ->group_end(); - break; - - default: return null; - } - } - - private function dusun_sql() - { - if (empty($this->session->dusun) || $this->subjek == 5) { - return; - } - - $this->db->where('dusun', $this->session->dusun); - } - - private function rw_sql() - { - if (empty($this->session->rw) || $this->subjek == 5) { - return; - } - - $this->db->where('rw', $this->session->rw); - } - - private function rt_sql() - { - if (empty($this->session->rt) || $this->subjek == 5) { - return; - } - - $this->db->where('rt', $this->session->rt); - } - - // Pertanyaan telah diisi atau belum - // $this->session->isi == 1 untuk pertanyaan yg telah diisi - private function isi_sql() - { - if (empty($isi = $this->session->isi)) { - return; - } - - $isi = $isi == 1 ? 1 : 0; - $this->db - ->where("(SELECT COUNT(id_subjek) FROM analisis_respon_hasil WHERE id_subjek = u.id AND id_periode = {$this->per}) = {$isi}"); - } - - private function kelompok_sql($kf = 0) - { - $this->db->where('id_master', $kf); - } - - public function paging($p = 1, $o = 0) - { - $this->list_data_sql(); - $jml_data = $this->db - ->select('COUNT(*) AS jml_data') - ->get()->row()->jml_data; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql() - { - $id_kelompok = $this->master['id_kelompok']; - - switch ($this->subjek) { - case 1: - $this->db - ->from('penduduk_hidup u') - ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); - break; - - case 2: - $this->db - ->from('keluarga_aktif u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 3: - $this->db - ->from('tweb_rtm u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 4: - $this->db - ->from('kelompok u') - ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 5: - $this->db - ->from('config u'); - break; - - case 6: - $this->db - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw', '0'); - break; - - case 7: - $this->db - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw <>', '0') - ->where('u.rw <>', '-'); - break; - - case 8: - $this->db - ->from('tweb_wil_clusterdesa u') - ->where('u.rt <> 0') - ->where('u.rt <> "-"'); - break; - - default: return null; - } - if ($id_kelompok != 0) { - $this->kelompok_sql($id_kelompok); - } - - $this->search_sql(); - $this->dusun_sql(); - $this->rw_sql(); - $this->rt_sql(); - $this->isi_sql(); - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $this->db - ->select("(SELECT id_subjek FROM analisis_respon WHERE id_subjek = u.id AND id_periode = {$this->per} LIMIT 1) as cek") - ->select("(SELECT pengesahan from analisis_respon_bukti b WHERE b.id_master = {$this->master['id']} AND b.id_periode = {$this->per} AND b.id_subjek = u.id) as bukti_pengesahan"); - - switch ($this->subjek) { - case 1: - $this->db - ->select('u.id, u.nik AS nid, u.nama, u.sex, c.dusun, c.rw, c.rt'); - break; - - case 2: - $this->db - ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); - break; - - case 3: - $this->db - ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); - break; - - case 4: - $this->db - ->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt'); - break; - - case 5: - $this->db - ->select('u.id, u.kode_desa as nid, u.nama_desa as nama, "-" as sex, "-" as dusun, "-" as rw, "-" as rt'); - break; - - case 6: - $this->db->select("u.id, u.dusun AS nid, CONCAT(UPPER('{$this->setting->sebutan_dusun} '), u.dusun) as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt"); - break; - - case 7: - $this->db->select("u.id, u.rw AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt"); - break; - - case 8: - $this->db - ->select("u.id, u.rt AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt"); - break; - - default: return null; - } - $this->list_data_sql(); - - switch ($o) { - case 1: $this->db->order_by('u.id'); - break; - - case 2: $this->db->order_by('u.id DESC'); - break; - - case 3: $this->db->order_by('nama'); - break; - - case 4: $this->db->order_by('nama DESC'); - break; - - default:$this->db->order_by('u.id'); - } - - if ($limit > 0) { - $this->db->limit($limit, $offset); - } - - $data = $this->db->get()->result_array(); - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - $data[$i]['set'] = ''; - $data[$i]['jk'] = ($data[$i]['sex'] == 1) ? 'L' : 'P'; - $data[$i]['alamat'] = $data[$i]['dusun'] . ' RW-' . $data[$i]['rw'] . ' RT-' . $data[$i]['rt']; - $j++; - } - - return $data; - } - - public function data_unduh($p, $o) - { - $per = $this->analisis_master_model->get_aktif_periode(); - - switch ($this->subjek) { - case 1: - $this->db->select('u.id, u.nik AS nid, u.nama, u.sex, c.dusun, c.rw, c.rt'); - break; - - case 2: - $this->db->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); - break; - - case 3: - $this->db->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw,c.rt'); - break; - - case 4: - $this->db->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt'); - break; - - case 5: - $this->db->select('u.id, u.kode_desa as nid, u.nama_desa as nama, "-" as sex, "-" as dusun, "-" as rw, "-" as rt'); - break; - - case 6: - $this->db->select("u.id, u.dusun AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun) as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt"); - break; - - case 7: - $this->db->select("u.id, u.rw AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt"); - break; - - case 8: - $this->db->select("u.id, u.rt AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt"); - break; - - default: - return null; - break; - } - - $this->list_data_sql(); - - switch ($o) { - case 1: $this->db->order_by('u.id'); - break; - - case 2: $this->db->order_by('u.id DESC'); - break; - - case 3: $this->db->order_by('nama'); - break; - - case 4: $this->db->order_by('nama DESC'); - break; - - default:$this->db->order_by('u.id'); - } - - $data = $this->db->get()->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - if ($p == 1) { - $par = $this->db - ->select('kode_jawaban, asign, jawaban, r.id_indikator, r.id_parameter AS korek') - ->from('analisis_respon r') - ->join('analisis_parameter p', 'p.id = r.id_parameter', 'left') - ->where('r.id_periode', $per) - ->where('r.id_subjek', $data[$i]['id']) - ->order_by('r.id_indikator') - ->get()->result_array(); - $data[$i]['par'] = $par; - } else { - $data[$i]['par'] = null; - } - - $data[$i]['jk'] = ($data[$i]['sex'] == 1) ? 'L' : 'P'; - } - - return $data; - } - - public function update_kuisioner($id = 0, $per = 0) - { - $outp = true; - $this->session->error_msg = ''; - if ($per == 0) { - $per = $this->analisis_master_model->get_aktif_periode(); - $id_master = $_SESSION['analisis_master']; - } else { - $id_master = $this->db->get_where('analisis_periode', ['id' => $per])->row_array(); - $id_master = $id_master['id_master']; - } - $ia = 0; - $it = 0; - $ir = 0; - $ic = 0; - - if (isset($_POST['rb'])) { - $id_rbx = $_POST['rb']; - - foreach ($id_rbx as $id_px) { - if ($id_px != '') { - $ir = 1; - } - } - } - if (isset($_POST['cb'])) { - $id_rby = $_POST['cb']; - - foreach ($id_rby as $id_py) { - if ($id_py != '') { - $ic = 1; - } - } - } - if (isset($_POST['ia'])) { - $id_iax = $_POST['ia']; - - foreach ($id_iax as $id_px) { - if ($id_px != '') { - $ia = 1; - } - } - } - if (isset($_POST['it'])) { - $id_iay = $_POST['it']; - - foreach ($id_iay as $id_py) { - if ($id_py != '') { - $it = 1; - } - } - } - - //CEK ada input - if ($ir != 0 || $ic != 0 || $ia != 0 || $it != 0) { - $sql = 'DELETE FROM analisis_respon WHERE id_subjek = ? AND id_periode=?'; - $this->db->query($sql, [$id, $per]); - if (! empty($_POST['rb'])) { - $id_rb = $_POST['rb']; - - foreach ($id_rb as $id_p) { - if (empty($id_p)) { - continue; - } // Abaikan isian kosong - $p = preg_split('/\\./', $id_p); - - $data['id_subjek'] = $id; - $data['id_periode'] = $per; - $data['id_indikator'] = $p[0]; - $data['id_parameter'] = $p[1]; - $outp &= $this->db->insert('analisis_respon', $data); - } - } - if (isset($_POST['cb'])) { - $id_cb = $_POST['cb']; - if ($id_cb) { - foreach ($id_cb as $id_p) { - $p = preg_split('/\\./', $id_p); - - $data['id_subjek'] = $id; - $data['id_periode'] = $per; - $data['id_indikator'] = $p[0]; - $data['id_parameter'] = $p[1]; - $outp &= $this->db->insert('analisis_respon', $data); - } - } - } - - if (isset($_POST['ia'])) { - $id_ia = $_POST['ia']; - - foreach ($id_ia as $id_p) { - if ($id_p != '') { - unset($data); - $indikator = key($id_ia); - - $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; - $query = $this->db->query($sql, [$id_p, $indikator]); - $dx = $query->row_array(); - if (! $dx) { - $data['id_indikator'] = $indikator; - $data['jawaban'] = $id_p; - $outp &= $this->db->insert('analisis_parameter', $data); - unset($data); - - $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; - $query = $this->db->query($sql, [$id_p, $indikator]); - $dx = $query->row_array(); - - $data['id_parameter'] = $dx['id']; - $data['id_indikator'] = $indikator; - $data['id_subjek'] = $id; - $data['id_periode'] = $per; - $outp &= $this->db->insert('analisis_respon', $data); - } else { - unset($data); - $data['id_indikator'] = $indikator; - $data['id_parameter'] = $dx['id']; - $data['id_subjek'] = $id; - $data['id_periode'] = $per; - $outp &= $this->db->insert('analisis_respon', $data); - } - } - next($id_ia); - } - } - if (isset($_POST['it'])) { - $id_it = $_POST['it']; - - foreach ($id_it as $id_p) { - if ($id_p != '') { - unset($data); - $indikator = key($id_it); - - $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; - $query = $this->db->query($sql, [$id_p, $indikator]); - $dx = $query->row_array(); - if (! $dx) { - $data['id_indikator'] = $indikator; - $data['jawaban'] = $id_p; - $outp &= $this->db->insert('analisis_parameter', $data); - unset($data); - - $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; - $query = $this->db->query($sql, [$id_p, $indikator]); - $dx = $query->row_array(); - - $data2['id_parameter'] = $dx['id']; - $data2['id_indikator'] = $indikator; - $data2['id_subjek'] = $id; - $data2['id_periode'] = $per; - $outp &= $this->db->insert('analisis_respon', $data2); - } else { - unset($data); - $data['id_indikator'] = $indikator; - $data['id_parameter'] = $dx['id']; - - $data['id_subjek'] = $id; - $data['id_periode'] = $per; - $outp &= $this->db->insert('analisis_respon', $data); - } - } - next($id_it); - } - } - - $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis=1 AND r.id_periode=?'; - $query = $this->db->query($sql, [$id, $per]); - $dx = $query->row_array(); - - $upx['id_master'] = $id_master; - $upx['akumulasi'] = 0 + $dx['jml']; - $upx['id_subjek'] = $id; - $upx['id_periode'] = $per; - - $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = ? AND id_periode=?'; - $this->db->query($sql, [$id, $per]); - $outp &= $this->db->insert('analisis_respon_hasil', $upx); - } - if (isset($_FILES['pengesahan'])) { - $lokasi_file = $_FILES['pengesahan']['tmp_name']; - $tipe_file = $_FILES['pengesahan']['type']; - if (! empty($lokasi_file)) { - if ($tipe_file != 'image/jpeg' && $tipe_file != 'image/pjpeg') { - $_SESSION['sukses'] = -1; - } else { - $nama_file = $_SESSION['analisis_master'] . '_' . $per . '_' . $id . '_' . mt_rand(10000, 99999) . '.jpg'; - UploadPengesahan($nama_file); - $bukti['pengesahan'] = $nama_file; - $bukti['id_master'] = $id_master; - $bukti['id_subjek'] = $id; - $bukti['id_periode'] = $per; - - $ada_bukti = $this->db->where(['id_master' => $id_master, 'id_subjek' => $id, 'id_periode' => $per])->get('analisis_respon_bukti')->num_rows(); - if ($ada_bukti > 0) { - $outp = $this->db->where(['id_master' => $id_master, 'id_subjek' => $id, 'id_periode' => $per])->update('analisis_respon_bukti', $bukti); - } else { - $outp &= $this->db->insert('analisis_respon_bukti', $bukti); - } - } - } - } - status_sukses($outp); - } - - private function list_jawab2($id = 0, $in = 0, $per = 0) - { - if (isset($this->session->delik)) { - $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban FROM analisis_parameter s WHERE id_indikator = ? ORDER BY s.kode_jawaban ASC '; - $query = $this->db->query($sql, $in); - } else { - $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban,(SELECT count(id_subjek) FROM analisis_respon WHERE id_parameter = s.id AND id_subjek = ? AND id_periode=?) as cek FROM analisis_parameter s WHERE id_indikator = ? ORDER BY s.kode_jawaban ASC '; - $query = $this->db->query($sql, [$id, $per, $in]); - } - - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - if (isset($this->session->delik)) { - $data[$i]['cek'] = 0; - } - } - - return $data; - } - - private function list_jawab3($id = 0, $in = 0, $per = 0) - { - $sql = 'SELECT s.id as id_parameter,s.jawaban FROM analisis_respon r LEFT JOIN analisis_parameter s ON r.id_parameter = s.id WHERE r.id_indikator = ? AND r.id_subjek = ? AND r.id_periode=?'; - $query = $this->db->query($sql, [$in, $id, $per]); - - return $query->row_array(); - } - - public function list_indikator($id = 0) - { - $per = $this->analisis_master_model->get_aktif_periode(); - - $data = $this->db - ->select('u.id, u.id_kategori, u.nomor, u.id_tipe, u.pertanyaan, u.referensi, k.kategori') - ->from('analisis_indikator u') - ->join('analisis_kategori_indikator k', 'u.id_kategori = k.id', 'left') - ->where('u.id_master', $this->session->analisis_master) - ->order_by("LPAD(u.nomor, 10, ' ') ASC") - ->get() - ->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { - $data[$i]['parameter_respon'] = $this->list_jawab2($id, $data[$i]['id'], $per); - } else { - $data[$i]['parameter_respon'] = (isset($this->session->delik)) ? '' : $this->list_jawab3($id, $data[$i]['id'], $per); - } - } - - return $data; - } - - //CHILD----------------------- - - private function list_jawab4($id = 0, $in = 0, $per = 0) - { - if (isset($this->session->delik)) { - $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban FROM analisis_parameter s WHERE id_indikator = ? '; - $query = $this->db->query($sql, $in); - } else { - $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban,(SELECT count(id_subjek) FROM analisis_respon WHERE id_parameter = s.id AND id_subjek = ? AND id_periode=?) as cek FROM analisis_parameter s WHERE id_indikator = ? '; - $query = $this->db->query($sql, [$id, $per, $in]); - } - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - if (isset($this->session->delik)) { - $data[$i]['cek'] = 0; - } - } - - return $data; - } - - private function list_jawab5($id = 0, $in = 0, $per = 0) - { - $sql = 'SELECT s.id as id_parameter,s.jawaban FROM analisis_respon r LEFT JOIN analisis_parameter s ON r.id_parameter = s.id WHERE r.id_indikator = ? AND r.id_subjek = ? AND r.id_periode = ?'; - $query = $this->db->query($sql, [$in, $id, $per]); - - return $query->row_array(); - } - - public function list_indikator_child($id = 0) - { - $sql = 'SELECT id_child FROM analisis_master WHERE id = ? '; - $query = $this->db->query($sql, $_SESSION['analisis_master']); - $id_child = $query->row_array(); - $id_child = $id_child['id_child']; - - $sql = 'SELECT id FROM analisis_periode WHERE id_master = ? AND aktif = 1'; - $query = $this->db->query($sql, $id_child); - $per = $query->row_array(); - $per = $per['id']; - - $sql = 'SELECT * FROM analisis_indikator u WHERE id_master = ? '; - $sql .= ' ORDER BY nomor'; - $query = $this->db->query($sql, $id_child); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { - $data[$i]['parameter_respon'] = $this->list_jawab4($id, $data[$i]['id'], $per); - } else { - $data[$i]['parameter_respon'] = (isset($this->session->delik)) ? '' : $this->list_jawab5($id, $data[$i]['id'], $per); - } - } - - return $data; - } - - public function get_periode_child() - { - $sql = 'SELECT id_child FROM analisis_master WHERE id = ? '; - $query = $this->db->query($sql, $_SESSION['analisis_master']); - $id_child = $query->row_array(); - $id_child = $id_child['id_child']; - - $sql = 'SELECT id FROM analisis_periode WHERE id_master = ? AND aktif = 1'; - $query = $this->db->query($sql, $id_child); - $per = $query->row_array(); - $per = $per['id']; - - return $per; - } - //--------------------------- - - public function list_bukti($id = 0) - { - $per = $this->analisis_master_model->get_aktif_periode(); - $sql = 'SELECT pengesahan FROM analisis_respon_bukti WHERE id_subjek = ? AND id_master = ? AND id_periode = ? '; - $sql .= ' ORDER BY tgl_update DESC'; - $query = $this->db->query($sql, [$id, $_SESSION['analisis_master'], $per]); - $data = $query->result_array(); - - return $data; - } - - public function get_subjek($id = 0) - { - $sebutan_dusun = ucwords($this->setting->sebutan_dusun); - - switch ($this->subjek) { - case 1: - $this->db - ->select('u.*, u.nik AS nid, c.dusun, c.rw, c.rt') - ->select("CONCAT('{$sebutan_dusun} ', c.dusun, ', RT ', c.rt, ' / RW ', c.rw) as wilayah") - ->from('penduduk_hidup u') - ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); - break; - - case 2: - $this->db - ->select('u.*, u.no_kk AS nid, p.nik AS nik_kepala, p.nama, p.sex, c.dusun, c.rw, c.rt') - ->select("CONCAT('{$sebutan_dusun} ', c.dusun, ', RT ', c.rt, ' / RW ', c.rw) as wilayah") - ->from('keluarga_aktif u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); - - break; - - case 3: - $this->db - ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt') - ->from('tweb_rtm u') - ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 4: $ - {$this}->db - ->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt') - ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') - ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); - break; - - case 5: - $this->db - ->select("u.id, u.kode_desa AS nid, u.nama_desa as nama, '-' as sex, '-' as dusun, '-' as rw, '-' as rt") - ->select(" - u.nama_desa, u.kode_desa, u.kode_pos, u.alamat_kantor, u.telepon as no_telepon_kantor_desa, u.email_desa, CONCAT('Lintang : ', u.lat, ', ', 'Bujur : ', u.lng) as titik_koordinat_desa") - ->select(' - c.pamong_nip AS nip_kepala_desa, - (case when p.sex is not null then p.sex else c.pamong_sex end) as jk_kepala_desa, - (case when p.pendidikan_kk_id is not null then b.nama else c.pamong_pendidikan end) as pendidikan_kepala_desa, - (case when p.nama is not null then p.nama else c.pamong_nama end) AS nama_kepala_desa, - p.telepon as no_telepon_kepala_desa - ') - ->from('config u') - ->join('tweb_desa_pamong c', 'u.pamong_id = c.pamong_id', 'left') - ->join('tweb_penduduk p', 'c.id_pend = p.id', 'left') - ->join('tweb_penduduk_pendidikan_kk b', 'p.pendidikan_kk_id = b.id', 'LEFT') - ->join('tweb_penduduk_sex x', 'p.sex = x.id', 'LEFT') - ->join('tweb_penduduk_pendidikan_kk b2', 'c.pamong_pendidikan = b2.id', 'LEFT') - ->join('tweb_penduduk_sex x2', 'c.pamong_sex = x2.id', 'LEFT'); - - break; - - case 6: - $this->db - ->select("u.id, u.dusun AS nid, UPPER('{$sebutan_dusun}') as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt") - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw', '0'); - break; - - case 7: - $this->db - ->select("u.id, u.rw AS nid, CONCAT( UPPER('{$sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt") - ->from('tweb_wil_clusterdesa u') - ->where('u.rt', '0') - ->where('u.rw <>', '0'); - break; - - case 8: - $this->db - ->select("u.id, u.rt AS nid, CONCAT( UPPER('{$sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt") - ->from('tweb_wil_clusterdesa u') - ->where('u.rt <> 0') - ->where('u.rt <> "-"'); - break; - - default: return null; - } - $data = $this->db - ->where('u.id', $id) - ->limit(1) - ->get() - ->row_array(); - - // Data tambahan subjek desa - if ($this->subjek == 5) { - $tambahan = [ - 'jumlah_total_penduduk' => $this->db->count_all_results('penduduk_hidup'), - 'jumlah_penduduk_laki_laki' => $this->db->where('sex', 1)->count_all_results('penduduk_hidup'), - 'jumlah_penduduk_perempuan' => $this->db->where('sex', 2)->count_all_results('penduduk_hidup'), - 'jumlah_penduduk_pedatang' => $this->db->where('status', 2)->count_all_results('penduduk_hidup'), - 'jumlah_penduduk_yang_pergi' => $this->db->where('kode_peristiwa', 3)->count_all_results('log_penduduk'), - 'jumlah_total_kepala_keluarga' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->count_all_results('keluarga_aktif u'), - 'jumlah_kepala_keluarga_laki_laki' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->where('sex', 1)->count_all_results('keluarga_aktif u'), - 'jumlah_kepala_keluarga_perempuan' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->where('sex', 2)->count_all_results('keluarga_aktif u'), - 'jumlah_peserta_bpjs' => $this->db->where('bpjs_ketenagakerjaan != ', null)->count_all_results('penduduk_hidup'), - ]; - - $data = array_merge($data, $tambahan); - } - - return $data; - } - - public function list_anggota($id = 0) - { - $subjek = $this->subjek; - if ($subjek == 2 || $subjek == 3) { - switch ($subjek) { - case 2: $sql = 'SELECT u.* FROM penduduk_hidup u WHERE u.id_kk = ? ORDER BY kk_level'; - break; - - case 3: $sql = 'SELECT u.* FROM penduduk_hidup u WHERE u.id_rtm = ? ORDER BY rtm_level'; - break; - - default: return null; - } - $query = $this->db->query($sql, $id); - - return $query->result_array(); - } - - return null; - } - - public function aturan_unduh() - { - $subjek = $this->subjek; - $order_sql = ' ORDER BY u.nomor ASC'; - $sql = 'SELECT u.*,t.tipe AS tipe_indikator,k.kategori AS kategori FROM analisis_indikator u LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id WHERE u.id_master = ? '; - $sql .= $order_sql; - - $query = $this->db->query($sql, $_SESSION['analisis_master']); - $data = $query->result_array(); - - $per = $this->analisis_master_model->get_aktif_periode(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { - $sql2 = 'SELECT i.id,i.kode_jawaban,i.jawaban FROM analisis_parameter i WHERE i.id_indikator = ? ORDER BY i.kode_jawaban ASC '; - $query2 = $this->db->query($sql2, $data[$i]['id']); - $respon2 = $query2->result_array(); - $data[$i]['par'] = $respon2; - } else { - $data[$i]['par'] = null; - } - if ($data[$i]['act_analisis'] == 1) { - $data[$i]['act_analisis'] = 'Ya'; - } else { - $data[$i]['act_analisis'] = 'Tidak'; - } - } - - return $data; - } - - public function indikator_data_unduh() - { - $order_sql = ' ORDER BY u.nomor'; - - $sql = 'SELECT u.* FROM analisis_indikator u WHERE u.id_master = ? '; - $sql .= $order_sql; - $query = $this->db->query($sql, $_SESSION['analisis_master']); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - $data[$i]['par'] = null; - - $sql2 = 'SELECT id_parameter FROM analisis_respon WHERE id_indikator = ? AND asign = 1 '; - $query2 = $this->db->query($sql2, $data[$i]['id']); - $par = $query2->result_array(); - $data[$i]['par'] = $par; - } - - return $data; - } - - public function indikator_unduh($p = 0) - { - $data = $this->db - ->select('u.*') - ->where('u.id_master', $this->session->analisis_master) - ->order_by('LPAD(u.nomor, 10, " ")') - ->get('analisis_indikator u') - ->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - $data[$i]['par'] = null; - - if ($p == 2) { - $par = $this->db - ->select('*') - ->where('id_indikator', $data[$i]['id']) - ->where('asign', 1) - ->get('analisis_parameter') - ->result_array(); - $data[$i]['par'] = $par; - } - } - - return $data; - } - - public function pre_update($pr = 0) - { - if ($pr == 0) { - $per = $this->analisis_master_model->get_aktif_periode(); - } else { - $per = $pr; - } - - $sql = 'SELECT DISTINCT(id_subjek) AS id FROM analisis_respon WHERE id_periode = ? '; - $query = $this->db->query($sql, $per); - $data = $query->result_array(); - - $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = 0'; - $this->db->query($sql); - - $sql = 'DELETE FROM analisis_respon WHERE id_subjek = 0'; - $this->db->query($sql); - - $sql = 'DELETE FROM analisis_respon_hasil WHERE id_periode = ?'; - $this->db->query($sql, $per); - - for ($i = 0; $i < count($data); $i++) { - $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis=1 AND r.id_periode=?'; - $query = $this->db->query($sql, [$data[$i]['id'], $per]); - $dx = $query->row_array(); - - $upx[$i]['id_master'] = $_SESSION['analisis_master']; - $upx[$i]['akumulasi'] = 0 + $dx['jml']; - $upx[$i]['id_subjek'] = $data[$i]['id']; - $upx[$i]['id_periode'] = $per; - } - if (@$upx) { - $this->db->insert_batch('analisis_respon_hasil', $upx); - } - } - - public function update_hasil($id = 0) - { - $per = $this->analisis_master_model->get_aktif_periode(); - - $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis = 1 AND r.id_periode = ?'; - $query = $this->db->query($sql, [$id, $per]); - $dx = $query->row_array(); - - $upx['id_master'] = $_SESSION['analisis_master']; - $upx['akumulasi'] = 0 + $dx['jml']; - $upx['id_subjek'] = $id; - $upx['id_periode'] = $per; - - $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = ? AND id_periode=?'; - $this->db->query($sql, [$id, $per]); - $this->db->insert('analisis_respon_hasil', $upx); - } - - public function import_respon($op = 0) - { - $per = $this->analisis_master_model->get_aktif_periode(); - - $subjek = $this->subjek; - $mas = $_SESSION['analisis_master']; - $key = ($per + 3) * ($mas + 7) * ($subjek * 3); - $key = 'AN' . $key; - $respon = []; - - $sql = 'SELECT * FROM analisis_indikator WHERE id_master=? ORDER BY id ASC'; - $query = $this->db->query($sql, $_SESSION['analisis_master']); - $indikator = $query->result_array(); - $jml = count($indikator); - - $data = new Spreadsheet_Excel_Reader($_FILES['respon']['tmp_name']); - $s = 0; - $baris = $data->rowcount($s); - $kolom = $data->colcount($s); - - $ketemu = 0; - - for ($b = 1; $b <= $baris; $b++) { - for ($k = 1; $k <= $kolom; $k++) { - $isi = $data->val($b, $k, $s); - // ketemu njuk stop - if ($isi == $key) { - $br = $b + 1; - $kl = $k + 1; - - $b = $baris + 1; - $k = $kolom + 1; - $ketemu = 1; - } - } - } - if ($ketemu == 1) { - $dels = ''; - $true = 0; - - for ($i = $br; $i <= $baris; $i++) { - $id_subjek = $data->val($i, $kl - 1, $s); - - $j = $kl; - - foreach ($indikator as $indi) { - $isi = $data->val($i, $j, $s); - if ($isi != '') { - $true = 1; - } - - $j++; - } - if ($true == 1) { - $dels .= $id_subjek . ','; - $true = 0; - } - } - - $dels .= '9999999'; - //cek ada row - $this->db->where("id_subjek in({$dels})")->where('id_periode', $per)->delete('analisis_respon'); - $dels = ''; - - for ($i = $br; $i <= $baris; $i++) { - $id_subjek = $data->val($i, $kl - 1, $s); - if (strlen($id_subjek) > 14 && $subjek == 1) { - $sqls = 'SELECT id FROM penduduk_hidup WHERE nik = ?;'; - $querys = $this->db->query($sqls, [$id_subjek]); - $isbj = $querys->row_array(); - $id_subjek = $isbj['id']; - } elseif ($subject == 3) { - // sasaran rumah tangga, simpan id, bukan nomor rumah tangga - $id_subjek = $this->db->select('id') - ->where('id_rtm', $id_subjek) - ->get('tweb_rtm') - ->row()->id; - } - - $j = $kl + $op; - $all = ''; - - foreach ($indikator as $indi) { - $isi = $data->val($i, $j, $s); - if ($isi != '') { - if ($indi['id_tipe'] == 1) { - $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND kode_jawaban = ?;'; - $query = $this->db->query($sql, [$indi['id'], $isi]); - $param = $query->row_array(); - - if ($param) { - $in_param = $param['id']; - } else { - if ($isi == '') { - $in_param = 0; - } else { - $in_param = -1; - } - } - - $respon[] = [ - 'id_parameter' => $in_param, - 'id_indikator' => $indi['id'], - 'id_subjek' => $id_subjek, - 'id_periode' => $per, ]; - } elseif ($indi['id_tipe'] == 2) { - $this->respon_checkbox($indi, $isi, $id_subjek, $per, $respon); - } else { - $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND jawaban = ?;'; - $query = $this->db->query($sql, [$indi['id'], $isi]); - $param = $query->row_array(); - - // apakah sdh ada jawaban yg sama - if ($param) { - $in_param = $param['id']; - } else { - $parameter['jawaban'] = $isi; - $parameter['id_indikator'] = $indi['id']; - $parameter['asign'] = 0; - - $this->db->insert('analisis_parameter', $parameter); - - $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND jawaban = ?;'; - $query = $this->db->query($sql, [$indi['id'], $isi]); - $param = $query->row_array(); - $in_param = $param['id']; - } - - $respon[] = [ - 'id_parameter' => $in_param, - 'id_indikator' => $indi['id'], - 'id_subjek' => $id_subjek, - 'id_periode' => $per, ]; - } - } - - $j++; - } - } - - if (count($respon) > 0) { - $outp = $this->db->insert_batch('analisis_respon', $respon); - } else { - $outp = false; - $_SESSION['error_msg'] = 'Tidak ada data'; - } - } - - $this->pre_update(); - - status_sukses($outp); //Tampilkan Pesan - } - - private function respon_checkbox($indi, $isi, $id_subjek, $per, &$respon) - { - $list_isi = explode(',', $isi); - - foreach ($list_isi as $isi_ini) { - if ($indi['is_teks'] == 1) { - // Isian sebagai teks pilihan bukan kode - $teks = strtolower($isi_ini); - $param = $this->db->where('id_indikator', $indi['id'])->where("LOWER(jawaban) = '{$teks}'") - ->get('analisis_parameter')->row_array(); - } else { - $param = $this->db->where('id_indikator', $indi['id'])->where('kode_jawaban', $isi_ini) - ->get('analisis_parameter')->row_array(); - } - if ($param['id'] != '') { - $in_param = $param['id']; - $respon[] = [ - 'id_parameter' => $in_param, - 'id_indikator' => $indi['id'], - 'id_subjek' => $id_subjek, - 'id_periode' => $per, - ]; - } - } - } - - public function get_respon_by_id_periode($id_periode = 0, $subjek = 1) - { - $result = []; - if ($subjek == 1) { // Untuk Subjek Penduduk - $list_penduduk = $this->db->select('r.*, p.nik') - ->from('analisis_respon r') - ->join('tweb_penduduk p', 'r.id_subjek = p.id') - ->where('r.id_periode', $id_periode) - ->get() - ->result_array(); - - foreach ($list_penduduk as $penduduk) { - $result[$penduduk['nik']][$penduduk['id_indikator']] = $penduduk; - } - } else { // Untuk Subjek Keluarga - $list_keluarga = $this->db->select('r.*, k.no_kk') - ->from('analisis_respon r') - ->join('tweb_keluarga k', 'r.id_subjek = k.id') - ->where('r.id_periode', $id_periode) - ->get() - ->result_array(); - - foreach ($list_keluarga as $keluarga) { - $result[$keluarga['no_kk']][$keluarga['id_indikator']] = $keluarga; - } - } - - return $result; - } - - public function perbaharui($id_subjek = 0) - { - // Daftar indikator yg menggunakan referensi - $id_indikator = $this->db - ->select('id') - ->get_where('analisis_indikator', ['id_master' => $this->session->analisis_master]) - ->result_array(); - - if ($id_indikator) { - $id_indikator = array_column($id_indikator, 'id'); - - $outp = $this->db - ->where('id_subjek', $id_subjek) - ->where_in('id_indikator', $id_indikator) - ->delete('analisis_respon'); - } - - status_sukses($outp); - } -} +load->library('Spreadsheet_Excel_Reader'); + $this->load->model('analisis_master_model'); + $this->per = $this->analisis_master_model->get_aktif_periode(); + $this->master = $this->analisis_master_model->get_analisis_master($this->session->analisis_master); + $this->subjek = $this->session->subjek_tipe; + } + + public function autocomplete() + { + switch ($this->subjek) { + case 1: + $this->db + ->select('nik, u.nama') + ->from('penduduk_hidup u') + ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); + break; + + case 2: + $this->db + ->select('no_kk, p.nama') + ->from('keluarga_aktif u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 3: + $this->db + ->select('no_kk, p.nama') + ->from('tweb_rtm u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 4: + $this->db + ->select('u.nama AS no_kk, p.nama') + ->from('kelompok u') + ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 5: + $this->db + ->select('u.kode_desa AS no_kk, u.nama_desa as nama') + ->from('config u'); + break; + + case 6: + $this->db + ->select('u.dusun') + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw', '0'); + break; + + case 7: + $this->db + ->select('u.dusun, u.rw') + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw <>', '0'); + break; + + case 8: + $this->db + ->select('u.dusun, u.rw, u.rt') + ->from('tweb_wil_clusterdesa u') + ->where('u.rt <> 0') + ->where('u.rt <> "-"'); + break; + } + $this->dusun_sql(); + $this->rw_sql(); + $this->rt_sql(); + $data = $this->db->get()->result_array(); + + return autocomplete_data_ke_str($data); + } + + private function search_sql() + { + if (empty($cari = $this->session->cari)) { + return; + } + + switch ($this->subjek) { + case 1: + $this->db + ->group_start() + ->like('u.nik', $cari) + ->or_like('u.nama', $cari) + ->group_end(); + break; + + case 2: + $this->db + ->group_start() + ->like('u.no_kk', $cari) + ->or_like('p.nama', $cari) + ->group_end(); + break; + + case 3: + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $this->db + ->group_start() + ->group_start() + ->like('u.no_kk', $cari) + ->or_like('p.nama', $cari) + ->group_end() + ->or_where("(SELECT COUNT(id) FROM penduduk_hidup WHERE nik LIKE '{$kw}' AND id_rtm = u.id) > 1") + ->or_where("(SELECT COUNT(id) FROM penduduk_hidup WHERE nama LIKE '{$kw}' AND id_rtm = u.id) > 1") + ->group_end(); + break; + + case 4: + $this->db + ->group_start() + ->like('u.nama', $cari) + ->or_like('p.nama', $cari) + ->group_end(); + break; + + case 6: + $this->db + ->like('u.dusun', $cari); + break; + + case 7: + $this->db + ->group_start() + ->like('u.dusun', $cari) + ->or_like('u.rw', $cari) + ->group_end(); + break; + + case 8: + $this->db + ->group_start() + ->like('u.dusun', $cari) + ->or_like('u.rw', $cari) + ->or_like('u.rt', $cari) + ->group_end(); + break; + + default: return null; + } + } + + private function dusun_sql() + { + if (empty($this->session->dusun) || $this->subjek == 5) { + return; + } + + $this->db->where('dusun', $this->session->dusun); + } + + private function rw_sql() + { + if (empty($this->session->rw) || $this->subjek == 5) { + return; + } + + $this->db->where('rw', $this->session->rw); + } + + private function rt_sql() + { + if (empty($this->session->rt) || $this->subjek == 5) { + return; + } + + $this->db->where('rt', $this->session->rt); + } + + // Pertanyaan telah diisi atau belum + // $this->session->isi == 1 untuk pertanyaan yg telah diisi + private function isi_sql() + { + if (empty($isi = $this->session->isi)) { + return; + } + + $isi = $isi == 1 ? 1 : 0; + $this->db + ->where("(SELECT COUNT(id_subjek) FROM analisis_respon_hasil WHERE id_subjek = u.id AND id_periode = {$this->per}) = {$isi}"); + } + + private function kelompok_sql($kf = 0) + { + $this->db->where('id_master', $kf); + } + + public function paging($p = 1, $o = 0) + { + $this->list_data_sql(); + $jml_data = $this->db + ->select('COUNT(*) AS jml_data') + ->get()->row()->jml_data; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql() + { + $id_kelompok = $this->master['id_kelompok']; + + switch ($this->subjek) { + case 1: + $this->db + ->from('penduduk_hidup u') + ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); + break; + + case 2: + $this->db + ->from('keluarga_aktif u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 3: + $this->db + ->from('tweb_rtm u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 4: + $this->db + ->from('kelompok u') + ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 5: + $this->db + ->from('config u'); + break; + + case 6: + $this->db + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw', '0'); + break; + + case 7: + $this->db + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw <>', '0') + ->where('u.rw <>', '-'); + break; + + case 8: + $this->db + ->from('tweb_wil_clusterdesa u') + ->where('u.rt <> 0') + ->where('u.rt <> "-"'); + break; + + default: return null; + } + if ($id_kelompok != 0) { + $this->kelompok_sql($id_kelompok); + } + + $this->search_sql(); + $this->dusun_sql(); + $this->rw_sql(); + $this->rt_sql(); + $this->isi_sql(); + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $this->db + ->select("(SELECT id_subjek FROM analisis_respon WHERE id_subjek = u.id AND id_periode = {$this->per} LIMIT 1) as cek") + ->select("(SELECT pengesahan from analisis_respon_bukti b WHERE b.id_master = {$this->master['id']} AND b.id_periode = {$this->per} AND b.id_subjek = u.id) as bukti_pengesahan"); + + switch ($this->subjek) { + case 1: + $this->db + ->select('u.id, u.nik AS nid, u.nama, u.sex, c.dusun, c.rw, c.rt'); + break; + + case 2: + $this->db + ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); + break; + + case 3: + $this->db + ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); + break; + + case 4: + $this->db + ->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt'); + break; + + case 5: + $this->db + ->select('u.id, u.kode_desa as nid, u.nama_desa as nama, "-" as sex, "-" as dusun, "-" as rw, "-" as rt'); + break; + + case 6: + $this->db->select("u.id, u.dusun AS nid, CONCAT(UPPER('{$this->setting->sebutan_dusun} '), u.dusun) as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt"); + break; + + case 7: + $this->db->select("u.id, u.rw AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt"); + break; + + case 8: + $this->db + ->select("u.id, u.rt AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt"); + break; + + default: return null; + } + $this->list_data_sql(); + + switch ($o) { + case 1: $this->db->order_by('u.id'); + break; + + case 2: $this->db->order_by('u.id DESC'); + break; + + case 3: $this->db->order_by('nama'); + break; + + case 4: $this->db->order_by('nama DESC'); + break; + + default:$this->db->order_by('u.id'); + } + + if ($limit > 0) { + $this->db->limit($limit, $offset); + } + + $data = $this->db->get()->result_array(); + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + $data[$i]['set'] = ''; + $data[$i]['jk'] = ($data[$i]['sex'] == 1) ? 'L' : 'P'; + $data[$i]['alamat'] = $data[$i]['dusun'] . ' RW-' . $data[$i]['rw'] . ' RT-' . $data[$i]['rt']; + $j++; + } + + return $data; + } + + public function data_unduh($p, $o) + { + $per = $this->analisis_master_model->get_aktif_periode(); + + switch ($this->subjek) { + case 1: + $this->db->select('u.id, u.nik AS nid, u.nama, u.sex, c.dusun, c.rw, c.rt'); + break; + + case 2: + $this->db->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt'); + break; + + case 3: + $this->db->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw,c.rt'); + break; + + case 4: + $this->db->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt'); + break; + + case 5: + $this->db->select('u.id, u.kode_desa as nid, u.nama_desa as nama, "-" as sex, "-" as dusun, "-" as rw, "-" as rt'); + break; + + case 6: + $this->db->select("u.id, u.dusun AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun) as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt"); + break; + + case 7: + $this->db->select("u.id, u.rw AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt"); + break; + + case 8: + $this->db->select("u.id, u.rt AS nid, CONCAT( UPPER('{$this->setting->sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt"); + break; + + default: + return null; + break; + } + + $this->list_data_sql(); + + switch ($o) { + case 1: $this->db->order_by('u.id'); + break; + + case 2: $this->db->order_by('u.id DESC'); + break; + + case 3: $this->db->order_by('nama'); + break; + + case 4: $this->db->order_by('nama DESC'); + break; + + default:$this->db->order_by('u.id'); + } + + $data = $this->db->get()->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + if ($p == 1) { + $par = $this->db + ->select('kode_jawaban, asign, jawaban, r.id_indikator, r.id_parameter AS korek') + ->from('analisis_respon r') + ->join('analisis_parameter p', 'p.id = r.id_parameter', 'left') + ->where('r.id_periode', $per) + ->where('r.id_subjek', $data[$i]['id']) + ->order_by('r.id_indikator') + ->get()->result_array(); + $data[$i]['par'] = $par; + } else { + $data[$i]['par'] = null; + } + + $data[$i]['jk'] = ($data[$i]['sex'] == 1) ? 'L' : 'P'; + } + + return $data; + } + + public function update_kuisioner($id = 0, $per = 0) + { + $outp = true; + $this->session->error_msg = ''; + if ($per == 0) { + $per = $this->analisis_master_model->get_aktif_periode(); + $id_master = $_SESSION['analisis_master']; + } else { + $id_master = $this->db->get_where('analisis_periode', ['id' => $per])->row_array(); + $id_master = $id_master['id_master']; + } + $ia = 0; + $it = 0; + $ir = 0; + $ic = 0; + + if (isset($_POST['rb'])) { + $id_rbx = $_POST['rb']; + + foreach ($id_rbx as $id_px) { + if ($id_px != '') { + $ir = 1; + } + } + } + if (isset($_POST['cb'])) { + $id_rby = $_POST['cb']; + + foreach ($id_rby as $id_py) { + if ($id_py != '') { + $ic = 1; + } + } + } + if (isset($_POST['ia'])) { + $id_iax = $_POST['ia']; + + foreach ($id_iax as $id_px) { + if ($id_px != '') { + $ia = 1; + } + } + } + if (isset($_POST['it'])) { + $id_iay = $_POST['it']; + + foreach ($id_iay as $id_py) { + if ($id_py != '') { + $it = 1; + } + } + } + + //CEK ada input + if ($ir != 0 || $ic != 0 || $ia != 0 || $it != 0) { + $sql = 'DELETE FROM analisis_respon WHERE id_subjek = ? AND id_periode=?'; + $this->db->query($sql, [$id, $per]); + if (! empty($_POST['rb'])) { + $id_rb = $_POST['rb']; + + foreach ($id_rb as $id_p) { + if (empty($id_p)) { + continue; + } // Abaikan isian kosong + $p = preg_split('/\\./', $id_p); + + $data['id_subjek'] = $id; + $data['id_periode'] = $per; + $data['id_indikator'] = $p[0]; + $data['id_parameter'] = $p[1]; + $outp &= $this->db->insert('analisis_respon', $data); + } + } + if (isset($_POST['cb'])) { + $id_cb = $_POST['cb']; + if ($id_cb) { + foreach ($id_cb as $id_p) { + $p = preg_split('/\\./', $id_p); + + $data['id_subjek'] = $id; + $data['id_periode'] = $per; + $data['id_indikator'] = $p[0]; + $data['id_parameter'] = $p[1]; + $outp &= $this->db->insert('analisis_respon', $data); + } + } + } + + if (isset($_POST['ia'])) { + $id_ia = $_POST['ia']; + + foreach ($id_ia as $id_p) { + if ($id_p != '') { + unset($data); + $indikator = key($id_ia); + + $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; + $query = $this->db->query($sql, [$id_p, $indikator]); + $dx = $query->row_array(); + if (! $dx) { + $data['id_indikator'] = $indikator; + $data['jawaban'] = $id_p; + $outp &= $this->db->insert('analisis_parameter', $data); + unset($data); + + $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; + $query = $this->db->query($sql, [$id_p, $indikator]); + $dx = $query->row_array(); + + $data['id_parameter'] = $dx['id']; + $data['id_indikator'] = $indikator; + $data['id_subjek'] = $id; + $data['id_periode'] = $per; + $outp &= $this->db->insert('analisis_respon', $data); + } else { + unset($data); + $data['id_indikator'] = $indikator; + $data['id_parameter'] = $dx['id']; + $data['id_subjek'] = $id; + $data['id_periode'] = $per; + $outp &= $this->db->insert('analisis_respon', $data); + } + } + next($id_ia); + } + } + if (isset($_POST['it'])) { + $id_it = $_POST['it']; + + foreach ($id_it as $id_p) { + if ($id_p != '') { + unset($data); + $indikator = key($id_it); + + $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; + $query = $this->db->query($sql, [$id_p, $indikator]); + $dx = $query->row_array(); + if (! $dx) { + $data['id_indikator'] = $indikator; + $data['jawaban'] = $id_p; + $outp &= $this->db->insert('analisis_parameter', $data); + unset($data); + + $sql = 'SELECT * FROM analisis_parameter u WHERE jawaban = ? AND id_indikator = ?'; + $query = $this->db->query($sql, [$id_p, $indikator]); + $dx = $query->row_array(); + + $data2['id_parameter'] = $dx['id']; + $data2['id_indikator'] = $indikator; + $data2['id_subjek'] = $id; + $data2['id_periode'] = $per; + $outp &= $this->db->insert('analisis_respon', $data2); + } else { + unset($data); + $data['id_indikator'] = $indikator; + $data['id_parameter'] = $dx['id']; + + $data['id_subjek'] = $id; + $data['id_periode'] = $per; + $outp &= $this->db->insert('analisis_respon', $data); + } + } + next($id_it); + } + } + + $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis=1 AND r.id_periode=?'; + $query = $this->db->query($sql, [$id, $per]); + $dx = $query->row_array(); + + $upx['id_master'] = $id_master; + $upx['akumulasi'] = 0 + $dx['jml']; + $upx['id_subjek'] = $id; + $upx['id_periode'] = $per; + + $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = ? AND id_periode=?'; + $this->db->query($sql, [$id, $per]); + $outp &= $this->db->insert('analisis_respon_hasil', $upx); + } + if (isset($_FILES['pengesahan'])) { + $lokasi_file = $_FILES['pengesahan']['tmp_name']; + $tipe_file = $_FILES['pengesahan']['type']; + if (! empty($lokasi_file)) { + if ($tipe_file != 'image/jpeg' && $tipe_file != 'image/pjpeg') { + $_SESSION['sukses'] = -1; + } else { + $nama_file = $_SESSION['analisis_master'] . '_' . $per . '_' . $id . '_' . mt_rand(10000, 99999) . '.jpg'; + UploadPengesahan($nama_file); + $bukti['pengesahan'] = $nama_file; + $bukti['id_master'] = $id_master; + $bukti['id_subjek'] = $id; + $bukti['id_periode'] = $per; + + $ada_bukti = $this->db->where(['id_master' => $id_master, 'id_subjek' => $id, 'id_periode' => $per])->get('analisis_respon_bukti')->num_rows(); + if ($ada_bukti > 0) { + $outp = $this->db->where(['id_master' => $id_master, 'id_subjek' => $id, 'id_periode' => $per])->update('analisis_respon_bukti', $bukti); + } else { + $outp &= $this->db->insert('analisis_respon_bukti', $bukti); + } + } + } + } + status_sukses($outp); + } + + private function list_jawab2($id = 0, $in = 0, $per = 0) + { + if (isset($this->session->delik)) { + $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban FROM analisis_parameter s WHERE id_indikator = ? ORDER BY s.kode_jawaban ASC '; + $query = $this->db->query($sql, $in); + } else { + $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban,(SELECT count(id_subjek) FROM analisis_respon WHERE id_parameter = s.id AND id_subjek = ? AND id_periode=?) as cek FROM analisis_parameter s WHERE id_indikator = ? ORDER BY s.kode_jawaban ASC '; + $query = $this->db->query($sql, [$id, $per, $in]); + } + + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + if (isset($this->session->delik)) { + $data[$i]['cek'] = 0; + } + } + + return $data; + } + + private function list_jawab3($id = 0, $in = 0, $per = 0) + { + $sql = 'SELECT s.id as id_parameter,s.jawaban FROM analisis_respon r LEFT JOIN analisis_parameter s ON r.id_parameter = s.id WHERE r.id_indikator = ? AND r.id_subjek = ? AND r.id_periode=?'; + $query = $this->db->query($sql, [$in, $id, $per]); + + return $query->row_array(); + } + + public function list_indikator($id = 0) + { + $per = $this->analisis_master_model->get_aktif_periode(); + + $data = $this->db + ->select('u.id, u.id_kategori, u.nomor, u.id_tipe, u.pertanyaan, u.referensi, k.kategori') + ->from('analisis_indikator u') + ->join('analisis_kategori_indikator k', 'u.id_kategori = k.id', 'left') + ->where('u.id_master', $this->session->analisis_master) + ->order_by("LPAD(u.nomor, 10, ' ') ASC") + ->get() + ->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { + $data[$i]['parameter_respon'] = $this->list_jawab2($id, $data[$i]['id'], $per); + } else { + $data[$i]['parameter_respon'] = (isset($this->session->delik)) ? '' : $this->list_jawab3($id, $data[$i]['id'], $per); + } + } + + return $data; + } + + //CHILD----------------------- + + private function list_jawab4($id = 0, $in = 0, $per = 0) + { + if (isset($this->session->delik)) { + $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban FROM analisis_parameter s WHERE id_indikator = ? '; + $query = $this->db->query($sql, $in); + } else { + $sql = 'SELECT s.id as id_parameter,s.jawaban,s.kode_jawaban,(SELECT count(id_subjek) FROM analisis_respon WHERE id_parameter = s.id AND id_subjek = ? AND id_periode=?) as cek FROM analisis_parameter s WHERE id_indikator = ? '; + $query = $this->db->query($sql, [$id, $per, $in]); + } + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + if (isset($this->session->delik)) { + $data[$i]['cek'] = 0; + } + } + + return $data; + } + + private function list_jawab5($id = 0, $in = 0, $per = 0) + { + $sql = 'SELECT s.id as id_parameter,s.jawaban FROM analisis_respon r LEFT JOIN analisis_parameter s ON r.id_parameter = s.id WHERE r.id_indikator = ? AND r.id_subjek = ? AND r.id_periode = ?'; + $query = $this->db->query($sql, [$in, $id, $per]); + + return $query->row_array(); + } + + public function list_indikator_child($id = 0) + { + $sql = 'SELECT id_child FROM analisis_master WHERE id = ? '; + $query = $this->db->query($sql, $_SESSION['analisis_master']); + $id_child = $query->row_array(); + $id_child = $id_child['id_child']; + + $sql = 'SELECT id FROM analisis_periode WHERE id_master = ? AND aktif = 1'; + $query = $this->db->query($sql, $id_child); + $per = $query->row_array(); + $per = $per['id']; + + $sql = 'SELECT * FROM analisis_indikator u WHERE id_master = ? '; + $sql .= ' ORDER BY nomor'; + $query = $this->db->query($sql, $id_child); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { + $data[$i]['parameter_respon'] = $this->list_jawab4($id, $data[$i]['id'], $per); + } else { + $data[$i]['parameter_respon'] = (isset($this->session->delik)) ? '' : $this->list_jawab5($id, $data[$i]['id'], $per); + } + } + + return $data; + } + + public function get_periode_child() + { + $sql = 'SELECT id_child FROM analisis_master WHERE id = ? '; + $query = $this->db->query($sql, $_SESSION['analisis_master']); + $id_child = $query->row_array(); + $id_child = $id_child['id_child']; + + $sql = 'SELECT id FROM analisis_periode WHERE id_master = ? AND aktif = 1'; + $query = $this->db->query($sql, $id_child); + $per = $query->row_array(); + $per = $per['id']; + + return $per; + } + //--------------------------- + + public function list_bukti($id = 0) + { + $per = $this->analisis_master_model->get_aktif_periode(); + $sql = 'SELECT pengesahan FROM analisis_respon_bukti WHERE id_subjek = ? AND id_master = ? AND id_periode = ? '; + $sql .= ' ORDER BY tgl_update DESC'; + $query = $this->db->query($sql, [$id, $_SESSION['analisis_master'], $per]); + $data = $query->result_array(); + + return $data; + } + + public function get_subjek($id = 0) + { + $sebutan_dusun = ucwords($this->setting->sebutan_dusun); + + switch ($this->subjek) { + case 1: + $this->db + ->select('u.*, u.nik AS nid, c.dusun, c.rw, c.rt') + ->select("CONCAT('{$sebutan_dusun} ', c.dusun, ', RT ', c.rt, ' / RW ', c.rw) as wilayah") + ->from('penduduk_hidup u') + ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); + break; + + case 2: + $this->db + ->select('u.*, u.no_kk AS nid, p.nik AS nik_kepala, p.nama, p.sex, c.dusun, c.rw, c.rt') + ->select("CONCAT('{$sebutan_dusun} ', c.dusun, ', RT ', c.rt, ' / RW ', c.rw) as wilayah") + ->from('keluarga_aktif u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'u.id_cluster = c.id', 'left'); + + break; + + case 3: + $this->db + ->select('u.id, u.no_kk AS nid, p.nama, p.sex, c.dusun, c.rw, c.rt') + ->from('tweb_rtm u') + ->join('penduduk_hidup p', 'u.nik_kepala = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 4: $ + {$this}->db + ->select('u.id, u.kode AS nid, u.nama, p.sex, c.dusun, c.rw, c.rt') + ->join('penduduk_hidup p', 'u.id_ketua = p.id', 'left') + ->join('tweb_wil_clusterdesa c', 'p.id_cluster = c.id', 'left'); + break; + + case 5: + $this->db + ->select("u.id, u.kode_desa AS nid, u.nama_desa as nama, '-' as sex, '-' as dusun, '-' as rw, '-' as rt") + ->select(" + u.nama_desa, u.kode_desa, u.kode_pos, u.alamat_kantor, u.telepon as no_telepon_kantor_desa, u.email_desa, CONCAT('Lintang : ', u.lat, ', ', 'Bujur : ', u.lng) as titik_koordinat_desa") + ->select(' + c.pamong_nip AS nip_kepala_desa, + (case when p.sex is not null then p.sex else c.pamong_sex end) as jk_kepala_desa, + (case when p.pendidikan_kk_id is not null then b.nama else c.pamong_pendidikan end) as pendidikan_kepala_desa, + (case when p.nama is not null then p.nama else c.pamong_nama end) AS nama_kepala_desa, + p.telepon as no_telepon_kepala_desa + ') + ->from('config u') + ->join('tweb_desa_pamong c', 'u.pamong_id = c.pamong_id', 'left') + ->join('tweb_penduduk p', 'c.id_pend = p.id', 'left') + ->join('tweb_penduduk_pendidikan_kk b', 'p.pendidikan_kk_id = b.id', 'LEFT') + ->join('tweb_penduduk_sex x', 'p.sex = x.id', 'LEFT') + ->join('tweb_penduduk_pendidikan_kk b2', 'c.pamong_pendidikan = b2.id', 'LEFT') + ->join('tweb_penduduk_sex x2', 'c.pamong_sex = x2.id', 'LEFT'); + + break; + + case 6: + $this->db + ->select("u.id, u.dusun AS nid, UPPER('{$sebutan_dusun}') as nama, '-' as sex, u.dusun, '-' as rw, '-' as rt") + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw', '0'); + break; + + case 7: + $this->db + ->select("u.id, u.rw AS nid, CONCAT( UPPER('{$sebutan_dusun} '), u.dusun, ' RW ', u.rw) as nama, '-' as sex, u.dusun, u.rw, '-' as rt") + ->from('tweb_wil_clusterdesa u') + ->where('u.rt', '0') + ->where('u.rw <>', '0'); + break; + + case 8: + $this->db + ->select("u.id, u.rt AS nid, CONCAT( UPPER('{$sebutan_dusun} '), u.dusun, ' RW ', u.rw, ' RT ', u.rt) as nama, '-' as sex, u.dusun, u.rw, u.rt") + ->from('tweb_wil_clusterdesa u') + ->where('u.rt <> 0') + ->where('u.rt <> "-"'); + break; + + default: return null; + } + $data = $this->db + ->where('u.id', $id) + ->limit(1) + ->get() + ->row_array(); + + // Data tambahan subjek desa + if ($this->subjek == 5) { + $tambahan = [ + 'jumlah_total_penduduk' => $this->db->count_all_results('penduduk_hidup'), + 'jumlah_penduduk_laki_laki' => $this->db->where('sex', 1)->count_all_results('penduduk_hidup'), + 'jumlah_penduduk_perempuan' => $this->db->where('sex', 2)->count_all_results('penduduk_hidup'), + 'jumlah_penduduk_pedatang' => $this->db->where('status', 2)->count_all_results('penduduk_hidup'), + 'jumlah_penduduk_yang_pergi' => $this->db->where('kode_peristiwa', 3)->count_all_results('log_penduduk'), + 'jumlah_total_kepala_keluarga' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->count_all_results('keluarga_aktif u'), + 'jumlah_kepala_keluarga_laki_laki' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->where('sex', 1)->count_all_results('keluarga_aktif u'), + 'jumlah_kepala_keluarga_perempuan' => $this->db->join('penduduk_hidup t', 'u.nik_kepala = t.id', 'left')->where('sex', 2)->count_all_results('keluarga_aktif u'), + 'jumlah_peserta_bpjs' => $this->db->where('bpjs_ketenagakerjaan != ', null)->count_all_results('penduduk_hidup'), + ]; + + $data = array_merge($data, $tambahan); + } + + return $data; + } + + public function list_anggota($id = 0) + { + $subjek = $this->subjek; + if ($subjek == 2 || $subjek == 3) { + switch ($subjek) { + case 2: $sql = 'SELECT u.* FROM penduduk_hidup u WHERE u.id_kk = ? ORDER BY kk_level'; + break; + + case 3: $sql = 'SELECT u.* FROM penduduk_hidup u WHERE u.id_rtm = ? ORDER BY rtm_level'; + break; + + default: return null; + } + $query = $this->db->query($sql, $id); + + return $query->result_array(); + } + + return null; + } + + public function aturan_unduh() + { + $subjek = $this->subjek; + $order_sql = ' ORDER BY u.nomor ASC'; + $sql = 'SELECT u.*,t.tipe AS tipe_indikator,k.kategori AS kategori FROM analisis_indikator u LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id WHERE u.id_master = ? '; + $sql .= $order_sql; + + $query = $this->db->query($sql, $_SESSION['analisis_master']); + $data = $query->result_array(); + + $per = $this->analisis_master_model->get_aktif_periode(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['id_tipe'] == 1 || $data[$i]['id_tipe'] == 2) { + $sql2 = 'SELECT i.id,i.kode_jawaban,i.jawaban FROM analisis_parameter i WHERE i.id_indikator = ? ORDER BY i.kode_jawaban ASC '; + $query2 = $this->db->query($sql2, $data[$i]['id']); + $respon2 = $query2->result_array(); + $data[$i]['par'] = $respon2; + } else { + $data[$i]['par'] = null; + } + if ($data[$i]['act_analisis'] == 1) { + $data[$i]['act_analisis'] = 'Ya'; + } else { + $data[$i]['act_analisis'] = 'Tidak'; + } + } + + return $data; + } + + public function indikator_data_unduh() + { + $order_sql = ' ORDER BY u.nomor'; + + $sql = 'SELECT u.* FROM analisis_indikator u WHERE u.id_master = ? '; + $sql .= $order_sql; + $query = $this->db->query($sql, $_SESSION['analisis_master']); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + $data[$i]['par'] = null; + + $sql2 = 'SELECT id_parameter FROM analisis_respon WHERE id_indikator = ? AND asign = 1 '; + $query2 = $this->db->query($sql2, $data[$i]['id']); + $par = $query2->result_array(); + $data[$i]['par'] = $par; + } + + return $data; + } + + public function indikator_unduh($p = 0) + { + $data = $this->db + ->select('u.*') + ->where('u.id_master', $this->session->analisis_master) + ->order_by('LPAD(u.nomor, 10, " ")') + ->get('analisis_indikator u') + ->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + $data[$i]['par'] = null; + + if ($p == 2) { + $par = $this->db + ->select('*') + ->where('id_indikator', $data[$i]['id']) + ->where('asign', 1) + ->get('analisis_parameter') + ->result_array(); + $data[$i]['par'] = $par; + } + } + + return $data; + } + + public function pre_update($pr = 0) + { + if ($pr == 0) { + $per = $this->analisis_master_model->get_aktif_periode(); + } else { + $per = $pr; + } + + $sql = 'SELECT DISTINCT(id_subjek) AS id FROM analisis_respon WHERE id_periode = ? '; + $query = $this->db->query($sql, $per); + $data = $query->result_array(); + + $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = 0'; + $this->db->query($sql); + + $sql = 'DELETE FROM analisis_respon WHERE id_subjek = 0'; + $this->db->query($sql); + + $sql = 'DELETE FROM analisis_respon_hasil WHERE id_periode = ?'; + $this->db->query($sql, $per); + + for ($i = 0; $i < count($data); $i++) { + $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis=1 AND r.id_periode=?'; + $query = $this->db->query($sql, [$data[$i]['id'], $per]); + $dx = $query->row_array(); + + $upx[$i]['id_master'] = $_SESSION['analisis_master']; + $upx[$i]['akumulasi'] = 0 + $dx['jml']; + $upx[$i]['id_subjek'] = $data[$i]['id']; + $upx[$i]['id_periode'] = $per; + } + if (@$upx) { + $this->db->insert_batch('analisis_respon_hasil', $upx); + } + } + + public function update_hasil($id = 0) + { + $per = $this->analisis_master_model->get_aktif_periode(); + + $sql = 'SELECT SUM(i.bobot * nilai) as jml FROM analisis_respon r LEFT JOIN analisis_indikator i ON r.id_indikator = i.id LEFT JOIN analisis_parameter z ON r.id_parameter = z.id WHERE r.id_subjek = ? AND i.act_analisis = 1 AND r.id_periode = ?'; + $query = $this->db->query($sql, [$id, $per]); + $dx = $query->row_array(); + + $upx['id_master'] = $_SESSION['analisis_master']; + $upx['akumulasi'] = 0 + $dx['jml']; + $upx['id_subjek'] = $id; + $upx['id_periode'] = $per; + + $sql = 'DELETE FROM analisis_respon_hasil WHERE id_subjek = ? AND id_periode=?'; + $this->db->query($sql, [$id, $per]); + $this->db->insert('analisis_respon_hasil', $upx); + } + + public function import_respon($op = 0) + { + $per = $this->analisis_master_model->get_aktif_periode(); + + $subjek = $this->subjek; + $mas = $_SESSION['analisis_master']; + $key = ($per + 3) * ($mas + 7) * ($subjek * 3); + $key = 'AN' . $key; + $respon = []; + + $sql = 'SELECT * FROM analisis_indikator WHERE id_master=? ORDER BY id ASC'; + $query = $this->db->query($sql, $_SESSION['analisis_master']); + $indikator = $query->result_array(); + $jml = count($indikator); + + $data = new Spreadsheet_Excel_Reader($_FILES['respon']['tmp_name']); + $s = 0; + $baris = $data->rowcount($s); + $kolom = $data->colcount($s); + + $ketemu = 0; + + for ($b = 1; $b <= $baris; $b++) { + for ($k = 1; $k <= $kolom; $k++) { + $isi = $data->val($b, $k, $s); + // ketemu njuk stop + if ($isi == $key) { + $br = $b + 1; + $kl = $k + 1; + + $b = $baris + 1; + $k = $kolom + 1; + $ketemu = 1; + } + } + } + if ($ketemu == 1) { + $dels = ''; + $true = 0; + + for ($i = $br; $i <= $baris; $i++) { + $id_subjek = $data->val($i, $kl - 1, $s); + + $j = $kl; + + foreach ($indikator as $indi) { + $isi = $data->val($i, $j, $s); + if ($isi != '') { + $true = 1; + } + + $j++; + } + if ($true == 1) { + $dels .= $id_subjek . ','; + $true = 0; + } + } + + $dels .= '9999999'; + //cek ada row + $this->db->where("id_subjek in({$dels})")->where('id_periode', $per)->delete('analisis_respon'); + $dels = ''; + + for ($i = $br; $i <= $baris; $i++) { + $id_subjek = $data->val($i, $kl - 1, $s); + if (strlen($id_subjek) > 14 && $subjek == 1) { + $sqls = 'SELECT id FROM penduduk_hidup WHERE nik = ?;'; + $querys = $this->db->query($sqls, [$id_subjek]); + $isbj = $querys->row_array(); + $id_subjek = $isbj['id']; + } elseif ($subject == 3) { + // sasaran rumah tangga, simpan id, bukan nomor rumah tangga + $id_subjek = $this->db->select('id') + ->where('id_rtm', $id_subjek) + ->get('tweb_rtm') + ->row()->id; + } + + $j = $kl + $op; + $all = ''; + + foreach ($indikator as $indi) { + $isi = $data->val($i, $j, $s); + if ($isi != '') { + if ($indi['id_tipe'] == 1) { + $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND kode_jawaban = ?;'; + $query = $this->db->query($sql, [$indi['id'], $isi]); + $param = $query->row_array(); + + if ($param) { + $in_param = $param['id']; + } else { + if ($isi == '') { + $in_param = 0; + } else { + $in_param = -1; + } + } + + $respon[] = [ + 'id_parameter' => $in_param, + 'id_indikator' => $indi['id'], + 'id_subjek' => $id_subjek, + 'id_periode' => $per, ]; + } elseif ($indi['id_tipe'] == 2) { + $this->respon_checkbox($indi, $isi, $id_subjek, $per, $respon); + } else { + $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND jawaban = ?;'; + $query = $this->db->query($sql, [$indi['id'], $isi]); + $param = $query->row_array(); + + // apakah sdh ada jawaban yg sama + if ($param) { + $in_param = $param['id']; + } else { + $parameter['jawaban'] = $isi; + $parameter['id_indikator'] = $indi['id']; + $parameter['asign'] = 0; + + $this->db->insert('analisis_parameter', $parameter); + + $sql = 'SELECT id FROM analisis_parameter WHERE id_indikator = ? AND jawaban = ?;'; + $query = $this->db->query($sql, [$indi['id'], $isi]); + $param = $query->row_array(); + $in_param = $param['id']; + } + + $respon[] = [ + 'id_parameter' => $in_param, + 'id_indikator' => $indi['id'], + 'id_subjek' => $id_subjek, + 'id_periode' => $per, ]; + } + } + + $j++; + } + } + + if (count($respon) > 0) { + $outp = $this->db->insert_batch('analisis_respon', $respon); + } else { + $outp = false; + $_SESSION['error_msg'] = 'Tidak ada data'; + } + } + + $this->pre_update(); + + status_sukses($outp); //Tampilkan Pesan + } + + private function respon_checkbox($indi, $isi, $id_subjek, $per, &$respon) + { + $list_isi = explode(',', $isi); + + foreach ($list_isi as $isi_ini) { + if ($indi['is_teks'] == 1) { + // Isian sebagai teks pilihan bukan kode + $teks = strtolower($isi_ini); + $param = $this->db->where('id_indikator', $indi['id'])->where("LOWER(jawaban) = '{$teks}'") + ->get('analisis_parameter')->row_array(); + } else { + $param = $this->db->where('id_indikator', $indi['id'])->where('kode_jawaban', $isi_ini) + ->get('analisis_parameter')->row_array(); + } + if ($param['id'] != '') { + $in_param = $param['id']; + $respon[] = [ + 'id_parameter' => $in_param, + 'id_indikator' => $indi['id'], + 'id_subjek' => $id_subjek, + 'id_periode' => $per, + ]; + } + } + } + + public function get_respon_by_id_periode($id_periode = 0, $subjek = 1) + { + $result = []; + if ($subjek == 1) { // Untuk Subjek Penduduk + $list_penduduk = $this->db->select('r.*, p.nik') + ->from('analisis_respon r') + ->join('tweb_penduduk p', 'r.id_subjek = p.id') + ->where('r.id_periode', $id_periode) + ->get() + ->result_array(); + + foreach ($list_penduduk as $penduduk) { + $result[$penduduk['nik']][$penduduk['id_indikator']] = $penduduk; + } + } else { // Untuk Subjek Keluarga + $list_keluarga = $this->db->select('r.*, k.no_kk') + ->from('analisis_respon r') + ->join('tweb_keluarga k', 'r.id_subjek = k.id') + ->where('r.id_periode', $id_periode) + ->get() + ->result_array(); + + foreach ($list_keluarga as $keluarga) { + $result[$keluarga['no_kk']][$keluarga['id_indikator']] = $keluarga; + } + } + + return $result; + } + + public function perbaharui($id_subjek = 0) + { + // Daftar indikator yg menggunakan referensi + $id_indikator = $this->db + ->select('id') + ->get_where('analisis_indikator', ['id_master' => $this->session->analisis_master]) + ->result_array(); + + if ($id_indikator) { + $id_indikator = array_column($id_indikator, 'id'); + + $outp = $this->db + ->where('id_subjek', $id_subjek) + ->where_in('id_indikator', $id_indikator) + ->delete('analisis_respon'); + } + + status_sukses($outp); + } +} diff --git a/donjo-app/models/Analisis_statistik_jawaban_model.php b/donjo-app/models/Analisis_statistik_jawaban_model.php index 71dcedcf3a..ad7ae82331 100644 --- a/donjo-app/models/Analisis_statistik_jawaban_model.php +++ b/donjo-app/models/Analisis_statistik_jawaban_model.php @@ -1,394 +1,394 @@ -hapus_data_kosong(); - } - - public function autocomplete() - { - return $this->autocomplete_str('pertanyaan', 'analisis_indikator'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (u.pertanyaan LIKE '{$kw}' OR u.pertanyaan LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND u.act_analisis = {$kf}"; - - return $filter_sql; - } - } - - private function master_sql() - { - if (isset($_SESSION['analisis_master'])) { - $kf = $_SESSION['analisis_master']; - $filter_sql = " AND u.id_master = {$kf}"; - - return $filter_sql; - } - } - - private function tipe_sql() - { - if (isset($_SESSION['tipe'])) { - $kf = $_SESSION['tipe']; - $filter_sql = " AND u.id_tipe = {$kf}"; - - return $filter_sql; - } - } - - private function kategori_sql() - { - if (isset($_SESSION['kategori'])) { - $kf = $_SESSION['kategori']; - $filter_sql = " AND u.id_kategori = {$kf}"; - - return $filter_sql; - } - } - - private function dusun_sql() - { - if (isset($_SESSION['dusun'])) { - $kf = $_SESSION['dusun']; - $dusun_sql = " AND a.dusun = '{$kf}'"; - - return $dusun_sql; - } - } - - private function rw_sql() - { - if (isset($_SESSION['rw'])) { - $kf = $_SESSION['rw']; - $rw_sql = " AND a.rw = '{$kf}'"; - - return $rw_sql; - } - } - - private function rt_sql() - { - if (isset($_SESSION['rt'])) { - $kf = $_SESSION['rt']; - $rt_sql = " AND a.rt = '{$kf}'"; - - return $rt_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(id) AS id FROM analisis_indikator u WHERE 1'; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - $sql .= $this->master_sql(); - $sql .= $this->tipe_sql(); - $sql .= $this->kategori_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['id']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $subjek = $_SESSION['subjek_tipe']; - - switch ($subjek) { - case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - } - - switch ($o) { - case 1: $order_sql = ' ORDER BY u.nomor'; - break; - - case 2: $order_sql = ' ORDER BY u.nomor DESC'; - break; - - case 3: $order_sql = ' ORDER BY u.pertanyaan'; - break; - - case 4: $order_sql = ' ORDER BY u.pertanyaan DESC'; - break; - - case 5: $order_sql = ' ORDER BY u.id_kategori'; - break; - - case 6: $order_sql = ' ORDER BY u.id_kategori DESC'; - break; - - default:$order_sql = ' ORDER BY u.nomor'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT u.*, t.tipe AS tipe_indikator, k.kategori AS kategori - FROM analisis_indikator u - LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id - LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id - WHERE 1 '; - - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - $sql .= $this->master_sql(); - $sql .= $this->tipe_sql(); - $sql .= $this->kategori_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $per = $this->analisis_master_model->get_aktif_periode(); - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - $data[$i]['jumlah'] = '-'; - - $sql1 = "SELECT COUNT(DISTINCT r.id_subjek) AS jml FROM analisis_respon r {$sbj} WHERE r.id_indikator = ? AND r.id_periode = {$per} AND id_parameter > 0"; - $sql1 .= $this->dusun_sql(); - $sql1 .= $this->rw_sql(); - $sql1 .= $this->rt_sql(); - //$sql1 .= " GROUP BY r.id_indikator "; - $query1 = $this->db->query($sql1, $data[$i]['id']); - $respon = $query1->row_array(); - $data[$i]['bobot'] = $respon['jml']; - - $dus = $this->dusun_sql(); - $rw = $this->rw_sql(); - $rt = $this->rt_sql(); - - $sql2 = "SELECT i.id,i.kode_jawaban,i.jawaban,(SELECT COUNT(r.id_subjek) FROM analisis_respon r {$sbj} WHERE r.id_parameter = i.id AND r.id_periode = {$per} {$dus} {$rw} {$rt} ) AS jml_p FROM analisis_parameter i WHERE i.id_indikator = ? ORDER BY i.kode_jawaban "; - - $query2 = $this->db->query($sql2, $data[$i]['id']); - $respon2 = $query2->result_array(); - $data[$i]['par'] = $respon2; - - if ($data[$i]['act_analisis'] == 1) { - $data[$i]['act_analisis'] = 'Ya'; - } else { - $data[$i]['act_analisis'] = 'Tidak'; - } - - if ($data[$i]['id_tipe'] == 3) { - $data[$i]['jumlah'] = 0; - - foreach ($respon2 as $par) { - $data[$i]['jumlah'] += $par['jawaban'] * $par['jml_p']; - } - } - $j++; - } - - return $data; - } - - public function list_indikator($id = 0) - { - $subjek = $_SESSION['subjek_tipe']; - - switch ($subjek) { - case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - } - - $sql = 'SELECT * FROM analisis_parameter WHERE id_indikator = ? ORDER BY kode_jawaban ASC '; - $query = $this->db->query($sql, $id); - $data = $query->result_array(); - $per = $this->analisis_master_model->get_aktif_periode(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - $sql = "SELECT COUNT(r.id_subjek) AS jml FROM analisis_respon r {$sbj} WHERE r.id_parameter = ? AND r.id_periode = {$per} "; - $sql .= $this->dusun_sql(); - $sql .= $this->rw_sql(); - $sql .= $this->rt_sql(); - $query = $this->db->query($sql, $data[$i]['id']); - $respon = $query->row_array(); - - $data[$i]['nilai'] = $respon['jml']; - } - - return $data; - } - - public function list_subjek($id = 0) - { - $per = $this->analisis_master_model->get_aktif_periode(); - - $subjek = $_SESSION['subjek_tipe']; - - switch ($subjek) { - case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - - case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; - break; - } - - $sql = "SELECT p.id AS id_pend,r.id_subjek,p.nama,p.nik,(SELECT DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(tanggallahir)), '%Y')+0 FROM tweb_penduduk WHERE id = p.id) AS umur,p.sex,a.dusun,a.rw,a.rt FROM analisis_respon r {$sbj} WHERE r.id_parameter = ? AND r.id_periode = {$per}"; - - $sql .= $this->dusun_sql(); - $sql .= $this->rw_sql(); - $sql .= $this->rt_sql(); - $query = $this->db->query($sql, $id); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - if ($data[$i]['sex'] == 1) { - $data[$i]['sex'] = 'Laki-laki'; - } else { - $data[$i]['sex'] = 'Perempuan'; - } - - $data[$i]['no'] = $i + 1; - } - - return $data; - } - - public function get_analisis_indikator($id = 0) - { - $sql = 'SELECT * FROM analisis_indikator WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } - - public function get_analisis_parameter($id = '') - { - $sql = 'SELECT * FROM analisis_parameter WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } - - public function list_tipe() - { - $sql = 'SELECT * FROM analisis_tipe_indikator'; - $query = $this->db->query($sql); - - return $query->result_array(); - } - - public function list_kategori() - { - $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1'; - $sql .= $this->master_sql(); - $query = $this->db->query($sql); - - return $query->result_array(); - } - - public function hapus_data_kosong() - { - // Hapus data analisis_parameter dengan responden 0 untuk tipe pertanyaan 3 dan 4 - $hapus = $this->db - ->select('ap.id') - ->from('analisis_respon ar') - ->join('analisis_parameter ap', 'ar.id_parameter = ap.id', 'right') - ->join('analisis_indikator ai', 'ai.id = ap.id_indikator', 'left') - ->where_in('ai.id_tipe', [3, 4]) - ->where('id_subjek', null) - ->get() - ->result_array(); - - if ($hapus) { - return $this->db - ->where_in('id', array_column($hapus, 'id')) - ->delete('analisis_parameter'); - } - - return true; - } -} +hapus_data_kosong(); + } + + public function autocomplete() + { + return $this->autocomplete_str('pertanyaan', 'analisis_indikator'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (u.pertanyaan LIKE '{$kw}' OR u.pertanyaan LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND u.act_analisis = {$kf}"; + + return $filter_sql; + } + } + + private function master_sql() + { + if (isset($_SESSION['analisis_master'])) { + $kf = $_SESSION['analisis_master']; + $filter_sql = " AND u.id_master = {$kf}"; + + return $filter_sql; + } + } + + private function tipe_sql() + { + if (isset($_SESSION['tipe'])) { + $kf = $_SESSION['tipe']; + $filter_sql = " AND u.id_tipe = {$kf}"; + + return $filter_sql; + } + } + + private function kategori_sql() + { + if (isset($_SESSION['kategori'])) { + $kf = $_SESSION['kategori']; + $filter_sql = " AND u.id_kategori = {$kf}"; + + return $filter_sql; + } + } + + private function dusun_sql() + { + if (isset($_SESSION['dusun'])) { + $kf = $_SESSION['dusun']; + $dusun_sql = " AND a.dusun = '{$kf}'"; + + return $dusun_sql; + } + } + + private function rw_sql() + { + if (isset($_SESSION['rw'])) { + $kf = $_SESSION['rw']; + $rw_sql = " AND a.rw = '{$kf}'"; + + return $rw_sql; + } + } + + private function rt_sql() + { + if (isset($_SESSION['rt'])) { + $kf = $_SESSION['rt']; + $rt_sql = " AND a.rt = '{$kf}'"; + + return $rt_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(id) AS id FROM analisis_indikator u WHERE 1'; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + $sql .= $this->master_sql(); + $sql .= $this->tipe_sql(); + $sql .= $this->kategori_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['id']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $subjek = $_SESSION['subjek_tipe']; + + switch ($subjek) { + case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + } + + switch ($o) { + case 1: $order_sql = ' ORDER BY u.nomor'; + break; + + case 2: $order_sql = ' ORDER BY u.nomor DESC'; + break; + + case 3: $order_sql = ' ORDER BY u.pertanyaan'; + break; + + case 4: $order_sql = ' ORDER BY u.pertanyaan DESC'; + break; + + case 5: $order_sql = ' ORDER BY u.id_kategori'; + break; + + case 6: $order_sql = ' ORDER BY u.id_kategori DESC'; + break; + + default:$order_sql = ' ORDER BY u.nomor'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT u.*, t.tipe AS tipe_indikator, k.kategori AS kategori + FROM analisis_indikator u + LEFT JOIN analisis_tipe_indikator t ON u.id_tipe = t.id + LEFT JOIN analisis_kategori_indikator k ON u.id_kategori = k.id + WHERE 1 '; + + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + $sql .= $this->master_sql(); + $sql .= $this->tipe_sql(); + $sql .= $this->kategori_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $per = $this->analisis_master_model->get_aktif_periode(); + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + $data[$i]['jumlah'] = '-'; + + $sql1 = "SELECT COUNT(DISTINCT r.id_subjek) AS jml FROM analisis_respon r {$sbj} WHERE r.id_indikator = ? AND r.id_periode = {$per} AND id_parameter > 0"; + $sql1 .= $this->dusun_sql(); + $sql1 .= $this->rw_sql(); + $sql1 .= $this->rt_sql(); + //$sql1 .= " GROUP BY r.id_indikator "; + $query1 = $this->db->query($sql1, $data[$i]['id']); + $respon = $query1->row_array(); + $data[$i]['bobot'] = $respon['jml']; + + $dus = $this->dusun_sql(); + $rw = $this->rw_sql(); + $rt = $this->rt_sql(); + + $sql2 = "SELECT i.id,i.kode_jawaban,i.jawaban,(SELECT COUNT(r.id_subjek) FROM analisis_respon r {$sbj} WHERE r.id_parameter = i.id AND r.id_periode = {$per} {$dus} {$rw} {$rt} ) AS jml_p FROM analisis_parameter i WHERE i.id_indikator = ? ORDER BY i.kode_jawaban "; + + $query2 = $this->db->query($sql2, $data[$i]['id']); + $respon2 = $query2->result_array(); + $data[$i]['par'] = $respon2; + + if ($data[$i]['act_analisis'] == 1) { + $data[$i]['act_analisis'] = 'Ya'; + } else { + $data[$i]['act_analisis'] = 'Tidak'; + } + + if ($data[$i]['id_tipe'] == 3) { + $data[$i]['jumlah'] = 0; + + foreach ($respon2 as $par) { + $data[$i]['jumlah'] += $par['jawaban'] * $par['jml_p']; + } + } + $j++; + } + + return $data; + } + + public function list_indikator($id = 0) + { + $subjek = $_SESSION['subjek_tipe']; + + switch ($subjek) { + case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + } + + $sql = 'SELECT * FROM analisis_parameter WHERE id_indikator = ? ORDER BY kode_jawaban ASC '; + $query = $this->db->query($sql, $id); + $data = $query->result_array(); + $per = $this->analisis_master_model->get_aktif_periode(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + $sql = "SELECT COUNT(r.id_subjek) AS jml FROM analisis_respon r {$sbj} WHERE r.id_parameter = ? AND r.id_periode = {$per} "; + $sql .= $this->dusun_sql(); + $sql .= $this->rw_sql(); + $sql .= $this->rt_sql(); + $query = $this->db->query($sql, $data[$i]['id']); + $respon = $query->row_array(); + + $data[$i]['nilai'] = $respon['jml']; + } + + return $data; + } + + public function list_subjek($id = 0) + { + $per = $this->analisis_master_model->get_aktif_periode(); + + $subjek = $_SESSION['subjek_tipe']; + + switch ($subjek) { + case 1: $sbj = 'LEFT JOIN tweb_penduduk p ON r.id_subjek = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 2: $sbj = 'LEFT JOIN tweb_keluarga v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 3: $sbj = 'LEFT JOIN tweb_rtm v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.nik_kepala = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + + case 4: $sbj = 'LEFT JOIN kelompok v ON r.id_subjek = v.id LEFT JOIN tweb_penduduk p ON v.id_ketua = p.id LEFT JOIN tweb_wil_clusterdesa a ON p.id_cluster = a.id '; + break; + } + + $sql = "SELECT p.id AS id_pend,r.id_subjek,p.nama,p.nik,(SELECT DATE_FORMAT(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(tanggallahir)), '%Y')+0 FROM tweb_penduduk WHERE id = p.id) AS umur,p.sex,a.dusun,a.rw,a.rt FROM analisis_respon r {$sbj} WHERE r.id_parameter = ? AND r.id_periode = {$per}"; + + $sql .= $this->dusun_sql(); + $sql .= $this->rw_sql(); + $sql .= $this->rt_sql(); + $query = $this->db->query($sql, $id); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + if ($data[$i]['sex'] == 1) { + $data[$i]['sex'] = 'Laki-laki'; + } else { + $data[$i]['sex'] = 'Perempuan'; + } + + $data[$i]['no'] = $i + 1; + } + + return $data; + } + + public function get_analisis_indikator($id = 0) + { + $sql = 'SELECT * FROM analisis_indikator WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } + + public function get_analisis_parameter($id = '') + { + $sql = 'SELECT * FROM analisis_parameter WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } + + public function list_tipe() + { + $sql = 'SELECT * FROM analisis_tipe_indikator'; + $query = $this->db->query($sql); + + return $query->result_array(); + } + + public function list_kategori() + { + $sql = 'SELECT u.* FROM analisis_kategori_indikator u WHERE 1'; + $sql .= $this->master_sql(); + $query = $this->db->query($sql); + + return $query->result_array(); + } + + public function hapus_data_kosong() + { + // Hapus data analisis_parameter dengan responden 0 untuk tipe pertanyaan 3 dan 4 + $hapus = $this->db + ->select('ap.id') + ->from('analisis_respon ar') + ->join('analisis_parameter ap', 'ar.id_parameter = ap.id', 'right') + ->join('analisis_indikator ai', 'ai.id = ap.id_indikator', 'left') + ->where_in('ai.id_tipe', [3, 4]) + ->where('id_subjek', null) + ->get() + ->result_array(); + + if ($hapus) { + return $this->db + ->where_in('id', array_column($hapus, 'id')) + ->delete('analisis_parameter'); + } + + return true; + } +} diff --git a/donjo-app/models/Database_model.php b/donjo-app/models/Database_model.php index 327608973b..9a6317d8c0 100644 --- a/donjo-app/models/Database_model.php +++ b/donjo-app/models/Database_model.php @@ -110,7 +110,8 @@ class Database_model extends MY_Model '22.11' => ['migrate' => 'migrasi_2211_ke_2212', 'nextVersion' => '22.12'], '22.12' => ['migrate' => 'migrasi_2212_ke_2301', 'nextVersion' => '23.01'], '23.01' => ['migrate' => 'migrasi_2301_ke_2302', 'nextVersion' => '23.02'], - '23.02' => ['migrate' => 'migrasi_2302_ke_2303', 'nextVersion' => null], + '23.02' => ['migrate' => 'migrasi_2302_ke_2303', 'nextVersion' => '23.03'], + '23.03' => ['migrate' => 'migrasi_2303_ke_2304', 'nextVersion' => null], ]; public function __construct() @@ -191,6 +192,14 @@ public function migrasi_db_cri() $this->jalankan_migrasi($migrate); } } + $this->load->helper('directory'); + if ($this->db->affected_rows() > 0) { // jika ada perubahan data, hapus chace view blade + foreach (directory_map(config_item('cache_blade')) as $file) { + if ($file !== 'index.html') { + unlink(config_item('cache_blade') . DIRECTORY_SEPARATOR . $file); + } + } + } } else { $this->_migrasi_db_cri(); } @@ -250,23 +259,15 @@ private function versi_database_terbaru() } // Cek apakah migrasi perlu dijalankan - public function cek_migrasi($install = false) + public function cek_migrasi() { - if ($install) { + // Paksa menjalankan migrasi kalau belum + // Migrasi direkam di tabel migrasi + if (! $this->versi_database_terbaru()) { + $this->migrasi_db_cri(); - // Paksa menjalankan migrasi kalau belum - // Migrasi direkam di tabel migrasi - if (! $this->versi_database_terbaru()) { - // Ulangi migrasi terakhir - $terakhir = key(array_slice($this->versionMigrate, -1, 1, true)); - $sebelumnya = key(array_slice($this->versionMigrate, -2, 1, true)); - $this->versionMigrate[$terakhir]['migrate'] ?: $this->versionMigrate[$terakhir]['migrate'] = $this->versionMigrate[$sebelumnya]['migrate']; - - $this->migrasi_db_cri(); - - // Kirim versi aplikasi ke layanan setelah migrasi selesai - $this->kirimVersi(); - } + // Kirim versi aplikasi ke layanan setelah migrasi selesai + $this->kirimVersi(); } $this->jalankan_migrasi('migrasi_layanan'); diff --git a/donjo-app/models/Ekspor_model.php b/donjo-app/models/Ekspor_model.php index 401b0c7ec6..c74a0aa9c7 100644 --- a/donjo-app/models/Ekspor_model.php +++ b/donjo-app/models/Ekspor_model.php @@ -279,7 +279,7 @@ public function backup() // dihasilkan oleh dbutil->backup untuk view karena bermasalah // pada waktu import dgn restore ataupun phpmyadmin $backup = preg_replace('/ALGORITHM=UNDEFINED DEFINER=.+SQL SECURITY DEFINER /', '', $backup); - $backup = preg_replace('/COLLATE=utf8_general_ci|COLLATE=cp850_general_ci|COLLATE=utf8mb4_general_ci|COLLATE=utf8mb4_unicode_ci/', '', $backup); + $backup = preg_replace('/COLLATE=utf8_general_ci|COLLATE=cp850_general_ci|COLLATE=utf8mb4_general_ci|COLLATE=utf8mb4_unicode_ci|utf8_general_ci;/', '', $backup); $db_name = 'backup-on-' . date('Y-m-d-H-i-s') . '.sql'; $save = base_url() . $db_name; diff --git a/donjo-app/models/Grup_model.php b/donjo-app/models/Grup_model.php index 2ab12cb6d7..6d27652d41 100644 --- a/donjo-app/models/Grup_model.php +++ b/donjo-app/models/Grup_model.php @@ -1,387 +1,387 @@ -autocomplete_str('nama', $this->table); - } - - private function search_sql() - { - if ($cari = $this->session->cari) { - $this->db - ->group_start() - ->like('g.nama', $cari) - ->group_end(); - } - } - - private function filter_sql() - { - if ($filter = $this->session->jenis) { - $this->db->where('jenis', $filter); - } - } - - // Digunakan untuk paging dan query utama supaya jumlah data selalu sama - private function list_data_sql() - { - $this->db - ->from('user_grup g'); - $this->search_sql(); - $this->filter_sql(); - } - - public function paging($page_number = 1, $o = 0) - { - $this->list_data_sql(); - $jml_data = $this->db - ->get() - ->num_rows(); - - return $this->paginasi($page_number, $jml_data); - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $this->list_data_sql(); - //Ordering - switch ($o) { - case 1: $order = 'g.nama ASC'; - break; - - case 2: $order = 'g.nama DESC'; - break; - - default:$order = 'g.nama ASC'; - } - $data = $this->db - ->select('g.*') - ->select('(select COUNT(id) from user where id_grup = g.id) as jml_pengguna') - ->select('(case when jenis = 1 then 0 else 1 end) as boleh_hapus') - ->order_by($order) - ->limit($limit, $offset) - ->get() - ->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $offset + $i + 1; - if ($data[$i]['jml_pengguna'] > 0) { - $data[$i]['boleh_hapus'] = 0; - } - } - - return $data; - } - - /** - * Insert data baru ke tabel surat_keluar - * - * @return void - */ - public function insert() - { - // Ambil semua data dari var. global $_POST - $data = [ - 'nama' => $this->input->post('nama'), - 'jenis' => 2, // grup tambahan - 'created_by' => $this->session->user, - 'updated_by' => $this->session->user, - ]; - $outp = $this->db->insert($this->table, $data); - $outp = $outp && $this->simpan_akses($this->db->insert_id()); - - status_sukses($outp); //Tampilkan Pesan - } - - private function simpan_akses($id) - { - // Simpan data hak akses per modul; hapus dan ganti semua - $outp = $this->db->where('id_grup', $id)->delete('grup_akses'); - $modul = $this->input->post('modul'); - $data = []; - - for ($i = 0; $i < count($modul['id']); $i++) { - $id_modul = $modul['id'][$i]; - $akses = [ - 'id_grup' => $id, - 'id_modul' => $id_modul, - ]; - $akses_baca = $modul['akses_baca'][$id_modul] ? 1 : 0; - $akses_ubah = $modul['akses_ubah'][$id_modul] ? 2 : 0; - $akses_hapus = $modul['akses_hapus'][$id_modul] ? 4 : 0; - $akses['akses'] = $akses_baca + $akses_ubah + $akses_hapus; - $data[] = $akses; - } - $outp = $this->db->insert_batch('grup_akses', $data); - $this->cache->hapus_cache_untuk_semua('_cache_modul'); - - return $outp; - } - - /** - * Update data di tabel grup - * - * @param int $id ID grup - * - * @return void - */ - public function update($id) - { - $data = [ - 'nama' => $this->input->post('nama'), - 'updated_by' => $this->session->user, - ]; - $outp = $this->db - ->where('id', $id) - ->where_not_in('id', static::KECUALI) - ->update($this->table, $data); - $outp = $outp && $this->simpan_akses($id); - - status_sukses($outp); - } - - public function get_grup($id) - { - return $this->db->where('id', $id)->get($this->table)->row_array(); - } - - /** - * Hapus record grup - * - * @param string $id ID grup - * @param mixed $semua - * - * @return void - */ - public function delete($id, $semua = false) - { - if (! $semua) { - session_error_clear(); - } - - $outp = $this->db - ->where('id', $id) - ->where_not_in('id', static::KECUALI) - ->delete($this->table); - - $this->cache->hapus_cache_untuk_semua('_cache_modul'); - - status_sukses($outp); - } - - public function delete_all() - { - session_error_clear(); - - $id_cb = $this->input->post('id_cb'); - - foreach ($id_cb as $id) { - $this->delete($id, true); - } - } - - public function list_id_grup() - { - $list = $this->db->select('id')->get('user_grup')->result_array(); - - return array_column($list, 'id'); - } - - public function list_jenis_grup() - { - return [ - ['id' => 1, 'nama' => 'System'], - ['id' => 2, 'nama' => 'Tambahan'], - ]; - } - - public function grup_akses($id_grup) - { - return $this->db - ->select('m.*') - ->select('if(a.akses & 1 = 1, 1, 0) as akses_baca') - ->select('if(a.akses & 2 = 2, 1, 0) as akses_ubah') - ->select('if(a.akses & 4 = 4, 1, 0) as akses_hapus') - ->select('if(a.akses > 0, 1, 0) as ada_akses') - ->from('setting_modul m') - ->join('grup_akses a', "a.id_modul = m.id and a.id_grup = {$id_grup}", 'left') - ->where('m.parent', 0) - ->order_by('m.urut') - ->get() - ->result_array(); - } - - private function get_submodul($grup, $modul) - { - return $this->db - ->select('sub.id, sub.modul, sub.url') - ->select('if(a.akses & 1 = 1, 1, 0) as akses_baca') - ->select('if(a.akses & 2 = 2, 1, 0) as akses_ubah') - ->select('if(a.akses & 4 = 4, 1, 0) as akses_hapus') - ->select('if(a.akses > 0, 1, 0) as ada_akses') - ->from('setting_modul p') - ->join('setting_modul sub', 'sub.parent = p.id') - ->join('grup_akses a', "sub.id = a.id_modul and a.id_grup = {$grup}", 'left') - ->where('p.id', $modul) - ->order_by('sub.urut') - ->get()->result_array(); - } - - public function akses_submodul($grup) - { - $parent = $this->db - ->select('id') - ->where('parent', 0) - ->get('setting_modul')->result_array(); - $parent = array_column($parent, 'id'); - - $data = []; - - foreach ($parent as $modul) { - $data[$modul] = $this->get_submodul($grup, $modul); - // Juga ambil sub-submodul. Asumsi hanya ada sampai dua tingkat submodul saja - $subparent = array_column($data[$modul], 'id'); - - foreach ($subparent as $submodul) { - $sub_sub = $this->get_submodul($grup, $submodul); - if (! empty($sub_sub)) { - $data[$modul] = array_merge($data[$modul], $sub_sub); - } - } - } - - return array_filter($data); - } - - private function get_hak_akses($grup) - { - $hak_akses = $this->db - ->select('if (m.url <> "", m.url, concat("Menu ", m.modul)) as url, a.akses') - ->select('if(a.akses & 1 = 1 or m.parent = 0, 1, 0) as "b"') - ->select('if(a.akses & 2 = 2, 1, 0) as "u"') - ->select('if(a.akses & 4 = 4, 1, 0) as "h"') - ->from('grup_akses a') - ->join('setting_modul m', 'm.id = a.id_modul') - ->where('id_grup', $grup) - ->order_by('akses DESC') - ->get()->result_array(); - - // Hilangkan kolom modul - $akses_saja = $hak_akses; - delete_col($akses_saja, 0); - - // Buat array dengan key modul - return array_combine(array_column($hak_akses, 'url'), $akses_saja); - } - - /* - Memilih modul awal yg dapat diakses - Digunakan menentukan modul awal di donjo-app/controllers/Main.php - */ - public function modul_awal($grup) - { - if (! $this->session->hak_akses_url) { - $hak_akses = $this->get_hak_akses($grup); - $this->session->hak_akses_url = $hak_akses; - } - $modul = array_keys($this->session->hak_akses_url); - - return $this->db - ->select('url') - ->where('aktif', 1) - ->where_in('url', $modul) - ->limit(1) - ->get('setting_modul') - ->row()->url; - } - - /* - Cek hak akses url modul untuk mengaktifkan menu navigasi utama. - Dipanggil dari Modul_model.php - */ - public function ada_akses_url($grup, $url_modul = '', $akses = '') - { - if (! $this->session->hak_akses_url) { - $hak_akses = $this->get_hak_akses($grup); - $this->session->hak_akses_url = $hak_akses; - } - - return $this->session->hak_akses_url[$url_modul][$akses]; - } - - /* - Cek hak akses untuk mengakses controller. - Dipanggil dari Admin_Controller - */ - public function ada_akses($grup, $controller, $akses) - { - if (! $this->session->hak_akses) { - $hak_akses = $this->get_hak_akses($grup); - - // Simpan akses controller di session, karena hak akses adalah menurut controller dan - // belum berdasarkan masing2 aksi. Gunakan hak akses tertinggi per controller. - // $hak_akses sudah terurut hak akses tertinggi duluan - $akses_controller = []; - - foreach ($hak_akses as $url => $akses_url) { - $controller_url = explode('/', $url)[0]; - if ($akses_controller[$controller_url]) { - continue; - } - $akses_controller[$controller_url] = $akses_url; - } - - $this->session->hak_akses = $akses_controller; - } - - return $this->session->hak_akses[$controller][$akses]; - } -} +autocomplete_str('nama', $this->table); + } + + private function search_sql() + { + if ($cari = $this->session->cari) { + $this->db + ->group_start() + ->like('g.nama', $cari) + ->group_end(); + } + } + + private function filter_sql() + { + if ($filter = $this->session->jenis) { + $this->db->where('jenis', $filter); + } + } + + // Digunakan untuk paging dan query utama supaya jumlah data selalu sama + private function list_data_sql() + { + $this->db + ->from('user_grup g'); + $this->search_sql(); + $this->filter_sql(); + } + + public function paging($page_number = 1, $o = 0) + { + $this->list_data_sql(); + $jml_data = $this->db + ->get() + ->num_rows(); + + return $this->paginasi($page_number, $jml_data); + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $this->list_data_sql(); + //Ordering + switch ($o) { + case 1: $order = 'g.nama ASC'; + break; + + case 2: $order = 'g.nama DESC'; + break; + + default:$order = 'g.nama ASC'; + } + $data = $this->db + ->select('g.*') + ->select('(select COUNT(id) from user where id_grup = g.id) as jml_pengguna') + ->select('(case when jenis = 1 then 0 else 1 end) as boleh_hapus') + ->order_by($order) + ->limit($limit, $offset) + ->get() + ->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $offset + $i + 1; + if ($data[$i]['jml_pengguna'] > 0) { + $data[$i]['boleh_hapus'] = 0; + } + } + + return $data; + } + + /** + * Insert data baru ke tabel surat_keluar + * + * @return void + */ + public function insert() + { + // Ambil semua data dari var. global $_POST + $data = [ + 'nama' => $this->input->post('nama'), + 'jenis' => 2, // grup tambahan + 'created_by' => $this->session->user, + 'updated_by' => $this->session->user, + ]; + $outp = $this->db->insert($this->table, $data); + $outp = $outp && $this->simpan_akses($this->db->insert_id()); + + status_sukses($outp); //Tampilkan Pesan + } + + private function simpan_akses($id) + { + // Simpan data hak akses per modul; hapus dan ganti semua + $outp = $this->db->where('id_grup', $id)->delete('grup_akses'); + $modul = $this->input->post('modul'); + $data = []; + + for ($i = 0; $i < count($modul['id']); $i++) { + $id_modul = $modul['id'][$i]; + $akses = [ + 'id_grup' => $id, + 'id_modul' => $id_modul, + ]; + $akses_baca = $modul['akses_baca'][$id_modul] ? 1 : 0; + $akses_ubah = $modul['akses_ubah'][$id_modul] ? 2 : 0; + $akses_hapus = $modul['akses_hapus'][$id_modul] ? 4 : 0; + $akses['akses'] = $akses_baca + $akses_ubah + $akses_hapus; + $data[] = $akses; + } + $outp = $this->db->insert_batch('grup_akses', $data); + $this->cache->hapus_cache_untuk_semua('_cache_modul'); + + return $outp; + } + + /** + * Update data di tabel grup + * + * @param int $id ID grup + * + * @return void + */ + public function update($id) + { + $data = [ + 'nama' => $this->input->post('nama'), + 'updated_by' => $this->session->user, + ]; + $outp = $this->db + ->where('id', $id) + ->where_not_in('id', static::KECUALI) + ->update($this->table, $data); + $outp = $outp && $this->simpan_akses($id); + + status_sukses($outp); + } + + public function get_grup($id) + { + return $this->db->where('id', $id)->get($this->table)->row_array(); + } + + /** + * Hapus record grup + * + * @param string $id ID grup + * @param mixed $semua + * + * @return void + */ + public function delete($id, $semua = false) + { + if (! $semua) { + session_error_clear(); + } + + $outp = $this->db + ->where('id', $id) + ->where_not_in('id', static::KECUALI) + ->delete($this->table); + + $this->cache->hapus_cache_untuk_semua('_cache_modul'); + + status_sukses($outp); + } + + public function delete_all() + { + session_error_clear(); + + $id_cb = $this->input->post('id_cb'); + + foreach ($id_cb as $id) { + $this->delete($id, true); + } + } + + public function list_id_grup() + { + $list = $this->db->select('id')->get('user_grup')->result_array(); + + return array_column($list, 'id'); + } + + public function list_jenis_grup() + { + return [ + ['id' => 1, 'nama' => 'System'], + ['id' => 2, 'nama' => 'Tambahan'], + ]; + } + + public function grup_akses($id_grup) + { + return $this->db + ->select('m.*') + ->select('if(a.akses & 1 = 1, 1, 0) as akses_baca') + ->select('if(a.akses & 2 = 2, 1, 0) as akses_ubah') + ->select('if(a.akses & 4 = 4, 1, 0) as akses_hapus') + ->select('if(a.akses > 0, 1, 0) as ada_akses') + ->from('setting_modul m') + ->join('grup_akses a', "a.id_modul = m.id and a.id_grup = {$id_grup}", 'left') + ->where('m.parent', 0) + ->order_by('m.urut') + ->get() + ->result_array(); + } + + private function get_submodul($grup, $modul) + { + return $this->db + ->select('sub.id, sub.modul, sub.url') + ->select('if(a.akses & 1 = 1, 1, 0) as akses_baca') + ->select('if(a.akses & 2 = 2, 1, 0) as akses_ubah') + ->select('if(a.akses & 4 = 4, 1, 0) as akses_hapus') + ->select('if(a.akses > 0, 1, 0) as ada_akses') + ->from('setting_modul p') + ->join('setting_modul sub', 'sub.parent = p.id') + ->join('grup_akses a', "sub.id = a.id_modul and a.id_grup = {$grup}", 'left') + ->where('p.id', $modul) + ->order_by('sub.urut') + ->get()->result_array(); + } + + public function akses_submodul($grup) + { + $parent = $this->db + ->select('id') + ->where('parent', 0) + ->get('setting_modul')->result_array(); + $parent = array_column($parent, 'id'); + + $data = []; + + foreach ($parent as $modul) { + $data[$modul] = $this->get_submodul($grup, $modul); + // Juga ambil sub-submodul. Asumsi hanya ada sampai dua tingkat submodul saja + $subparent = array_column($data[$modul], 'id'); + + foreach ($subparent as $submodul) { + $sub_sub = $this->get_submodul($grup, $submodul); + if (! empty($sub_sub)) { + $data[$modul] = array_merge($data[$modul], $sub_sub); + } + } + } + + return array_filter($data); + } + + private function get_hak_akses($grup) + { + $hak_akses = $this->db + ->select('if (m.url <> "", m.url, concat("Menu ", m.modul)) as url, a.akses') + ->select('if(a.akses & 1 = 1 or m.parent = 0, 1, 0) as "b"') + ->select('if(a.akses & 2 = 2, 1, 0) as "u"') + ->select('if(a.akses & 4 = 4, 1, 0) as "h"') + ->from('grup_akses a') + ->join('setting_modul m', 'm.id = a.id_modul') + ->where('id_grup', $grup) + ->order_by('akses DESC') + ->get()->result_array(); + + // Hilangkan kolom modul + $akses_saja = $hak_akses; + delete_col($akses_saja, 0); + + // Buat array dengan key modul + return array_combine(array_column($hak_akses, 'url'), $akses_saja); + } + + /* + Memilih modul awal yg dapat diakses + Digunakan menentukan modul awal di donjo-app/controllers/Main.php + */ + public function modul_awal($grup) + { + if (! $this->session->hak_akses_url) { + $hak_akses = $this->get_hak_akses($grup); + $this->session->hak_akses_url = $hak_akses; + } + $modul = array_keys($this->session->hak_akses_url); + + return $this->db + ->select('url') + ->where('aktif', 1) + ->where_in('url', $modul) + ->limit(1) + ->get('setting_modul') + ->row()->url; + } + + /* + Cek hak akses url modul untuk mengaktifkan menu navigasi utama. + Dipanggil dari Modul_model.php + */ + public function ada_akses_url($grup, $url_modul = '', $akses = '') + { + if (! $this->session->hak_akses_url) { + $hak_akses = $this->get_hak_akses($grup); + $this->session->hak_akses_url = $hak_akses; + } + + return $this->session->hak_akses_url[$url_modul][$akses]; + } + + /* + Cek hak akses untuk mengakses controller. + Dipanggil dari Admin_Controller + */ + public function ada_akses($grup, $controller, $akses) + { + if (! $this->session->hak_akses) { + $hak_akses = $this->get_hak_akses($grup); + + // Simpan akses controller di session, karena hak akses adalah menurut controller dan + // belum berdasarkan masing2 aksi. Gunakan hak akses tertinggi per controller. + // $hak_akses sudah terurut hak akses tertinggi duluan + $akses_controller = []; + + foreach ($hak_akses as $url => $akses_url) { + $controller_url = explode('/', $url)[0]; + if ($akses_controller[$controller_url]) { + continue; + } + $akses_controller[$controller_url] = $akses_url; + } + + $this->session->hak_akses = $akses_controller; + } + + return $this->session->hak_akses[$controller][$akses]; + } +} diff --git a/donjo-app/models/Kelompok_master_model.php b/donjo-app/models/Kelompok_master_model.php index 8bd3c35f4d..e545964332 100644 --- a/donjo-app/models/Kelompok_master_model.php +++ b/donjo-app/models/Kelompok_master_model.php @@ -1,179 +1,179 @@ -tipe = $tipe; - - return $this; - } - - public function autocomplete() - { - return $this->autocomplete_str('kelompok', $this->table); - } - - private function search_sql() - { - if ($search = $this->session->cari) { - $this->db - ->group_start() - ->like('u.kelompok', $search) - ->or_like('u.deskripsi', $search) - ->group_end(); - } - - return $this->db; - } - - public function paging($p = 1) - { - $jml_data = $this->list_data_sql()->count_all_results(); - - return $this->paginasi($p, $jml_data); - } - - private function list_data_sql() - { - $this->db - ->select('u.*') - ->select('(SELECT COUNT(k.id) FROM kelompok k WHERE k.id_master = u.id) AS jumlah') - ->from("{$this->table} u") - ->where('tipe', $this->tipe); - - $this->search_sql(); - - return $this->db; - } - - // $limit = 0 mengambil semua - public function list_data($o = 0, $offset = 0, $limit = 0) - { - switch ($o) { - case 1: $this->db->order_by('u.kelompok'); - break; - - case 2: $this->db->order_by('u.kelompok', 'desc'); - break; - - default: $this->db->order_by('u.kelompok'); - break; - } - - $this->list_data_sql(); - - return $this->db - ->limit($limit, $offset) - ->get() - ->result_array(); - } - - public function insert() - { - $data = $this->validasi($this->input->post()); - $outp = $this->db->insert($this->table, $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->validasi($this->input->post()); - $this->db->where('id', $id); - $outp = $this->db->update($this->table, $data); - - status_sukses($outp); //Tampilkan Pesan - } - - private function validasi($post) - { - if ($post['id']) { - $data['id'] = bilangan($post['id']); - } - $data['kelompok'] = nama_terbatas($post['kelompok']); - $data['deskripsi'] = htmlentities($post['deskripsi']); - $data['tipe'] = $this->tipe; - - return $data; - } - - public function delete($id = '', $semua = false) - { - $outp = $this->db - ->where('id', $id) - ->where('tipe', $this->tipe) - ->delete($this->table); - - status_sukses($outp, $semua); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, true); - } - } - - public function get_kelompok_master($id = 0) - { - return $this->db - ->where([ - 'id' => $id, - 'tipe' => $this->tipe, - ]) - ->get($this->table) - ->row(); - - return $this->db; - } -} +tipe = $tipe; + + return $this; + } + + public function autocomplete() + { + return $this->autocomplete_str('kelompok', $this->table); + } + + private function search_sql() + { + if ($search = $this->session->cari) { + $this->db + ->group_start() + ->like('u.kelompok', $search) + ->or_like('u.deskripsi', $search) + ->group_end(); + } + + return $this->db; + } + + public function paging($p = 1) + { + $jml_data = $this->list_data_sql()->count_all_results(); + + return $this->paginasi($p, $jml_data); + } + + private function list_data_sql() + { + $this->db + ->select('u.*') + ->select('(SELECT COUNT(k.id) FROM kelompok k WHERE k.id_master = u.id) AS jumlah') + ->from("{$this->table} u") + ->where('tipe', $this->tipe); + + $this->search_sql(); + + return $this->db; + } + + // $limit = 0 mengambil semua + public function list_data($o = 0, $offset = 0, $limit = 0) + { + switch ($o) { + case 1: $this->db->order_by('u.kelompok'); + break; + + case 2: $this->db->order_by('u.kelompok', 'desc'); + break; + + default: $this->db->order_by('u.kelompok'); + break; + } + + $this->list_data_sql(); + + return $this->db + ->limit($limit, $offset) + ->get() + ->result_array(); + } + + public function insert() + { + $data = $this->validasi($this->input->post()); + $outp = $this->db->insert($this->table, $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->validasi($this->input->post()); + $this->db->where('id', $id); + $outp = $this->db->update($this->table, $data); + + status_sukses($outp); //Tampilkan Pesan + } + + private function validasi($post) + { + if ($post['id']) { + $data['id'] = bilangan($post['id']); + } + $data['kelompok'] = nama_terbatas($post['kelompok']); + $data['deskripsi'] = htmlentities($post['deskripsi']); + $data['tipe'] = $this->tipe; + + return $data; + } + + public function delete($id = '', $semua = false) + { + $outp = $this->db + ->where('id', $id) + ->where('tipe', $this->tipe) + ->delete($this->table); + + status_sukses($outp, $semua); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, true); + } + } + + public function get_kelompok_master($id = 0) + { + return $this->db + ->where([ + 'id' => $id, + 'tipe' => $this->tipe, + ]) + ->get($this->table) + ->row(); + + return $this->db; + } +} diff --git a/donjo-app/models/Keuangan_grafik_model.php b/donjo-app/models/Keuangan_grafik_model.php index 154b067957..0f913fe72d 100644 --- a/donjo-app/models/Keuangan_grafik_model.php +++ b/donjo-app/models/Keuangan_grafik_model.php @@ -430,7 +430,7 @@ public function real_akun_belanja_jurnal($akun, $thn, $smt1 = false) $this->db->where('keuangan_ta_jurnal_umum.Tanggal >=', '01/01/$thn 00:00:00'); $this->db->where('keuangan_ta_jurnal_umum.Tanggal <=', '06/31/$thn 00:00:00'); } - $this->db->group_by('Akun'); + $this->db->group_by('LEFT(Kd_Rincian, 2)'); return $this->db->get('keuangan_ta_jurnal_umum_rinci')->result_array(); } @@ -460,7 +460,7 @@ public function real_akun_subbelanja_jurnal($akun, $thn, $smt1 = false) $this->db->where('keuangan_ta_jurnal_umum.Tanggal >=', '01/01/$thn 00:00:00'); $this->db->where('keuangan_ta_jurnal_umum.Tanggal <=', '06/31/$thn 00:00:00'); } - $this->db->group_by('Akun'); + $this->db->group_by('LEFT(Kd_Rincian, 6)'); return $this->db->get('keuangan_ta_jurnal_umum_rinci')->result_array(); } diff --git a/donjo-app/models/Klasifikasi_model.php b/donjo-app/models/Klasifikasi_model.php index 85dc2bf29a..eef02c4055 100644 --- a/donjo-app/models/Klasifikasi_model.php +++ b/donjo-app/models/Klasifikasi_model.php @@ -1,249 +1,249 @@ -autocomplete_str('nama', 'klasifikasi_surat'); - } - - public function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (u.nama LIKE '{$kw}' OR u.uraian LIKE '{$kw}')"; - - return $search_sql; - } - } - - public function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND enabled = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $list_data_sql = $this->list_data_sql($log); - $sql = 'SELECT COUNT(u.id) AS jml ' . $list_data_sql; - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - // Digunakan untuk paging dan query utama supaya jumlah data selalu sama - private function list_data_sql() - { - $sql = ' - FROM klasifikasi_surat u - WHERE 1'; - - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $select_sql = 'SELECT * '; - //Main Query - $list_data_sql = $this->list_data_sql(); - $sql = $select_sql . ' ' . $list_data_sql; - - //Ordering SQL - switch ($o) { - case 1: $order_sql = ' ORDER BY u.kode * 1'; - break; - - case 2: $order_sql = ' ORDER BY u.kode * 1 DESC'; - break; - - case 3: $order_sql = ' ORDER BY u.nama'; - break; - - case 4: $order_sql = ' ORDER BY u.nama DESC'; - break; - - default:$order_sql = ' ORDER BY u.kode * 1'; - } - - //Paging SQL - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - //Formating Output - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - $j++; - } - - return $data; - } - - // Ambil kode yang aktif untuk ditampilkan di form surat_masuk - public function list_kode() - { - return $this->db->select('kode, nama')-> - where('enabled', '1')-> - order_by('kode')-> - get('klasifikasi_surat')->result_array(); - } - - public function insert() - { - $data = $_POST; - $this->sterilkan_data($data); - - return $this->db->insert('klasifikasi_surat', $data); - } - - private function sterilkan_data(&$data) - { - $data['kode'] = alfanumerik_titik($data['kode']); - $data['nama'] = alfa_spasi($data['nama']); - $data['uraian'] = strip_tags($data['uraian']); - } - - public function update($id = 0) - { - $data = $_POST; - $this->sterilkan_data($data); - - return $this->db->where('id', $id)->update('klasifikasi_surat', $data); - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('klasifikasi_surat'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function lock($id = '', $val = 0) - { - $outp = $this->db->where('id', $id)->update('klasifikasi_surat', ['enabled' => $val]); - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function get_klasifikasi($id = 0) - { - return $this->db->where('id', $id)->get('klasifikasi_surat')->row_array(); - } - - /** - * Hapus tabel klasifikasi_surat dan ganti isinya - * dengan data dari berkas csv. - * Baris pertama berisi nama kolom tabel. - * - * @param mixed $file - */ - public function impor($file) - { - ini_set('auto_detect_line_endings', '1'); - if (($handle = fopen($file, 'rb')) == false) { - $_SESSION['success'] = -1; - $_SESSION['error_msg'] = 'Berkas tidak ada atau bermasalah'; - - return; - } - $this->db->trans_start(); - $this->db->truncate('klasifikasi_surat'); - $header = fgetcsv($handle); - $jml_kolom = count($header); - - while (($csv = fgetcsv($handle)) !== false) { - $data = []; - - for ($c = 0; $c < $jml_kolom; $c++) { - $data[$header[$c]] = $csv[$c]; - } - $this->db->insert('klasifikasi_surat', $data); - } - $this->db->trans_complete(); - fclose($handle); - $_SESSION['success'] = 1; - } -} +autocomplete_str('nama', 'klasifikasi_surat'); + } + + public function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (u.nama LIKE '{$kw}' OR u.uraian LIKE '{$kw}')"; + + return $search_sql; + } + } + + public function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND enabled = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $list_data_sql = $this->list_data_sql($log); + $sql = 'SELECT COUNT(u.id) AS jml ' . $list_data_sql; + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + // Digunakan untuk paging dan query utama supaya jumlah data selalu sama + private function list_data_sql() + { + $sql = ' + FROM klasifikasi_surat u + WHERE 1'; + + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $select_sql = 'SELECT * '; + //Main Query + $list_data_sql = $this->list_data_sql(); + $sql = $select_sql . ' ' . $list_data_sql; + + //Ordering SQL + switch ($o) { + case 1: $order_sql = ' ORDER BY u.kode * 1'; + break; + + case 2: $order_sql = ' ORDER BY u.kode * 1 DESC'; + break; + + case 3: $order_sql = ' ORDER BY u.nama'; + break; + + case 4: $order_sql = ' ORDER BY u.nama DESC'; + break; + + default:$order_sql = ' ORDER BY u.kode * 1'; + } + + //Paging SQL + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + //Formating Output + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + $j++; + } + + return $data; + } + + // Ambil kode yang aktif untuk ditampilkan di form surat_masuk + public function list_kode() + { + return $this->db->select('kode, nama')-> + where('enabled', '1')-> + order_by('kode')-> + get('klasifikasi_surat')->result_array(); + } + + public function insert() + { + $data = $_POST; + $this->sterilkan_data($data); + + return $this->db->insert('klasifikasi_surat', $data); + } + + private function sterilkan_data(&$data) + { + $data['kode'] = alfanumerik_titik($data['kode']); + $data['nama'] = alfa_spasi($data['nama']); + $data['uraian'] = strip_tags($data['uraian']); + } + + public function update($id = 0) + { + $data = $_POST; + $this->sterilkan_data($data); + + return $this->db->where('id', $id)->update('klasifikasi_surat', $data); + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('klasifikasi_surat'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function lock($id = '', $val = 0) + { + $outp = $this->db->where('id', $id)->update('klasifikasi_surat', ['enabled' => $val]); + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function get_klasifikasi($id = 0) + { + return $this->db->where('id', $id)->get('klasifikasi_surat')->row_array(); + } + + /** + * Hapus tabel klasifikasi_surat dan ganti isinya + * dengan data dari berkas csv. + * Baris pertama berisi nama kolom tabel. + * + * @param mixed $file + */ + public function impor($file) + { + ini_set('auto_detect_line_endings', '1'); + if (($handle = fopen($file, 'rb')) == false) { + $_SESSION['success'] = -1; + $_SESSION['error_msg'] = 'Berkas tidak ada atau bermasalah'; + + return; + } + $this->db->trans_start(); + $this->db->truncate('klasifikasi_surat'); + $header = fgetcsv($handle); + $jml_kolom = count($header); + + while (($csv = fgetcsv($handle)) !== false) { + $data = []; + + for ($c = 0; $c < $jml_kolom; $c++) { + $data[$header[$c]] = $csv[$c]; + } + $this->db->insert('klasifikasi_surat', $data); + } + $this->db->trans_complete(); + fclose($handle); + $_SESSION['success'] = 1; + } +} diff --git a/donjo-app/models/Lapor_model.php b/donjo-app/models/Lapor_model.php index ca57dc69b0..f851f12d2a 100644 --- a/donjo-app/models/Lapor_model.php +++ b/donjo-app/models/Lapor_model.php @@ -1,66 +1,66 @@ -db->select('*') - ->from('ref_syarat_surat'); - $query = $this->db->get(); - - return $query->result_array(); - } - - // Dipakai di surat master - public function update_syarat_surat($surat_format_id, $syarat_surat, $mandiri = 0) - { - if (empty($surat_format_id)) { - return false; - } - - if ($mandiri == 1) { - // Update syarat baru yg dipilih - $this->db - ->where('id', $surat_format_id) - ->update('tweb_surat_format', ['syarat_surat' => json_encode($syarat_surat)]); - } - } -} +db->select('*') + ->from('ref_syarat_surat'); + $query = $this->db->get(); + + return $query->result_array(); + } + + // Dipakai di surat master + public function update_syarat_surat($surat_format_id, $syarat_surat, $mandiri = 0) + { + if (empty($surat_format_id)) { + return false; + } + + if ($mandiri == 1) { + // Update syarat baru yg dipilih + $this->db + ->where('id', $surat_format_id) + ->update('tweb_surat_format', ['syarat_surat' => json_encode($syarat_surat)]); + } + } +} diff --git a/donjo-app/models/Pembangunan_model.php b/donjo-app/models/Pembangunan_model.php index e86e6c7a8c..d85f525a49 100644 --- a/donjo-app/models/Pembangunan_model.php +++ b/donjo-app/models/Pembangunan_model.php @@ -107,14 +107,17 @@ public function paging_pembangunan($page_number = 1) return $this->paginasi($page_number, $jml_data); } - public function list_lokasi_pembangunan() + public function list_lokasi_pembangunan($status = null) { $this->lokasi_pembangunan_query(); + if (null !== $status) { + $this->db->where('p.status = 1'); + } + return $this->db ->select('p.*') ->from("{$this->table} p") - ->where('p.status = 1') ->join('tweb_wil_clusterdesa w', 'p.id_lokasi = w.id', 'left') ->get() ->result(); diff --git a/donjo-app/models/Pendapat_model.php b/donjo-app/models/Pendapat_model.php index 6901c715f8..099ede7837 100644 --- a/donjo-app/models/Pendapat_model.php +++ b/donjo-app/models/Pendapat_model.php @@ -1,177 +1,177 @@ -db->insert($this->table, $data); - - return $this->db->affected_rows(); - } - - public function get_pilihan($tipe, $pilih) - { - $this->db->where('pilihan', $pilih); - $data = $this->get_pendapat($tipe); - - return $data['total']; - } - - public function get_data($tipe) - { - $kondisi = $this->kondisi($tipe); - - return $this->db - ->select('p.nama, u.pengguna, DATE(tanggal) AS tanggal, pilihan') - ->from('pendapat u') - ->join('tweb_penduduk p', 'p.id = u.pengguna', 'left') - ->where($kondisi['where']) - ->order_by('u.tanggal desc') - ->get() - ->result_array(); - } - - public function get_pendapat($tipe) - { - $kondisi = $this->kondisi($tipe); - $pendapat = $this->db - ->select('COUNT(pilihan) AS jumlah, pilihan') - ->where($kondisi['where']) - ->group_by('pilihan') - ->order_by('pilihan') - ->get($this->table) - ->result_array(); - - $total = 0; - - foreach ($pendapat as $jumlah) { - $total += $jumlah['jumlah']; - } - - return [ - 'lblx' => $kondisi['lblx'], - 'judul' => $kondisi['judul'], - 'pendapat' => $pendapat, - 'total' => $total, - ]; - } - - protected function kondisi($tipe) - { - $tgl = date('Y-m-d'); - $bln = date('m'); - $thn = date('Y'); - - $lblx = 'TANGGAL'; - - switch ($tipe) { - // Hari ini - case 1: - $judul = 'Hari Ini ( ' . tgl_indo2($tgl) . ')'; - $where = [ - 'DATE(`tanggal`) = ' => $tgl, - ]; - break; - - // Kemarin - case 2: - $judul = 'Kemarin ( ' . tgl_indo2($this->op_tgl('-1 days', $tgl)) . ')'; - $where = [ - 'DATE(`tanggal`) = ' => $this->op_tgl('-1 days', $tgl), - ]; - break; - - // Minggu ini - case 3: - $judul = 'Dari tanggal ' . tgl_indo2($this->op_tgl('-6 days', $tgl)) . ' - ' . tgl_indo2($tgl); - $where = [ - 'DATE(`tanggal`) >= ' => $this->op_tgl('-6 days', $tgl), - 'DATE(`tanggal`) <= ' => $tgl, - ]; - break; - - // Bulan ini - case 4: - $judul = 'Bulan ' . ucwords(getBulan($bln)) . ' ' . $thn; - $where = [ - 'MONTH(`tanggal`) = ' => $bln, - 'YEAR(`tanggal`) = ' => $thn, - ]; - break; - - // Tahun ini - case 5: - $lblx = 'BULAN'; - $judul = 'Tahun ' . $thn; - $where = [ - 'YEAR(tanggal) = ' => $thn, - ]; - break; - - // Semua jumlah pendapat - default: - $lblx = 'TAHUN'; - $judul = 'Setiap Tahun'; - $where = [ - 'tanggal != ' => 'NOT NULL', - ]; - break; - } - - return [ - 'lblx' => $lblx, - 'judul' => $judul, - 'select' => $select, - 'where' => $where, - ]; - } - - protected function op_tgl(string $op, string $tgl) - { - return date('Y-m-d', strtotime($op, strtotime($tgl))); - } -} +db->insert($this->table, $data); + + return $this->db->affected_rows(); + } + + public function get_pilihan($tipe, $pilih) + { + $this->db->where('pilihan', $pilih); + $data = $this->get_pendapat($tipe); + + return $data['total']; + } + + public function get_data($tipe) + { + $kondisi = $this->kondisi($tipe); + + return $this->db + ->select('p.nama, u.pengguna, DATE(tanggal) AS tanggal, pilihan') + ->from('pendapat u') + ->join('tweb_penduduk p', 'p.id = u.pengguna', 'left') + ->where($kondisi['where']) + ->order_by('u.tanggal desc') + ->get() + ->result_array(); + } + + public function get_pendapat($tipe) + { + $kondisi = $this->kondisi($tipe); + $pendapat = $this->db + ->select('COUNT(pilihan) AS jumlah, pilihan') + ->where($kondisi['where']) + ->group_by('pilihan') + ->order_by('pilihan') + ->get($this->table) + ->result_array(); + + $total = 0; + + foreach ($pendapat as $jumlah) { + $total += $jumlah['jumlah']; + } + + return [ + 'lblx' => $kondisi['lblx'], + 'judul' => $kondisi['judul'], + 'pendapat' => $pendapat, + 'total' => $total, + ]; + } + + protected function kondisi($tipe) + { + $tgl = date('Y-m-d'); + $bln = date('m'); + $thn = date('Y'); + + $lblx = 'TANGGAL'; + + switch ($tipe) { + // Hari ini + case 1: + $judul = 'Hari Ini ( ' . tgl_indo2($tgl) . ')'; + $where = [ + 'DATE(`tanggal`) = ' => $tgl, + ]; + break; + + // Kemarin + case 2: + $judul = 'Kemarin ( ' . tgl_indo2($this->op_tgl('-1 days', $tgl)) . ')'; + $where = [ + 'DATE(`tanggal`) = ' => $this->op_tgl('-1 days', $tgl), + ]; + break; + + // Minggu ini + case 3: + $judul = 'Dari tanggal ' . tgl_indo2($this->op_tgl('-6 days', $tgl)) . ' - ' . tgl_indo2($tgl); + $where = [ + 'DATE(`tanggal`) >= ' => $this->op_tgl('-6 days', $tgl), + 'DATE(`tanggal`) <= ' => $tgl, + ]; + break; + + // Bulan ini + case 4: + $judul = 'Bulan ' . ucwords(getBulan($bln)) . ' ' . $thn; + $where = [ + 'MONTH(`tanggal`) = ' => $bln, + 'YEAR(`tanggal`) = ' => $thn, + ]; + break; + + // Tahun ini + case 5: + $lblx = 'BULAN'; + $judul = 'Tahun ' . $thn; + $where = [ + 'YEAR(tanggal) = ' => $thn, + ]; + break; + + // Semua jumlah pendapat + default: + $lblx = 'TAHUN'; + $judul = 'Setiap Tahun'; + $where = [ + 'tanggal != ' => 'NOT NULL', + ]; + break; + } + + return [ + 'lblx' => $lblx, + 'judul' => $judul, + 'select' => $select, + 'where' => $where, + ]; + } + + protected function op_tgl(string $op, string $tgl) + { + return date('Y-m-d', strtotime($op, strtotime($tgl))); + } +} diff --git a/donjo-app/models/Penduduk_log_model.php b/donjo-app/models/Penduduk_log_model.php index 85247ce0b1..cc1268bbb3 100644 --- a/donjo-app/models/Penduduk_log_model.php +++ b/donjo-app/models/Penduduk_log_model.php @@ -36,7 +36,6 @@ */ use App\Models\LogPenduduk; -use Illuminate\Support\Carbon; defined('BASEPATH') || exit('No direct script access allowed'); @@ -139,10 +138,6 @@ public function kembalikan_status($id_log) // Cek untuk kode_peristiwa mati (2) hanya boleh dikembalikan jika tgl(thn/bln) lapor masih sama dengan tgl(thn/bln) saat mau dikembalikan $log = LogPenduduk::find($id_log) ?? show_404(); - if ($log->kode_peristiwa == 2 && $log->tgl_lapor->format('Y-m') != Carbon::now()->format('Y-m')) { - return session_error(', tidak dapat mengubah status dasar mati jadi hidup karena sudah tercatat pada laporan bulanan.'); - } - // Kembalikan status selain masuk dan lahir if ($log->kode_peristiwa != 5 && $log->kode_peristiwa != 1) { $data['status_dasar'] = 1; // status dasar hidup diff --git a/donjo-app/models/Periksa_model.php b/donjo-app/models/Periksa_model.php index 718b983d57..bd1ae34079 100644 --- a/donjo-app/models/Periksa_model.php +++ b/donjo-app/models/Periksa_model.php @@ -38,6 +38,7 @@ use App\Models\LogPenduduk; use App\Models\LogPerubahanPenduduk; use App\Models\PendudukMandiri; +use App\Models\SettingAplikasi; defined('BASEPATH') || exit('No direct script access allowed'); @@ -51,18 +52,17 @@ public function __construct() $this->periksa['migrasi_utk_diulang'] = $this->deteksi_masalah(); } + public function getSetting($key) + { + return SettingAplikasi::where('key', $key)->pluck('value')->first(); + } + private function deteksi_masalah() { $db_error_code = $this->session->db_error['code']; $db_error_message = $this->session->db_error['message']; - - $current_version = $this->db - ->select('value') - ->where('key', 'current_version') - ->get('setting_aplikasi') - ->row()->value; - - $calon = $current_version; + $current_version = $this->getSetting('current_version'); + $calon = $current_version; // Table tweb_penduduk no_kk ganda if (! empty($kk_ganda = $this->deteksi_tweb_keluarga_no_kk_ganda())) { diff --git a/donjo-app/models/Plan_area_model.php b/donjo-app/models/Plan_area_model.php index a4641a0019..73a5d83613 100644 --- a/donjo-app/models/Plan_area_model.php +++ b/donjo-app/models/Plan_area_model.php @@ -262,17 +262,23 @@ public function update_position($id = 0) status_sukses($outp, $gagal_saja = false, $msg = 'titik koordinat area harus diisi'); //Tampilkan Pesan } - public function list_area() + public function list_area($status = null) { + if (null !== $status) { + $this->db + ->where('l.enabled', $status) + ->where('p.enabled', $status) + ->where('m.enabled', $status); + } + return $this->db ->select('l.*, p.nama AS kategori, m.nama AS jenis, p.simbol AS simbol, p.color AS color') ->from('area l') ->join('polygon p', 'l.ref_polygon = p.id', 'left') ->join('polygon m', 'p.parrent = m.id', 'left') - ->where('l.enabled', 1) - ->where('p.enabled', 1) - ->where('m.enabled', 1) - ->get()->result_array(); + ->where('l.ref_polygon !=', 0) + ->get() + ->result_array(); } public function kosongkan_path($id) diff --git a/donjo-app/models/Plan_garis_model.php b/donjo-app/models/Plan_garis_model.php index eccc69ebea..8a652c3bdb 100644 --- a/donjo-app/models/Plan_garis_model.php +++ b/donjo-app/models/Plan_garis_model.php @@ -304,16 +304,21 @@ public function update_position($id = 0) status_sukses($outp, $gagal_saja = false, $msg = 'titik koordinat garis harus diisi'); //Tampilkan Pesan } - public function list_garis() + public function list_garis($status = null) { + if (null !== $status) { + $this->db + ->where('l.enabled', $status) + ->where('p.enabled', $status) + ->where('m.enabled', $status); + } + return $this->db ->select('l.*, p.nama AS kategori, m.nama AS jenis, p.simbol AS simbol, p.color AS color, p.tebal AS tebal, p.jenis AS jenis_garis') ->from('garis l') ->join('line p', 'l.ref_line = p.id', 'left') - ->join('line m', ' p.parrent = m.id') - ->where('l.enabled', 1) - ->where('p.enabled', 1) - ->where('m.enabled', 1) + ->join('line m', ' p.parrent = m.id', 'left') + ->where('l.ref_line !=', 0) ->get() ->result_array(); } diff --git a/donjo-app/models/Plan_line_model.php b/donjo-app/models/Plan_line_model.php index 4204cc4f94..4320b644ad 100644 --- a/donjo-app/models/Plan_line_model.php +++ b/donjo-app/models/Plan_line_model.php @@ -1,334 +1,334 @@ -autocomplete_str('nama', 'line'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (nama LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND enabled = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql() - { - $sql = 'FROM line WHERE tipe = 0 '; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 1000) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY nama'; - break; - - case 2: $order_sql = ' ORDER BY nama DESC'; - break; - - case 3: $order_sql = ' ORDER BY enabled'; - break; - - case 4: $order_sql = ' ORDER BY enabled DESC'; - break; - - default:$order_sql = ' ORDER BY id'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT * ' . $this->list_data_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - - $j++; - } - - return $data; - } - - private function validasi($post) - { - return [ - 'nama' => nomor_surat_keputusan($post['nama']), - 'jenis' => nomor_surat_keputusan($post['jenis']), - 'tebal' => bilangan($post['tebal']), - 'color' => warna($post['color']), - ]; - } - - public function insert() - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $outp = $this->db->insert('line', $data); - } - } else { - unset($data['simbol']); - $outp = $this->db->insert('line', $data); - } - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $this->db->where('id', $id); - $outp = $this->db->update('line', $data); - } - $_SESSION['success'] = 1; - } - - unset($data['simbol']); - $this->db->where('id', $id); - $outp = $this->db->update('line', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('line'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function list_sub_line($line = 1) - { - $sql = 'SELECT * FROM line WHERE parrent = ? AND tipe = 2 '; - - $query = $this->db->query($sql, $line); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - } - - return $data; - } - - public function insert_sub_line($parrent = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $data['parrent'] = $parrent; - $data['tipe'] = 2; - $outp = $this->db->insert('line', $data); - if ($outp) { - $_SESSION['success'] = 1; - } - } else { - $_SESSION['success'] = -1; - } - } else { - unset($data['simbol']); - $data['parrent'] = $parrent; - $data['tipe'] = 2; - $outp = $this->db->insert('line', $data); - } - - status_sukses($outp); //Tampilkan Pesan - } - - public function update_sub_line($id = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $this->db->where('id', $id); - $outp = $this->db->update('line', $data); - } - $_SESSION['success'] = 1; - } else { - unset($data['simbol']); - $this->db->where('id', $id); - $outp = $this->db->update('line', $data); - } - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function delete_sub_line($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('line'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all_sub_line() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete_sub_line($id, true); - } - } - - public function line_lock($id = '', $val = 0) - { - $sql = 'UPDATE line SET enabled = ? WHERE id = ?'; - $outp = $this->db->query($sql, [$val, $id]); - - status_sukses($outp); //Tampilkan Pesan - } - - public function get_line($id = 0) - { - $sql = 'SELECT * FROM line WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } -} +autocomplete_str('nama', 'line'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (nama LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND enabled = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql() + { + $sql = 'FROM line WHERE tipe = 0 '; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 1000) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY nama'; + break; + + case 2: $order_sql = ' ORDER BY nama DESC'; + break; + + case 3: $order_sql = ' ORDER BY enabled'; + break; + + case 4: $order_sql = ' ORDER BY enabled DESC'; + break; + + default:$order_sql = ' ORDER BY id'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT * ' . $this->list_data_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + + $j++; + } + + return $data; + } + + private function validasi($post) + { + return [ + 'nama' => nomor_surat_keputusan($post['nama']), + 'jenis' => nomor_surat_keputusan($post['jenis']), + 'tebal' => bilangan($post['tebal']), + 'color' => warna($post['color']), + ]; + } + + public function insert() + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $outp = $this->db->insert('line', $data); + } + } else { + unset($data['simbol']); + $outp = $this->db->insert('line', $data); + } + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $this->db->where('id', $id); + $outp = $this->db->update('line', $data); + } + $_SESSION['success'] = 1; + } + + unset($data['simbol']); + $this->db->where('id', $id); + $outp = $this->db->update('line', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('line'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function list_sub_line($line = 1) + { + $sql = 'SELECT * FROM line WHERE parrent = ? AND tipe = 2 '; + + $query = $this->db->query($sql, $line); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + } + + return $data; + } + + public function insert_sub_line($parrent = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $data['parrent'] = $parrent; + $data['tipe'] = 2; + $outp = $this->db->insert('line', $data); + if ($outp) { + $_SESSION['success'] = 1; + } + } else { + $_SESSION['success'] = -1; + } + } else { + unset($data['simbol']); + $data['parrent'] = $parrent; + $data['tipe'] = 2; + $outp = $this->db->insert('line', $data); + } + + status_sukses($outp); //Tampilkan Pesan + } + + public function update_sub_line($id = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $this->db->where('id', $id); + $outp = $this->db->update('line', $data); + } + $_SESSION['success'] = 1; + } else { + unset($data['simbol']); + $this->db->where('id', $id); + $outp = $this->db->update('line', $data); + } + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function delete_sub_line($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('line'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all_sub_line() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete_sub_line($id, true); + } + } + + public function line_lock($id = '', $val = 0) + { + $sql = 'UPDATE line SET enabled = ? WHERE id = ?'; + $outp = $this->db->query($sql, [$val, $id]); + + status_sukses($outp); //Tampilkan Pesan + } + + public function get_line($id = 0) + { + $sql = 'SELECT * FROM line WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } +} diff --git a/donjo-app/models/Plan_lokasi_model.php b/donjo-app/models/Plan_lokasi_model.php index 7d04e32a0c..f4b44a8070 100644 --- a/donjo-app/models/Plan_lokasi_model.php +++ b/donjo-app/models/Plan_lokasi_model.php @@ -300,16 +300,22 @@ public function update_position($id = 0) status_sukses($outp); //Tampilkan Pesan } - public function list_lokasi() + public function list_lokasi($status = null) { + if (null !== $status) { + $this->db + ->where('l.enabled', $status) + ->where('p.enabled', $status) + ->where('m.enabled', $status); + } + return $this->db ->select('l.*, p.nama AS kategori, m.nama AS jenis, p.simbol AS simbol') ->from('lokasi l') ->join('point p', 'l.ref_point = p.id', 'left') ->join('point m', 'p.parrent = m.id', 'left') - ->where('l.enabled = 1') - ->where('p.enabled = 1') - ->where('m.enabled = 1') - ->get()->result_array(); + ->where('l.ref_point !=', 0) + ->get() + ->result_array(); } } diff --git a/donjo-app/models/Plan_polygon_model.php b/donjo-app/models/Plan_polygon_model.php index 192073a3df..d4bf70b98a 100644 --- a/donjo-app/models/Plan_polygon_model.php +++ b/donjo-app/models/Plan_polygon_model.php @@ -1,340 +1,340 @@ -autocomplete_str('nama', 'polygon'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (nama LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND enabled = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); - $sql .= $this->search_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql() - { - $sql = ' FROM polygon WHERE tipe = 0 '; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 1000) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY nama'; - break; - - case 2: $order_sql = ' ORDER BY nama DESC'; - break; - - case 3: $order_sql = ' ORDER BY enabled'; - break; - - case 4: $order_sql = ' ORDER BY enabled DESC'; - break; - - default:$order_sql = ' ORDER BY id'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT * ' . $this->list_data_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - - $j++; - } - - return $data; - } - - private function validasi($post) - { - $data['nama'] = nomor_surat_keputusan($post['nama']); - $data['color'] = warna($post['color']); - - return $data; - } - - public function insert() - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $outp = $this->db->insert('polygon', $data); - } - } else { - unset($data['simbol']); - $outp = $this->db->insert('polygon', $data); - } - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $this->db->where('id', $id); - $outp = $this->db->update('polygon', $data); - } - $_SESSION['success'] = 1; - } - - unset($data['simbol']); - $this->db->where('id', $id); - $outp = $this->db->update('polygon', $data); - - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('polygon'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function list_sub_polygon($polygon = 1) - { - $sql = 'SELECT * FROM polygon WHERE parrent = ? AND tipe = 2 '; - - $query = $this->db->query($sql, $polygon); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - } - - return $data; - } - - public function insert_sub_polygon($parrent = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $data['parrent'] = $parrent; - $data['tipe'] = 2; - $outp = $this->db->insert('polygon', $data); - if ($outp) { - $_SESSION['success'] = 1; - } - } else { - $_SESSION['success'] = -1; - } - } else { - unset($data['simbol']); - $data['parrent'] = $parrent; - $data['tipe'] = 2; - $outp = $this->db->insert('polygon', $data); - } - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function update_sub_polygon($id = 0) - { - $data = $this->validasi($this->input->post()); - $lokasi_file = $_FILES['simbol']['tmp_name']; - $tipe_file = $_FILES['simbol']['type']; - $nama_file = $_FILES['simbol']['name']; - $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file - if (! empty($lokasi_file)) { - if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { - UploadSimbol($nama_file); - $data['simbol'] = $nama_file; - $this->db->where('id', $id); - $outp = $this->db->update('polygon', $data); - } - $_SESSION['success'] = 1; - } else { - unset($data['simbol']); - $this->db->where('id', $id); - $outp = $this->db->update('polygon', $data); - } - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function delete_sub_polygon($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('polygon'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all_sub_polygon() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete_sub_polygon($id, $semua = true); - } - } - - public function polygon_lock($id = '', $val = 0) - { - $sql = 'UPDATE polygon SET enabled = ? WHERE id = ?'; - $outp = $this->db->query($sql, [$val, $id]); - - status_sukses($outp); //Tampilkan Pesan - } - - public function get_polygon($id = 0) - { - $sql = 'SELECT * FROM polygon WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } -} +autocomplete_str('nama', 'polygon'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (nama LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND enabled = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); + $sql .= $this->search_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql() + { + $sql = ' FROM polygon WHERE tipe = 0 '; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 1000) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY nama'; + break; + + case 2: $order_sql = ' ORDER BY nama DESC'; + break; + + case 3: $order_sql = ' ORDER BY enabled'; + break; + + case 4: $order_sql = ' ORDER BY enabled DESC'; + break; + + default:$order_sql = ' ORDER BY id'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT * ' . $this->list_data_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + + $j++; + } + + return $data; + } + + private function validasi($post) + { + $data['nama'] = nomor_surat_keputusan($post['nama']); + $data['color'] = warna($post['color']); + + return $data; + } + + public function insert() + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $outp = $this->db->insert('polygon', $data); + } + } else { + unset($data['simbol']); + $outp = $this->db->insert('polygon', $data); + } + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $this->db->where('id', $id); + $outp = $this->db->update('polygon', $data); + } + $_SESSION['success'] = 1; + } + + unset($data['simbol']); + $this->db->where('id', $id); + $outp = $this->db->update('polygon', $data); + + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('polygon'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function list_sub_polygon($polygon = 1) + { + $sql = 'SELECT * FROM polygon WHERE parrent = ? AND tipe = 2 '; + + $query = $this->db->query($sql, $polygon); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + } + + return $data; + } + + public function insert_sub_polygon($parrent = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $data['parrent'] = $parrent; + $data['tipe'] = 2; + $outp = $this->db->insert('polygon', $data); + if ($outp) { + $_SESSION['success'] = 1; + } + } else { + $_SESSION['success'] = -1; + } + } else { + unset($data['simbol']); + $data['parrent'] = $parrent; + $data['tipe'] = 2; + $outp = $this->db->insert('polygon', $data); + } + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function update_sub_polygon($id = 0) + { + $data = $this->validasi($this->input->post()); + $lokasi_file = $_FILES['simbol']['tmp_name']; + $tipe_file = $_FILES['simbol']['type']; + $nama_file = $_FILES['simbol']['name']; + $nama_file = str_replace(' ', '-', $nama_file); // normalkan nama file + if (! empty($lokasi_file)) { + if ($tipe_file == 'image/png' || $tipe_file == 'image/gif') { + UploadSimbol($nama_file); + $data['simbol'] = $nama_file; + $this->db->where('id', $id); + $outp = $this->db->update('polygon', $data); + } + $_SESSION['success'] = 1; + } else { + unset($data['simbol']); + $this->db->where('id', $id); + $outp = $this->db->update('polygon', $data); + } + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function delete_sub_polygon($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('polygon'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all_sub_polygon() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete_sub_polygon($id, $semua = true); + } + } + + public function polygon_lock($id = '', $val = 0) + { + $sql = 'UPDATE polygon SET enabled = ? WHERE id = ?'; + $outp = $this->db->query($sql, [$val, $id]); + + status_sukses($outp); //Tampilkan Pesan + } + + public function get_polygon($id = 0) + { + $sql = 'SELECT * FROM polygon WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } +} diff --git a/donjo-app/models/Surat_keluar_model.php b/donjo-app/models/Surat_keluar_model.php index a151ff8880..86270b6879 100644 --- a/donjo-app/models/Surat_keluar_model.php +++ b/donjo-app/models/Surat_keluar_model.php @@ -1,454 +1,454 @@ -load->library('upload'); - // Untuk dapat menggunakan fungsi generator() - $this->load->helper('donjolib'); - // Helper upload file - $this->load->helper('pict_helper'); - $this->uploadConfig = [ - 'upload_path' => LOKASI_ARSIP, - 'allowed_types' => 'gif|jpg|jpeg|png|pdf', - 'max_size' => max_upload() * 1024, - ]; - } - - public function autocomplete() - { - // TODO: tambahkan kata2 dari isi_singkat - return $this->autocomplete_str('tujuan', 'surat_keluar'); - } - - private function search_sql() - { - if ($cari = $this->session->cari) { - $this->db - ->group_start() - ->like('u.tujuan', $cari) - ->or_like('u.isi_singkat', $cari) - ->group_end(); - } - } - - private function filter_sql() - { - if ($filter = $this->session->filter) { - $this->db->where('YEAR(u.tanggal_surat)', $filter); - } - } - - // Digunakan untuk paging dan query utama supaya jumlah data selalu sama - private function list_data_sql() - { - $this->db->from('surat_keluar u'); - $this->search_sql(); - $this->filter_sql(); - } - - public function paging($p = 1, $o = 0) - { - $this->list_data_sql(); - $jml_data = $this->db - ->select('COUNT(id) AS jml') - ->get() - ->row()->jml; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $this->session->per_page; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - $this->list_data_sql(); - //Ordering - switch ($o) { - case 1: $order = ' YEAR(u.tanggal_surat) ASC, u.nomor_urut ASC'; - break; - - case 2: $order = ' YEAR(u.tanggal_surat) DESC, u.nomor_urut DESC'; - break; - - case 3: $order = ' u.tanggal_surat'; - break; - - case 4: $order = ' u.tanggal_surat DESC'; - break; - - case 5: $order = ' u.tujuan'; - break; - - case 6: $order = ' u.tujuan DESC'; - break; - - case 7: $order = ' u.tanggal_pengiriman'; - break; - - case 8: $order = ' u.tanggal_pengiriman DESC'; - break; - - default:$order = ' u.id'; - } - - return $this->db - ->select('u.*') - ->order_by($order) - ->limit($limit, $offset) - ->get() - ->result_array(); - } - - public function list_tahun_surat() - { - return $this->db->distinct()-> - select('YEAR(tanggal_surat) AS tahun')-> - order_by('YEAR(tanggal_surat)', 'DESC')-> - get('surat_keluar')->result_array(); - } - - /** - * Insert data baru ke tabel surat_keluar - * - * @return void - */ - public function insert() - { - // Ambil semua data dari var. global $_POST - $data = $this->input->post(null); - unset($data['url_remote'], $data['nomor_urut_lama']); - - $this->validasi($data); - $data['created_by'] = $data['updated_by'] = $this->session->user; - - // Adakah lampiran yang disertakan? - $adaLampiran = ! empty($_FILES['satuan']['name']); - - // Cek nama berkas user boleh lebih dari 80 karakter (+20 untuk unique id) karena - - // karakter maksimal yang bisa ditampung kolom surat_keluar.berkas_scan hanya 100 karakter - if ($adaLampiran && ((strlen($_FILES['satuan']['name']) + 20) >= 100)) { - $_SESSION['success'] = -1; - $_SESSION['error_msg'] = ' -> Nama berkas yang coba Anda unggah terlalu panjang, ' . - 'batas maksimal yang diijinkan adalah 80 karakter'; - redirect('surat_keluar'); - } - - $uploadData = null; - $uploadError = null; - // Ada lampiran file - if ($adaLampiran === true) { - // Tes tidak berisi script PHP - if (isPHP($_FILES['foto']['tmp_name'], $_FILES['foto']['name'])) { - $_SESSION['error_msg'] .= ' -> Jenis file ini tidak diperbolehkan '; - $_SESSION['success'] = -1; - redirect('man_user'); - } - // Inisialisasi library 'upload' - $this->upload->initialize($this->uploadConfig); - // Upload sukses - if ($this->upload->do_upload('satuan')) { - $uploadData = $this->upload->data(); - // Buat nama file unik agar url file susah ditebak dari browser - $namaFileUnik = tambahSuffixUniqueKeNamaFile($uploadData['file_name']); - // Ganti nama file asli dengan nama unik untuk mencegah akses langsung dari browser - $fileRenamed = rename( - $this->uploadConfig['upload_path'] . $uploadData['file_name'], - $this->uploadConfig['upload_path'] . $namaFileUnik - ); - // Ganti nama di array upload jika file berhasil di-rename -- - // jika rename gagal, fallback ke nama asli - $uploadData['file_name'] = $fileRenamed ? $namaFileUnik : $uploadData['file_name']; - } - // Upload gagal - else { - $uploadError = $this->upload->display_errors(null, null); - } - } - // Berkas lampiran - $data['berkas_scan'] = $adaLampiran && null !== $uploadData - ? $uploadData['file_name'] : null; - $data['created_by'] = $this->session->user; - $data['updated_by'] = $this->session->user; - // penerapan transcation karena insert ke 2 tabel - $this->db->trans_start(); - - $indikatorSukses = null === $uploadError && $this->db->insert('surat_keluar', $data); - - $insert_id = $this->db->insert_id(); - - // transaction selesai - $this->db->trans_complete(); - - // Set session berdasarkan hasil operasi - status_sukses($indikatorSukses); //Tampilkan Pesan - $_SESSION['error_msg'] = $_SESSION['success'] === 1 ? null : ' -> ' . $uploadError; - } - - private function validasi(&$data) - { - // Normalkan tanggal - $data['tanggal_surat'] = tgl_indo_in($data['tanggal_surat']); - // Bersihkan data - $data['nomor_surat'] = nomor_surat_keputusan(strip_tags($data['nomor_surat'])); - $data['tujuan'] = strip_tags($data['tujuan']); - $data['isi_singkat'] = strip_tags($data['isi_singkat']); - } - - /** - * Update data di tabel surat_keluar - * - * @param int $idSuratMasuk Id berkas untuk query ke database - * - * @return void - */ - public function update($idSuratMasuk) - { - // Ambil semua data dari var. global $_POST - $data = $this->input->post(null); - unset($data['url_remote'], $data['nomor_urut_lama']); - - $this->validasi($data); - $data['updated_by'] = $this->session->user; - - $_SESSION['error_msg'] = null; - - // Ambil nama berkas scan lama dari database - $berkasLama = $this->getNamaBerkasScan($idSuratMasuk); - - // Lokasi berkas scan lama (absolut) - $lokasiBerkasLama = $this->uploadConfig['upload_path'] . $berkasLama; - $lokasiBerkasLama = str_replace('/', DIRECTORY_SEPARATOR, FCPATH . $lokasiBerkasLama); - - $indikatorSukses = false; - - // Hapus lampiran lama? - $hapusLampiranLama = $data['gambar_hapus']; - unset($data['gambar_hapus']); - - $uploadData = null; - $uploadError = null; - - // Adakah file baru yang akan diupload? - $adaLampiran = ! empty($_FILES['satuan']['name']); - - // penerapan transcation karena insert ke 2 tabel - $this->db->trans_start(); - - // Ada lampiran file - if ($adaLampiran === true) { - // Tes tidak berisi script PHP - if (isPHP($_FILES['foto']['tmp_name'], $_FILES['satuan']['name'])) { - $_SESSION['error_msg'] .= ' -> Jenis file ini tidak diperbolehkan '; - $_SESSION['success'] = -1; - redirect('surat_keluar'); - } - // Cek nama berkas tidak boleh lebih dari 80 karakter (+20 untuk unique id) karena - - // karakter maksimal yang bisa ditampung kolom surat_keluar.berkas_scan hanya 100 karakter - if ((strlen($_FILES['satuan']['name']) + 20) >= 100) { - $_SESSION['success'] = -1; - $_SESSION['error_msg'] = ' -> Nama berkas yang coba Anda unggah terlalu panjang, ' . - 'batas maksimal yang diijinkan adalah 80 karakter'; - redirect('surat_keluar'); - } - // Inisialisasi library 'upload' - $this->upload->initialize($this->uploadConfig); - // Upload sukses - if ($this->upload->do_upload('satuan')) { - $uploadData = $this->upload->data(); - // Hapus berkas dari disk - $oldFileRemoved = unlink($lokasiBerkasLama) && ! file_exists($lokasiBerkasLama); - $_SESSION['error_msg'] = ($oldFileRemoved === true) - ? null : ' -> Gagal menghapus berkas lama'; - // Buat nama file unik untuk nama file upload - $namaFileUnik = tambahSuffixUniqueKeNamaFile($uploadData['file_name']); - // Ganti nama file asli dengan nama unik untuk mencegah akses langsung dari browser - $uploadedFileRenamed = rename( - $this->uploadConfig['upload_path'] . $uploadData['file_name'], - $this->uploadConfig['upload_path'] . $namaFileUnik - ); - - $uploadData['file_name'] = ($uploadedFileRenamed === false) ?: $namaFileUnik; - - $data['berkas_scan'] = $uploadData['file_name']; - $data['updated_by'] = $this->session->user; - $data['updated_at'] = date('Y-m-d H:i:s'); - // Update database dengan `berkas_scan` berisi nama unik - $this->db->where('id', $idSuratMasuk); - $databaseUpdated = $this->db->update('surat_keluar', $data); - - $_SESSION['error_msg'] = ($databaseUpdated === true) - ? null : 'Gagal memperbarui data di database'; - } - // Upload gagal - else { - $_SESSION['error_msg'] = $this->upload->display_errors(null, null); - } - } - // Tidak ada file upload - else { - unset($data['berkas_scan']); - if ($hapusLampiranLama) { - $data['berkas_scan'] = null; - $adaBerkasLamaDiDisk = file_exists($lokasiBerkasLama); - $oldFileRemoved = $adaBerkasLamaDiDisk && unlink($lokasiBerkasLama); - $_SESSION['error_msg'] = ($oldFileRemoved === true) - ? null : ' -> Gagal menghapus berkas lama'; - } - $this->db->where('id', $idSuratMasuk); - $databaseUpdated = $this->db->update('surat_keluar', $data); - $_SESSION['error_msg'] = ($databaseUpdated === true) - ? null : 'Gagal memperbarui data di database'; - $adaBerkasLamaDiDB = null !== $berkasLama; - } - - $this->db->trans_complete(); - - $_SESSION['success'] = null === $_SESSION['error_msg'] ? 1 : -1; - } - - public function get_surat_keluar($id) - { - return $this->db->where('id', $id)->get('surat_keluar')->row_array(); - } - - /** - * Hapus record surat masuk beserta file lampirannya (jika ada) - * - * @param string $idSuratMasuk Id surat masuk - * @param mixed $semua - * - * @return void - */ - public function delete($idSuratMasuk, $semua = false) - { - if (! $semua) { - $this->session->success = 1; - $this->session->error_msg = ''; - } - // Type check - $idSuratMasuk = is_string($idSuratMasuk) ? $idSuratMasuk : (string) $idSuratMasuk; - // Redirect ke halaman surat masuk jika Id kosong - if (empty($idSuratMasuk)) { - $_SESSION['success'] = -1; - $_SESSION['error_msg'] = ' -> Data yang anda minta tidak ditemukan'; - redirect('surat_keluar'); - } - - $_SESSION['error_msg'] = null; - - $namaBerkas = $this->getNamaBerkasScan($idSuratMasuk); - - if (null !== $namaBerkas) { - $lokasiBerkasLama = $this->uploadConfig['upload_path'] . $namaBerkas; - $lokasiBerkasLama = str_replace('/', DIRECTORY_SEPARATOR, FCPATH . $lokasiBerkasLama); - - if (file_exists($lokasiBerkasLama)) { - $hapusLampiranLama = unlink($lokasiBerkasLama); - $hapusLampiranLama = ! file_exists($lokasiBerkasLama); - $_SESSION['error_msg'] = $hapusLampiranLama === true - ? null : ' -> Gagal menghapus berkas dari disk'; - } - - if (null === $_SESSION['error_msg']) { - $hapusRecordDb = $this->db->where('id', $idSuratMasuk)->delete('surat_keluar'); - $_SESSION['error_msg'] = $hapusRecordDb === true - ? null : ' -> Gagal menghapus record dari database'; - } - } else { - $hapusRecordDb = $this->db->where('id', $idSuratMasuk)->delete('surat_keluar'); - $_SESSION['error_msg'] = $hapusRecordDb === true - ? null : ' -> Gagal menghapus record dari database'; - } - - $_SESSION['success'] = null === $_SESSION['error_msg'] ? 1 : -1; - } - - public function delete_all() - { - $this->session->success = 1; - $this->session->error_msg = ''; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - //! ============================================================== - //! Helper Methods - //! ============================================================== - /** - * Ambil nama berkas scan dari database berdasarkan Id surat masuk - * - * @param string $idSuratMasuk Id pada tabel surat_keluar - * @param string $kolom Kolom yang akan diambil datanya - * - * @return string|null - */ - public function getNamaBerkasScan($idSuratMasuk) - { - // Ambil nama berkas dari database - $sql = 'SELECT berkas_scan FROM surat_keluar WHERE id = ? LIMIT 1;'; - $query = $this->db->query($sql, [$idSuratMasuk]); - $namaBerkas = $query->row(); - - return is_object($namaBerkas) ? $namaBerkas->berkas_scan : null; - } - - public function untuk_ekspedisi($id, $masuk = 0) - { - $this->db - ->where('id', $id) - ->set('ekspedisi', $masuk) - ->update('surat_keluar'); - } -} +load->library('upload'); + // Untuk dapat menggunakan fungsi generator() + $this->load->helper('donjolib'); + // Helper upload file + $this->load->helper('pict_helper'); + $this->uploadConfig = [ + 'upload_path' => LOKASI_ARSIP, + 'allowed_types' => 'gif|jpg|jpeg|png|pdf', + 'max_size' => max_upload() * 1024, + ]; + } + + public function autocomplete() + { + // TODO: tambahkan kata2 dari isi_singkat + return $this->autocomplete_str('tujuan', 'surat_keluar'); + } + + private function search_sql() + { + if ($cari = $this->session->cari) { + $this->db + ->group_start() + ->like('u.tujuan', $cari) + ->or_like('u.isi_singkat', $cari) + ->group_end(); + } + } + + private function filter_sql() + { + if ($filter = $this->session->filter) { + $this->db->where('YEAR(u.tanggal_surat)', $filter); + } + } + + // Digunakan untuk paging dan query utama supaya jumlah data selalu sama + private function list_data_sql() + { + $this->db->from('surat_keluar u'); + $this->search_sql(); + $this->filter_sql(); + } + + public function paging($p = 1, $o = 0) + { + $this->list_data_sql(); + $jml_data = $this->db + ->select('COUNT(id) AS jml') + ->get() + ->row()->jml; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $this->session->per_page; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + $this->list_data_sql(); + //Ordering + switch ($o) { + case 1: $order = ' YEAR(u.tanggal_surat) ASC, u.nomor_urut ASC'; + break; + + case 2: $order = ' YEAR(u.tanggal_surat) DESC, u.nomor_urut DESC'; + break; + + case 3: $order = ' u.tanggal_surat'; + break; + + case 4: $order = ' u.tanggal_surat DESC'; + break; + + case 5: $order = ' u.tujuan'; + break; + + case 6: $order = ' u.tujuan DESC'; + break; + + case 7: $order = ' u.tanggal_pengiriman'; + break; + + case 8: $order = ' u.tanggal_pengiriman DESC'; + break; + + default:$order = ' u.id'; + } + + return $this->db + ->select('u.*') + ->order_by($order) + ->limit($limit, $offset) + ->get() + ->result_array(); + } + + public function list_tahun_surat() + { + return $this->db->distinct()-> + select('YEAR(tanggal_surat) AS tahun')-> + order_by('YEAR(tanggal_surat)', 'DESC')-> + get('surat_keluar')->result_array(); + } + + /** + * Insert data baru ke tabel surat_keluar + * + * @return void + */ + public function insert() + { + // Ambil semua data dari var. global $_POST + $data = $this->input->post(null); + unset($data['url_remote'], $data['nomor_urut_lama']); + + $this->validasi($data); + $data['created_by'] = $data['updated_by'] = $this->session->user; + + // Adakah lampiran yang disertakan? + $adaLampiran = ! empty($_FILES['satuan']['name']); + + // Cek nama berkas user boleh lebih dari 80 karakter (+20 untuk unique id) karena - + // karakter maksimal yang bisa ditampung kolom surat_keluar.berkas_scan hanya 100 karakter + if ($adaLampiran && ((strlen($_FILES['satuan']['name']) + 20) >= 100)) { + $_SESSION['success'] = -1; + $_SESSION['error_msg'] = ' -> Nama berkas yang coba Anda unggah terlalu panjang, ' . + 'batas maksimal yang diijinkan adalah 80 karakter'; + redirect('surat_keluar'); + } + + $uploadData = null; + $uploadError = null; + // Ada lampiran file + if ($adaLampiran === true) { + // Tes tidak berisi script PHP + if (isPHP($_FILES['foto']['tmp_name'], $_FILES['foto']['name'])) { + $_SESSION['error_msg'] .= ' -> Jenis file ini tidak diperbolehkan '; + $_SESSION['success'] = -1; + redirect('man_user'); + } + // Inisialisasi library 'upload' + $this->upload->initialize($this->uploadConfig); + // Upload sukses + if ($this->upload->do_upload('satuan')) { + $uploadData = $this->upload->data(); + // Buat nama file unik agar url file susah ditebak dari browser + $namaFileUnik = tambahSuffixUniqueKeNamaFile($uploadData['file_name']); + // Ganti nama file asli dengan nama unik untuk mencegah akses langsung dari browser + $fileRenamed = rename( + $this->uploadConfig['upload_path'] . $uploadData['file_name'], + $this->uploadConfig['upload_path'] . $namaFileUnik + ); + // Ganti nama di array upload jika file berhasil di-rename -- + // jika rename gagal, fallback ke nama asli + $uploadData['file_name'] = $fileRenamed ? $namaFileUnik : $uploadData['file_name']; + } + // Upload gagal + else { + $uploadError = $this->upload->display_errors(null, null); + } + } + // Berkas lampiran + $data['berkas_scan'] = $adaLampiran && null !== $uploadData + ? $uploadData['file_name'] : null; + $data['created_by'] = $this->session->user; + $data['updated_by'] = $this->session->user; + // penerapan transcation karena insert ke 2 tabel + $this->db->trans_start(); + + $indikatorSukses = null === $uploadError && $this->db->insert('surat_keluar', $data); + + $insert_id = $this->db->insert_id(); + + // transaction selesai + $this->db->trans_complete(); + + // Set session berdasarkan hasil operasi + status_sukses($indikatorSukses); //Tampilkan Pesan + $_SESSION['error_msg'] = $_SESSION['success'] === 1 ? null : ' -> ' . $uploadError; + } + + private function validasi(&$data) + { + // Normalkan tanggal + $data['tanggal_surat'] = tgl_indo_in($data['tanggal_surat']); + // Bersihkan data + $data['nomor_surat'] = nomor_surat_keputusan(strip_tags($data['nomor_surat'])); + $data['tujuan'] = strip_tags($data['tujuan']); + $data['isi_singkat'] = strip_tags($data['isi_singkat']); + } + + /** + * Update data di tabel surat_keluar + * + * @param int $idSuratMasuk Id berkas untuk query ke database + * + * @return void + */ + public function update($idSuratMasuk) + { + // Ambil semua data dari var. global $_POST + $data = $this->input->post(null); + unset($data['url_remote'], $data['nomor_urut_lama']); + + $this->validasi($data); + $data['updated_by'] = $this->session->user; + + $_SESSION['error_msg'] = null; + + // Ambil nama berkas scan lama dari database + $berkasLama = $this->getNamaBerkasScan($idSuratMasuk); + + // Lokasi berkas scan lama (absolut) + $lokasiBerkasLama = $this->uploadConfig['upload_path'] . $berkasLama; + $lokasiBerkasLama = str_replace('/', DIRECTORY_SEPARATOR, FCPATH . $lokasiBerkasLama); + + $indikatorSukses = false; + + // Hapus lampiran lama? + $hapusLampiranLama = $data['gambar_hapus']; + unset($data['gambar_hapus']); + + $uploadData = null; + $uploadError = null; + + // Adakah file baru yang akan diupload? + $adaLampiran = ! empty($_FILES['satuan']['name']); + + // penerapan transcation karena insert ke 2 tabel + $this->db->trans_start(); + + // Ada lampiran file + if ($adaLampiran === true) { + // Tes tidak berisi script PHP + if (isPHP($_FILES['foto']['tmp_name'], $_FILES['satuan']['name'])) { + $_SESSION['error_msg'] .= ' -> Jenis file ini tidak diperbolehkan '; + $_SESSION['success'] = -1; + redirect('surat_keluar'); + } + // Cek nama berkas tidak boleh lebih dari 80 karakter (+20 untuk unique id) karena - + // karakter maksimal yang bisa ditampung kolom surat_keluar.berkas_scan hanya 100 karakter + if ((strlen($_FILES['satuan']['name']) + 20) >= 100) { + $_SESSION['success'] = -1; + $_SESSION['error_msg'] = ' -> Nama berkas yang coba Anda unggah terlalu panjang, ' . + 'batas maksimal yang diijinkan adalah 80 karakter'; + redirect('surat_keluar'); + } + // Inisialisasi library 'upload' + $this->upload->initialize($this->uploadConfig); + // Upload sukses + if ($this->upload->do_upload('satuan')) { + $uploadData = $this->upload->data(); + // Hapus berkas dari disk + $oldFileRemoved = unlink($lokasiBerkasLama) && ! file_exists($lokasiBerkasLama); + $_SESSION['error_msg'] = ($oldFileRemoved === true) + ? null : ' -> Gagal menghapus berkas lama'; + // Buat nama file unik untuk nama file upload + $namaFileUnik = tambahSuffixUniqueKeNamaFile($uploadData['file_name']); + // Ganti nama file asli dengan nama unik untuk mencegah akses langsung dari browser + $uploadedFileRenamed = rename( + $this->uploadConfig['upload_path'] . $uploadData['file_name'], + $this->uploadConfig['upload_path'] . $namaFileUnik + ); + + $uploadData['file_name'] = ($uploadedFileRenamed === false) ?: $namaFileUnik; + + $data['berkas_scan'] = $uploadData['file_name']; + $data['updated_by'] = $this->session->user; + $data['updated_at'] = date('Y-m-d H:i:s'); + // Update database dengan `berkas_scan` berisi nama unik + $this->db->where('id', $idSuratMasuk); + $databaseUpdated = $this->db->update('surat_keluar', $data); + + $_SESSION['error_msg'] = ($databaseUpdated === true) + ? null : 'Gagal memperbarui data di database'; + } + // Upload gagal + else { + $_SESSION['error_msg'] = $this->upload->display_errors(null, null); + } + } + // Tidak ada file upload + else { + unset($data['berkas_scan']); + if ($hapusLampiranLama) { + $data['berkas_scan'] = null; + $adaBerkasLamaDiDisk = file_exists($lokasiBerkasLama); + $oldFileRemoved = $adaBerkasLamaDiDisk && unlink($lokasiBerkasLama); + $_SESSION['error_msg'] = ($oldFileRemoved === true) + ? null : ' -> Gagal menghapus berkas lama'; + } + $this->db->where('id', $idSuratMasuk); + $databaseUpdated = $this->db->update('surat_keluar', $data); + $_SESSION['error_msg'] = ($databaseUpdated === true) + ? null : 'Gagal memperbarui data di database'; + $adaBerkasLamaDiDB = null !== $berkasLama; + } + + $this->db->trans_complete(); + + $_SESSION['success'] = null === $_SESSION['error_msg'] ? 1 : -1; + } + + public function get_surat_keluar($id) + { + return $this->db->where('id', $id)->get('surat_keluar')->row_array(); + } + + /** + * Hapus record surat masuk beserta file lampirannya (jika ada) + * + * @param string $idSuratMasuk Id surat masuk + * @param mixed $semua + * + * @return void + */ + public function delete($idSuratMasuk, $semua = false) + { + if (! $semua) { + $this->session->success = 1; + $this->session->error_msg = ''; + } + // Type check + $idSuratMasuk = is_string($idSuratMasuk) ? $idSuratMasuk : (string) $idSuratMasuk; + // Redirect ke halaman surat masuk jika Id kosong + if (empty($idSuratMasuk)) { + $_SESSION['success'] = -1; + $_SESSION['error_msg'] = ' -> Data yang anda minta tidak ditemukan'; + redirect('surat_keluar'); + } + + $_SESSION['error_msg'] = null; + + $namaBerkas = $this->getNamaBerkasScan($idSuratMasuk); + + if (null !== $namaBerkas) { + $lokasiBerkasLama = $this->uploadConfig['upload_path'] . $namaBerkas; + $lokasiBerkasLama = str_replace('/', DIRECTORY_SEPARATOR, FCPATH . $lokasiBerkasLama); + + if (file_exists($lokasiBerkasLama)) { + $hapusLampiranLama = unlink($lokasiBerkasLama); + $hapusLampiranLama = ! file_exists($lokasiBerkasLama); + $_SESSION['error_msg'] = $hapusLampiranLama === true + ? null : ' -> Gagal menghapus berkas dari disk'; + } + + if (null === $_SESSION['error_msg']) { + $hapusRecordDb = $this->db->where('id', $idSuratMasuk)->delete('surat_keluar'); + $_SESSION['error_msg'] = $hapusRecordDb === true + ? null : ' -> Gagal menghapus record dari database'; + } + } else { + $hapusRecordDb = $this->db->where('id', $idSuratMasuk)->delete('surat_keluar'); + $_SESSION['error_msg'] = $hapusRecordDb === true + ? null : ' -> Gagal menghapus record dari database'; + } + + $_SESSION['success'] = null === $_SESSION['error_msg'] ? 1 : -1; + } + + public function delete_all() + { + $this->session->success = 1; + $this->session->error_msg = ''; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + //! ============================================================== + //! Helper Methods + //! ============================================================== + /** + * Ambil nama berkas scan dari database berdasarkan Id surat masuk + * + * @param string $idSuratMasuk Id pada tabel surat_keluar + * @param string $kolom Kolom yang akan diambil datanya + * + * @return string|null + */ + public function getNamaBerkasScan($idSuratMasuk) + { + // Ambil nama berkas dari database + $sql = 'SELECT berkas_scan FROM surat_keluar WHERE id = ? LIMIT 1;'; + $query = $this->db->query($sql, [$idSuratMasuk]); + $namaBerkas = $query->row(); + + return is_object($namaBerkas) ? $namaBerkas->berkas_scan : null; + } + + public function untuk_ekspedisi($id, $masuk = 0) + { + $this->db + ->where('id', $id) + ->set('ekspedisi', $masuk) + ->update('surat_keluar'); + } +} diff --git a/donjo-app/models/Surat_model.php b/donjo-app/models/Surat_model.php index ca8c99de8d..94b00cf253 100644 --- a/donjo-app/models/Surat_model.php +++ b/donjo-app/models/Surat_model.php @@ -970,12 +970,13 @@ public function surat_rtf($data) // Kode isian yang disediakan pada SID CRI $this->substitusi_nomor_surat($input['nomor'], $buffer); $buffer = str_replace('[nomor_sorat]', "{$input['nomor']}", $buffer); - if (isset($input['berlaku_dari'])) { + if (isset($input['berlaku_dari']) || isset($input['berlaku_dari'])) { $buffer = str_replace('[mulai_berlaku]', tgl_indo(date('Y m d', strtotime($input['berlaku_dari']))), $buffer); - } - if (isset($input['berlaku_sampai'])) { $buffer = str_replace('[tgl_akhir]', tgl_indo(date('Y m d', strtotime($input['berlaku_sampai']))), $buffer); + } else { + $buffer = str_replace('[mulai_berlaku] s/d [tgl_akhir]', '-', $buffer); } + $buffer = str_replace('[jabatan]', "{$input['jabatan']}", $buffer); $buffer = str_replace('[nama_pamong]', "{$input['pamong']}", $buffer); $nip = "{$input['pamong_nip']}"; diff --git a/donjo-app/models/Tanah_desa_model.php b/donjo-app/models/Tanah_desa_model.php index 74f12bfcba..c61f78102b 100644 --- a/donjo-app/models/Tanah_desa_model.php +++ b/donjo-app/models/Tanah_desa_model.php @@ -35,6 +35,8 @@ * */ +use App\Models\Penduduk; + defined('BASEPATH') || exit('No direct script access allowed'); class Tanah_desa_model extends CI_Model @@ -230,22 +232,14 @@ private function periksa_nik(&$valid, $data, $id) return; } - // add + // cek nik penduduk luar tidak boleh sama dengan penduduk desa if ($id == 0) { - if ($this->nik_warga_luar_checking($data['nik']) || $this->nik_warga_luar_join_checking($data['nik'])) { + if (Penduduk::whereNik($data['nik'])->exists()) { $valid[] = "NIK {$data['nik']} sudah digunakan"; } return; } - - // update - $nik_old_check = $this->nik_warga_luar_old_checking($data['nik'], $id); - if (! $nik_old_check) { - if ($this->nik_warga_luar_checking($data['nik']) || $this->nik_warga_luar_join_checking($data['nik'])) { - $valid[] = "NIK {$data['nik']} sudah digunakan"; - } - } } private function validasi_data(&$data, $id = 0) @@ -296,46 +290,6 @@ private function validasi_data(&$data, $id = 0) return $valid; } - private function nik_warga_luar_old_checking($nik, $id) - { - $this->db - ->select('td.nik') - ->from("{$this->table} td") - ->where((['td.visible' => 1, 'td.id' => $id])) - ->limit(1); - $data = $this->db - ->get() - ->row(); - - return $nik == $data->nik; - } - - private function nik_warga_luar_checking($nik) - { - $this->db - ->select('td.nik') - ->from("{$this->table} td") - ->where((['td.visible' => 1, 'td.nik' => $nik])) - ->limit(1); - - return $this->db - ->get() - ->row(); - } - - public function nik_warga_luar_join_checking($nik) - { - $this->db - ->select('p.nik') - ->from("{$this->table} td") - ->join('tweb_penduduk p', 'td.id_penduduk = p.id') - ->where((['td.visible' => 1, 'p.nik' => $nik])); - - return $this->db - ->get() - ->result_array(); - } - private function nik_error($nilai, $judul) { if (empty($nilai)) { diff --git a/donjo-app/models/User_model.php b/donjo-app/models/User_model.php index f5919ac4c4..40d203ef43 100644 --- a/donjo-app/models/User_model.php +++ b/donjo-app/models/User_model.php @@ -36,41 +36,7 @@ */ use App\Models\User; - -/* - * - * File ini bagian dari: - * - * OpenSID - * - * Sistem informasi desa sumber terbuka untuk memajukan desa - * - * Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3 - * - * Hak Cipta 2009 - 2015 Combine Resource Institution (http://lumbungkomunitas.net/) - * Hak Cipta 2016 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) - * - * Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan - * dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan - * tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan, - * asal tunduk pada syarat berikut: - * - * Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam - * setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan - * pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini. - * - * PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN - * TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU - * KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI. - * - * @package OpenSID - * @author Tim Pengembang OpenDesa - * @copyright Hak Cipta 2009 - 2015 Combine Resource Institution (http://lumbungkomunitas.net/) - * @copyright Hak Cipta 2016 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) - * @license http://www.gnu.org/licenses/gpl.html GPL V3 - * @link https://github.com/OpenSID/OpenSID - * - */ +use Carbon\Carbon; defined('BASEPATH') || exit('No direct script access allowed'); @@ -92,8 +58,6 @@ public function __construct() parent::__construct(); // Untuk dapat menggunakan library upload $this->load->library('upload'); - // Untuk dapat menggunakan fungsi generator() - $this->load->helper('donjolib'); $this->uploadConfig = [ 'upload_path' => LOKASI_USER_PICT, 'allowed_types' => 'gif|jpg|jpeg|png', @@ -102,41 +66,36 @@ public function __construct() $this->load->model('grup_model'); // Untuk password hashing $this->load->helper('password'); - // Helper upload file - $this->load->helper('pict_helper'); // Helper Tulis file $this->load->helper('file'); } public function siteman() { - $this->load->library('Telegram/telegram'); - $this->_username = $username = trim($this->input->post('username')); $this->_password = $password = trim($this->input->post('password')); - $sql = 'SELECT * FROM user WHERE username = ?'; - // User 'admin' tidak bisa di-non-aktifkan - if ($username !== 'admin') { - $sql .= ' AND active = 1'; + if (config_item('demo_mode') && ($username == config_item('demo_user')['username'] && $password == config_item('demo_user')['password'])) { + // Ambil data user pertama yang merupakan admin + $user = User::first(); + + return $this->setLogin($user); } - $query = $this->db->query($sql, [$username]); - $row = $query->row(); + $user = User::where('username', $username)->status()->first(); // Cek hasil query ke db, ada atau tidak data user ybs. - $userAda = is_object($row); - $pwMasihMD5 = $userAda ? + $pwMasihMD5 = $user ? ( - (strlen($row->password) == 32) && (stripos($row->password, '$') === false) + (strlen($user->password) == 32) && (stripos($user->password, '$') === false) ) : false; $authLolos = $pwMasihMD5 - ? (md5($password) == $row->password) - : password_verify($password, $row->password); + ? (md5($password) == $user->password) + : password_verify($password, $user->password); // Login gagal: user tidak ada atau tidak lolos verifikasi - if ($userAda === false || $authLolos === false) { + if ($user === false || $authLolos === false) { $this->session->siteman = -1; if ($this->session->siteman_try > 2) { $this->session->siteman_try = $this->session->siteman_try - 1; @@ -160,35 +119,42 @@ public function siteman() $this->db->query($sql); // Lanjut ke update password di database $sql = 'UPDATE user SET password = ? WHERE id = ?'; - $this->db->query($sql, [$pwBcrypt, $row->id]); + $this->db->query($sql, [$pwBcrypt, $user->id]); } // Lanjut set session - if (($row->id_grup == self::GROUP_REDAKSI) && ($this->setting->offline_mode >= 2)) { + if (($user->id_grup == self::GROUP_REDAKSI) && ($this->setting->offline_mode >= 2)) { $this->session->siteman = -2; } else { - $this->session->siteman = 1; - $this->session->sesi = $row->session; - $this->session->user = $row->id; - $this->session->nama = $row->nama; - $this->session->grup = $row->id_grup; - $this->session->per_page = 10; - $this->session->siteman_wait = 0; - $this->session->siteman_try = 4; - $this->session->fm_key = $this->set_fm_key($row->id . $row->id_grup . $row->sesi); - $this->session->isAdmin = $row; - $this->last_login($this->session->user); - - if (! empty($this->setting->telegram_token) && cek_koneksi_internet()) { - try { - $this->telegram->sendMessage([ - 'text' => sprintf('%s login Halaman Admin %s pada tanggal %s', $row->nama, APP_URL, tgl_indo2(date('Y-m-d H:i:s'))), - 'parse_mode' => 'Markdown', - 'chat_id' => $this->setting->telegram_user_id, - ]); - } catch (Exception $e) { - log_message('error', $e->getMessage()); - } - } + return $this->setLogin($user); + } + } + } + + private function setLogin($user) + { + $this->session->siteman = 1; + $this->session->sesi = $user->session; + $this->session->user = $user->id; + $this->session->nama = $user->nama; + $this->session->grup = $user->id_grup; + $this->session->per_page = 10; + $this->session->siteman_wait = 0; + $this->session->siteman_try = 4; + $this->session->fm_key = $this->set_fm_key($user->id . $user->id_grup . $user->sesi); + $this->session->isAdmin = $user; + $this->last_login($user->id); + + if (! empty($this->setting->telegram_token) && cek_koneksi_internet()) { + $this->load->library('Telegram/telegram'); + + try { + $this->telegram->sendMessage([ + 'text' => sprintf('%s login Halaman Admin %s pada tanggal %s', $user->nama, APP_URL, tgl_indo2(date('Y-m-d H:i:s'))), + 'parse_mode' => 'Markdown', + 'chat_id' => $this->setting->telegram_user_id, + ]); + } catch (Exception $e) { + log_message('error', $e->getMessage()); } } } @@ -205,8 +171,7 @@ private function set_fm_key($key = null) //mengupdate waktu login private function last_login($id = '') { - $sql = 'UPDATE user SET last_login = NOW() WHERE id = ?'; - $this->db->query($sql, $id); + return User::find($id)->update(['last_login' => Carbon::now()]); } //Harus 8 sampai 20 karakter dan sekurangnya berisi satu angka dan satu huruf besar dan satu huruf kecil dan satu karakter khusus @@ -224,29 +189,6 @@ public function sesi_grup($sesi = '') return $row['id_grup']; } - public function login() - { - $username = $this->input->post('username'); - $password = $this->input->post('password'); - $sql = 'SELECT id, password, id_grup, session FROM user WHERE id_grup = 1 LIMIT 1'; - $query = $this->db->query($sql); - $row = $query->row(); - - // Verifikasi password lolos - if (password_verify($password, $row->password)) { - // Simpan sesi - sesi - $this->session->siteman = 1; - $this->session->sesi = $row->session; - $this->session->user = $row->id; - $this->session->grup = $row->id_grup; - $this->session->per_page = 10; - } - // Verifikasi password gagal - else { - $this->session->siteman = -1; - } - } - public function logout() { // Hapus session -- semua session variable akan terhapus diff --git a/donjo-app/models/Web_gallery_model.php b/donjo-app/models/Web_gallery_model.php index a44493f475..b14844179a 100644 --- a/donjo-app/models/Web_gallery_model.php +++ b/donjo-app/models/Web_gallery_model.php @@ -1,500 +1,500 @@ -urut_model = new Urut_Model('gambar_gallery'); - } - - public function autocomplete() - { - return $this->autocomplete_str('nama', 'gambar_gallery'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (gambar LIKE '{$kw}' OR nama LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND enabled = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql() - { - $sql = ' FROM gambar_gallery WHERE tipe = 0 '; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY nama'; - break; - - case 2: $order_sql = ' ORDER BY nama DESC'; - break; - - case 3: $order_sql = ' ORDER BY enabled'; - break; - - case 4: $order_sql = ' ORDER BY enabled DESC'; - break; - - case 5: $order_sql = ' ORDER BY tgl_upload'; - break; - - case 6: $order_sql = ' ORDER BY tgl_upload DESC'; - break; - - default:$order_sql = ' ORDER BY urut'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT * ' . $this->list_data_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - - $j++; - } - - return $data; - } - - public function insert() - { - $_SESSION['success'] = 1; - $_SESSION['error_msg'] = ''; - if (UploadError($_FILES['gambar'])) { - $_SESSION['success'] = -1; - - return; - } - - $lokasi_file = $_FILES['gambar']['tmp_name']; - $tipe_file = TipeFile($_FILES['gambar']); - $data = []; - $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi karakter yg diizinkan seperti pada nomor sk - $data['urut'] = $this->urut_model->urut_max(['parrent' => 0]) + 1; - // Bolehkan album tidak ada gambar cover - if (! empty($lokasi_file)) { - if (! CekGambar($_FILES['gambar'], $tipe_file)) { - $_SESSION['success'] = -1; - - return; - } - $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); - UploadGallery($nama_file, '', $tipe_file); - $data['gambar'] = $nama_file; - } - - if ($_SESSION['grup'] == 4) { - $data['enabled'] = 2; - } - - $outp = $this->db->insert('gambar_gallery', $data); - if (! $outp) { - $_SESSION['success'] = -1; - } - } - - public function update($id = 0) - { - $_SESSION['success'] = 1; - $_SESSION['error_msg'] = ''; - if (UploadError($_FILES['gambar'])) { - $_SESSION['success'] = -1; - - return; - } - - $lokasi_file = $_FILES['gambar']['tmp_name']; - $tipe_file = TipeFile($_FILES['gambar']); - $data = []; - $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi karakter yg diizinkan seperti pada nomor sk - // Kalau kosong, gambar tidak diubah - if (! empty($lokasi_file)) { - if (! CekGambar($_FILES['gambar'], $tipe_file)) { - $_SESSION['success'] = -1; - - return; - } - $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); - UploadGallery($nama_file, $data['old_gambar'], $tipe_file); - $data['gambar'] = $nama_file; - } - - if ($_SESSION['grup'] == 4) { - $data['enabled'] = 2; - } - - unset($data['old_gambar']); - $outp = $this->db->where('id', $id)->update('gambar_gallery', $data); - if (! $outp) { - $_SESSION['success'] = -1; - } - } - - public function delete_gallery($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $this->delete($id); - $sub_gallery = $this->db->select('id')-> - where('parrent', $id)-> - get('gambar_gallery')->result_array(); - - foreach ($sub_gallery as $gallery) { - $this->delete($gallery['id']); - } - } - - public function delete_all_gallery() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete_gallery($id, $semua = true); - } - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - // Note: - // Gambar yang dihapus ada kemungkinan dipakai - // oleh gallery lain, karena ketika mengupload - // nama file nya belum diubah sesuai dengan - // judul gallery - $this->delete_gallery_image($id); - - $outp = $this->db->where('id', $id)->delete('gambar_gallery'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function delete_gallery_image($id) - { - $image = $this->db->select('gambar')-> - get_where('gambar_gallery', ['id' => $id])-> - row()->gambar; - $prefix = ['kecil_', 'sedang_']; - - foreach ($prefix as $pref) { - if (is_file(FCPATH . LOKASI_GALERI . $pref . $image)) { - unlink(FCPATH . LOKASI_GALERI . $pref . $image); - } - } - } - - public function gallery_lock($id = '', $val = 0) - { - // Jangan kunci jika digunakan untuk slider - if ($val == 2) { - $this->db - ->group_start() - ->where('slider <>', 1) - ->or_where('slider IS NULL') - ->group_end(); - } - $outp = $this->db - ->where('id', $id) - ->set('enabled', $val) - ->update('gambar_gallery'); - status_sukses($outp); //Tampilkan Pesan - } - - public function gallery_slider($id = '', $val = 0) - { - if ($val == 1) { - // Hanya satu gallery yang boleh tampil di slider - $this->db->where('slider', 1) - ->set('slider', 0) - ->update('gambar_gallery'); - // Aktifkan galeri kalau digunakan untuk slider - $this->db->set('enabled', 1); - } - $this->db->where('id', $id) - ->set('slider', $val) - ->update('gambar_gallery'); - } - - public function get_gallery($id = 0) - { - $sql = 'SELECT * FROM gambar_gallery WHERE id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } - - public function list_slide_galeri() - { - $gallery_slide_id = $this->db->select('id') - ->where('slider', 1) - ->limit(1) - ->get('gambar_gallery')->row()->id; - - return $this->db->select('id, nama as judul, gambar') - ->where('parrent', $gallery_slide_id) - ->where('tipe', 2) - ->where('enabled', 1) - ->get('gambar_gallery')->result_array(); - } - - public function paging2($gal = 0, $p = 1) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_sub_gallery_sql(); - $query = $this->db->query($sql, $gal); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_sub_gallery_sql() - { - $sql = ' FROM gambar_gallery WHERE parrent = ? AND tipe = 2 '; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_sub_gallery($gal = 1, $o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY nama'; - break; - - case 2: $order_sql = ' ORDER BY nama DESC'; - break; - - case 3: $order_sql = ' ORDER BY enabled'; - break; - - case 4: $order_sql = ' ORDER BY enabled DESC'; - break; - - case 5: $order_sql = ' ORDER BY tgl_upload'; - break; - - case 6: $order_sql = ' ORDER BY tgl_upload DESC'; - break; - - default:$order_sql = ' ORDER BY urut'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT * ' . $this->list_sub_gallery_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - $query = $this->db->query($sql, $gal); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - } - - return $data; - } - - public function insert_sub_gallery($parrent = 0) - { - $_SESSION['success'] = 1; - $_SESSION['error_msg'] = ''; - if (UploadError($_FILES['gambar'])) { - $_SESSION['success'] = -1; - - return; - } - - $lokasi_file = $_FILES['gambar']['tmp_name']; - $tipe_file = TipeFile($_FILES['gambar']); - $data = []; - $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi - $data['urut'] = $this->urut_model->urut_max(['parrent' => $parrent]) + 1; - // Bolehkan isi album tidak ada gambar - if (! empty($lokasi_file)) { - if (! CekGambar($_FILES['gambar'], $tipe_file)) { - $_SESSION['success'] = -1; - - return; - } - $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); - UploadGallery($nama_file, '', $tipe_file); - $data['gambar'] = $nama_file; - } - - if ($_SESSION['grup'] == 4) { - $data['enabled'] = 2; - } - - $data['parrent'] = $parrent; - $data['tipe'] = 2; - $outp = $this->db->insert('gambar_gallery', $data); - if (! $outp) { - $_SESSION['success'] = -1; - } - } - - public function update_sub_gallery($id = 0) - { - $_SESSION['success'] = 1; - $_SESSION['error_msg'] = ''; - if (UploadError($_FILES['gambar'])) { - $_SESSION['success'] = -1; - - return; - } - - $lokasi_file = $_FILES['gambar']['tmp_name']; - $tipe_file = TipeFile($_FILES['gambar']); - $data = []; - $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi - // Kalau kosong, gambar tidak diubah - if (! empty($lokasi_file)) { - if (! CekGambar($_FILES['gambar'], $tipe_file)) { - $_SESSION['success'] = -1; - - return; - } - $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); - UploadGallery($nama_file, $data['old_gambar'], $tipe_file); - $data['gambar'] = $nama_file; - } - - unset($data['old_gambar']); - $outp = $this->db->where('id', $id)->update('gambar_gallery', $data); - if (! $outp) { - $_SESSION['success'] = -1; - } - } - - // $arah: - // 1 - turun - // 2 - naik - public function urut($id, $arah, $gallery = '') - { - $subset = ! empty($gallery) ? ['parrent' => $gallery] : ['parrent' => 0]; - $this->urut_model->urut($id, $arah, $subset); - } -} +urut_model = new Urut_Model('gambar_gallery'); + } + + public function autocomplete() + { + return $this->autocomplete_str('nama', 'gambar_gallery'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (gambar LIKE '{$kw}' OR nama LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND enabled = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql() + { + $sql = ' FROM gambar_gallery WHERE tipe = 0 '; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY nama'; + break; + + case 2: $order_sql = ' ORDER BY nama DESC'; + break; + + case 3: $order_sql = ' ORDER BY enabled'; + break; + + case 4: $order_sql = ' ORDER BY enabled DESC'; + break; + + case 5: $order_sql = ' ORDER BY tgl_upload'; + break; + + case 6: $order_sql = ' ORDER BY tgl_upload DESC'; + break; + + default:$order_sql = ' ORDER BY urut'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT * ' . $this->list_data_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + + $j++; + } + + return $data; + } + + public function insert() + { + $_SESSION['success'] = 1; + $_SESSION['error_msg'] = ''; + if (UploadError($_FILES['gambar'])) { + $_SESSION['success'] = -1; + + return; + } + + $lokasi_file = $_FILES['gambar']['tmp_name']; + $tipe_file = TipeFile($_FILES['gambar']); + $data = []; + $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi karakter yg diizinkan seperti pada nomor sk + $data['urut'] = $this->urut_model->urut_max(['parrent' => 0]) + 1; + // Bolehkan album tidak ada gambar cover + if (! empty($lokasi_file)) { + if (! CekGambar($_FILES['gambar'], $tipe_file)) { + $_SESSION['success'] = -1; + + return; + } + $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); + UploadGallery($nama_file, '', $tipe_file); + $data['gambar'] = $nama_file; + } + + if ($_SESSION['grup'] == 4) { + $data['enabled'] = 2; + } + + $outp = $this->db->insert('gambar_gallery', $data); + if (! $outp) { + $_SESSION['success'] = -1; + } + } + + public function update($id = 0) + { + $_SESSION['success'] = 1; + $_SESSION['error_msg'] = ''; + if (UploadError($_FILES['gambar'])) { + $_SESSION['success'] = -1; + + return; + } + + $lokasi_file = $_FILES['gambar']['tmp_name']; + $tipe_file = TipeFile($_FILES['gambar']); + $data = []; + $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi karakter yg diizinkan seperti pada nomor sk + // Kalau kosong, gambar tidak diubah + if (! empty($lokasi_file)) { + if (! CekGambar($_FILES['gambar'], $tipe_file)) { + $_SESSION['success'] = -1; + + return; + } + $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); + UploadGallery($nama_file, $data['old_gambar'], $tipe_file); + $data['gambar'] = $nama_file; + } + + if ($_SESSION['grup'] == 4) { + $data['enabled'] = 2; + } + + unset($data['old_gambar']); + $outp = $this->db->where('id', $id)->update('gambar_gallery', $data); + if (! $outp) { + $_SESSION['success'] = -1; + } + } + + public function delete_gallery($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $this->delete($id); + $sub_gallery = $this->db->select('id')-> + where('parrent', $id)-> + get('gambar_gallery')->result_array(); + + foreach ($sub_gallery as $gallery) { + $this->delete($gallery['id']); + } + } + + public function delete_all_gallery() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete_gallery($id, $semua = true); + } + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + // Note: + // Gambar yang dihapus ada kemungkinan dipakai + // oleh gallery lain, karena ketika mengupload + // nama file nya belum diubah sesuai dengan + // judul gallery + $this->delete_gallery_image($id); + + $outp = $this->db->where('id', $id)->delete('gambar_gallery'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function delete_gallery_image($id) + { + $image = $this->db->select('gambar')-> + get_where('gambar_gallery', ['id' => $id])-> + row()->gambar; + $prefix = ['kecil_', 'sedang_']; + + foreach ($prefix as $pref) { + if (is_file(FCPATH . LOKASI_GALERI . $pref . $image)) { + unlink(FCPATH . LOKASI_GALERI . $pref . $image); + } + } + } + + public function gallery_lock($id = '', $val = 0) + { + // Jangan kunci jika digunakan untuk slider + if ($val == 2) { + $this->db + ->group_start() + ->where('slider <>', 1) + ->or_where('slider IS NULL') + ->group_end(); + } + $outp = $this->db + ->where('id', $id) + ->set('enabled', $val) + ->update('gambar_gallery'); + status_sukses($outp); //Tampilkan Pesan + } + + public function gallery_slider($id = '', $val = 0) + { + if ($val == 1) { + // Hanya satu gallery yang boleh tampil di slider + $this->db->where('slider', 1) + ->set('slider', 0) + ->update('gambar_gallery'); + // Aktifkan galeri kalau digunakan untuk slider + $this->db->set('enabled', 1); + } + $this->db->where('id', $id) + ->set('slider', $val) + ->update('gambar_gallery'); + } + + public function get_gallery($id = 0) + { + $sql = 'SELECT * FROM gambar_gallery WHERE id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } + + public function list_slide_galeri() + { + $gallery_slide_id = $this->db->select('id') + ->where('slider', 1) + ->limit(1) + ->get('gambar_gallery')->row()->id; + + return $this->db->select('id, nama as judul, gambar') + ->where('parrent', $gallery_slide_id) + ->where('tipe', 2) + ->where('enabled', 1) + ->get('gambar_gallery')->result_array(); + } + + public function paging2($gal = 0, $p = 1) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_sub_gallery_sql(); + $query = $this->db->query($sql, $gal); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_sub_gallery_sql() + { + $sql = ' FROM gambar_gallery WHERE parrent = ? AND tipe = 2 '; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_sub_gallery($gal = 1, $o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY nama'; + break; + + case 2: $order_sql = ' ORDER BY nama DESC'; + break; + + case 3: $order_sql = ' ORDER BY enabled'; + break; + + case 4: $order_sql = ' ORDER BY enabled DESC'; + break; + + case 5: $order_sql = ' ORDER BY tgl_upload'; + break; + + case 6: $order_sql = ' ORDER BY tgl_upload DESC'; + break; + + default:$order_sql = ' ORDER BY urut'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT * ' . $this->list_sub_gallery_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + $query = $this->db->query($sql, $gal); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + } + + return $data; + } + + public function insert_sub_gallery($parrent = 0) + { + $_SESSION['success'] = 1; + $_SESSION['error_msg'] = ''; + if (UploadError($_FILES['gambar'])) { + $_SESSION['success'] = -1; + + return; + } + + $lokasi_file = $_FILES['gambar']['tmp_name']; + $tipe_file = TipeFile($_FILES['gambar']); + $data = []; + $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi + $data['urut'] = $this->urut_model->urut_max(['parrent' => $parrent]) + 1; + // Bolehkan isi album tidak ada gambar + if (! empty($lokasi_file)) { + if (! CekGambar($_FILES['gambar'], $tipe_file)) { + $_SESSION['success'] = -1; + + return; + } + $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); + UploadGallery($nama_file, '', $tipe_file); + $data['gambar'] = $nama_file; + } + + if ($_SESSION['grup'] == 4) { + $data['enabled'] = 2; + } + + $data['parrent'] = $parrent; + $data['tipe'] = 2; + $outp = $this->db->insert('gambar_gallery', $data); + if (! $outp) { + $_SESSION['success'] = -1; + } + } + + public function update_sub_gallery($id = 0) + { + $_SESSION['success'] = 1; + $_SESSION['error_msg'] = ''; + if (UploadError($_FILES['gambar'])) { + $_SESSION['success'] = -1; + + return; + } + + $lokasi_file = $_FILES['gambar']['tmp_name']; + $tipe_file = TipeFile($_FILES['gambar']); + $data = []; + $data['nama'] = nomor_surat_keputusan($this->input->post('nama')); //pastikan nama album hanya berisi + // Kalau kosong, gambar tidak diubah + if (! empty($lokasi_file)) { + if (! CekGambar($_FILES['gambar'], $tipe_file)) { + $_SESSION['success'] = -1; + + return; + } + $nama_file = urldecode(generator(6) . '_' . $_FILES['gambar']['name']); + UploadGallery($nama_file, $data['old_gambar'], $tipe_file); + $data['gambar'] = $nama_file; + } + + unset($data['old_gambar']); + $outp = $this->db->where('id', $id)->update('gambar_gallery', $data); + if (! $outp) { + $_SESSION['success'] = -1; + } + } + + // $arah: + // 1 - turun + // 2 - naik + public function urut($id, $arah, $gallery = '') + { + $subset = ! empty($gallery) ? ['parrent' => $gallery] : ['parrent' => 0]; + $this->urut_model->urut($id, $arah, $subset); + } +} diff --git a/donjo-app/models/Web_kategori_model.php b/donjo-app/models/Web_kategori_model.php index ff1650fdb5..975d3e8589 100644 --- a/donjo-app/models/Web_kategori_model.php +++ b/donjo-app/models/Web_kategori_model.php @@ -1,363 +1,363 @@ -urut_model = new Urut_Model('kategori'); - } - - public function autocomplete() - { - $data = $this->db->distinct()-> - select('kategori')-> - where('parrent', 0)-> - order_by('kategori')-> - get('kategori')->result_array(); - - return autocomplete_data_ke_str($data); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (kategori LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_sql() - { - if (isset($_SESSION['filter'])) { - $kf = $_SESSION['filter']; - $filter_sql = " AND enabled = {$kf}"; - - return $filter_sql; - } - } - - public function paging($p = 1, $o = 0) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql() - { - $sql = ' FROM kategori k WHERE parrent = 0'; - $sql .= $this->search_sql(); - $sql .= $this->filter_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 500) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY kategori'; - break; - - case 2: $order_sql = ' ORDER BY kategori DESC'; - break; - - case 3: $order_sql = ' ORDER BY enabled'; - break; - - case 4: $order_sql = ' ORDER BY enabled DESC'; - break; - - default:$order_sql = ' ORDER BY urut'; - } - - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - $sql = 'SELECT k.*, k.kategori AS kategori ' . $this->list_data_sql(); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - - $j++; - } - - return $data; - } - - public function insert() - { - $this->session->unset_userdata('error_msg'); - $this->session->set_userdata('success', 1); - $data = []; - $data['kategori'] = $this->input->post('kategori'); - $this->sterilkan_kategori($data); - if (! $this->cek_nama($data['kategori'])) { - return; - } - $data['enabled'] = 1; - $data['urut'] = $this->urut_model->urut_max(['parrent' => 0]) + 1; - $data['slug'] = url_title($data['kategori'], 'dash', true); - $outp = $this->db->insert('kategori', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - private function sterilkan_kategori(&$data) - { - unset($data['kategori_lama']); - $data['kategori'] = htmlentities($data['kategori']); - } - - private function cek_nama($kategori) - { - $ada_nama = $this->db->where('kategori', $kategori) - ->get('kategori')->num_rows(); - if ($ada_nama) { - $_SESSION['error_msg'] .= ' -> Nama kategori tidak boleh sama'; - $_SESSION['success'] = -1; - - return false; - } - - return true; - } - - public function update($id = 0) - { - $this->session->unset_userdata('error_msg'); - $this->session->set_userdata('success', 1); - $data = []; - $data['kategori'] = $this->input->post('kategori'); - if ($data['kategori'] == $data['kategori_lama']) { - return; // Tidak ada yg diubah - } - - if (! $this->cek_nama($data['kategori'])) { - return; - } - - $this->sterilkan_kategori($data); - $outp = $this->db->where('id', $id) - ->update('kategori', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('kategori'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function list_sub_kategori($kategori = 1) - { - $sql = 'SELECT * FROM kategori WHERE parrent = ? ORDER BY urut'; - - $query = $this->db->query($sql, $kategori); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - - if ($data[$i]['enabled'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - } - - return $data; - } - - public function list_link() - { - $sql = "SELECT a.* - FROM artikel a - INNER JOIN kategori k ON a.id_kategori = k.id - WHERE tipe = '2'"; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - } - - return $data; - } - - public function list_kategori($o = '') - { - if (empty($o)) { - $urut = 'urut'; - } else { - $urut = $o; - } - - $data = $this->db - ->select('k.*') - ->where('enabled', 1) - ->order_by($urut) - ->get('kategori k') - ->result_array(); - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $i + 1; - $data[$i]['judul'] = $data[$i]['kategori']; - } - - return $data; - } - - public function insert_sub_kategori($kategori = 0) - { - $data = []; - $data['kategori'] = $this->input->post('kategori'); - $this->sterilkan_kategori($data); - $data['parrent'] = $kategori; - $data['urut'] = $this->urut_model->urut_max(['parrent' => $kategori]) + 1; - $data['slug'] = url_title($data['kategori'], 'dash', true); - $data['enabled'] = 1; - $outp = $this->db->insert('kategori', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function update_sub_kategori($id = 0) - { - $data = []; - $data['kategori'] = $this->input->post('kategori'); - $this->sterilkan_kategori($data); - $this->db->where('id', $id); - $outp = $this->db->update('kategori', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete_sub_kategori($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('kategori'); - - status_sukses($outp); //Tampilkan Pesan - } - - public function delete_all_sub_kategori() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete_sub_kategori($id, $semua = true); - } - } - - public function kategori_lock($id = '', $val = 0) - { - $sql = 'UPDATE kategori SET enabled = ? WHERE id = ?'; - $outp = $this->db->query($sql, [$val, $id]); - - status_sukses($outp); //Tampilkan Pesan - } - - public function get_kategori($id = 0) - { - $query = $this->db->where('id', $id)->or_where('slug', $id)->get('kategori'); - - return $query->row_array(); - } - - // $arah: - // 1 - turun - // 2 - naik - public function urut($id, $arah, $kategori = '') - { - $subset = ! empty($kategori) ? ['parrent' => $kategori] : ['parrent' => 0]; - $this->urut_model->urut($id, $arah, $subset); - } -} +urut_model = new Urut_Model('kategori'); + } + + public function autocomplete() + { + $data = $this->db->distinct()-> + select('kategori')-> + where('parrent', 0)-> + order_by('kategori')-> + get('kategori')->result_array(); + + return autocomplete_data_ke_str($data); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (kategori LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_sql() + { + if (isset($_SESSION['filter'])) { + $kf = $_SESSION['filter']; + $filter_sql = " AND enabled = {$kf}"; + + return $filter_sql; + } + } + + public function paging($p = 1, $o = 0) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql(); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql() + { + $sql = ' FROM kategori k WHERE parrent = 0'; + $sql .= $this->search_sql(); + $sql .= $this->filter_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 500) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY kategori'; + break; + + case 2: $order_sql = ' ORDER BY kategori DESC'; + break; + + case 3: $order_sql = ' ORDER BY enabled'; + break; + + case 4: $order_sql = ' ORDER BY enabled DESC'; + break; + + default:$order_sql = ' ORDER BY urut'; + } + + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + $sql = 'SELECT k.*, k.kategori AS kategori ' . $this->list_data_sql(); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + + $j++; + } + + return $data; + } + + public function insert() + { + $this->session->unset_userdata('error_msg'); + $this->session->set_userdata('success', 1); + $data = []; + $data['kategori'] = $this->input->post('kategori'); + $this->sterilkan_kategori($data); + if (! $this->cek_nama($data['kategori'])) { + return; + } + $data['enabled'] = 1; + $data['urut'] = $this->urut_model->urut_max(['parrent' => 0]) + 1; + $data['slug'] = url_title($data['kategori'], 'dash', true); + $outp = $this->db->insert('kategori', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + private function sterilkan_kategori(&$data) + { + unset($data['kategori_lama']); + $data['kategori'] = htmlentities($data['kategori']); + } + + private function cek_nama($kategori) + { + $ada_nama = $this->db->where('kategori', $kategori) + ->get('kategori')->num_rows(); + if ($ada_nama) { + $_SESSION['error_msg'] .= ' -> Nama kategori tidak boleh sama'; + $_SESSION['success'] = -1; + + return false; + } + + return true; + } + + public function update($id = 0) + { + $this->session->unset_userdata('error_msg'); + $this->session->set_userdata('success', 1); + $data = []; + $data['kategori'] = $this->input->post('kategori'); + if ($data['kategori'] == $data['kategori_lama']) { + return; // Tidak ada yg diubah + } + + if (! $this->cek_nama($data['kategori'])) { + return; + } + + $this->sterilkan_kategori($data); + $outp = $this->db->where('id', $id) + ->update('kategori', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('kategori'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function list_sub_kategori($kategori = 1) + { + $sql = 'SELECT * FROM kategori WHERE parrent = ? ORDER BY urut'; + + $query = $this->db->query($sql, $kategori); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + + if ($data[$i]['enabled'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + } + + return $data; + } + + public function list_link() + { + $sql = "SELECT a.* + FROM artikel a + INNER JOIN kategori k ON a.id_kategori = k.id + WHERE tipe = '2'"; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + } + + return $data; + } + + public function list_kategori($o = '') + { + if (empty($o)) { + $urut = 'urut'; + } else { + $urut = $o; + } + + $data = $this->db + ->select('k.*') + ->where('enabled', 1) + ->order_by($urut) + ->get('kategori k') + ->result_array(); + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $i + 1; + $data[$i]['judul'] = $data[$i]['kategori']; + } + + return $data; + } + + public function insert_sub_kategori($kategori = 0) + { + $data = []; + $data['kategori'] = $this->input->post('kategori'); + $this->sterilkan_kategori($data); + $data['parrent'] = $kategori; + $data['urut'] = $this->urut_model->urut_max(['parrent' => $kategori]) + 1; + $data['slug'] = url_title($data['kategori'], 'dash', true); + $data['enabled'] = 1; + $outp = $this->db->insert('kategori', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function update_sub_kategori($id = 0) + { + $data = []; + $data['kategori'] = $this->input->post('kategori'); + $this->sterilkan_kategori($data); + $this->db->where('id', $id); + $outp = $this->db->update('kategori', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete_sub_kategori($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('kategori'); + + status_sukses($outp); //Tampilkan Pesan + } + + public function delete_all_sub_kategori() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete_sub_kategori($id, $semua = true); + } + } + + public function kategori_lock($id = '', $val = 0) + { + $sql = 'UPDATE kategori SET enabled = ? WHERE id = ?'; + $outp = $this->db->query($sql, [$val, $id]); + + status_sukses($outp); //Tampilkan Pesan + } + + public function get_kategori($id = 0) + { + $query = $this->db->where('id', $id)->or_where('slug', $id)->get('kategori'); + + return $query->row_array(); + } + + // $arah: + // 1 - turun + // 2 - naik + public function urut($id, $arah, $kategori = '') + { + $subset = ! empty($kategori) ? ['parrent' => $kategori] : ['parrent' => 0]; + $this->urut_model->urut($id, $arah, $subset); + } +} diff --git a/donjo-app/models/Web_komentar_model.php b/donjo-app/models/Web_komentar_model.php index 764a9590ac..2395e06916 100644 --- a/donjo-app/models/Web_komentar_model.php +++ b/donjo-app/models/Web_komentar_model.php @@ -1,300 +1,300 @@ -autocomplete_str('komentar', 'komentar'); - } - - private function search_sql() - { - if (isset($_SESSION['cari'])) { - $cari = $_SESSION['cari']; - $kw = $this->db->escape_like_str($cari); - $kw = '%' . $kw . '%'; - $search_sql = " AND (komentar LIKE '{$kw}' OR subjek LIKE '{$kw}')"; - - return $search_sql; - } - } - - private function filter_status_sql() - { - if (isset($_SESSION['filter_status'])) { - $kf = $_SESSION['filter_status']; - $filter_sql = " AND k.status = {$kf}"; - - return $filter_sql; - } - } - - private function filter_nik_sql() - { - if (isset($_SESSION['filter_nik'])) { - $kf = $_SESSION['filter_nik']; - $filter_sql = " AND k.email = {$kf}"; - - return $filter_sql; - } - } - - private function filter_archived_sql() - { - $kf = $_SESSION['filter_archived'] ?: 0; - $filter_sql = " AND k.is_archived = {$kf}"; - - return $filter_sql; - } - - public function paging($p = 1, $o = 0, $kat = 0) - { - $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql($kat); - $query = $this->db->query($sql); - $row = $query->row_array(); - $jml_data = $row['jml']; - - $this->load->library('paging'); - $cfg['page'] = $p; - $cfg['per_page'] = $_SESSION['per_page']; - $cfg['num_rows'] = $jml_data; - $this->paging->init($cfg); - - return $this->paging; - } - - private function list_data_sql($kat = 0) - { - $sql = 'FROM komentar k - LEFT JOIN artikel a ON k.id_artikel = a.id - WHERE 1'; - if ($kat != 0) { - $sql .= " AND id_artikel = 775 AND tipe = {$kat}"; - $sql .= $this->filter_nik_sql(); - $sql .= $this->filter_archived_sql(); - } else { - $sql .= ' AND id_artikel <> 775'; - } - $sql .= $this->search_sql(); - $sql .= $this->filter_status_sql(); - - return $sql; - } - - public function list_data($o = 0, $offset = 0, $limit = 500, $kat = 0) - { - switch ($o) { - case 1: $order_sql = ' ORDER BY owner DESC'; - break; - - case 2: $order_sql = ' ORDER BY owner'; - break; - - case 3: $order_sql = ' ORDER BY email DESC'; - break; - - case 4: $order_sql = ' ORDER BY email'; - break; - - case 5: $order_sql = ' ORDER BY komentar DESC'; - break; - - case 6: $order_sql = ' ORDER BY komentar'; - break; - - case 7: $order_sql = ' ORDER BY status DESC'; - break; - - case 8: $order_sql = ' ORDER BY status'; - break; - - case 9: $order_sql = ' ORDER BY tgl_upload DESC'; - break; - - case 10: $order_sql = ' ORDER BY tgl_upload'; - break; - - default:$order_sql = ' ORDER BY tgl_upload DESC'; - } - $paging_sql = ' LIMIT ' . $offset . ',' . $limit; - - $sql = 'SELECT k.*, a.judul as artikel, YEAR(a.tgl_upload) AS thn, MONTH(a.tgl_upload) AS bln, DAY(a.tgl_upload) AS hri, a.slug AS slug ' . $this->list_data_sql($kat); - $sql .= $order_sql; - $sql .= $paging_sql; - - $query = $this->db->query($sql); - $data = $query->result_array(); - - $j = $offset; - - for ($i = 0; $i < count($data); $i++) { - $data[$i]['no'] = $j + 1; - if ($data[$i]['status'] == 1) { - $data[$i]['aktif'] = 'Ya'; - } else { - $data[$i]['aktif'] = 'Tidak'; - } - $j++; - } - - return $data; - } - - public function list_kategori($tipe = 1) - { - $sql = 'SELECT * FROM kategori WHERE tipe = ?'; - $query = $this->db->query($sql, $tipe); - - return $query->result_array(); - } - - private function bersihkan_data($post) - { - $data['owner'] = htmlentities($post['owner']); - $data['no_hp'] = bilangan($post['no_hp']); - $data['email'] = email($post['email']); - $data['komentar'] = htmlentities($post['komentar']); - $data['status'] = bilangan($post['status']); - - return $data; - } - - public function insert() - { - $data = $this->bersihkan_data($this->input->post()); - $data['id_user'] = $_SESSION['user']; - $outp = $this->db->insert('komentar', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function update($id = 0) - { - $data = $this->bersihkan_data($this->input->post()); - $data['updated_at'] = date('Y-m-d H:i:s'); - $this->db->where('id', $id); - $outp = $this->db->update('komentar', $data); - - status_sukses($outp); //Tampilkan Pesan - } - - public function archive($id) - { - $archive = [ - 'is_archived' => 1, - 'updated_at' => date('Y-m-d H:i:s'), - ]; - $outp = $this->db->where('id', $id)->update('komentar', $archive); - - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function archive_all() - { - $id_cb = $_POST['id_cb']; - - if (count($id_cb)) { - foreach ($id_cb as $id) { - $archive = [ - 'is_archived' => 1, - 'updated_at' => date('Y-m-d H:i:s'), - ]; - $outp = $this->db->where('id', $id)->update('komentar', $archive); - } - } else { - $outp = false; - } - - if ($outp) { - $_SESSION['success'] = 1; - } else { - $_SESSION['success'] = -1; - } - } - - public function delete($id = '', $semua = false) - { - if (! $semua) { - $this->session->success = 1; - } - - $outp = $this->db->where('id', $id)->delete('komentar'); - - status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan - } - - public function delete_all() - { - $this->session->success = 1; - - $id_cb = $_POST['id_cb']; - - foreach ($id_cb as $id) { - $this->delete($id, $semua = true); - } - } - - public function komentar_lock($id = '', $val = 0) - { - $outp = $this->db->where('id', $id) - ->update('komentar', [ - 'status' => $val, - 'updated_at' => date('Y-m-d H:i:s'), ]); - - status_sukses($outp); //Tampilkan Pesan - } - - public function get_komentar($id = 0) - { - $sql = 'SELECT a.* FROM komentar a WHERE a.id = ?'; - $query = $this->db->query($sql, $id); - - return $query->row_array(); - } -} +autocomplete_str('komentar', 'komentar'); + } + + private function search_sql() + { + if (isset($_SESSION['cari'])) { + $cari = $_SESSION['cari']; + $kw = $this->db->escape_like_str($cari); + $kw = '%' . $kw . '%'; + $search_sql = " AND (komentar LIKE '{$kw}' OR subjek LIKE '{$kw}')"; + + return $search_sql; + } + } + + private function filter_status_sql() + { + if (isset($_SESSION['filter_status'])) { + $kf = $_SESSION['filter_status']; + $filter_sql = " AND k.status = {$kf}"; + + return $filter_sql; + } + } + + private function filter_nik_sql() + { + if (isset($_SESSION['filter_nik'])) { + $kf = $_SESSION['filter_nik']; + $filter_sql = " AND k.email = {$kf}"; + + return $filter_sql; + } + } + + private function filter_archived_sql() + { + $kf = $_SESSION['filter_archived'] ?: 0; + $filter_sql = " AND k.is_archived = {$kf}"; + + return $filter_sql; + } + + public function paging($p = 1, $o = 0, $kat = 0) + { + $sql = 'SELECT COUNT(*) AS jml ' . $this->list_data_sql($kat); + $query = $this->db->query($sql); + $row = $query->row_array(); + $jml_data = $row['jml']; + + $this->load->library('paging'); + $cfg['page'] = $p; + $cfg['per_page'] = $_SESSION['per_page']; + $cfg['num_rows'] = $jml_data; + $this->paging->init($cfg); + + return $this->paging; + } + + private function list_data_sql($kat = 0) + { + $sql = 'FROM komentar k + LEFT JOIN artikel a ON k.id_artikel = a.id + WHERE 1'; + if ($kat != 0) { + $sql .= " AND id_artikel = 775 AND tipe = {$kat}"; + $sql .= $this->filter_nik_sql(); + $sql .= $this->filter_archived_sql(); + } else { + $sql .= ' AND id_artikel <> 775'; + } + $sql .= $this->search_sql(); + $sql .= $this->filter_status_sql(); + + return $sql; + } + + public function list_data($o = 0, $offset = 0, $limit = 500, $kat = 0) + { + switch ($o) { + case 1: $order_sql = ' ORDER BY owner DESC'; + break; + + case 2: $order_sql = ' ORDER BY owner'; + break; + + case 3: $order_sql = ' ORDER BY email DESC'; + break; + + case 4: $order_sql = ' ORDER BY email'; + break; + + case 5: $order_sql = ' ORDER BY komentar DESC'; + break; + + case 6: $order_sql = ' ORDER BY komentar'; + break; + + case 7: $order_sql = ' ORDER BY status DESC'; + break; + + case 8: $order_sql = ' ORDER BY status'; + break; + + case 9: $order_sql = ' ORDER BY tgl_upload DESC'; + break; + + case 10: $order_sql = ' ORDER BY tgl_upload'; + break; + + default:$order_sql = ' ORDER BY tgl_upload DESC'; + } + $paging_sql = ' LIMIT ' . $offset . ',' . $limit; + + $sql = 'SELECT k.*, a.judul as artikel, YEAR(a.tgl_upload) AS thn, MONTH(a.tgl_upload) AS bln, DAY(a.tgl_upload) AS hri, a.slug AS slug ' . $this->list_data_sql($kat); + $sql .= $order_sql; + $sql .= $paging_sql; + + $query = $this->db->query($sql); + $data = $query->result_array(); + + $j = $offset; + + for ($i = 0; $i < count($data); $i++) { + $data[$i]['no'] = $j + 1; + if ($data[$i]['status'] == 1) { + $data[$i]['aktif'] = 'Ya'; + } else { + $data[$i]['aktif'] = 'Tidak'; + } + $j++; + } + + return $data; + } + + public function list_kategori($tipe = 1) + { + $sql = 'SELECT * FROM kategori WHERE tipe = ?'; + $query = $this->db->query($sql, $tipe); + + return $query->result_array(); + } + + private function bersihkan_data($post) + { + $data['owner'] = htmlentities($post['owner']); + $data['no_hp'] = bilangan($post['no_hp']); + $data['email'] = email($post['email']); + $data['komentar'] = htmlentities($post['komentar']); + $data['status'] = bilangan($post['status']); + + return $data; + } + + public function insert() + { + $data = $this->bersihkan_data($this->input->post()); + $data['id_user'] = $_SESSION['user']; + $outp = $this->db->insert('komentar', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function update($id = 0) + { + $data = $this->bersihkan_data($this->input->post()); + $data['updated_at'] = date('Y-m-d H:i:s'); + $this->db->where('id', $id); + $outp = $this->db->update('komentar', $data); + + status_sukses($outp); //Tampilkan Pesan + } + + public function archive($id) + { + $archive = [ + 'is_archived' => 1, + 'updated_at' => date('Y-m-d H:i:s'), + ]; + $outp = $this->db->where('id', $id)->update('komentar', $archive); + + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function archive_all() + { + $id_cb = $_POST['id_cb']; + + if (count($id_cb)) { + foreach ($id_cb as $id) { + $archive = [ + 'is_archived' => 1, + 'updated_at' => date('Y-m-d H:i:s'), + ]; + $outp = $this->db->where('id', $id)->update('komentar', $archive); + } + } else { + $outp = false; + } + + if ($outp) { + $_SESSION['success'] = 1; + } else { + $_SESSION['success'] = -1; + } + } + + public function delete($id = '', $semua = false) + { + if (! $semua) { + $this->session->success = 1; + } + + $outp = $this->db->where('id', $id)->delete('komentar'); + + status_sukses($outp, $gagal_saja = true); //Tampilkan Pesan + } + + public function delete_all() + { + $this->session->success = 1; + + $id_cb = $_POST['id_cb']; + + foreach ($id_cb as $id) { + $this->delete($id, $semua = true); + } + } + + public function komentar_lock($id = '', $val = 0) + { + $outp = $this->db->where('id', $id) + ->update('komentar', [ + 'status' => $val, + 'updated_at' => date('Y-m-d H:i:s'), ]); + + status_sukses($outp); //Tampilkan Pesan + } + + public function get_komentar($id = 0) + { + $sql = 'SELECT a.* FROM komentar a WHERE a.id = ?'; + $query = $this->db->query($sql, $id); + + return $query->row_array(); + } +} diff --git a/donjo-app/models/migrations/Migrasi_2303_ke_2304.php b/donjo-app/models/migrations/Migrasi_2303_ke_2304.php new file mode 100644 index 0000000000..8120ac311c --- /dev/null +++ b/donjo-app/models/migrations/Migrasi_2303_ke_2304.php @@ -0,0 +1,53 @@ +jalankan_migrasi('migrasi_fitur_premium_2209'); + + status_sukses($hasil); + + return $hasil; + } +} diff --git a/donjo-app/models/migrations/Migrasi_fitur_premium_2207.php b/donjo-app/models/migrations/Migrasi_fitur_premium_2207.php index 5d2b4b1a8c..9aa65f945b 100644 --- a/donjo-app/models/migrations/Migrasi_fitur_premium_2207.php +++ b/donjo-app/models/migrations/Migrasi_fitur_premium_2207.php @@ -806,7 +806,7 @@ protected function suratRawTinyMCE($hasil) 12. Berlaku : - [Mulai_berlaku] s/d [Berlaku_sampai] + [mulai_berlaku] s/d [berlaku_sampai] 13. diff --git a/donjo-app/models/migrations/Migrasi_fitur_premium_2208.php b/donjo-app/models/migrations/Migrasi_fitur_premium_2208.php index 4f91947668..1b6bbac174 100644 --- a/donjo-app/models/migrations/Migrasi_fitur_premium_2208.php +++ b/donjo-app/models/migrations/Migrasi_fitur_premium_2208.php @@ -51,6 +51,7 @@ public function up() $hasil = $hasil && $this->jalankan_migrasi('migrasi_fitur_premium_2207'); $hasil = $hasil && $this->migrasi_2022070551($hasil); $hasil = $hasil && $this->migrasi_2022070451($hasil); + $hasil = $hasil && $this->migrasi_2022070751($hasil); $hasil = $hasil && $this->migrasi_2022071851($hasil); $hasil = $hasil && $this->migrasi_2022072751($hasil); @@ -111,6 +112,61 @@ public function migrasi_2022071851($hasil) return $hasil; } + public function migrasi_2022070751($hasil) + { + // Buat tabel ref font Surat + if (! $this->db->table_exists('ref_font_surat')) { + $fields = [ + 'id' => [ + 'type' => 'INT', + 'constraint' => 11, + 'auto_increment' => true, + 'unsigned' => true, + ], + 'font_family' => [ + 'type' => 'VARCHAR', + 'constraint' => 50, + 'unique' => true, + 'null' => false, + ], + ]; + + $this->dbforge->add_key('id', true); + $this->dbforge->add_field($fields); + $hasil = $hasil && $this->dbforge->create_table('ref_font_surat', true); + + // isi data font surat + $fonts = [ + ['font_family' => 'Andale Mono'], + ['font_family' => 'Arial'], + ['font_family' => 'Arial Black'], + ['font_family' => 'Book Antiqua'], + ['font_family' => 'Comic Sans MS'], + ['font_family' => 'Courier New'], + ['font_family' => 'Georgia'], + ['font_family' => 'Helvetica'], + ['font_family' => 'Impact'], + ['font_family' => 'Symbol'], + ['font_family' => 'Tahoma'], + ['font_family' => 'Terminal'], + ['font_family' => 'Times New Roman'], + ['font_family' => 'Trebuchet MS'], + ['font_family' => 'Verdana'], + ['font_family' => 'Webdings'], + ['font_family' => 'Wingdings'], + ]; + $hasil = $this->db->insert_batch('ref_font_surat', $fonts); + } + + // tambahkan pengaturan + return $hasil && $this->tambah_setting([ + 'key' => 'font_surat', + 'value' => 'Arial', + 'keterangan' => 'Font Surat Utama', + 'kategori' => 'format_surat', + ]); + } + public function migrasi_2022072751($hasil) { if ($this->db->field_exists('updated_at', 'tweb_penduduk_mandiri')) { diff --git a/donjo-app/models/migrations/Migrasi_fitur_premium_2209.php b/donjo-app/models/migrations/Migrasi_fitur_premium_2209.php new file mode 100644 index 0000000000..24b3ad6e5b --- /dev/null +++ b/donjo-app/models/migrations/Migrasi_fitur_premium_2209.php @@ -0,0 +1,103 @@ +jalankan_migrasi('migrasi_fitur_premium_2208'); + $hasil = $hasil && $this->migrasi_2022080451($hasil); + + return $hasil && $this->migrasi_2022081951($hasil); + } + + public function migrasi_2022080451($hasil) + { + return $hasil && $this->tambah_setting([ + 'key' => 'notifikasi_koneksi', + 'value' => 1, + 'keterangan' => 'Ingatkan jika aplikasi tidak terhubung dengan internet.', + 'jenis' => 'boolean', + ]); + } + + protected function migrasi_2022081951($hasil) + { + // Semua penduduk yang memiliki foto + $daftar_penduduk = DB::table('tweb_penduduk')->where('foto', '!=', '')->get(['id', 'nik', 'foto']); + + if ($daftar_penduduk) { + foreach ($daftar_penduduk as $data) { + // Ganti nama file jika nama file sama dengan nik penduduk + if (preg_match("/{$data->nik}/i", $data->foto) && (file_exists(FCPATH . LOKASI_USER_PICT . $data->foto) || file_exists(FCPATH . LOKASI_USER_PICT . 'kecil_' . $data->foto))) { + $nama_baru = time() . mt_rand(10000, 999999) . get_extension($data->foto); + + if (DB::table('tweb_penduduk')->where('id', $data->id)->update(['foto' => $nama_baru])) { + rename(FCPATH . LOKASI_USER_PICT . $data->foto, FCPATH . LOKASI_USER_PICT . $nama_baru); + rename(FCPATH . LOKASI_USER_PICT . 'kecil_' . $data->foto, FCPATH . LOKASI_USER_PICT . 'kecil_' . $nama_baru); + } + } + } + } + + // Semua aparatur penduduk luar desa + $daftar_pamong = DB::table('tweb_desa_pamong')->where('foto', '!=', '')->get(['pamong_id', 'pamong_nik', 'foto']); + + if ($daftar_pamong) { + foreach ($daftar_pamong as $data) { + // Ganti nama file jika nama file sama dengan nik penduduk + if (null === $data->id_pend && preg_match("/{$data->pamong_nik}/i", $data->foto) && (file_exists(FCPATH . LOKASI_USER_PICT . $data->foto) || file_exists(FCPATH . LOKASI_USER_PICT . 'kecil_' . $data->foto))) { + $nama_baru = 'pamong_' . time() . mt_rand(10000, 999999) . get_extension($data->foto); + + if (DB::table('tweb_desa_pamong')->where('pamong_id', $data->pamong_id)->update(['foto' => $nama_baru])) { + rename(FCPATH . LOKASI_USER_PICT . $data->foto, FCPATH . LOKASI_USER_PICT . $nama_baru); + rename(FCPATH . LOKASI_USER_PICT . 'kecil_' . $data->foto, FCPATH . LOKASI_USER_PICT . 'kecil_' . $nama_baru); + } + } + } + } + + return $hasil; + } +} diff --git a/donjo-app/models/seeders/Data_awal_seeder.php b/donjo-app/models/seeders/Data_awal_seeder.php index 535d75327d..2d8aa20ab2 100644 --- a/donjo-app/models/seeders/Data_awal_seeder.php +++ b/donjo-app/models/seeders/Data_awal_seeder.php @@ -1,12448 +1,66074 @@ -db->query("ALTER DATABASE `{$db}` CHARACTER SET utf8 COLLATE utf8_general_ci;"); - - $this->tabel_analisis(); - $this->tabel_mandiri(); - $this->tabel_peta(); - $this->tabel_web(); - $this->tabel_pertanahan(); - $this->tabel_desa(); - $this->tabel_covid19(); - $this->tabel_penduduk(); - $this->tabel_dokumen(); - $this->tabel_hubung_warga(); - $this->tabel_inventaris(); - $this->tabel_buku_admin(); - $this->tabel_keuangan(); - $this->tabel_surat(); - $this->tabel_sinkronisasi(); - $this->tabel_dashboard(); - $this->tabel_pembangunan(); - $this->tabel_lapak(); - $this->tabel_bantuan(); - $this->tabel_sistem(); - $this->tabel_pamong(); - $this->tabel_keluarga(); - $this->tabel_pengguna(); - $this->tabel_ada_foreign_key(); - $this->buat_view(); - } - - private function tabel_analisis() - { - Schema::create('analisis_indikator', function (Blueprint $table) { - $table->increments('id'); - $table->integer('id_master'); - $table->string('nomor', 10)->nullable()->default(null); - $table->string('pertanyaan', 400); - $table->tinyInteger('id_tipe')->default(1); - $table->tinyInteger('bobot')->default(0); - $table->tinyInteger('act_analisis')->default(2); - $table->integer('id_kategori'); - $table->boolean('is_publik')->default(0); - $table->boolean('is_teks')->default(0); - $table->string('referensi', 50)->nullable()->default(null); - - $table->index(['id_master', 'id_tipe']); - $table->index('id_tipe'); - $table->index('id_kategori'); - }); - - DB::statement(" - CREATE TABLE `analisis_kategori_indikator` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_master` tinyint(4) NOT NULL, - `kategori` varchar(50) NOT NULL, - `kategori_kode` varchar(3) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_master` (`id_master`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_klasifikasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_master` int(11) NOT NULL, - `nama` varchar(20) NOT NULL, - `minval` double(7,2) NOT NULL, - `maxval` double(7,2) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_master` (`id_master`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_master` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(40) NOT NULL, - `subjek_tipe` tinyint(4) NOT NULL, - `lock` tinyint(1) NOT NULL DEFAULT 1, - `deskripsi` text NOT NULL, - `kode_analisis` varchar(5) NOT NULL DEFAULT '00000', - `id_kelompok` int(11) DEFAULT NULL, - `pembagi` varchar(10) NOT NULL DEFAULT '100', - `id_child` smallint(4) DEFAULT NULL, - `format_impor` tinyint(2) DEFAULT NULL, - `jenis` tinyint(2) NOT NULL DEFAULT 2, - `gform_id` text DEFAULT NULL, - `gform_nik_item_id` text DEFAULT NULL, - `gform_last_sync` datetime DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - - DB::statement(" - CREATE TABLE `analisis_parameter` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_indikator` int(11) NOT NULL, - `jawaban` varchar(200) NOT NULL, - `nilai` int(3) NOT NULL DEFAULT 0, - `kode_jawaban` int(3) DEFAULT 0, - `asign` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `id_indikator` (`id_indikator`) - ); - "); - - - DB::statement(" - CREATE TABLE `analisis_partisipasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_subjek` int(11) NOT NULL, - `id_master` int(11) NOT NULL, - `id_periode` int(11) NOT NULL, - `id_klassifikasi` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `id_subjek` (`id_subjek`,`id_master`,`id_periode`,`id_klassifikasi`), - KEY `id_master` (`id_master`), - KEY `id_periode` (`id_periode`), - KEY `id_klassifikasi` (`id_klassifikasi`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_periode` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_master` int(11) NOT NULL, - `nama` varchar(50) NOT NULL, - `id_state` tinyint(4) NOT NULL DEFAULT 1, - `aktif` tinyint(1) NOT NULL DEFAULT 0, - `keterangan` varchar(100) NOT NULL, - `tahun_pelaksanaan` year(4) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_master` (`id_master`), - KEY `id_state` (`id_state`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_ref_state` ( - `id` tinyint(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(40) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('analisis_ref_state')->insert([ - 0 => ['id' => 1, 'nama' => 'Belum Entri / Pendataan'], - 1 => ['id' => 2, 'nama' => 'Sedang Dalam Pendataan'], - 2 => ['id' => 3, 'nama' => 'Selesai Entri / Pendataan'], - ]); - - DB::statement(" - CREATE TABLE `analisis_ref_subjek` ( - `id` tinyint(4) NOT NULL AUTO_INCREMENT, - `subjek` varchar(20) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('analisis_ref_subjek')->insert([ - ['id' => 1, 'subjek' => 'Penduduk'], - ['id' => 2, 'subjek' => 'Keluarga / KK'], - ['id' => 3, 'subjek' => 'Rumah Tangga'], - ['id' => 4, 'subjek' => 'Kelompok'], - ['id' => 5, 'subjek' => 'Desa'], - ['id' => 6, 'subjek' => 'Dusun'], - ['id' => 7, 'subjek' => 'Rukun Warga (RW)'], - ['id' => 8, 'subjek' => 'Rukun Tetangga (RT)'], - ]); - - DB::statement(" - CREATE TABLE `analisis_respon` ( - `id_indikator` int(11) NOT NULL, - `id_parameter` int(11) NOT NULL, - `id_subjek` int(11) NOT NULL, - `id_periode` int(11) NOT NULL, - KEY `id_parameter` (`id_parameter`,`id_subjek`), - KEY `id_periode` (`id_periode`), - KEY `id_indikator` (`id_indikator`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_respon_bukti` ( - `id_master` tinyint(4) NOT NULL, - `id_periode` tinyint(4) NOT NULL, - `id_subjek` int(11) NOT NULL, - `pengesahan` varchar(100) NOT NULL, - `tgl_update` timestamp NOT NULL DEFAULT current_timestamp() - ); - "); - - DB::statement(" - CREATE TABLE `analisis_respon_hasil` ( - `id_master` tinyint(4) NOT NULL, - `id_periode` tinyint(4) NOT NULL, - `id_subjek` int(11) NOT NULL, - `akumulasi` double(8,3) NOT NULL, - `tgl_update` timestamp NOT NULL DEFAULT current_timestamp(), - UNIQUE KEY `id_master` (`id_master`,`id_periode`,`id_subjek`) - ); - "); - - DB::statement(" - CREATE TABLE `analisis_tipe_indikator` ( - `id` tinyint(4) NOT NULL AUTO_INCREMENT, - `tipe` varchar(20) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('analisis_tipe_indikator')->insert([ - ['id' => 1, 'tipe' => 'Pilihan (Tunggal)'], - ['id' => 2, 'tipe' => 'Pilihan (Multivalue)'], - ['id' => 3, 'tipe' => 'sian Angka'], - ['id' => 4, 'tipe' => 'sian Tulisan'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_mandiri() - { - DB::statement(" - CREATE TABLE `anjungan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `ip_address` varchar(100) NOT NULL, - `keterangan` varchar(300) DEFAULT NULL, - `keyboard` tinyint(1) DEFAULT 1, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_by` int(11) NOT NULL, - `updated_by` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `mac_address` varchar(100) DEFAULT NULL, - `printer_ip` varchar(100) DEFAULT NULL, - `printer_port` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `pendapat` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `pengguna` text NOT NULL, - `tanggal` timestamp NOT NULL DEFAULT current_timestamp(), - `pilihan` int(1) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `pengaduan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pengaduan` int(11) DEFAULT NULL, - `nik` varchar(16) DEFAULT NULL, - `nama` varchar(100) NOT NULL, - `email` varchar(100) DEFAULT NULL, - `telepon` varchar(20) DEFAULT NULL, - `judul` varchar(100) DEFAULT NULL, - `isi` text NOT NULL, - `status` int(1) NOT NULL DEFAULT 1 COMMENT '1 = menunggu proses, 2 = Sedang Diproses, 3 = Selesai Diproses', - `foto` varchar(100) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_peta() - { - DB::statement(" - CREATE TABLE `area` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `path` text DEFAULT NULL, - `enabled` int(11) NOT NULL DEFAULT 1, - `ref_polygon` int(9) NOT NULL, - `foto` varchar(100) DEFAULT NULL, - `id_cluster` int(11) DEFAULT NULL, - `desk` text NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `garis` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `path` text DEFAULT NULL, - `enabled` int(11) NOT NULL DEFAULT 1, - `ref_line` int(9) NOT NULL, - `foto` varchar(100) DEFAULT NULL, - `desk` text DEFAULT NULL, - `id_cluster` int(11) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `gis_simbol` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `simbol` varchar(40) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `simbol` (`simbol`), - UNIQUE KEY `simbol_2` (`simbol`), - UNIQUE KEY `simbol_3` (`simbol`), - UNIQUE KEY `simbol_4` (`simbol`), - UNIQUE KEY `simbol_5` (`simbol`), - UNIQUE KEY `simbol_6` (`simbol`) - ); - "); - - DB::table('gis_simbol')->insert([ - ['id' => 611, 'simbol' => 'aa_bni.png'], - ['id' => 612, 'simbol' => 'aa_bri.png'], - ['id' => 613, 'simbol' => 'aa_btn.png'], - ['id' => 614, 'simbol' => 'aa_btp.png'], - ['id' => 615, 'simbol' => 'aa_pajak.png'], - ['id' => 616, 'simbol' => 'aa_pdam.png'], - ['id' => 617, 'simbol' => 'aa_pgadai.png'], - ['id' => 618, 'simbol' => 'aa_pln.png'], - ['id' => 619, 'simbol' => 'aa_pmi.png'], - ['id' => 620, 'simbol' => 'aa_polisi.png'], - ['id' => 621, 'simbol' => 'aa_prtmn.png'], - ['id' => 622, 'simbol' => 'aa_pskms.png'], - ['id' => 623, 'simbol' => 'aa_ptrns.png'], - ['id' => 624, 'simbol' => 'aa_pwbdh.png'], - ['id' => 625, 'simbol' => 'aa_pwhnd.png'], - ['id' => 626, 'simbol' => 'aa_pwisl.png'], - ['id' => 627, 'simbol' => 'aa_pwkhc.png'], - ['id' => 628, 'simbol' => 'aa_pwkrs.png'], - ['id' => 629, 'simbol' => 'aa_sk.png'], - ['id' => 630, 'simbol' => 'aa_skagm.png'], - ['id' => 631, 'simbol' => 'aa_skint.png'], - ['id' => 632, 'simbol' => 'aa_sksd.png'], - ['id' => 633, 'simbol' => 'aa_sksma.png'], - ['id' => 634, 'simbol' => 'aa_sksmp.png'], - ['id' => 635, 'simbol' => 'aa_sktk.png'], - ['id' => 636, 'simbol' => 'aa_tniad.png'], - ['id' => 637, 'simbol' => 'aa_tnial.png'], - ['id' => 638, 'simbol' => 'aa_tniau.png'], - ['id' => 1, 'simbol' => 'accident.png'], - ['id' => 2, 'simbol' => 'accident_2.png'], - ['id' => 3, 'simbol' => 'administration.png'], - ['id' => 4, 'simbol' => 'administration_2.png'], - ['id' => 5, 'simbol' => 'aestheticscenter.png'], - ['id' => 6, 'simbol' => 'agriculture.png'], - ['id' => 7, 'simbol' => 'agriculture2.png'], - ['id' => 8, 'simbol' => 'agriculture3.png'], - ['id' => 9, 'simbol' => 'agriculture4.png'], - ['id' => 10, 'simbol' => 'aircraft-small.png'], - ['id' => 11, 'simbol' => 'airplane-sport.png'], - ['id' => 12, 'simbol' => 'airplane-tourism.png'], - ['id' => 13, 'simbol' => 'airport-apron.png'], - ['id' => 14, 'simbol' => 'airport-runway.png'], - ['id' => 15, 'simbol' => 'airport-terminal.png'], - ['id' => 16, 'simbol' => 'airport.png'], - ['id' => 17, 'simbol' => 'airport_2.png'], - ['id' => 18, 'simbol' => 'amphitheater-tourism.png'], - ['id' => 19, 'simbol' => 'amphitheater.png'], - ['id' => 20, 'simbol' => 'ancientmonument.png'], - ['id' => 21, 'simbol' => 'ancienttemple.png'], - ['id' => 22, 'simbol' => 'ancienttempleruin.png'], - ['id' => 23, 'simbol' => 'animals.png'], - ['id' => 24, 'simbol' => 'animals_2.png'], - ['id' => 25, 'simbol' => 'anniversary.png'], - ['id' => 26, 'simbol' => 'apartment.png'], - ['id' => 27, 'simbol' => 'apartment_2.png'], - ['id' => 28, 'simbol' => 'aquarium.png'], - ['id' => 29, 'simbol' => 'arch.png'], - ['id' => 30, 'simbol' => 'archery.png'], - ['id' => 31, 'simbol' => 'artgallery.png'], - ['id' => 32, 'simbol' => 'atm.png'], - ['id' => 33, 'simbol' => 'atv.png'], - ['id' => 34, 'simbol' => 'audio.png'], - ['id' => 35, 'simbol' => 'australianfootball.png'], - ['id' => 36, 'simbol' => 'bags.png'], - ['id' => 37, 'simbol' => 'bank.png'], - ['id' => 39, 'simbol' => 'bankeuro.png'], - ['id' => 40, 'simbol' => 'bankpound.png'], - ['id' => 38, 'simbol' => 'bank_2.png'], - ['id' => 41, 'simbol' => 'bar.png'], - ['id' => 42, 'simbol' => 'bar_2.png'], - ['id' => 43, 'simbol' => 'baseball.png'], - ['id' => 44, 'simbol' => 'basketball.png'], - ['id' => 45, 'simbol' => 'baskteball2.png'], - ['id' => 46, 'simbol' => 'beach.png'], - ['id' => 47, 'simbol' => 'beach_2.png'], - ['id' => 48, 'simbol' => 'beautiful.png'], - ['id' => 49, 'simbol' => 'beautiful_2.png'], - ['id' => 50, 'simbol' => 'bench.png'], - ['id' => 51, 'simbol' => 'biblio.png'], - ['id' => 52, 'simbol' => 'bicycleparking.png'], - ['id' => 53, 'simbol' => 'bigcity.png'], - ['id' => 54, 'simbol' => 'billiard.png'], - ['id' => 55, 'simbol' => 'bobsleigh.png'], - ['id' => 56, 'simbol' => 'bomb.png'], - ['id' => 57, 'simbol' => 'bookstore.png'], - ['id' => 58, 'simbol' => 'bowling.png'], - ['id' => 59, 'simbol' => 'bowling_2.png'], - ['id' => 60, 'simbol' => 'boxing.png'], - ['id' => 61, 'simbol' => 'bread.png'], - ['id' => 62, 'simbol' => 'bread_2.png'], - ['id' => 63, 'simbol' => 'bridge.png'], - ['id' => 64, 'simbol' => 'bridgemodern.png'], - ['id' => 65, 'simbol' => 'bullfight.png'], - ['id' => 66, 'simbol' => 'bungalow.png'], - ['id' => 67, 'simbol' => 'bus.png'], - ['id' => 68, 'simbol' => 'bus_2.png'], - ['id' => 69, 'simbol' => 'butcher.png'], - ['id' => 70, 'simbol' => 'cabin.png'], - ['id' => 71, 'simbol' => 'cablecar.png'], - ['id' => 72, 'simbol' => 'camping.png'], - ['id' => 74, 'simbol' => 'campingsite.png'], - ['id' => 73, 'simbol' => 'camping_2.png'], - ['id' => 75, 'simbol' => 'canoe.png'], - ['id' => 76, 'simbol' => 'car.png'], - ['id' => 78, 'simbol' => 'carrental.png'], - ['id' => 79, 'simbol' => 'carrepair.png'], - ['id' => 80, 'simbol' => 'carrepair_2.png'], - ['id' => 81, 'simbol' => 'carwash.png'], - ['id' => 77, 'simbol' => 'car_2.png'], - ['id' => 82, 'simbol' => 'casino.png'], - ['id' => 83, 'simbol' => 'casino_2.png'], - ['id' => 84, 'simbol' => 'castle.png'], - ['id' => 85, 'simbol' => 'cathedral.png'], - ['id' => 86, 'simbol' => 'cathedral2.png'], - ['id' => 87, 'simbol' => 'cave.png'], - ['id' => 88, 'simbol' => 'cemetary.png'], - ['id' => 89, 'simbol' => 'chapel.png'], - ['id' => 90, 'simbol' => 'church.png'], - ['id' => 91, 'simbol' => 'church2.png'], - ['id' => 92, 'simbol' => 'church_2.png'], - ['id' => 93, 'simbol' => 'cinema.png'], - ['id' => 94, 'simbol' => 'cinema_2.png'], - ['id' => 95, 'simbol' => 'circus.png'], - ['id' => 96, 'simbol' => 'citysquare.png'], - ['id' => 97, 'simbol' => 'climbing.png'], - ['id' => 98, 'simbol' => 'clothes-female.png'], - ['id' => 99, 'simbol' => 'clothes-male.png'], - ['id' => 100, 'simbol' => 'clothes.png'], - ['id' => 101, 'simbol' => 'clothes_2.png'], - ['id' => 102, 'simbol' => 'clouds.png'], - ['id' => 104, 'simbol' => 'cloudsun.png'], - ['id' => 105, 'simbol' => 'cloudsun_2.png'], - ['id' => 103, 'simbol' => 'clouds_2.png'], - ['id' => 106, 'simbol' => 'club.png'], - ['id' => 107, 'simbol' => 'club_2.png'], - ['id' => 108, 'simbol' => 'cluster.png'], - ['id' => 109, 'simbol' => 'cluster2.png'], - ['id' => 110, 'simbol' => 'cluster3.png'], - ['id' => 111, 'simbol' => 'cluster4.png'], - ['id' => 112, 'simbol' => 'cluster5.png'], - ['id' => 113, 'simbol' => 'cocktail.png'], - ['id' => 114, 'simbol' => 'coffee.png'], - ['id' => 115, 'simbol' => 'coffee_2.png'], - ['id' => 116, 'simbol' => 'communitycentre.png'], - ['id' => 117, 'simbol' => 'company.png'], - ['id' => 118, 'simbol' => 'company_2.png'], - ['id' => 119, 'simbol' => 'computer.png'], - ['id' => 120, 'simbol' => 'computer_2.png'], - ['id' => 121, 'simbol' => 'concessionaire.png'], - ['id' => 122, 'simbol' => 'conference.png'], - ['id' => 123, 'simbol' => 'construction.png'], - ['id' => 124, 'simbol' => 'convenience.png'], - ['id' => 125, 'simbol' => 'convent.png'], - ['id' => 126, 'simbol' => 'corral.png'], - ['id' => 127, 'simbol' => 'country.png'], - ['id' => 128, 'simbol' => 'court.png'], - ['id' => 129, 'simbol' => 'cricket.png'], - ['id' => 130, 'simbol' => 'cross.png'], - ['id' => 131, 'simbol' => 'crossingguard.png'], - ['id' => 132, 'simbol' => 'cruise.png'], - ['id' => 133, 'simbol' => 'currencyexchange.png'], - ['id' => 134, 'simbol' => 'customs.png'], - ['id' => 135, 'simbol' => 'cycling.png'], - ['id' => 137, 'simbol' => 'cyclingfeedarea.png'], - ['id' => 138, 'simbol' => 'cyclingmountain1.png'], - ['id' => 139, 'simbol' => 'cyclingmountain2.png'], - ['id' => 140, 'simbol' => 'cyclingmountain3.png'], - ['id' => 141, 'simbol' => 'cyclingmountain4.png'], - ['id' => 142, 'simbol' => 'cyclingmountainnotrated.png'], - ['id' => 143, 'simbol' => 'cyclingsport.png'], - ['id' => 144, 'simbol' => 'cyclingsprint.png'], - ['id' => 145, 'simbol' => 'cyclinguncategorized.png'], - ['id' => 136, 'simbol' => 'cycling_2.png'], - ['id' => 146, 'simbol' => 'dam.png'], - ['id' => 147, 'simbol' => 'dancinghall.png'], - ['id' => 148, 'simbol' => 'dates.png'], - ['id' => 149, 'simbol' => 'dates_2.png'], - ['id' => 150, 'simbol' => 'daycare.png'], - ['id' => 151, 'simbol' => 'days-dim.png'], - ['id' => 152, 'simbol' => 'days-dom.png'], - ['id' => 153, 'simbol' => 'days-jeu.png'], - ['id' => 154, 'simbol' => 'days-jue.png'], - ['id' => 155, 'simbol' => 'days-lun.png'], - ['id' => 156, 'simbol' => 'days-mar.png'], - ['id' => 157, 'simbol' => 'days-mer.png'], - ['id' => 158, 'simbol' => 'days-mie.png'], - ['id' => 159, 'simbol' => 'days-qua.png'], - ['id' => 160, 'simbol' => 'days-qui.png'], - ['id' => 161, 'simbol' => 'days-sab.png'], - ['id' => 162, 'simbol' => 'days-sam.png'], - ['id' => 163, 'simbol' => 'days-seg.png'], - ['id' => 164, 'simbol' => 'days-sex.png'], - ['id' => 165, 'simbol' => 'days-ter.png'], - ['id' => 166, 'simbol' => 'days-ven.png'], - ['id' => 167, 'simbol' => 'days-vie.png'], - ['id' => 168, 'simbol' => 'default.png'], - ['id' => 169, 'simbol' => 'dentist.png'], - ['id' => 170, 'simbol' => 'deptstore.png'], - ['id' => 171, 'simbol' => 'disability.png'], - ['id' => 172, 'simbol' => 'disability_2.png'], - ['id' => 173, 'simbol' => 'disabledparking.png'], - ['id' => 174, 'simbol' => 'diving.png'], - ['id' => 175, 'simbol' => 'doctor.png'], - ['id' => 176, 'simbol' => 'doctor_2.png'], - ['id' => 177, 'simbol' => 'dog-leash.png'], - ['id' => 178, 'simbol' => 'dog-offleash.png'], - ['id' => 179, 'simbol' => 'door.png'], - ['id' => 180, 'simbol' => 'down.png'], - ['id' => 181, 'simbol' => 'downleft.png'], - ['id' => 182, 'simbol' => 'downright.png'], - ['id' => 183, 'simbol' => 'downthenleft.png'], - ['id' => 184, 'simbol' => 'downthenright.png'], - ['id' => 185, 'simbol' => 'drinkingfountain.png'], - ['id' => 186, 'simbol' => 'drinkingwater.png'], - ['id' => 187, 'simbol' => 'drugs.png'], - ['id' => 188, 'simbol' => 'drugs_2.png'], - ['id' => 189, 'simbol' => 'elevator.png'], - ['id' => 190, 'simbol' => 'embassy.png'], - ['id' => 191, 'simbol' => 'emblem-art.png'], - ['id' => 192, 'simbol' => 'emblem-photos.png'], - ['id' => 193, 'simbol' => 'entrance.png'], - ['id' => 194, 'simbol' => 'escalator-down.png'], - ['id' => 195, 'simbol' => 'escalator-up.png'], - ['id' => 196, 'simbol' => 'exit.png'], - ['id' => 197, 'simbol' => 'expert.png'], - ['id' => 198, 'simbol' => 'explosion.png'], - ['id' => 199, 'simbol' => 'face-devilish.png'], - ['id' => 200, 'simbol' => 'face-embarrassed.png'], - ['id' => 201, 'simbol' => 'factory.png'], - ['id' => 202, 'simbol' => 'factory_2.png'], - ['id' => 203, 'simbol' => 'fallingrocks.png'], - ['id' => 204, 'simbol' => 'family.png'], - ['id' => 205, 'simbol' => 'farm.png'], - ['id' => 206, 'simbol' => 'farm_2.png'], - ['id' => 207, 'simbol' => 'fastfood.png'], - ['id' => 208, 'simbol' => 'fastfood_2.png'], - ['id' => 209, 'simbol' => 'festival-itinerant.png'], - ['id' => 210, 'simbol' => 'festival.png'], - ['id' => 211, 'simbol' => 'findajob.png'], - ['id' => 212, 'simbol' => 'findjob.png'], - ['id' => 213, 'simbol' => 'findjob_2.png'], - ['id' => 214, 'simbol' => 'fire-extinguisher.png'], - ['id' => 215, 'simbol' => 'fire.png'], - ['id' => 216, 'simbol' => 'firemen.png'], - ['id' => 217, 'simbol' => 'firemen_2.png'], - ['id' => 218, 'simbol' => 'fireworks.png'], - ['id' => 219, 'simbol' => 'firstaid.png'], - ['id' => 220, 'simbol' => 'fishing.png'], - ['id' => 222, 'simbol' => 'fishingshop.png'], - ['id' => 221, 'simbol' => 'fishing_2.png'], - ['id' => 223, 'simbol' => 'fitnesscenter.png'], - ['id' => 224, 'simbol' => 'fjord.png'], - ['id' => 225, 'simbol' => 'flood.png'], - ['id' => 226, 'simbol' => 'flowers.png'], - ['id' => 227, 'simbol' => 'flowers_2.png'], - ['id' => 228, 'simbol' => 'followpath.png'], - ['id' => 229, 'simbol' => 'foodtruck.png'], - ['id' => 230, 'simbol' => 'forest.png'], - ['id' => 231, 'simbol' => 'fortress.png'], - ['id' => 232, 'simbol' => 'fossils.png'], - ['id' => 233, 'simbol' => 'fountain.png'], - ['id' => 234, 'simbol' => 'friday.png'], - ['id' => 235, 'simbol' => 'friday_2.png'], - ['id' => 236, 'simbol' => 'friends.png'], - ['id' => 237, 'simbol' => 'friends_2.png'], - ['id' => 238, 'simbol' => 'garden.png'], - ['id' => 239, 'simbol' => 'gateswalls.png'], - ['id' => 240, 'simbol' => 'gazstation.png'], - ['id' => 241, 'simbol' => 'gazstation_2.png'], - ['id' => 242, 'simbol' => 'geyser.png'], - ['id' => 243, 'simbol' => 'gifts.png'], - ['id' => 244, 'simbol' => 'girlfriend.png'], - ['id' => 245, 'simbol' => 'girlfriend_2.png'], - ['id' => 246, 'simbol' => 'glacier.png'], - ['id' => 247, 'simbol' => 'golf.png'], - ['id' => 248, 'simbol' => 'golf_2.png'], - ['id' => 249, 'simbol' => 'gondola.png'], - ['id' => 250, 'simbol' => 'gourmet.png'], - ['id' => 251, 'simbol' => 'grocery.png'], - ['id' => 252, 'simbol' => 'gun.png'], - ['id' => 253, 'simbol' => 'gym.png'], - ['id' => 254, 'simbol' => 'hairsalon.png'], - ['id' => 255, 'simbol' => 'handball.png'], - ['id' => 256, 'simbol' => 'hanggliding.png'], - ['id' => 257, 'simbol' => 'hats.png'], - ['id' => 258, 'simbol' => 'headstone.png'], - ['id' => 259, 'simbol' => 'headstonejewish.png'], - ['id' => 260, 'simbol' => 'helicopter.png'], - ['id' => 261, 'simbol' => 'highway.png'], - ['id' => 262, 'simbol' => 'highway_2.png'], - ['id' => 263, 'simbol' => 'hiking-tourism.png'], - ['id' => 264, 'simbol' => 'hiking.png'], - ['id' => 265, 'simbol' => 'hiking_2.png'], - ['id' => 266, 'simbol' => 'historicalquarter.png'], - ['id' => 267, 'simbol' => 'home.png'], - ['id' => 268, 'simbol' => 'home_2.png'], - ['id' => 269, 'simbol' => 'horseriding.png'], - ['id' => 270, 'simbol' => 'horseriding_2.png'], - ['id' => 271, 'simbol' => 'hospital.png'], - ['id' => 272, 'simbol' => 'hospital_2.png'], - ['id' => 273, 'simbol' => 'hostel.png'], - ['id' => 274, 'simbol' => 'hotairballoon.png'], - ['id' => 275, 'simbol' => 'hotel.png'], - ['id' => 276, 'simbol' => 'hotel1star.png'], - ['id' => 277, 'simbol' => 'hotel2stars.png'], - ['id' => 278, 'simbol' => 'hotel3stars.png'], - ['id' => 279, 'simbol' => 'hotel4stars.png'], - ['id' => 280, 'simbol' => 'hotel5stars.png'], - ['id' => 281, 'simbol' => 'hotel_2.png'], - ['id' => 282, 'simbol' => 'house.png'], - ['id' => 283, 'simbol' => 'hunting.png'], - ['id' => 284, 'simbol' => 'icecream.png'], - ['id' => 285, 'simbol' => 'icehockey.png'], - ['id' => 286, 'simbol' => 'iceskating.png'], - ['id' => 287, 'simbol' => 'im-user.png'], - ['id' => 288, 'simbol' => 'index.html'], - ['id' => 289, 'simbol' => 'info.png'], - ['id' => 290, 'simbol' => 'info_2.png'], - ['id' => 291, 'simbol' => 'jewelry.png'], - ['id' => 292, 'simbol' => 'jewishquarter.png'], - ['id' => 293, 'simbol' => 'jogging.png'], - ['id' => 294, 'simbol' => 'judo.png'], - ['id' => 295, 'simbol' => 'justice.png'], - ['id' => 296, 'simbol' => 'justice_2.png'], - ['id' => 297, 'simbol' => 'karate.png'], - ['id' => 298, 'simbol' => 'karting.png'], - ['id' => 299, 'simbol' => 'kayak.png'], - ['id' => 300, 'simbol' => 'laboratory.png'], - ['id' => 301, 'simbol' => 'lake.png'], - ['id' => 302, 'simbol' => 'laundromat.png'], - ['id' => 303, 'simbol' => 'left.png'], - ['id' => 304, 'simbol' => 'leftthendown.png'], - ['id' => 305, 'simbol' => 'leftthenup.png'], - ['id' => 306, 'simbol' => 'library.png'], - ['id' => 307, 'simbol' => 'library_2.png'], - ['id' => 308, 'simbol' => 'lighthouse.png'], - ['id' => 309, 'simbol' => 'liquor.png'], - ['id' => 310, 'simbol' => 'lock.png'], - ['id' => 311, 'simbol' => 'lockerrental.png'], - ['id' => 312, 'simbol' => 'magicshow.png'], - ['id' => 313, 'simbol' => 'mainroad.png'], - ['id' => 314, 'simbol' => 'massage.png'], - ['id' => 315, 'simbol' => 'military.png'], - ['id' => 316, 'simbol' => 'military_2.png'], - ['id' => 317, 'simbol' => 'mine.png'], - ['id' => 318, 'simbol' => 'mobilephonetower.png'], - ['id' => 319, 'simbol' => 'modernmonument.png'], - ['id' => 320, 'simbol' => 'moderntower.png'], - ['id' => 321, 'simbol' => 'monastery.png'], - ['id' => 322, 'simbol' => 'monday.png'], - ['id' => 323, 'simbol' => 'monday_2.png'], - ['id' => 324, 'simbol' => 'monument.png'], - ['id' => 325, 'simbol' => 'mosque.png'], - ['id' => 326, 'simbol' => 'motorbike.png'], - ['id' => 327, 'simbol' => 'motorcycle.png'], - ['id' => 328, 'simbol' => 'movierental.png'], - ['id' => 329, 'simbol' => 'museum-archeological.png'], - ['id' => 330, 'simbol' => 'museum-art.png'], - ['id' => 331, 'simbol' => 'museum-crafts.png'], - ['id' => 332, 'simbol' => 'museum-historical.png'], - ['id' => 333, 'simbol' => 'museum-naval.png'], - ['id' => 334, 'simbol' => 'museum-science.png'], - ['id' => 335, 'simbol' => 'museum-war.png'], - ['id' => 336, 'simbol' => 'museum.png'], - ['id' => 337, 'simbol' => 'museum_2.png'], - ['id' => 338, 'simbol' => 'music-classical.png'], - ['id' => 339, 'simbol' => 'music-hiphop.png'], - ['id' => 340, 'simbol' => 'music-live.png'], - ['id' => 341, 'simbol' => 'music-rock.png'], - ['id' => 342, 'simbol' => 'music.png'], - ['id' => 343, 'simbol' => 'music_2.png'], - ['id' => 344, 'simbol' => 'nanny.png'], - ['id' => 345, 'simbol' => 'newsagent.png'], - ['id' => 346, 'simbol' => 'nordicski.png'], - ['id' => 347, 'simbol' => 'nursery.png'], - ['id' => 348, 'simbol' => 'observatory.png'], - ['id' => 349, 'simbol' => 'oilpumpjack.png'], - ['id' => 350, 'simbol' => 'olympicsite.png'], - ['id' => 351, 'simbol' => 'ophthalmologist.png'], - ['id' => 352, 'simbol' => 'pagoda.png'], - ['id' => 353, 'simbol' => 'paint.png'], - ['id' => 354, 'simbol' => 'palace.png'], - ['id' => 355, 'simbol' => 'panoramic.png'], - ['id' => 356, 'simbol' => 'panoramic180.png'], - ['id' => 357, 'simbol' => 'park-urban.png'], - ['id' => 358, 'simbol' => 'park.png'], - ['id' => 360, 'simbol' => 'parkandride.png'], - ['id' => 361, 'simbol' => 'parking.png'], - ['id' => 362, 'simbol' => 'parking_2.png'], - ['id' => 359, 'simbol' => 'park_2.png'], - ['id' => 363, 'simbol' => 'party.png'], - ['id' => 364, 'simbol' => 'patisserie.png'], - ['id' => 365, 'simbol' => 'pedestriancrossing.png'], - ['id' => 366, 'simbol' => 'pend.png'], - ['id' => 367, 'simbol' => 'pens.png'], - ['id' => 368, 'simbol' => 'perfumery.png'], - ['id' => 369, 'simbol' => 'personal.png'], - ['id' => 370, 'simbol' => 'personalwatercraft.png'], - ['id' => 371, 'simbol' => 'petroglyphs.png'], - ['id' => 372, 'simbol' => 'pets.png'], - ['id' => 373, 'simbol' => 'phones.png'], - ['id' => 374, 'simbol' => 'photo.png'], - ['id' => 375, 'simbol' => 'photodown.png'], - ['id' => 376, 'simbol' => 'photodownleft.png'], - ['id' => 377, 'simbol' => 'photodownright.png'], - ['id' => 378, 'simbol' => 'photography.png'], - ['id' => 379, 'simbol' => 'photoleft.png'], - ['id' => 380, 'simbol' => 'photoright.png'], - ['id' => 381, 'simbol' => 'photoup.png'], - ['id' => 382, 'simbol' => 'photoupleft.png'], - ['id' => 383, 'simbol' => 'photoupright.png'], - ['id' => 384, 'simbol' => 'picnic.png'], - ['id' => 385, 'simbol' => 'pizza.png'], - ['id' => 386, 'simbol' => 'pizza_2.png'], - ['id' => 387, 'simbol' => 'places-unvisited.png'], - ['id' => 388, 'simbol' => 'places-visited.png'], - ['id' => 389, 'simbol' => 'planecrash.png'], - ['id' => 390, 'simbol' => 'playground.png'], - ['id' => 391, 'simbol' => 'playground_2.png'], - ['id' => 392, 'simbol' => 'poker.png'], - ['id' => 393, 'simbol' => 'poker_2.png'], - ['id' => 394, 'simbol' => 'police.png'], - ['id' => 395, 'simbol' => 'police2.png'], - ['id' => 396, 'simbol' => 'police_2.png'], - ['id' => 397, 'simbol' => 'pool-indoor.png'], - ['id' => 398, 'simbol' => 'pool.png'], - ['id' => 399, 'simbol' => 'pool_2.png'], - ['id' => 400, 'simbol' => 'port.png'], - ['id' => 401, 'simbol' => 'port_2.png'], - ['id' => 402, 'simbol' => 'postal.png'], - ['id' => 403, 'simbol' => 'postal_2.png'], - ['id' => 404, 'simbol' => 'powerlinepole.png'], - ['id' => 405, 'simbol' => 'powerplant.png'], - ['id' => 406, 'simbol' => 'powersubstation.png'], - ['id' => 407, 'simbol' => 'prison.png'], - ['id' => 408, 'simbol' => 'publicart.png'], - ['id' => 409, 'simbol' => 'racing.png'], - ['id' => 410, 'simbol' => 'radiation.png'], - ['id' => 411, 'simbol' => 'rain_2.png'], - ['id' => 412, 'simbol' => 'rain_3.png'], - ['id' => 413, 'simbol' => 'rattlesnake.png'], - ['id' => 414, 'simbol' => 'realestate.png'], - ['id' => 415, 'simbol' => 'realestate_2.png'], - ['id' => 416, 'simbol' => 'recycle.png'], - ['id' => 417, 'simbol' => 'recycle_2.png'], - ['id' => 418, 'simbol' => 'recycle_3.png'], - ['id' => 419, 'simbol' => 'regroup.png'], - ['id' => 420, 'simbol' => 'regulier.png'], - ['id' => 421, 'simbol' => 'resort.png'], - ['id' => 422, 'simbol' => 'restaurant-barbecue.png'], - ['id' => 423, 'simbol' => 'restaurant-buffet.png'], - ['id' => 424, 'simbol' => 'restaurant-fish.png'], - ['id' => 425, 'simbol' => 'restaurant-romantic.png'], - ['id' => 426, 'simbol' => 'restaurant.png'], - ['id' => 428, 'simbol' => 'restaurantafrican.png'], - ['id' => 429, 'simbol' => 'restaurantchinese.png'], - ['id' => 430, 'simbol' => 'restaurantchinese_2.png'], - ['id' => 431, 'simbol' => 'restaurantfishchips.png'], - ['id' => 432, 'simbol' => 'restaurantgourmet.png'], - ['id' => 433, 'simbol' => 'restaurantgreek.png'], - ['id' => 434, 'simbol' => 'restaurantindian.png'], - ['id' => 435, 'simbol' => 'restaurantitalian.png'], - ['id' => 436, 'simbol' => 'restaurantjapanese.png'], - ['id' => 437, 'simbol' => 'restaurantjapanese_2.png'], - ['id' => 438, 'simbol' => 'restaurantkebab.png'], - ['id' => 439, 'simbol' => 'restaurantkorean.png'], - ['id' => 440, 'simbol' => 'restaurantmediterranean.png'], - ['id' => 441, 'simbol' => 'restaurantmexican.png'], - ['id' => 442, 'simbol' => 'restaurantthai.png'], - ['id' => 443, 'simbol' => 'restaurantturkish.png'], - ['id' => 427, 'simbol' => 'restaurant_2.png'], - ['id' => 444, 'simbol' => 'revolution.png'], - ['id' => 445, 'simbol' => 'right.png'], - ['id' => 446, 'simbol' => 'rightthendown.png'], - ['id' => 447, 'simbol' => 'rightthenup.png'], - ['id' => 448, 'simbol' => 'riparian.png'], - ['id' => 449, 'simbol' => 'ropescourse.png'], - ['id' => 450, 'simbol' => 'rowboat.png'], - ['id' => 451, 'simbol' => 'rugby.png'], - ['id' => 452, 'simbol' => 'ruins.png'], - ['id' => 453, 'simbol' => 'sailboat-sport.png'], - ['id' => 454, 'simbol' => 'sailboat-tourism.png'], - ['id' => 455, 'simbol' => 'sailboat.png'], - ['id' => 456, 'simbol' => 'salle-fete.png'], - ['id' => 457, 'simbol' => 'satursday.png'], - ['id' => 458, 'simbol' => 'satursday_2.png'], - ['id' => 459, 'simbol' => 'sauna.png'], - ['id' => 460, 'simbol' => 'school.png'], - ['id' => 461, 'simbol' => 'school_2.png'], - ['id' => 462, 'simbol' => 'schrink.png'], - ['id' => 463, 'simbol' => 'schrink_2.png'], - ['id' => 464, 'simbol' => 'sciencecenter.png'], - ['id' => 465, 'simbol' => 'seals.png'], - ['id' => 466, 'simbol' => 'seniorsite.png'], - ['id' => 467, 'simbol' => 'shadow.png'], - ['id' => 468, 'simbol' => 'shelter-picnic.png'], - ['id' => 469, 'simbol' => 'shelter-sleeping.png'], - ['id' => 470, 'simbol' => 'shoes.png'], - ['id' => 471, 'simbol' => 'shoes_2.png'], - ['id' => 472, 'simbol' => 'shoppingmall.png'], - ['id' => 473, 'simbol' => 'shore.png'], - ['id' => 474, 'simbol' => 'shower.png'], - ['id' => 475, 'simbol' => 'sight.png'], - ['id' => 476, 'simbol' => 'skateboarding.png'], - ['id' => 477, 'simbol' => 'skiing.png'], - ['id' => 478, 'simbol' => 'skiing_2.png'], - ['id' => 479, 'simbol' => 'skijump.png'], - ['id' => 480, 'simbol' => 'skilift.png'], - ['id' => 481, 'simbol' => 'smallcity.png'], - ['id' => 482, 'simbol' => 'smokingarea.png'], - ['id' => 483, 'simbol' => 'sneakers.png'], - ['id' => 484, 'simbol' => 'snow.png'], - ['id' => 485, 'simbol' => 'snowboarding.png'], - ['id' => 486, 'simbol' => 'snowmobiling.png'], - ['id' => 487, 'simbol' => 'snowshoeing.png'], - ['id' => 488, 'simbol' => 'soccer.png'], - ['id' => 489, 'simbol' => 'soccer2.png'], - ['id' => 490, 'simbol' => 'soccer_2.png'], - ['id' => 491, 'simbol' => 'spaceport.png'], - ['id' => 492, 'simbol' => 'spectacle.png'], - ['id' => 493, 'simbol' => 'speed100.png'], - ['id' => 494, 'simbol' => 'speed110.png'], - ['id' => 495, 'simbol' => 'speed120.png'], - ['id' => 496, 'simbol' => 'speed130.png'], - ['id' => 497, 'simbol' => 'speed20.png'], - ['id' => 498, 'simbol' => 'speed30.png'], - ['id' => 499, 'simbol' => 'speed40.png'], - ['id' => 500, 'simbol' => 'speed50.png'], - ['id' => 501, 'simbol' => 'speed60.png'], - ['id' => 502, 'simbol' => 'speed70.png'], - ['id' => 503, 'simbol' => 'speed80.png'], - ['id' => 504, 'simbol' => 'speed90.png'], - ['id' => 505, 'simbol' => 'speedhump.png'], - ['id' => 506, 'simbol' => 'spelunking.png'], - ['id' => 507, 'simbol' => 'stadium.png'], - ['id' => 508, 'simbol' => 'statue.png'], - ['id' => 509, 'simbol' => 'steamtrain.png'], - ['id' => 510, 'simbol' => 'stop.png'], - ['id' => 511, 'simbol' => 'stoplight.png'], - ['id' => 512, 'simbol' => 'stoplight_2.png'], - ['id' => 513, 'simbol' => 'strike.png'], - ['id' => 514, 'simbol' => 'strike1.png'], - ['id' => 515, 'simbol' => 'subway.png'], - ['id' => 516, 'simbol' => 'sun.png'], - ['id' => 518, 'simbol' => 'sunday.png'], - ['id' => 519, 'simbol' => 'sunday_2.png'], - ['id' => 517, 'simbol' => 'sun_2.png'], - ['id' => 520, 'simbol' => 'supermarket.png'], - ['id' => 521, 'simbol' => 'supermarket_2.png'], - ['id' => 522, 'simbol' => 'surfing.png'], - ['id' => 523, 'simbol' => 'suv.png'], - ['id' => 524, 'simbol' => 'synagogue.png'], - ['id' => 525, 'simbol' => 'tailor.png'], - ['id' => 526, 'simbol' => 'tapas.png'], - ['id' => 527, 'simbol' => 'taxi.png'], - ['id' => 529, 'simbol' => 'taxiway.png'], - ['id' => 528, 'simbol' => 'taxi_2.png'], - ['id' => 530, 'simbol' => 'teahouse.png'], - ['id' => 531, 'simbol' => 'telephone.png'], - ['id' => 532, 'simbol' => 'templehindu.png'], - ['id' => 533, 'simbol' => 'tennis.png'], - ['id' => 534, 'simbol' => 'tennis2.png'], - ['id' => 535, 'simbol' => 'tennis_2.png'], - ['id' => 536, 'simbol' => 'tent.png'], - ['id' => 537, 'simbol' => 'terrace.png'], - ['id' => 538, 'simbol' => 'text.png'], - ['id' => 539, 'simbol' => 'textiles.png'], - ['id' => 540, 'simbol' => 'theater.png'], - ['id' => 541, 'simbol' => 'theater_2.png'], - ['id' => 542, 'simbol' => 'themepark.png'], - ['id' => 543, 'simbol' => 'thunder.png'], - ['id' => 544, 'simbol' => 'thunder_2.png'], - ['id' => 545, 'simbol' => 'thursday.png'], - ['id' => 546, 'simbol' => 'thursday_2.png'], - ['id' => 547, 'simbol' => 'toilets.png'], - ['id' => 548, 'simbol' => 'toilets_2.png'], - ['id' => 549, 'simbol' => 'tollstation.png'], - ['id' => 550, 'simbol' => 'tools.png'], - ['id' => 551, 'simbol' => 'tower.png'], - ['id' => 552, 'simbol' => 'toys.png'], - ['id' => 553, 'simbol' => 'toys_2.png'], - ['id' => 554, 'simbol' => 'trafficenforcementcamera.png'], - ['id' => 555, 'simbol' => 'train.png'], - ['id' => 556, 'simbol' => 'train_2.png'], - ['id' => 557, 'simbol' => 'tram.png'], - ['id' => 558, 'simbol' => 'trash.png'], - ['id' => 559, 'simbol' => 'truck.png'], - ['id' => 560, 'simbol' => 'truck_2.png'], - ['id' => 561, 'simbol' => 'tuesday.png'], - ['id' => 562, 'simbol' => 'tuesday_2.png'], - ['id' => 563, 'simbol' => 'tunnel.png'], - ['id' => 564, 'simbol' => 'turnleft.png'], - ['id' => 565, 'simbol' => 'turnright.png'], - ['id' => 566, 'simbol' => 'university.png'], - ['id' => 567, 'simbol' => 'university_2.png'], - ['id' => 568, 'simbol' => 'unnamed.png'], - ['id' => 569, 'simbol' => 'up.png'], - ['id' => 570, 'simbol' => 'upleft.png'], - ['id' => 571, 'simbol' => 'upright.png'], - ['id' => 572, 'simbol' => 'upthenleft.png'], - ['id' => 573, 'simbol' => 'upthenright.png'], - ['id' => 574, 'simbol' => 'usfootball.png'], - ['id' => 575, 'simbol' => 'vespa.png'], - ['id' => 576, 'simbol' => 'vet.png'], - ['id' => 577, 'simbol' => 'video.png'], - ['id' => 578, 'simbol' => 'videogames.png'], - ['id' => 579, 'simbol' => 'videogames_2.png'], - ['id' => 580, 'simbol' => 'villa.png'], - ['id' => 581, 'simbol' => 'waitingroom.png'], - ['id' => 582, 'simbol' => 'water.png'], - ['id' => 583, 'simbol' => 'waterfall.png'], - ['id' => 584, 'simbol' => 'watermill.png'], - ['id' => 585, 'simbol' => 'waterpark.png'], - ['id' => 586, 'simbol' => 'waterskiing.png'], - ['id' => 587, 'simbol' => 'watertower.png'], - ['id' => 588, 'simbol' => 'waterwell.png'], - ['id' => 589, 'simbol' => 'waterwellpump.png'], - ['id' => 590, 'simbol' => 'wedding.png'], - ['id' => 591, 'simbol' => 'wednesday.png'], - ['id' => 592, 'simbol' => 'wednesday_2.png'], - ['id' => 593, 'simbol' => 'wetland.png'], - ['id' => 594, 'simbol' => 'white1.png'], - ['id' => 595, 'simbol' => 'white20.png'], - ['id' => 596, 'simbol' => 'wifi.png'], - ['id' => 597, 'simbol' => 'wifi_2.png'], - ['id' => 598, 'simbol' => 'windmill.png'], - ['id' => 599, 'simbol' => 'windsurfing.png'], - ['id' => 600, 'simbol' => 'windturbine.png'], - ['id' => 601, 'simbol' => 'winery.png'], - ['id' => 602, 'simbol' => 'wineyard.png'], - ['id' => 603, 'simbol' => 'workoffice.png'], - ['id' => 604, 'simbol' => 'world.png'], - ['id' => 605, 'simbol' => 'worldheritagesite.png'], - ['id' => 606, 'simbol' => 'yoga.png'], - ['id' => 607, 'simbol' => 'youthhostel.png'], - ['id' => 608, 'simbol' => 'zipline.png'], - ['id' => 609, 'simbol' => 'zoo.png'], - ['id' => 610, 'simbol' => 'zoo_2.png'], - ]); - - DB::statement(" - CREATE TABLE `line` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `simbol` varchar(50) DEFAULT NULL, - `color` varchar(25) DEFAULT NULL, - `tipe` int(4) DEFAULT 0, - `tebal` int(2) DEFAULT 3, - `jenis` varchar(10) DEFAULT 'solid', - `parrent` int(4) DEFAULT 1, - `enabled` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `parrent` (`parrent`) - ); - "); - - DB::statement(" - CREATE TABLE `lokasi` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `desk` text NOT NULL, - `nama` varchar(50) NOT NULL, - `enabled` int(11) NOT NULL DEFAULT 1, - `lat` varchar(30) DEFAULT NULL, - `lng` varchar(30) DEFAULT NULL, - `ref_point` int(9) NOT NULL, - `foto` varchar(100) DEFAULT NULL, - `id_cluster` int(11) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `ref_point` (`ref_point`) - ); - "); - - DB::statement(" - CREATE TABLE `point` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `simbol` varchar(50) DEFAULT NULL, - `tipe` int(4) DEFAULT 0, - `parrent` int(4) NOT NULL DEFAULT 1, - `enabled` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `parrent` (`parrent`) - ); - "); - - DB::statement(" - CREATE TABLE `polygon` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `simbol` varchar(50) DEFAULT NULL, - `color` varchar(25) DEFAULT NULL, - `tipe` int(4) DEFAULT 0, - `parrent` int(4) DEFAULT 1, - `enabled` int(11) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `parrent` (`parrent`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_web() - { - DB::statement(" - CREATE TABLE `artikel` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `gambar` varchar(200) DEFAULT NULL, - `isi` text NOT NULL, - `enabled` int(2) NOT NULL DEFAULT 1, - `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), - `id_kategori` int(4) NOT NULL, - `id_user` int(4) NOT NULL, - `judul` varchar(100) NOT NULL, - `headline` int(1) NOT NULL DEFAULT 0, - `gambar1` varchar(200) DEFAULT NULL, - `gambar2` varchar(200) DEFAULT NULL, - `gambar3` varchar(200) DEFAULT NULL, - `dokumen` varchar(400) DEFAULT NULL, - `link_dokumen` varchar(200) DEFAULT NULL, - `boleh_komentar` tinyint(1) NOT NULL DEFAULT 1, - `slug` varchar(200) DEFAULT NULL, - `hit` int(11) DEFAULT 0, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `captcha_codes` ( - `id` varchar(40) NOT NULL, - `namespace` varchar(32) NOT NULL, - `code` varchar(32) NOT NULL, - `code_display` varchar(32) NOT NULL, - `created` int(11) NOT NULL, - `audio_data` mediumblob DEFAULT NULL, - PRIMARY KEY (`id`,`namespace`), - KEY `created` (`created`) - ); - "); - - DB::statement(" - CREATE TABLE `gambar_gallery` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `parrent` int(4) DEFAULT 0, - `gambar` varchar(200) NOT NULL, - `nama` varchar(50) NOT NULL, - `enabled` int(2) NOT NULL DEFAULT 1, - `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), - `tipe` int(4) DEFAULT 0, - `slider` tinyint(1) DEFAULT NULL, - `urut` int(5) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `parrent` (`parrent`) - ); - "); - - DB::statement(" - CREATE TABLE `kategori` ( - `id` int(5) NOT NULL AUTO_INCREMENT, - `kategori` varchar(100) NOT NULL, - `tipe` int(4) NOT NULL DEFAULT 1, - `urut` tinyint(4) NOT NULL, - `enabled` tinyint(4) NOT NULL, - `parrent` tinyint(4) NOT NULL DEFAULT 0, - `slug` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `komentar` ( - `id` int(5) NOT NULL AUTO_INCREMENT, - `id_artikel` int(7) NOT NULL, - `owner` varchar(50) NOT NULL, - `email` varchar(50) DEFAULT NULL, - `subjek` tinytext DEFAULT NULL, - `komentar` text NOT NULL, - `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), - `status` tinyint(1) DEFAULT NULL, - `tipe` tinyint(1) DEFAULT NULL, - `no_hp` varchar(15) DEFAULT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `is_archived` tinyint(1) DEFAULT 0, - `permohonan` text DEFAULT NULL, - PRIMARY KEY (`id`) - ) - "); - - DB::statement(" - CREATE TABLE `media_sosial` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `gambar` text NOT NULL, - `link` text DEFAULT NULL, - `nama` varchar(100) NOT NULL, - `tipe` tinyint(1) DEFAULT 1, - `enabled` int(11) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('media_sosial')->insert([ - ['id' => 1, 'gambar' => 'fb.png', 'link' => 'https://www.facebook.com/groups/OpenSID/', 'nama' => 'Facebook', 'tipe' => 1, 'enabled' => 1], - ['id' => 2, 'gambar' => 'twt.png', 'link' => '', 'nama' => 'Twitter', 'tipe' => 1, 'enabled' => 1], - ['id' => 4, 'gambar' => 'yb.png', 'link' => '', 'nama' => 'YouTube', 'tipe' => 1, 'enabled' => 1], - ['id' => 5, 'gambar' => 'ins.png', 'link' => '', 'nama' => 'Instagram', 'tipe' => 1, 'enabled' => 1], - ['id' => 6, 'gambar' => 'wa.png', 'link' => '', 'nama' => 'WhatsApp', 'tipe' => 1, 'enabled' => 1], - ['id' => 7, 'gambar' => 'tg.png', 'link' => NULL, 'nama' => 'Telegram', 'tipe' => 1, 'enabled' => 2], - ]); - - DB::statement(" - CREATE TABLE `menu` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `link` varchar(500) NOT NULL, - `parrent` int(11) DEFAULT 0, - `link_tipe` tinyint(1) NOT NULL DEFAULT 0, - `enabled` tinyint(1) DEFAULT 1, - `urut` int(5) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `pelapak` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pend` int(11) DEFAULT NULL, - `telepon` varchar(20) DEFAULT NULL, - `lat` varchar(20) DEFAULT NULL, - `lng` varchar(20) DEFAULT NULL, - `zoom` tinyint(4) NOT NULL DEFAULT 10, - `status` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `teks_berjalan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `teks` text DEFAULT NULL, - `urut` int(5) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `tautan` varchar(150) DEFAULT NULL, - `judul_tautan` varchar(150) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `urls` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `url` varchar(255) NOT NULL, - `alias` varchar(100) NOT NULL, - `created` datetime NOT NULL, - PRIMARY KEY (`id`), - KEY `alias` (`alias`) - ); - "); - - DB::statement(" - CREATE TABLE `widget` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `isi` text DEFAULT NULL, - `enabled` int(2) DEFAULT NULL, - `judul` varchar(100) DEFAULT NULL, - `jenis_widget` tinyint(2) NOT NULL DEFAULT 3, - `urut` int(5) DEFAULT NULL, - `form_admin` varchar(100) DEFAULT NULL, - `setting` text DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('widget')->insert([ - ['id' => 1, 'isi' => '

      ', 'enabled' => 2, 'judul' => 'Peta Desa', 'jenis_widget' => 3, 'urut' => 1, 'form_admin' => '', 'setting' => ''], - ['id' => 3, 'isi' => 'agenda.php', 'enabled' => 1, 'judul' => 'Agenda', 'jenis_widget' => 1, 'urut' => 6, 'form_admin' => 'web/tab/1000', 'setting' => ''], - ['id' => 4, 'isi' => 'galeri.php', 'enabled' => 1, 'judul' => 'Galeri', 'jenis_widget' => 1, 'urut' => 8, 'form_admin' => 'gallery', 'setting' => ''], - ['id' => 5, 'isi' => 'statistik.php', 'enabled' => 1, 'judul' => 'Statistik', 'jenis_widget' => 1, 'urut' => 4, 'form_admin' => '', 'setting' => ''], - ['id' => 6, 'isi' => 'komentar.php', 'enabled' => 1, 'judul' => 'Komentar', 'jenis_widget' => 1, 'urut' => 10, 'form_admin' => 'komentar', 'setting' => ''], - ['id' => 7, 'isi' => 'media_sosial.php', 'enabled' => 1, 'judul' => 'Media Sosial', 'jenis_widget' => 1, 'urut' => 11, 'form_admin' => 'sosmed', 'setting' => ''], - ['id' => 8, 'isi' => 'peta_lokasi_kantor.php', 'enabled' => 1, 'judul' => 'Peta Lokasi Kantor', 'jenis_widget' => 1, 'urut' => 13, 'form_admin' => 'identitas_desa/maps/kantor', 'setting' => ''], - ['id' => 9, 'isi' => 'statistik_pengunjung.php', 'enabled' => 1, 'judul' => 'Statistik Pengunjung', 'jenis_widget' => 1, 'urut' => 14, 'form_admin' => '', 'setting' => ''], - ['id' => 10, 'isi' => 'arsip_artikel.php', 'enabled' => 1, 'judul' => 'Arsip Artikel', 'jenis_widget' => 1, 'urut' => 5, 'form_admin' => '', 'setting' => ''], - ['id' => 11, 'isi' => 'aparatur_desa.php', 'enabled' => 1, 'judul' => 'Aparatur Desa', 'jenis_widget' => 1, 'urut' => 9, 'form_admin' => 'web_widget/admin/aparatur_desa', 'setting' => '{\"overlay\":\"1\"}'], - ['id' => 12, 'isi' => 'sinergi_program.php', 'enabled' => 1, 'judul' => 'Sinergi Program', 'jenis_widget' => 1, 'urut' => 7, 'form_admin' => 'web_widget/admin/sinergi_program', 'setting' => '[]'], - ['id' => 13, 'isi' => 'menu_kategori.php', 'enabled' => 1, 'judul' => 'Menu Kategori', 'jenis_widget' => 1, 'urut' => 2, 'form_admin' => '', 'setting' => ''], - ['id' => 14, 'isi' => 'peta_wilayah_desa.php', 'enabled' => 1, 'judul' => 'Peta Wilayah Desa', 'jenis_widget' => 1, 'urut' => 12, 'form_admin' => 'identitas_desa/maps/wilayah', 'setting' => ''], - ['id' => 15, 'isi' => 'keuangan.php', 'enabled' => 1, 'judul' => 'Keuangan', 'jenis_widget' => 1, 'urut' => 15, 'form_admin' => 'keuangan/impor_data', 'setting' => ''], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_pertanahan() - { - DB::statement(" - CREATE TABLE `cdesa` ( - `id` int(5) unsigned NOT NULL AUTO_INCREMENT, - `nomor` varchar(20) NOT NULL, - `nama_kepemilikan` varchar(100) NOT NULL, - `jenis_pemilik` tinyint(1) NOT NULL DEFAULT 0, - `nama_pemilik_luar` varchar(100) DEFAULT NULL, - `alamat_pemilik_luar` varchar(200) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `nomor` (`nomor`) - ); - "); - - DB::statement(" - CREATE TABLE `persil` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `nomor` varchar(20) NOT NULL, - `nomor_urut_bidang` smallint(6) DEFAULT 1, - `kelas` int(5) NOT NULL, - `luas_persil` decimal(7,0) DEFAULT NULL, - `id_wilayah` int(11) DEFAULT NULL, - `lokasi` text DEFAULT NULL, - `path` text DEFAULT NULL, - `cdesa_awal` int(11) unsigned DEFAULT NULL, - `id_peta` int(60) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `nomor_nomor_urut_bidang` (`nomor`,`nomor_urut_bidang`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_persil_kelas` ( - `id` int(5) unsigned NOT NULL AUTO_INCREMENT, - `tipe` varchar(20) NOT NULL, - `kode` varchar(20) NOT NULL, - `ndesc` text DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_persil_kelas')->insert([ - ['id' => 1, 'tipe' => 'BASAH', 'kode' => 'S-I', 'ndesc' => 'Persawahan Dekat dengan Pemukiman'], - ['id' => 2, 'tipe' => 'BASAH', 'kode' => 'S-II', 'ndesc' => 'Persawahan Agak Dekat dengan Pemukiman'], - ['id' => 3, 'tipe' => 'BASAH', 'kode' => 'S-III', 'ndesc' => 'Persawahan Jauh dengan Pemukiman'], - ['id' => 4, 'tipe' => 'BASAH', 'kode' => 'S-IV', 'ndesc' => 'Persawahan Sangat Jauh dengan Pemukiman'], - ['id' => 5, 'tipe' => 'KERING', 'kode' => 'D-I', 'ndesc' => 'Lahan Kering Dekat dengan Pemukiman'], - ['id' => 6, 'tipe' => 'KERING', 'kode' => 'D-II', 'ndesc' => 'Lahan Kering Agak Dekat dengan Pemukiman'], - ['id' => 7, 'tipe' => 'KERING', 'kode' => 'D-III', 'ndesc' => 'Lahan Kering Jauh dengan Pemukiman'], - ['id' => 8, 'tipe' => 'KERING', 'kode' => 'D-IV', 'ndesc' => 'Lahan Kering Sanga Jauh dengan Pemukiman'], - ]); - - DB::statement(" - CREATE TABLE `ref_persil_mutasi` ( - `id` tinyint(5) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(20) NOT NULL, - `ndesc` text DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_persil_mutasi')->insert([ - ['id' => 1, 'nama' => 'Jual Beli', 'ndesc' => 'Didapat dari proses Jual Beli'], - ['id' => 2, 'nama' => 'Hibah', 'ndesc' => 'Didapat dari proses Hibah'], - ['id' => 3, 'nama' => 'Waris', 'ndesc' => 'Didapat dari proses Waris'], - ]); - - DB::statement(" - CREATE TABLE `tanah_desa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_penduduk` int(10) NOT NULL, - `nik` decimal(16,0) DEFAULT NULL, - `jenis_pemilik` text DEFAULT NULL, - `nama_pemilik_asal` varchar(200) NOT NULL, - `luas` int(10) NOT NULL, - `hak_milik` int(11) DEFAULT NULL, - `hak_guna_bangunan` int(11) DEFAULT NULL, - `hak_pakai` int(11) DEFAULT NULL, - `hak_guna_usaha` int(11) DEFAULT NULL, - `hak_pengelolaan` int(11) DEFAULT NULL, - `hak_milik_adat` int(11) DEFAULT NULL, - `hak_verponding` int(11) DEFAULT NULL, - `tanah_negara` int(11) DEFAULT NULL, - `perumahan` int(11) DEFAULT NULL, - `perdagangan_jasa` int(11) DEFAULT NULL, - `perkantoran` int(11) DEFAULT NULL, - `industri` int(11) DEFAULT NULL, - `fasilitas_umum` int(11) DEFAULT NULL, - `sawah` int(11) DEFAULT NULL, - `tegalan` int(11) DEFAULT NULL, - `perkebunan` int(11) DEFAULT NULL, - `peternakan_perikanan` int(11) DEFAULT NULL, - `hutan_belukar` int(11) DEFAULT NULL, - `hutan_lebat_lindung` int(11) DEFAULT NULL, - `tanah_kosong` int(11) DEFAULT NULL, - `lain` int(11) DEFAULT NULL, - `mutasi` text NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(10) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(10) NOT NULL, - `visible` tinyint(3) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `id_penduduk` (`id_penduduk`) - ); - "); - - DB::statement(" - CREATE TABLE `tanah_kas_desa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_pemilik_asal` varchar(200) NOT NULL, - `letter_c` text NOT NULL, - `kelas` text NOT NULL, - `luas` int(10) NOT NULL, - `asli_milik_desa` int(11) DEFAULT NULL, - `pemerintah` int(11) DEFAULT NULL, - `provinsi` int(11) DEFAULT NULL, - `kabupaten_kota` int(11) DEFAULT NULL, - `lain_lain` int(11) DEFAULT NULL, - `sawah` int(11) DEFAULT NULL, - `tegal` int(11) DEFAULT NULL, - `kebun` int(11) DEFAULT NULL, - `tambak_kolam` int(11) DEFAULT NULL, - `tanah_kering_darat` int(11) DEFAULT NULL, - `ada_patok` int(11) DEFAULT NULL, - `tidak_ada_patok` int(11) DEFAULT NULL, - `ada_papan_nama` int(11) DEFAULT NULL, - `tidak_ada_papan_nama` int(11) DEFAULT NULL, - `tanggal_perolehan` date DEFAULT NULL, - `lokasi` text NOT NULL, - `peruntukan` text NOT NULL, - `mutasi` text NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(10) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(10) NOT NULL, - `visible` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_desa() - { - DB::statement(" - CREATE TABLE `config` ( - `id` int(5) NOT NULL AUTO_INCREMENT, - `nama_desa` varchar(100) NOT NULL, - `kode_desa` varchar(100) NOT NULL, - `kode_pos` int(5) DEFAULT NULL, - `nama_kecamatan` varchar(100) NOT NULL, - `kode_kecamatan` varchar(100) NOT NULL, - `nama_kepala_camat` varchar(100) NOT NULL, - `nip_kepala_camat` varchar(100) NOT NULL, - `nama_kabupaten` varchar(100) NOT NULL, - `kode_kabupaten` varchar(100) NOT NULL, - `nama_propinsi` varchar(100) NOT NULL, - `kode_propinsi` varchar(100) NOT NULL, - `logo` varchar(100) DEFAULT NULL, - `lat` varchar(20) DEFAULT NULL, - `lng` varchar(20) DEFAULT NULL, - `zoom` tinyint(4) DEFAULT NULL, - `map_tipe` varchar(20) DEFAULT NULL, - `path` text DEFAULT NULL, - `alamat_kantor` varchar(200) DEFAULT NULL, - `email_desa` varchar(50) DEFAULT NULL, - `telepon` varchar(50) DEFAULT NULL, - `website` varchar(100) DEFAULT NULL, - `kantor_desa` varchar(100) DEFAULT NULL, - `warna` varchar(25) DEFAULT NULL, - `pamong_id` int(11) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_wil_clusterdesa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `rt` varchar(10) NOT NULL DEFAULT '0', - `rw` varchar(10) NOT NULL DEFAULT '0', - `dusun` varchar(50) NOT NULL DEFAULT '0', - `id_kepala` int(11) DEFAULT NULL, - `lat` varchar(20) DEFAULT NULL, - `lng` varchar(20) DEFAULT NULL, - `zoom` int(11) DEFAULT NULL, - `path` text DEFAULT NULL, - `map_tipe` varchar(20) DEFAULT NULL, - `warna` varchar(25) DEFAULT NULL, - `urut` int(11) DEFAULT NULL, - `urut_cetak` int(11) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `rt` (`rt`,`rw`,`dusun`), - KEY `id_kepala` (`id_kepala`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_covid19() - { - DB::statement(" - CREATE TABLE `covid19_vaksin` ( - `id_penduduk` varchar(100) NOT NULL, - `vaksin_1` int(1) DEFAULT NULL, - `tgl_vaksin_1` date DEFAULT NULL, - `dokumen_vaksin_1` varchar(255) DEFAULT NULL, - `jenis_vaksin_1` varchar(100) DEFAULT NULL, - `vaksin_2` int(1) DEFAULT NULL, - `tgl_vaksin_2` date DEFAULT NULL, - `dokumen_vaksin_2` varchar(255) DEFAULT NULL, - `jenis_vaksin_2` varchar(100) DEFAULT NULL, - `vaksin_3` int(1) DEFAULT NULL, - `tgl_vaksin_3` date DEFAULT NULL, - `dokumen_vaksin_3` varchar(255) DEFAULT NULL, - `jenis_vaksin_3` varchar(100) DEFAULT NULL, - `tunda` int(1) DEFAULT NULL, - `keterangan` tinytext DEFAULT NULL, - `surat_dokter` varchar(255) DEFAULT NULL, - PRIMARY KEY (`id_penduduk`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_status_covid` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_status_covid')->insert([ - ['id' => 1, 'nama' => 'Kasus Suspek'], - ['id' => 2, 'nama' => 'Kasus Probable'], - ['id' => 3, 'nama' => 'Kasus Konfirmasi'], - ['id' => 4, 'nama' => 'Kontak Erat'], - ['id' => 5, 'nama' => 'Pelaku Perjalanan'], - ['id' => 6, 'nama' => 'Discarded'], - ['id' => 7, 'nama' => 'Selesai Isolasi'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - return ; - } - - private function tabel_penduduk() - { - DB::statement(" - CREATE TABLE `kelompok` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_master` int(11) NOT NULL, - `id_ketua` int(11) NOT NULL, - `nama` varchar(50) NOT NULL, - `slug` varchar(255) DEFAULT NULL, - `keterangan` varchar(300) DEFAULT NULL, - `kode` varchar(16) NOT NULL, - `tipe` varchar(100) DEFAULT 'kelompok', - PRIMARY KEY (`id`), - UNIQUE KEY `kode` (`kode`), - UNIQUE KEY `slug` (`slug`), - KEY `id_ketua` (`id_ketua`), - KEY `id_master` (`id_master`) - ); - "); - - DB::statement(" - CREATE TABLE `kelompok_master` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `kelompok` varchar(50) NOT NULL, - `deskripsi` varchar(400) NOT NULL, - `tipe` varchar(100) DEFAULT 'kelompok', - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `log_hapus_penduduk` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pend` int(11) NOT NULL, - `nik` decimal(16,0) NOT NULL, - `foto` varchar(100) DEFAULT NULL, - `deleted_by` varchar(100) DEFAULT NULL, - `deleted_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `log_perubahan_penduduk` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pend` int(11) NOT NULL, - `id_cluster` varchar(200) NOT NULL, - `tanggal` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_penduduk_bahasa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `inisial` varchar(10) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - DB::table('ref_penduduk_bahasa')->insert([ - ['id' => 1, 'nama' => 'Latin', 'inisial' => 'L'], - ['id' => 2, 'nama' => 'Daerah', 'inisial' => 'D'], - ['id' => 3, 'nama' => 'Arab', 'inisial' => 'A'], - ['id' => 4, 'nama' => 'Arab dan Latin', 'inisial' => 'AL'], - ['id' => 5, 'nama' => 'Arab dan Daerah', 'inisial' => 'AD'], - ['id' => 6, 'nama' => 'Arab, Latin dan Daerah', 'inisial' => 'ALD'], - ]); - - DB::statement(" - CREATE TABLE `ref_penduduk_bidang` ( - `id` int(12) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_penduduk_bidang')->insert([ - ['id' => 1, 'nama' => 'Service Komputer'], - ['id' => 2, 'nama' => 'Operator Buldoser'], - ['id' => 3, 'nama' => 'Operator Komputer'], - ['id' => 4, 'nama' => 'Operator Genset'], - ['id' => 5, 'nama' => 'Service HP'], - ['id' => 6, 'nama' => 'Rias Pengantin'], - ['id' => 7, 'nama' => 'Design Grafis'], - ['id' => 8, 'nama' => 'Menjahit'], - ['id' => 9, 'nama' => 'Menulis'], - ['id' => 10, 'nama' => 'Reporter'], - ['id' => 11, 'nama' => 'Sosial Media Manajer'], - ['id' => 12, 'nama' => 'Manajemen Trainee'], - ['id' => 13, 'nama' => 'Kasir'], - ['id' => 14, 'nama' => 'HRD'], - ['id' => 15, 'nama' => 'Guru'], - ['id' => 16, 'nama' => 'Digital Marketing'], - ['id' => 17, 'nama' => 'Customer Services'], - ['id' => 18, 'nama' => 'Welder'], - ['id' => 19, 'nama' => 'Mekanik Alat Berat'], - ['id' => 20, 'nama' => 'Teknisi Listrik'], - ['id' => 21, 'nama' => 'Internet Marketing'], - ]); - - DB::statement(" - CREATE TABLE `ref_penduduk_hamil` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_penduduk_hamil')->insert([ - ['id' => 1, 'nama' => 'Hamil'], - ['id' => 2, 'nama' => 'Tidak Hamil'], - ]); - - DB::statement(" - CREATE TABLE `ref_penduduk_kursus` ( - `id` int(12) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_penduduk_kursus')->insert([ - ['id' => 1, 'nama' => 'Kursus Komputer'], - ['id' => 2, 'nama' => 'Kursus Menjahit'], - ['id' => 3, 'nama' => 'Pelatihan Kelistrikan'], - ['id' => 4, 'nama' => 'Kursus Mekanik Motor'], - ['id' => 5, 'nama' => 'Pelatihan Security'], - ['id' => 6, 'nama' => 'Kursus Otomotif'], - ['id' => 7, 'nama' => 'Kursus Bahasa Inggris'], - ['id' => 8, 'nama' => 'Kursus Tata Kecantikan Kulit'], - ['id' => 9, 'nama' => 'Kursus Megemudi'], - ['id' => 10, 'nama' => 'Kursus Tata Boga'], - ['id' => 11, 'nama' => 'Kursus Meubeler'], - ['id' => 12, 'nama' => 'Kursus Las'], - ['id' => 13, 'nama' => 'Kursus Sablon'], - ['id' => 14, 'nama' => 'Kursus Penerbangan'], - ['id' => 15, 'nama' => 'Kursus Desain Interior'], - ['id' => 16, 'nama' => 'Kursus Teknisi HP'], - ['id' => 17, 'nama' => 'Kursus Garment'], - ['id' => 18, 'nama' => 'Kursus Akupuntur'], - ['id' => 19, 'nama' => 'Kursus Senam'], - ['id' => 20, 'nama' => 'Kursus Pendidik PAUD'], - ['id' => 21, 'nama' => 'Kursus Baby Sitter'], - ['id' => 22, 'nama' => 'Kursus Desain Grafis'], - ['id' => 23, 'nama' => 'Kursus Bahasa Indonesia'], - ['id' => 24, 'nama' => 'Kursus Photografi'], - ['id' => 25, 'nama' => 'Kursus Expor Impor'], - ['id' => 26, 'nama' => 'Kursus Jurnalistik'], - ['id' => 27, 'nama' => 'Kursus Bahasa Arab'], - ['id' => 28, 'nama' => 'Kursus Bahasa Jepang'], - ['id' => 29, 'nama' => 'Kursus Anak Buah Kapal'], - ['id' => 30, 'nama' => 'Kursus Refleksi'], - ['id' => 31, 'nama' => 'Kursus Akupuntur'], - ['id' => 32, 'nama' => 'Kursus Perhotelan'], - ['id' => 33, 'nama' => 'Kursus Tata Rias'], - ['id' => 34, 'nama' => 'Kursus Administrasi Perkantoran'], - ['id' => 35, 'nama' => 'Kursus Broadcasting'], - ['id' => 36, 'nama' => 'Kursus Kerajinan Tangan'], - ['id' => 37, 'nama' => 'Kursus Sosial Media Marketing'], - ['id' => 38, 'nama' => 'Kursus Internet Marketing'], - ['id' => 39, 'nama' => 'Kursus Sekretaris'], - ['id' => 40, 'nama' => 'Kursus Perpajakan'], - ['id' => 41, 'nama' => 'Kursus Publik Speaking'], - ['id' => 42, 'nama' => 'Kursus Publik Relation'], - ['id' => 43, 'nama' => 'Kursus Batik'], - ['id' => 44, 'nama' => 'Kursus Pengobatan Tradisional'], - ]); - - DB::statement(" - CREATE TABLE `ref_penduduk_suku` ( - `id` int(65) unsigned NOT NULL AUTO_INCREMENT, - `suku` varchar(100) NOT NULL, - `deskripsi` text NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_penduduk_suku')->insert([ - ['id' => 1, 'suku' => 'Aceh', 'deskripsi' => 'Aceh'], - ['id' => 2, 'suku' => 'Alas', 'deskripsi' => 'Aceh'], - ['id' => 3, 'suku' => 'Alor', 'deskripsi' => 'NTT'], - ['id' => 4, 'suku' => 'Ambon', 'deskripsi' => 'Ambon'], - ['id' => 5, 'suku' => 'Ampana', 'deskripsi' => 'Sulawesi Tengah'], - ['id' => 6, 'suku' => 'Anak Dalam', 'deskripsi' => 'Jambi'], - ['id' => 7, 'suku' => 'Aneuk Jamee', 'deskripsi' => 'Aceh'], - ['id' => 8, 'suku' => 'Arab: Orang Hadhrami', 'deskripsi' => 'Arab: Orang Hadhrami'], - ['id' => 9, 'suku' => 'Aru', 'deskripsi' => 'Maluku'], - ['id' => 10, 'suku' => 'Asmat', 'deskripsi' => 'Papua'], - ['id' => 11, 'suku' => 'Bare’e', 'deskripsi' => 'Bare’e di Kabupaten Tojo Una-Una Tojo dan Tojo Barat'], - ['id' => 12, 'suku' => 'Banten', 'deskripsi' => 'Banten di Banten'], - ['id' => 13, 'suku' => 'Besemah', 'deskripsi' => 'Besemah di Sumatera Selatan'], - ['id' => 14, 'suku' => 'Bali', 'deskripsi' => 'Bali di Bali terdiri dari: Suku Bali Majapahit di sebagian besar Pulau Bali; Suku Bali Aga di Karangasem dan Kintamani'], - ['id' => 15, 'suku' => 'Balantak', 'deskripsi' => 'Balantak di Sulawesi Tengah'], - ['id' => 16, 'suku' => 'Banggai', 'deskripsi' => 'Banggai di Sulawesi Tengah (Kabupaten Banggai Kepulauan)'], - ['id' => 17, 'suku' => 'Baduy', 'deskripsi' => 'Baduy di Banten'], - ['id' => 18, 'suku' => 'Bajau', 'deskripsi' => 'Bajau di Kalimantan Timur'], - ['id' => 19, 'suku' => 'Banjar', 'deskripsi' => 'Banjar di Kalimantan Selatan'], - ['id' => 20, 'suku' => 'Batak', 'deskripsi' => 'Sumatera Utara'], - ['id' => 21, 'suku' => 'Batak Karo', 'deskripsi' => 'Sumatera Utara'], - ['id' => 22, 'suku' => 'Mandailing', 'deskripsi' => 'Sumatera Utara'], - ['id' => 23, 'suku' => 'Angkola', 'deskripsi' => 'Sumatera Utara'], - ['id' => 24, 'suku' => 'Toba', 'deskripsi' => 'Sumatera Utara'], - ['id' => 25, 'suku' => 'Pakpak', 'deskripsi' => 'Sumatera Utara'], - ['id' => 26, 'suku' => 'Simalungun', 'deskripsi' => 'Sumatera Utara'], - ['id' => 27, 'suku' => 'Batin', 'deskripsi' => 'Batin di Jambi'], - ['id' => 28, 'suku' => 'Bawean', 'deskripsi' => 'Bawean di Jawa Timur (Gresik)'], - ['id' => 29, 'suku' => 'Bentong', 'deskripsi' => 'Bentong di Sulawesi Selatan'], - ['id' => 30, 'suku' => 'Berau', 'deskripsi' => 'Berau di Kalimantan Timur (kabupaten Berau)'], - ['id' => 31, 'suku' => 'Betawi', 'deskripsi' => 'Betawi di Jakarta'], - ['id' => 32, 'suku' => 'Bima', 'deskripsi' => 'Bima NTB (kota Bima)'], - ['id' => 33, 'suku' => 'Boti', 'deskripsi' => 'Boti di kabupaten Timor Tengah Selatan'], - ['id' => 34, 'suku' => 'Bolang Mongondow', 'deskripsi' => 'Bolang Mongondow di Sulawesi Utara (Kabupaten Bolaang Mongondow)'], - ['id' => 35, 'suku' => 'Bugis', 'deskripsi' => 'Bugis di Sulawesi Selatan: Orang Bugis Pagatan di Kalimantan Selatan, Kusan Hilir, Tanah Bumbu'], - ['id' => 36, 'suku' => 'Bungku', 'deskripsi' => 'Bungku di Sulawesi Tengah (Kabupaten Morowali)'], - ['id' => 37, 'suku' => 'Buru', 'deskripsi' => 'Buru di Maluku (Kabupaten Buru)'], - ['id' => 38, 'suku' => 'Buol', 'deskripsi' => 'Buol di Sulawesi Tengah (Kabupaten Buol)'], - ['id' => 39, 'suku' => 'Bulungan ', 'deskripsi' => 'Bulungan di Kalimantan Timur (Kabupaten Bulungan)'], - ['id' => 40, 'suku' => 'Buton', 'deskripsi' => 'Buton di Sulawesi Tenggara (Kabupaten Buton dan Kota Bau-Bau)'], - ['id' => 41, 'suku' => 'Bonai', 'deskripsi' => 'Bonai di Riau (Kabupaten Rokan Hilir)'], - ['id' => 42, 'suku' => 'Cham ', 'deskripsi' => 'Cham di Aceh'], - ['id' => 43, 'suku' => 'Cirebon ', 'deskripsi' => 'Cirebon di Jawa Barat (Kota Cirebon)'], - ['id' => 44, 'suku' => 'Damal', 'deskripsi' => 'Damal di Mimika'], - ['id' => 45, 'suku' => 'Dampeles', 'deskripsi' => 'Dampeles di Sulawesi Tengah'], - ['id' => 46, 'suku' => 'Dani ', 'deskripsi' => 'Dani di Papua (Lembah Baliem)'], - ['id' => 47, 'suku' => 'Dairi', 'deskripsi' => 'Dairi di Sumatera Utara'], - ['id' => 48, 'suku' => 'Daya ', 'deskripsi' => 'Daya di Sumatera Selatan'], - ['id' => 49, 'suku' => 'Dayak', 'deskripsi' => 'Dayak terdiri dari: Suku Dayak Ahe di Kalimantan Barat; Suku Dayak Bajare di Kalimantan Barat; Suku Dayak Damea di Kalimantan Barat; Suku Dayak Banyadu di Kalimantan Barat; Suku Bakati di Kalimantan Barat; Suku Punan di Kalimantan Tengah; Suku Kanayatn di Kalimantan Barat; Suku Dayak Krio di Kalimantan Barat (Ketapang], Suku Dayak Sungai Laur di Kalimantan Barat (Ketapang], Suku Dayak Simpangh di Kalimantan Barat (Ketapang], Suku Iban di Kalimantan Barat; Suku Mualang di Kalimantan Barat (Sekada'], - ['id' => 50, 'suku' => 'Dompu', 'deskripsi' => 'Dompu NTB (Kabupaten Dompu)'], - ['id' => 51, 'suku' => 'Donggo', 'deskripsi' => 'Donggo, Bima'], - ['id' => 52, 'suku' => 'Dongga', 'deskripsi' => 'Donggala di Sulawesi Tengah'], - ['id' => 53, 'suku' => 'Dondo ', 'deskripsi' => 'Dondo di Sulawesi Tengah (Kabupaten Toli-Toli)'], - ['id' => 54, 'suku' => 'Duri', 'deskripsi' => 'Duri Terletak di bagian utara Kabupaten Enrekang berbatasan dengan Kabupaten Tana Toraja, meliputi tiga kecamatan induk Anggeraja, Baraka, dan Alla di Sulawesi Selatan'], - ['id' => 55, 'suku' => 'Eropa ', 'deskripsi' => 'Eropa (orang Indo, peranakan Eropa-Indonesia, atau etnik Mestizo)'], - ['id' => 56, 'suku' => 'Flores', 'deskripsi' => 'Flores di NTT (Flores Timur)'], - ['id' => 57, 'suku' => 'Lamaholot', 'deskripsi' => 'Lamaholot, Flores Timur, terdiri dari: Suku Wandan, di Solor Timur, Flores Timur; Suku Kaliha, di Solor Timur, Flores Timur; Suku Serang Gorang, di Solor Timur, Flores Timur; Suku Lamarobak, di Solor Timur, Flores Timur; Suku Atanuhan, di Solor Timur, Flores Timur; Suku Wotan, di Solor Timur, Flores Timur; Suku Kapitan Belen, di Solor Timur, Flores Timur'], - ['id' => 58, 'suku' => 'Gayo', 'deskripsi' => 'Gayo di Aceh (Gayo Lues Aceh Tengah Bener Meriah Aceh Tenggara Aceh Timur Aceh Tamiang)'], - ['id' => 59, 'suku' => 'Gorontalo', 'deskripsi' => 'Gorontalo di Gorontalo (Kota Gorontalo)'], - ['id' => 60, 'suku' => 'Gumai ', 'deskripsi' => 'Gumai di Sumatera Selatan (Lahat)'], - ['id' => 61, 'suku' => 'India', 'deskripsi' => 'India, terdiri dari: Suku Tamil di Aceh, Sumatera Utara, Sumatera Barat, dan DKI Jakarta; Suku Punjab di Sumatera Utara, DKI Jakarta, dan Jawa Timur; Suku Bengali di DKI Jakarta; Suku Gujarati di DKI Jakarta dan Jawa Tengah; Orang Sindhi di DKI Jakarta dan Jawa Timur; Orang Sikh di Sumatera Utara, DKI Jakarta, dan Jawa Timur'], - ['id' => 62, 'suku' => 'Jawa', 'deskripsi' => 'Jawa di Jawa Tengah, Jawa Timur, DI Yogyakarta'], - ['id' => 63, 'suku' => 'Tengger', 'deskripsi' => 'Tengger di Jawa Timur (Probolinggo, Pasuruan, dan Malang)'], - ['id' => 64, 'suku' => 'Osing ', 'deskripsi' => 'Osing di Jawa Timur (Banyuwangi)'], - ['id' => 65, 'suku' => 'Samin ', 'deskripsi' => 'Samin di Jawa Tengah (Purwodadi)'], - ['id' => 66, 'suku' => 'Bawean', 'deskripsi' => 'Bawean di Jawa Timur (Pulau Bawean)'], - ['id' => 67, 'suku' => 'Jambi ', 'deskripsi' => 'Jambi di Jambi (Kota Jambi)'], - ['id' => 68, 'suku' => 'Jepang', 'deskripsi' => 'Jepang di DKI Jakarta, Jawa Timur, dan Bali'], - ['id' => 69, 'suku' => 'Kei', 'deskripsi' => 'Kei di Maluku Tenggara (Kabupaten Maluku Tenggara dan Kota Tual)'], - ['id' => 70, 'suku' => 'Kaili ', 'deskripsi' => 'Kaili di Sulawesi Tengah (Kota Palu)'], - ['id' => 71, 'suku' => 'Kampar', 'deskripsi' => 'Kampar'], - ['id' => 72, 'suku' => 'Kaur ', 'deskripsi' => 'Kaur di Bengkulu (Kabupaten Kaur)'], - ['id' => 73, 'suku' => 'Kayu Agung', 'deskripsi' => 'Kayu Agung di Sumatera Selatan'], - ['id' => 74, 'suku' => 'Kerinci', 'deskripsi' => 'Kerinci di Jambi (Kabupaten Kerinci)'], - ['id' => 75, 'suku' => 'Komering ', 'deskripsi' => 'Komering di Sumatera Selatan (Kabupaten Ogan Komering Ilir, Baturaja)'], - ['id' => 76, 'suku' => 'Konjo Pegunungan', 'deskripsi' => 'Konjo Pegunungan, Kabupaten Gowa, Sulawesi Selatan'], - ['id' => 77, 'suku' => 'Konjo Pesisir', 'deskripsi' => 'Konjo Pesisir, Kabupaten Bulukumba, Sulawesi Selatan'], - ['id' => 78, 'suku' => 'Koto', 'deskripsi' => 'Koto di Sumatera Barat'], - ['id' => 79, 'suku' => 'Kubu', 'deskripsi' => 'Kubu di Jambi dan Sumatera Selatan'], - ['id' => 80, 'suku' => 'Kulawi', 'deskripsi' => 'Kulawi di Sulawesi Tengah'], - ['id' => 81, 'suku' => 'Kutai ', 'deskripsi' => 'Kutai di Kalimantan Timur (Kutai Kartanegara)'], - ['id' => 82, 'suku' => 'Kluet ', 'deskripsi' => 'Kluet di Aceh (Aceh Selatan)'], - ['id' => 83, 'suku' => 'Korea ', 'deskripsi' => 'Korea di DKI Jakarta'], - ['id' => 84, 'suku' => 'Krui', 'deskripsi' => 'Krui di Lampung'], - ['id' => 85, 'suku' => 'Laut,', 'deskripsi' => 'Laut, Kepulauan Riau'], - ['id' => 86, 'suku' => 'Lampung', 'deskripsi' => 'Lampung, terdiri dari: Suku Sungkai di Lampung; Suku Abung di Lampung; Suku Way Kanan di Lampung, Sumatera Selatan dan Bengkulu; Suku Pubian di Lampung; Suku Tulang Bawang di Lampung; Suku Melinting di Lampung; Suku Peminggir Teluk di Lampung; Suku Ranau di Lampung, Sumatera Selatan dan Sumatera Utara; Suku Komering di Sumatera Selatan; Suku Cikoneng di Banten; Suku Merpas di Bengkulu; Suku Belalau di Lampung; Suku Smoung di Lampung; Suku Semaka di Lampung'], - ['id' => 87, 'suku' => 'Lematang ', 'deskripsi' => 'Lematang di Sumatera Selatan'], - ['id' => 88, 'suku' => 'Lembak', 'deskripsi' => 'Lembak, Kabupaten Rejang Lebong, Bengkulu'], - ['id' => 89, 'suku' => 'Lintang', 'deskripsi' => 'Lintang, Sumatera Selatan'], - ['id' => 90, 'suku' => 'Lom', 'deskripsi' => 'Lom, Bangka Belitung'], - ['id' => 91, 'suku' => 'Lore', 'deskripsi' => 'Lore, Sulawesi Tengah'], - ['id' => 92, 'suku' => 'Lubu', 'deskripsi' => 'Lubu, daerah perbatasan antara Provinsi Sumatera Utara dan Provinsi Sumatera Barat'], - ['id' => 93, 'suku' => 'Moronene', 'deskripsi' => 'Moronene di Sulawesi Tenggara.'], - ['id' => 94, 'suku' => 'Madura', 'deskripsi' => 'Madura di Jawa Timur (Pulau Madura, Kangean, wilayah Tapal Kuda)'], - ['id' => 95, 'suku' => 'Makassar', 'deskripsi' => 'Makassar di Sulawesi Selatan: Kabupaten Gowa, Kabupaten Takalar, Kabupaten Jeneponto, Kabupaten Bantaeng, Kabupaten Bulukumba (sebagian), Kabupaten Sinjai (bagian perbatasan Kab Gowa), Kabupaten Maros (sebagian), Kabupaten Pangkep (sebagian), Kota Makassar'], - ['id' => 96, 'suku' => 'Mamasa', 'deskripsi' => 'Mamasa (Toraja Barat) di Sulawesi Barat: Kabupaten Mamasa'], - ['id' => 97, 'suku' => 'Manda', 'deskripsi' => 'Mandar Sulawesi Barat: Polewali Mandar'], - ['id' => 98, 'suku' => 'Melayu', 'deskripsi' => 'Melayu, terdiri dari Suku Melayu Tamiang di Aceh (Aceh Tamiang], Suku Melayu Riau di Riau dan Kepulauan Riau; Suku Melayu Deli di Sumatera Utara; Suku Melayu Jambi di Jambi; Suku Melayu Bangka di Pulau Bangka; Suku Melayu Belitung di Pulau Belitung; Suku Melayu Sambas di Kalimantan Barat'], - ['id' => 99, 'suku' => 'Mentawai', 'deskripsi' => 'Mentawai di Sumatera Barat (Kabupaten Kepulauan Mentawai)'], - ['id' => 100, 'suku' => 'Minahasa', 'deskripsi' => 'Minahasa di Sulawesi Utara (Kabupaten Minahasa), terdiri 9 subetnik : Suku Babontehu; Suku Bantik; Suku Pasan Ratahan'], - ['id' => 101, 'suku' => 'Ponosakan', 'deskripsi' => 'Ponosakan; Suku Tonsea; Suku Tontemboan; Suku Toulour; Suku Tonsawang; Suku Tombulu'], - ['id' => 102, 'suku' => 'Minangkabau', 'deskripsi' => 'Minangkabau, Sumatera Barat'], - ['id' => 103, 'suku' => 'Mongondow', 'deskripsi' => 'Mongondow, Sulawesi Utara'], - ['id' => 104, 'suku' => 'Mori', 'deskripsi' => 'Mori, Kabupaten Morowali, Sulawesi Tengah'], - ['id' => 105, 'suku' => 'Muko-Muko', 'deskripsi' => 'Muko-Muko di Bengkulu (Kabupaten Mukomuko)'], - ['id' => 106, 'suku' => 'Muna', 'deskripsi' => 'Muna di Sulawesi Tenggara (Kabupaten Muna)'], - ['id' => 107, 'suku' => 'Muyu', 'deskripsi' => 'Muyu di Kabupaten Boven Digoel, Papua'], - ['id' => 108, 'suku' => 'Mekongga', 'deskripsi' => 'Mekongga di Sulawesi Tenggara (Kabupaten Kolaka dan Kabupaten Kolaka Utara)'], - ['id' => 109, 'suku' => 'Moro', 'deskripsi' => 'Moro di Kalimantan Barat dan Kalimantan Utara'], - ['id' => 110, 'suku' => 'Nias', 'deskripsi' => 'Nias di Sumatera Utara (Kabupaten Nias, Nias Selatan dan Nias Utara dari dua keturunan Jepang dan Vietnam)'], - ['id' => 111, 'suku' => 'Ngada ', 'deskripsi' => 'Ngada di NTT: Kabupaten Ngada'], - ['id' => 112, 'suku' => 'Osing', 'deskripsi' => 'Osing di Banyuwangi Jawa Timur'], - ['id' => 113, 'suku' => 'Ogan', 'deskripsi' => 'Ogan di Sumatera Selatan'], - ['id' => 114, 'suku' => 'Ocu', 'deskripsi' => 'Ocu di Kabupaten Kampar, Riau'], - ['id' => 115, 'suku' => 'Padoe', 'deskripsi' => 'Padoe di Sulawesi Tengah dan Sulawesi Selatan'], - ['id' => 116, 'suku' => 'Papua', 'deskripsi' => 'Papua / Irian, terdiri dari: Suku Asmat di Kabupaten Asmat; Suku Biak di Kabupaten Biak Numfor; Suku Dani, Lembah Baliem, Papua; Suku Ekagi, daerah Paniai, Abepura, Papua; Suku Amungme di Mimika; Suku Bauzi, Mamberamo hilir, Papua utara; Suku Arfak di Manokwari; Suku Kamoro di Mimika'], - ['id' => 117, 'suku' => 'Palembang', 'deskripsi' => 'Palembang di Sumatera Selatan (Kota Palembang)'], - ['id' => 118, 'suku' => 'Pamona', 'deskripsi' => 'Pamona di Sulawesi Tengah (Kabupaten Poso) dan di Sulawesi Selatan'], - ['id' => 119, 'suku' => 'Pesisi', 'deskripsi' => 'Pesisi di Sumatera Utara (Tapanuli Tengah)'], - ['id' => 120, 'suku' => 'Pasir', 'deskripsi' => 'Pasir di Kalimantan Timur (Kabupaten Pasir)'], - ['id' => 121, 'suku' => 'Pubian', 'deskripsi' => 'Pubian di Lampung'], - ['id' => 122, 'suku' => 'Pattae', 'deskripsi' => 'Pattae di Polewali Mandar'], - ['id' => 123, 'suku' => 'Pakistani', 'deskripsi' => 'Pakistani di Sumatera Utara, DKI Jakarta, dan Jawa Tengah'], - ['id' => 124, 'suku' => 'Peranakan', 'deskripsi' => 'Peranakan (Tionghoa-Peranakan atau Baba Nyonya)'], - ['id' => 125, 'suku' => 'Rawa', 'deskripsi' => 'Rawa, Rokan Hilir, Riau'], - ['id' => 126, 'suku' => 'Rejang', 'deskripsi' => 'Rejang di Bengkulu (Kabupaten Bengkulu Tengah, Kabupaten Bengkulu Utara, Kabupaten Kepahiang, Kabupaten Lebong, dan Kabupaten Rejang Lebong)'], - ['id' => 127, 'suku' => 'Rote', 'deskripsi' => 'Rote di NTT (Kabupaten Rote Ndao)'], - ['id' => 128, 'suku' => 'Rongga', 'deskripsi' => 'Rongga di NTT Kabupaten Manggarai Timur'], - ['id' => 129, 'suku' => 'Rohingya', 'deskripsi' => 'Rohingya'], - ['id' => 130, 'suku' => 'Sabu', 'deskripsi' => 'Sabu di Pulau Sabu, NTT'], - ['id' => 131, 'suku' => 'Saluan', 'deskripsi' => 'Saluan di Sulawesi Tengah'], - ['id' => 132, 'suku' => 'Sambas', 'deskripsi' => 'Sambas (Melayu Sambas) di Kalimantan Barat: Kabupaten Sambas'], - ['id' => 133, 'suku' => 'Samin', 'deskripsi' => 'Samin di Jawa Tengah (Blora) dan Jawa Timur (Bojonegoro)'], - ['id' => 134, 'suku' => 'Sangi', 'deskripsi' => 'Sangir di Sulawesi Utara (Kepulauan Sangihe)'], - ['id' => 135, 'suku' => 'Sasak', 'deskripsi' => 'Sasak di NTB, Lombok'], - ['id' => 136, 'suku' => 'Sekak Bangka', 'deskripsi' => 'Sekak Bangka'], - ['id' => 137, 'suku' => 'Sekayu', 'deskripsi' => 'Sekayu di Sumatera Selatan'], - ['id' => 138, 'suku' => 'Semendo ', 'deskripsi' => 'Semendo di Bengkulu, Sumatera Selatan (Muara Enim)'], - ['id' => 139, 'suku' => 'Serawai ', 'deskripsi' => 'Serawai di Bengkulu (Kabupaten Bengkulu Selatan dan Kabupaten Seluma)'], - ['id' => 140, 'suku' => 'Simeulue', 'deskripsi' => 'Simeulue di Aceh (Kabupaten Simeulue)'], - ['id' => 141, 'suku' => 'Sigulai ', 'deskripsi' => 'Sigulai di Aceh (Kabupaten Simeulue bagian utara'], - ['id' => 142, 'suku' => 'Suluk', 'deskripsi' => 'Suluk di Kalimantan Utara)'], - ['id' => 143, 'suku' => 'Sumbawa ', 'deskripsi' => 'Sumbawa Di NTB (Kabupaten Sumbawa)'], - ['id' => 144, 'suku' => 'Sumba', 'deskripsi' => 'Sumba di NTT (Sumba Barat, Sumba Timur)'], - ['id' => 145, 'suku' => 'Sunda', 'deskripsi' => 'Sunda di Jawa Barat, Banten, DKI Jakarta, Lampung, Sumatra Selatan dan Jawa Tengah'], - ['id' => 146, 'suku' => 'Sungkai ', 'deskripsi' => 'Sungkai di Lampung Lampung Utara'], - ['id' => 147, 'suku' => 'Talau', 'deskripsi' => 'Talaud di Sulawesi Utara (Kepulauan Talaud)'], - ['id' => 148, 'suku' => 'Talang Mamak', 'deskripsi' => 'Talang Mamak di Riau (Indragiri Hulu)'], - ['id' => 149, 'suku' => 'Tamiang ', 'deskripsi' => 'Tamiang di Aceh (Kabupaten Aceh Tamiang)'], - ['id' => 150, 'suku' => 'Tengger ', 'deskripsi' => 'Tengger di Jawa Timur (Kabupaten Pasuruan) dan Probolinggo (lereng G. Bromo)'], - ['id' => 151, 'suku' => 'Ternate ', 'deskripsi' => 'Ternate di Maluku Utara (Kota Ternate)'], - ['id' => 152, 'suku' => 'Tidore', 'deskripsi' => 'Tidore di Maluku Utara (Kota Tidore)'], - ['id' => 153, 'suku' => 'Tidung', 'deskripsi' => 'Tidung di Kalimantan Timur (Kabupaten Tanah Tidung)'], - ['id' => 154, 'suku' => 'Timor', 'deskripsi' => 'Timor di NTT, Kota Kupang'], - ['id' => 155, 'suku' => 'Tionghoa', 'deskripsi' => 'Tionghoa, terdiri dari: Orang Cina Parit di Pelaihari, Tanah Laut, Kalsel; Orang Cina Benteng di Tangerang, Provinsi Banten; Orang Tionghoa Hokkien di Jawa dan Sumatera Utara; Orang Tionghoa Hakka di Belitung dan Kalimantan Barat; Orang Tionghoa Hubei; Orang Tionghoa Hainan; Orang Tionghoa Kanton; Orang Tionghoa Hokchia; Orang Tionghoa Tiochiu'], - ['id' => 156, 'suku' => 'Tojo', 'deskripsi' => 'Tojo di Sulawesi Tengah (Kabupaten Tojo Una-Una)'], - ['id' => 157, 'suku' => 'Toraja', 'deskripsi' => 'Toraja di Sulawesi Selatan (Tana Toraja)'], - ['id' => 158, 'suku' => 'Tolaki', 'deskripsi' => 'Tolaki di Sulawesi Tenggara (Kendari)'], - ['id' => 159, 'suku' => 'Toli Toli', 'deskripsi' => 'Toli Toli di Sulawesi Tengah (Kabupaten Toli-Toli)'], - ['id' => 160, 'suku' => 'Tomini', 'deskripsi' => 'Tomini di Sulawesi Tengah (Kabupaten Parigi Mouton'], - ['id' => 161, 'suku' => 'Una-una ', 'deskripsi' => 'Una-una di Sulawesi Tengah (Kabupaten Tojo Una-Una)'], - ['id' => 162, 'suku' => 'Ulu', 'deskripsi' => 'Ulu di Sumatera Utara (Mandailing natal)'], - ['id' => 163, 'suku' => 'Wolio', 'deskripsi' => 'Wolio di Sulawesi Tenggara (Buton)'], - ]); - - DB::statement(" - CREATE TABLE `ref_peristiwa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_peristiwa')->insert([ - ['id' => 1, 'nama' => 'Lahir'], - ['id' => 2, 'nama' => 'Mati'], - ['id' => 3, 'nama' => 'Pindah Keluar'], - ['id' => 4, 'nama' => 'Hilang'], - ['id' => 5, 'nama' => 'Pindah Masuk'], - ['id' => 6, 'nama' => 'Pergi'], - ]); - - DB::statement(" - CREATE TABLE `ref_pindah` ( - `id` tinyint(4) NOT NULL, - `nama` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_pindah')->insert([ - ['id' => 1, 'nama' => 'Pindah keluar Desa/Kelurahan'], - ['id' => 2, 'nama' => 'Pindah keluar Kecamatan'], - ['id' => 3, 'nama' => 'Pindah keluar Kabupaten/Kota'], - ['id' => 4, 'nama' => 'Pindah keluar Provinsi'], - ]); - - DB::statement(" - CREATE TABLE `suplemen` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(100) DEFAULT NULL, - `slug` varchar(255) DEFAULT NULL, - `sasaran` tinyint(4) DEFAULT NULL, - `keterangan` varchar(300) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `slug` (`slug`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_cacat` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_cacat')->insert([ - ['id' => 1, 'nama' => 'CACAT FISIK'], - ['id' => 2, 'nama' => 'CACAT NETRA/BUTA'], - ['id' => 3, 'nama' => 'CACAT RUNGU/WICARA'], - ['id' => 4, 'nama' => 'CACAT MENTAL/JIWA'], - ['id' => 5, 'nama' => 'CACAT FISIK DAN MENTAL'], - ['id' => 6, 'nama' => 'CACAT LAINNYA'], - ['id' => 7, 'nama' => 'TIDAK CACAT'], - ]); - - DB::statement(" - CREATE TABLE `tweb_cara_kb` ( - `id` tinyint(5) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `sex` tinyint(2) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_cara_kb')->insert([ - ['id' => 1, 'nama' => 'Pil', 'sex' => 2], - ['id' => 2, 'nama' => 'IUD', 'sex' => 2], - ['id' => 3, 'nama' => 'Suntik', 'sex' => 2], - ['id' => 4, 'nama' => 'Kondom', 'sex' => 1], - ['id' => 5, 'nama' => 'Susuk KB', 'sex' => 2], - ['id' => 6, 'nama' => 'Sterilisasi Wanita', 'sex' => 2], - ['id' => 7, 'nama' => 'Sterilisasi Pria', 'sex' => 1], - ['id' => 99,'nama' => 'Lainnya', 'sex' => 3], - ]); - - DB::statement(" - CREATE TABLE `tweb_golongan_darah` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(15) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_golongan_darah')->insert([ - ['id' => 1, 'nama' => 'A'], - ['id' => 2, 'nama' => 'B'], - ['id' => 3, 'nama' => 'AB'], - ['id' => 4, 'nama' => 'O'], - ['id' => 5, 'nama' => 'A+'], - ['id' => 6, 'nama' => 'A-'], - ['id' => 7, 'nama' => 'B+'], - ['id' => 8, 'nama' => 'B-'], - ['id' => 9, 'nama' => 'AB+'], - ['id' => 10, 'nama' => 'AB-'], - ['id' => 11, 'nama' => 'O+'], - ['id' => 12, 'nama' => 'O-'], - ['id' => 13, 'nama' => 'TIDAK TAHU'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - `nik` varchar(16) DEFAULT NULL, - `id_kk` int(11) DEFAULT 0, - `kk_level` tinyint(2) DEFAULT NULL, - `id_rtm` varchar(30) DEFAULT NULL, - `rtm_level` int(11) DEFAULT NULL, - `sex` tinyint(4) unsigned DEFAULT NULL, - `tempatlahir` varchar(100) DEFAULT NULL, - `tanggallahir` date DEFAULT NULL, - `agama_id` int(1) DEFAULT NULL, - `pendidikan_kk_id` int(1) DEFAULT NULL, - `pendidikan_sedang_id` int(1) DEFAULT NULL, - `pekerjaan_id` int(1) DEFAULT NULL, - `status_kawin` tinyint(4) DEFAULT NULL, - `warganegara_id` tinyint(4) NOT NULL DEFAULT 1, - `dokumen_pasport` varchar(45) DEFAULT NULL, - `dokumen_kitas` varchar(45) DEFAULT NULL, - `ayah_nik` varchar(16) DEFAULT NULL, - `ibu_nik` varchar(16) DEFAULT NULL, - `nama_ayah` varchar(100) DEFAULT NULL, - `nama_ibu` varchar(100) DEFAULT NULL, - `foto` varchar(100) DEFAULT NULL, - `golongan_darah_id` int(11) DEFAULT NULL, - `id_cluster` int(11) NOT NULL, - `status` int(10) unsigned DEFAULT NULL, - `alamat_sebelumnya` varchar(200) DEFAULT NULL, - `alamat_sekarang` varchar(200) DEFAULT NULL, - `status_dasar` tinyint(4) NOT NULL DEFAULT 1, - `hamil` int(1) DEFAULT NULL, - `cacat_id` int(11) DEFAULT NULL, - `sakit_menahun_id` int(11) DEFAULT NULL, - `akta_lahir` varchar(40) DEFAULT NULL, - `akta_perkawinan` varchar(40) DEFAULT NULL, - `tanggalperkawinan` date DEFAULT NULL, - `akta_perceraian` varchar(40) DEFAULT NULL, - `tanggalperceraian` date DEFAULT NULL, - `cara_kb_id` tinyint(2) DEFAULT NULL, - `telepon` varchar(20) DEFAULT NULL, - `tanggal_akhir_paspor` date DEFAULT NULL, - `no_kk_sebelumnya` varchar(30) DEFAULT NULL, - `ktp_el` tinyint(4) DEFAULT NULL, - `status_rekam` tinyint(4) DEFAULT NULL, - `waktu_lahir` varchar(5) DEFAULT NULL, - `tempat_dilahirkan` tinyint(2) DEFAULT NULL, - `jenis_kelahiran` tinyint(2) DEFAULT NULL, - `kelahiran_anak_ke` tinyint(2) DEFAULT NULL, - `penolong_kelahiran` tinyint(2) DEFAULT NULL, - `berat_lahir` smallint(6) DEFAULT NULL, - `panjang_lahir` varchar(10) DEFAULT NULL, - `tag_id_card` varchar(17) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) DEFAULT NULL, - `id_asuransi` tinyint(5) DEFAULT NULL, - `no_asuransi` char(100) DEFAULT NULL, - `email` varchar(100) DEFAULT NULL, - `email_token` varchar(100) DEFAULT NULL, - `email_tgl_kadaluarsa` datetime DEFAULT NULL, - `email_tgl_verifikasi` datetime DEFAULT NULL, - `telegram` varchar(100) DEFAULT NULL, - `telegram_token` varchar(100) DEFAULT NULL, - `telegram_tgl_kadaluarsa` datetime DEFAULT NULL, - `telegram_tgl_verifikasi` datetime DEFAULT NULL, - `bahasa_id` int(11) DEFAULT NULL, - `ket` tinytext DEFAULT NULL, - `negara_asal` varchar(50) DEFAULT NULL, - `tempat_cetak_ktp` varchar(150) DEFAULT NULL, - `tanggal_cetak_ktp` date DEFAULT NULL, - `suku` varchar(150) DEFAULT NULL, - `bpjs_ketenagakerjaan` char(100) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `tag_id_card` (`tag_id_card`), - UNIQUE KEY `nik` (`nik`), - UNIQUE KEY `telegram` (`telegram`), - UNIQUE KEY `telegram_token` (`telegram_token`), - UNIQUE KEY `email_token` (`email_token`), - UNIQUE KEY `email` (`email`), - KEY `id_rtm` (`id_rtm`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_penduduk_agama` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_agama')->insert([ - ['id' => 1, 'nama' => 'ISLAM'], - ['id' => 2, 'nama' => 'KRISTEN'], - ['id' => 3, 'nama' => 'KATHOLIK'], - ['id' => 4, 'nama' => 'HINDU'], - ['id' => 5, 'nama' => 'BUDHA'], - ['id' => 6, 'nama' => 'KHONGHUCU'], - ['id' => 7, 'nama' => 'Kepercayaan Terhadap Tuhan YME / Lainnya'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_asuransi` ( - `id` tinyint(5) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_asuransi')->insert([ - ['id' => 1, 'nama' => 'Tidak/Belum Punya'], - ['id' => 2, 'nama' => 'BPJS Penerima Bantuan Iuran'], - ['id' => 3, 'nama' => 'BPJS Non Penerima Bantuan Iuran'], - ['id' => 99, 'nama' => 'Asuransi Lainnya'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_hubungan` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_hubungan')->insert([ - ['id' => 1, 'nama' => 'KEPALA KELUARGA'], - ['id' => 2, 'nama' => 'SUAMI'], - ['id' => 3, 'nama' => 'ISTRI'], - ['id' => 4, 'nama' => 'ANAK'], - ['id' => 5, 'nama' => 'MENANTU'], - ['id' => 6, 'nama' => 'CUCU'], - ['id' => 7, 'nama' => 'ORANGTUA'], - ['id' => 8, 'nama' => 'MERTUA'], - ['id' => 9, 'nama' => 'FAMILI LAIN'], - ['id' => 10, 'nama' => 'PEMBANTU'], - ['id' => 11, 'nama' => 'LAINNYA'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_kawin` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_kawin')->insert([ - ['id' => 1, 'nama'=> 'BELUM KAWIN'], - ['id' => 2, 'nama'=> 'KAWIN'], - ['id' => 3, 'nama'=> 'CERAI HIDUP'], - ['id' => 4, 'nama'=> 'CERAI MATI'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_map` ( - `id` int(11) NOT NULL, - `lat` varchar(24) DEFAULT NULL, - `lng` varchar(24) DEFAULT NULL - ); - "); - - DB::statement(" - CREATE TABLE `tweb_penduduk_pekerjaan` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_pekerjaan')->insert([ - ['id' => 1, 'nama' => 'BELUM/TIDAK BEKERJA'], - ['id' => 2, 'nama' => 'MENGURUS RUMAH TANGGA'], - ['id' => 3, 'nama' => 'PELAJAR/MAHASISWA'], - ['id' => 4, 'nama' => 'PENSIUNAN'], - ['id' => 5, 'nama' => 'PEGAWAI NEGERI SIPIL (PNS)'], - ['id' => 6, 'nama' => 'TENTARA NASIONAL INDONESIA (TNI)'], - ['id' => 7, 'nama' => 'KEPOLISIAN RI (POLRI)'], - ['id' => 8, 'nama' => 'PERDAGANGAN'], - ['id' => 9, 'nama' => 'PETANI/PEKEBUN'], - ['id' => 10, 'nama' => 'PETERNAK'], - ['id' => 11, 'nama' => 'NELAYAN/PERIKANAN'], - ['id' => 12, 'nama' => 'INDUSTRI'], - ['id' => 13, 'nama' => 'KONSTRUKSI'], - ['id' => 14, 'nama' => 'TRANSPORTASI'], - ['id' => 15, 'nama' => 'KARYAWAN SWASTA'], - ['id' => 16, 'nama' => 'KARYAWAN BUMN'], - ['id' => 17, 'nama' => 'KARYAWAN BUMD'], - ['id' => 18, 'nama' => 'KARYAWAN HONORER'], - ['id' => 19, 'nama' => 'BURUH HARIAN LEPAS'], - ['id' => 20, 'nama' => 'BURUH TANI/PERKEBUNAN'], - ['id' => 21, 'nama' => 'BURUH NELAYAN/PERIKANAN'], - ['id' => 22, 'nama' => 'BURUH PETERNAKAN'], - ['id' => 23, 'nama' => 'PEMBANTU RUMAH TANGGA'], - ['id' => 24, 'nama' => 'TUKANG CUKUR'], - ['id' => 25, 'nama' => 'TUKANG LISTRIK'], - ['id' => 26, 'nama' => 'TUKANG BATU'], - ['id' => 27, 'nama' => 'TUKANG KAYU'], - ['id' => 28, 'nama' => 'TUKANG SOL SEPATU'], - ['id' => 29, 'nama' => 'TUKANG LAS/PANDAI BESI'], - ['id' => 30, 'nama' => 'TUKANG JAHIT'], - ['id' => 31, 'nama' => 'TUKANG GIGI'], - ['id' => 32, 'nama' => 'PENATA RIAS'], - ['id' => 33, 'nama' => 'PENATA BUSANA'], - ['id' => 34, 'nama' => 'PENATA RAMBUT'], - ['id' => 35, 'nama' => 'MEKANIK'], - ['id' => 36, 'nama' => 'SENIMAN'], - ['id' => 37, 'nama' => 'TABIB'], - ['id' => 38, 'nama' => 'PARAJI'], - ['id' => 39, 'nama' => 'PERANCANG BUSANA'], - ['id' => 40, 'nama' => 'PENTERJEMAH'], - ['id' => 41, 'nama' => 'IMAM MASJID'], - ['id' => 42, 'nama' => 'PENDETA'], - ['id' => 43, 'nama' => 'PASTOR'], - ['id' => 44, 'nama' => 'WARTAWAN'], - ['id' => 45, 'nama' => 'USTADZ/MUBALIGH'], - ['id' => 46, 'nama' => 'JURU MASAK'], - ['id' => 47, 'nama' => 'PROMOTOR ACARA'], - ['id' => 48, 'nama' => 'ANGGOTA DPR-RI'], - ['id' => 49, 'nama' => 'ANGGOTA DPD'], - ['id' => 50, 'nama' => 'ANGGOTA BPK'], - ['id' => 51, 'nama' => 'PRESIDEN'], - ['id' => 52, 'nama' => 'WAKIL PRESIDEN'], - ['id' => 53, 'nama' => 'ANGGOTA MAHKAMAH KONSTITUSI'], - ['id' => 54, 'nama' => 'ANGGOTA KABINET KEMENTERIAN'], - ['id' => 55, 'nama' => 'DUTA BESAR'], - ['id' => 56, 'nama' => 'GUBERNUR'], - ['id' => 57, 'nama' => 'WAKIL GUBERNUR'], - ['id' => 58, 'nama' => 'BUPATI'], - ['id' => 59, 'nama' => 'WAKIL BUPATI'], - ['id' => 60, 'nama' => 'WALIKOTA'], - ['id' => 61, 'nama' => 'WAKIL WALIKOTA'], - ['id' => 62, 'nama' => 'ANGGOTA DPRD PROVINSI'], - ['id' => 63, 'nama' => 'ANGGOTA DPRD KABUPATEN/KOTA'], - ['id' => 64, 'nama' => 'DOSEN'], - ['id' => 65, 'nama' => 'GURU'], - ['id' => 66, 'nama' => 'PILOT'], - ['id' => 67, 'nama' => 'PENGACARA'], - ['id' => 68, 'nama' => 'NOTARIS'], - ['id' => 69, 'nama' => 'ARSITEK'], - ['id' => 70, 'nama' => 'AKUNTAN'], - ['id' => 71, 'nama' => 'KONSULTAN'], - ['id' => 72, 'nama' => 'DOKTER'], - ['id' => 73, 'nama' => 'BIDAN'], - ['id' => 74, 'nama' => 'PERAWAT'], - ['id' => 75, 'nama' => 'APOTEKER'], - ['id' => 76, 'nama' => 'PSIKIATER/PSIKOLOG'], - ['id' => 77, 'nama' => 'PENYIAR TELEVISI'], - ['id' => 78, 'nama' => 'PENYIAR RADIO'], - ['id' => 79, 'nama' => 'PELAUT'], - ['id' => 80, 'nama' => 'PENELITI'], - ['id' => 81, 'nama' => 'SOPIR'], - ['id' => 82, 'nama' => 'PIALANG'], - ['id' => 83, 'nama' => 'PARANORMAL'], - ['id' => 84, 'nama' => 'PEDAGANG'], - ['id' => 85, 'nama' => 'PERANGKAT DESA'], - ['id' => 86, 'nama' => 'KEPALA DESA'], - ['id' => 87, 'nama' => 'BIARAWATI'], - ['id' => 88, 'nama' => 'WIRASWASTA'], - ['id' => 89, 'nama' => 'LAINNYA'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_pendidikan` ( - `id` tinyint(3) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_pendidikan')->insert([ - ['id' => 1, 'nama' => 'BELUM MASUK TK/KELOMPOK BERMAIN'], - ['id' => 2, 'nama' => 'SEDANG TK/KELOMPOK BERMAIN'], - ['id' => 3, 'nama' => 'TIDAK PERNAH SEKOLAH'], - ['id' => 4, 'nama' => 'SEDANG SD/SEDERAJAT'], - ['id' => 5, 'nama' => 'TIDAK TAMAT SD/SEDERAJAT'], - ['id' => 6, 'nama' => 'SEDANG SLTP/SEDERAJAT'], - ['id' => 7, 'nama' => 'SEDANG SLTA/SEDERAJAT'], - ['id' => 8, 'nama' => 'SEDANG D-1/SEDERAJAT'], - ['id' => 9, 'nama' => 'SEDANG D-2/SEDERAJAT'], - ['id' => 10, 'nama' => 'SEDANG D-3/SEDERAJAT'], - ['id' => 11, 'nama' => 'SEDANG S-1/SEDERAJAT'], - ['id' => 12, 'nama' => 'SEDANG S-2/SEDERAJAT'], - ['id' => 13, 'nama' => 'SEDANG S-3/SEDERAJAT'], - ['id' => 14, 'nama' => 'SEDANG SLB A/SEDERAJAT'], - ['id' => 15, 'nama' => 'SEDANG SLB B/SEDERAJAT'], - ['id' => 16, 'nama' => 'SEDANG SLB C/SEDERAJAT'], - ['id' => 17, 'nama' => 'TIDAK DAPAT MEMBACA DAN MENULIS HURUF LATIN/ARAB'], - ['id' => 18, 'nama' => 'TIDAK SEDANG SEKOLAH'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_pendidikan_kk` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_pendidikan_kk')->insert([ - ['id' => 1, 'nama' => 'TIDAK / BELUM SEKOLAH'], - ['id' => 2, 'nama' => 'BELUM TAMAT SD/SEDERAJAT'], - ['id' => 3, 'nama' => 'TAMAT SD / SEDERAJAT'], - ['id' => 4, 'nama' => 'SLTP/SEDERAJAT'], - ['id' => 5, 'nama' => 'SLTA / SEDERAJAT'], - ['id' => 6, 'nama' => 'DIPLOMA I / II'], - ['id' => 7, 'nama' => 'AKADEMI/ DIPLOMA III/S. MUDA'], - ['id' => 8, 'nama' => 'DIPLOMA IV/ STRATA I'], - ['id' => 9, 'nama' => 'STRATA II'], - ['id' => 10, 'nama' => 'STRATA III'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_sex` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(15) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_sex')->insert([ - ['id' => 1, 'nama' => 'LAKI-LAKI'], - ['id' => 2, 'nama' => 'PEREMPUAN'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_status` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_status')->insert([ - ['id' => 1, 'nama' => 'TETAP'], - ['id' => 2, 'nama' => 'TIDAK TETAP'], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_umur` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(25) DEFAULT NULL, - `dari` int(11) DEFAULT NULL, - `sampai` int(11) DEFAULT NULL, - `status` int(11) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_umur')->insert([ - ['id' => 1, 'nama' => 'BALITA', 'dari' => 0, 'sampai' => 5, 'status' => 0], - ['id' => 2, 'nama' => 'ANAK-ANAK', 'dari' => 6, 'sampai' => 17, 'status' => 0], - ['id' => 3, 'nama' => 'DEWASA', 'dari' => 18, 'sampai' => 30, 'status' => 0], - ['id' => 4, 'nama' => 'TUA', 'dari' => 31, 'sampai' => 99999, 'status' => 0], - ['id' => 6, 'nama' => 'Di bawah 1 Tahun', 'dari' => 0, 'sampai' => 1, 'status' => 1], - ['id' => 9, 'nama' => '2 s/d 4 Tahun', 'dari' => 2, 'sampai' => 4, 'status' => 1], - ['id' => 12, 'nama' => '5 s/d 9 Tahun', 'dari' => 5, 'sampai' => 9, 'status' => 1], - ['id' => 13, 'nama' => '10 s/d 14 Tahun', 'dari' => 10, 'sampai' => 14, 'status' => 1], - ['id' => 14, 'nama' => '15 s/d 19 Tahun', 'dari' => 15, 'sampai' => 19, 'status' => 1], - ['id' => 15, 'nama' => '20 s/d 24 Tahun', 'dari' => 20, 'sampai' => 24, 'status' => 1], - ['id' => 16, 'nama' => '25 s/d 29 Tahun', 'dari' => 25, 'sampai' => 29, 'status' => 1], - ['id' => 17, 'nama' => '30 s/d 34 Tahun', 'dari' => 30, 'sampai' => 34, 'status' => 1], - ['id' => 18, 'nama' => '35 s/d 39 Tahun ', 'dari' => 35, 'sampai' => 39, 'status' => 1], - ['id' => 19, 'nama' => '40 s/d 44 Tahun', 'dari' => 40, 'sampai' => 44, 'status' => 1], - ['id' => 20, 'nama' => '45 s/d 49 Tahun', 'dari' => 45, 'sampai' => 49, 'status' => 1], - ['id' => 21, 'nama' => '50 s/d 54 Tahun', 'dari' => 50, 'sampai' => 54, 'status' => 1], - ['id' => 22, 'nama' => '55 s/d 59 Tahun', 'dari' => 55, 'sampai' => 59, 'status' => 1], - ['id' => 23, 'nama' => '60 s/d 64 Tahun', 'dari' => 60, 'sampai' => 64, 'status' => 1], - ['id' => 24, 'nama' => '65 s/d 69 Tahun', 'dari' => 65, 'sampai' => 69, 'status' => 1], - ['id' => 25, 'nama' => '70 s/d 74 Tahun', 'dari' => 70, 'sampai' => 74, 'status' => 1], - ['id' => 26, 'nama' => 'Di atas 75 Tahun', 'dari' => 75, 'sampai' => 99999, 'status' => 1], - ]); - - DB::statement(" - CREATE TABLE `tweb_penduduk_warganegara` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(25) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_penduduk_warganegara')->insert([ - ['id' => 1, 'nama' => 'WNI'], - ['id' => 2, 'nama' => 'WNA'], - ['id' => 3, 'nama' => 'DUA KEWARGANEGARAAN'], - ]); - - DB::statement(" - CREATE TABLE `tweb_rtm` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nik_kepala` int(11) NOT NULL, - `no_kk` varchar(30) NOT NULL, - `tgl_daftar` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `kelas_sosial` int(11) DEFAULT NULL, - `bdt` varchar(16) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `no_kk` (`no_kk`), - UNIQUE KEY `no_kk_2` (`no_kk`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_rtm_hubungan` ( - `id` tinyint(4) NOT NULL AUTO_INCREMENT, - `nama` varchar(20) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_rtm_hubungan')->insert([ - ['id' => 1, 'nama' => 'Kepala Rumah Tangga'], - ['id' => 2, 'nama' => 'Anggota'], - ]); - - DB::statement(" - CREATE TABLE `tweb_sakit_menahun` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(255) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_sakit_menahun')->insert([ - ['id' => 1, 'nama' => 'JANTUNG'], - ['id' => 2, 'nama' => 'LEVER'], - ['id' => 3, 'nama' => 'PARU-PARU'], - ['id' => 4, 'nama' => 'KANKER'], - ['id' => 5, 'nama' => 'STROKE'], - ['id' => 6, 'nama' => 'DIABETES MELITUS'], - ['id' => 7, 'nama' => 'GINJAL'], - ['id' => 8, 'nama' => 'MALARIA'], - ['id' => 9, 'nama' => 'LEPRA/KUSTA'], - ['id' => 10, 'nama' => 'HIV/AIDS'], - ['id' => 11, 'nama' => 'GILA/STRESS'], - ['id' => 12, 'nama' => 'TBC'], - ['id' => 13, 'nama' => 'ASTHMA'], - ['id' => 14, 'nama' => 'TIDAK ADA/TIDAK SAKIT'], - ]); - - DB::statement(" - CREATE TABLE `tweb_status_dasar` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_status_dasar')->insert([ - ['id' => 1, 'nama' => 'HIDUP'], - ['id' => 2, 'nama' => 'MATI'], - ['id' => 3, 'nama' => 'PINDAH'], - ['id' => 4, 'nama' => 'HILANG'], - ['id' => 6, 'nama' => 'PERGI'], - ['id' => 9, 'nama' => 'TIDAK VALID'], - ]); - - DB::statement(" - CREATE TABLE `tweb_status_ktp` ( - `id` tinyint(5) NOT NULL AUTO_INCREMENT, - `nama` varchar(50) NOT NULL, - `ktp_el` tinyint(4) NOT NULL, - `status_rekam` varchar(50) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_status_ktp')->insert([ - ['id' => 1, 'nama' => 'BELUM REKAM', 'ktp_el' => 1, 'status_rekam' => '2'], - ['id' => 2, 'nama' => 'SUDAH REKAM', 'ktp_el' => 2, 'status_rekam' => '3'], - ['id' => 3, 'nama' => 'CARD PRINTED', 'ktp_el' => 2, 'status_rekam' => '4'], - ['id' => 4, 'nama' => 'PRINT READY RECORD', 'ktp_el' => 2, 'status_rekam' => '5'], - ['id' => 5, 'nama' => 'CARD SHIPPED', 'ktp_el' => 2, 'status_rekam' => '6'], - ['id' => 6, 'nama' => 'SENT FOR CARD PRINTING', 'ktp_el' => 2, 'status_rekam' => '7'], - ['id' => 7, 'nama' => 'CARD ISSUED', 'ktp_el' => 2, 'status_rekam' => '8'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_dokumen() - { - DB::statement(" - CREATE TABLE `dokumen` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `satuan` varchar(200) DEFAULT NULL, - `nama` varchar(200) NOT NULL, - `enabled` int(2) NOT NULL DEFAULT 1, - `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), - `id_pend` int(11) NOT NULL DEFAULT 0, - `kategori` tinyint(3) NOT NULL DEFAULT 1, - `attr` text NOT NULL, - `tahun` int(4) DEFAULT NULL, - `kategori_info_publik` tinyint(4) DEFAULT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `id_syarat` int(11) DEFAULT NULL, - `id_parent` int(11) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` varchar(16) DEFAULT NULL, - `updated_by` varchar(16) DEFAULT NULL, - `dok_warga` tinyint(1) DEFAULT 0, - `lokasi_arsip` varchar(150) DEFAULT '', - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_dokumen` ( - `id` int(5) unsigned NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_dokumen')->insert([ - ['id' => 1, 'nama' => 'Informasi Publik'], - ['id' => 2, 'nama' => 'SK Kades'], - ['id' => 3, 'nama' => 'Perdes'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_hubung_warga() - { - DB::statement(" - CREATE TABLE `inbox` ( - `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `ReceivingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), - `Text` text NOT NULL, - `SenderNumber` varchar(20) NOT NULL DEFAULT '', - `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', - `UDH` text NOT NULL, - `SMSCNumber` varchar(20) NOT NULL DEFAULT '', - `Class` int(11) NOT NULL DEFAULT -1, - `TextDecoded` text NOT NULL, - `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, - `RecipientID` text NOT NULL, - `Processed` enum('false','true') NOT NULL DEFAULT 'false', - PRIMARY KEY (`ID`) - ); - "); - - DB::statement(" - CREATE TABLE `kontak_grup` ( - `id_grup` int(11) NOT NULL AUTO_INCREMENT, - `nama_grup` varchar(30) NOT NULL, - PRIMARY KEY (`id_grup`) - ); - "); - - DB::statement(" - CREATE TABLE `outbox` ( - `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `InsertIntoDB` timestamp NOT NULL DEFAULT current_timestamp(), - `SendingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), - `SendBefore` time NOT NULL DEFAULT '23:59:59', - `SendAfter` time NOT NULL DEFAULT '00:00:00', - `Text` text DEFAULT NULL, - `DestinationNumber` varchar(20) NOT NULL DEFAULT '', - `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', - `UDH` text DEFAULT NULL, - `Class` int(11) DEFAULT -1, - `TextDecoded` text NOT NULL, - `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, - `MultiPart` enum('false','true') DEFAULT 'false', - `RelativeValidity` int(11) DEFAULT -1, - `SenderID` varchar(255) DEFAULT NULL, - `SendingTimeOut` timestamp NULL DEFAULT NULL, - `DeliveryReport` enum('default','yes','no') DEFAULT 'default', - `CreatorID` text DEFAULT NULL, - PRIMARY KEY (`ID`), - KEY `outbox_date` (`SendingDateTime`,`SendingTimeOut`), - KEY `outbox_sender` (`SenderID`) - ); - "); - - DB::statement(" - CREATE TABLE `sentitems` ( - `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `InsertIntoDB` timestamp NOT NULL DEFAULT current_timestamp(), - `SendingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), - `DeliveryDateTime` timestamp NULL DEFAULT NULL, - `Text` text NOT NULL, - `DestinationNumber` varchar(20) NOT NULL DEFAULT '', - `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', - `UDH` text NOT NULL, - `SMSCNumber` varchar(20) NOT NULL DEFAULT '', - `Class` int(11) NOT NULL DEFAULT -1, - `TextDecoded` text NOT NULL, - `ID` int(10) unsigned NOT NULL DEFAULT 0, - `SenderID` varchar(255) NOT NULL, - `SequencePosition` int(11) NOT NULL DEFAULT 1, - `Status` enum('SendingOK','SendingOKNoReport','SendingError','DeliveryOK','DeliveryFailed','DeliveryPending','DeliveryUnknown','Error') NOT NULL DEFAULT 'SendingOK', - `StatusError` int(11) NOT NULL DEFAULT -1, - `TPMR` int(11) NOT NULL DEFAULT -1, - `RelativeValidity` int(11) NOT NULL DEFAULT -1, - `CreatorID` text NOT NULL, - PRIMARY KEY (`ID`,`SequencePosition`), - KEY `sentitems_date` (`DeliveryDateTime`), - KEY `sentitems_tpmr` (`TPMR`), - KEY `sentitems_dest` (`DestinationNumber`), - KEY `sentitems_sender` (`SenderID`) - ); - "); - - DB::statement(" - CREATE TABLE `setting_sms` ( - `autoreply_text` varchar(160) DEFAULT NULL - ); - "); - - DB::table('setting_sms')->insert([ - ['autoreply_text' => 'Terima kasih pesan Anda telah kami terima.'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - return ; - } - - private function tabel_inventaris() - { - DB::statement(" - CREATE TABLE `inventaris_asset` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kode_barang` varchar(64) NOT NULL, - `register` varchar(64) NOT NULL, - `jenis` varchar(255) NOT NULL, - `judul_buku` varchar(255) DEFAULT NULL, - `spesifikasi_buku` varchar(255) DEFAULT NULL, - `asal_daerah` varchar(255) DEFAULT NULL, - `pencipta` varchar(255) DEFAULT NULL, - `bahan` varchar(255) DEFAULT NULL, - `jenis_hewan` varchar(255) DEFAULT NULL, - `ukuran_hewan` varchar(255) DEFAULT NULL, - `jenis_tumbuhan` varchar(255) DEFAULT NULL, - `ukuran_tumbuhan` varchar(255) DEFAULT NULL, - `jumlah` int(64) NOT NULL, - `tahun_pengadaan` year(4) NOT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `inventaris_gedung` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kode_barang` varchar(64) NOT NULL, - `register` varchar(64) NOT NULL, - `kondisi_bangunan` varchar(255) NOT NULL, - `kontruksi_bertingkat` varchar(255) NOT NULL, - `kontruksi_beton` tinyint(1) DEFAULT 0, - `luas_bangunan` int(64) NOT NULL, - `letak` varchar(255) NOT NULL, - `tanggal_dokument` date DEFAULT NULL, - `no_dokument` varchar(255) DEFAULT NULL, - `luas` int(64) DEFAULT NULL, - `status_tanah` varchar(255) DEFAULT NULL, - `kode_tanah` varchar(255) DEFAULT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `inventaris_jalan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kode_barang` varchar(64) NOT NULL, - `register` varchar(64) NOT NULL, - `kontruksi` varchar(255) NOT NULL, - `panjang` int(64) NOT NULL, - `lebar` int(64) NOT NULL, - `luas` int(64) NOT NULL, - `letak` text DEFAULT NULL, - `tanggal_dokument` date NOT NULL, - `no_dokument` varchar(255) DEFAULT NULL, - `status_tanah` varchar(255) DEFAULT NULL, - `kode_tanah` varchar(255) DEFAULT NULL, - `kondisi` varchar(255) NOT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `inventaris_kontruksi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kondisi_bangunan` varchar(255) NOT NULL, - `kontruksi_bertingkat` varchar(255) NOT NULL, - `kontruksi_beton` tinyint(1) DEFAULT 0, - `luas_bangunan` int(64) NOT NULL, - `letak` varchar(255) NOT NULL, - `tanggal_dokument` date DEFAULT NULL, - `no_dokument` varchar(255) DEFAULT NULL, - `tanggal` date DEFAULT NULL, - `status_tanah` varchar(255) DEFAULT NULL, - `kode_tanah` varchar(255) DEFAULT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `inventaris_peralatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kode_barang` varchar(64) NOT NULL, - `register` varchar(64) NOT NULL, - `merk` varchar(255) DEFAULT NULL, - `ukuran` text DEFAULT NULL, - `bahan` text DEFAULT NULL, - `tahun_pengadaan` year(4) NOT NULL, - `no_pabrik` varchar(255) DEFAULT NULL, - `no_rangka` varchar(255) DEFAULT NULL, - `no_mesin` varchar(255) DEFAULT NULL, - `no_polisi` varchar(255) DEFAULT NULL, - `no_bpkb` varchar(255) DEFAULT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `inventaris_tanah` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama_barang` varchar(255) NOT NULL, - `kode_barang` varchar(64) NOT NULL, - `register` varchar(64) NOT NULL, - `luas` int(64) NOT NULL, - `tahun_pengadaan` year(4) NOT NULL, - `letak` varchar(255) NOT NULL, - `hak` varchar(255) NOT NULL, - `no_sertifikat` varchar(255) DEFAULT NULL, - `tanggal_sertifikat` date DEFAULT NULL, - `penggunaan` varchar(255) NOT NULL, - `asal` varchar(255) NOT NULL, - `harga` double NOT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `visible` int(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_asal_tanah_kas` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` text NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_asal_tanah_kas')->insert([ - ['id' => 1, 'nama' => 'Jual Beli'], - ['id' => 2, 'nama' => 'Hibah / Sumbangan'], - ['id' => 3, 'nama' => 'Lain - lain'], - ]); - - DB::statement(" - CREATE TABLE `ref_peruntukan_tanah_kas` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` text NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('ref_peruntukan_tanah_kas')->insert([ - ['id' => 1, 'nama' => 'Sewa'], - ['id' => 2, 'nama' => 'Pinjam Pakai'], - ['id' => 3, 'nama' => 'Kerjasama Pemanfaatan'], - ['id' => 4, 'nama' => 'Bangun Guna Serah atau Bangun Serah Guna'], - ]); - - DB::statement(" - CREATE TABLE `tweb_aset` ( - `id_aset` int(11) NOT NULL, - `golongan` varchar(11) NOT NULL, - `bidang` varchar(11) NOT NULL, - `kelompok` varchar(11) NOT NULL, - `sub_kelompok` varchar(11) NOT NULL, - `sub_sub_kelompok` varchar(11) NOT NULL, - `nama` varchar(255) NOT NULL, - PRIMARY KEY (`id_aset`) - ); - "); - - DB::table('tweb_aset')->insert([ - ['id_aset' => 1, 'golongan' => '2', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH'], - ['id_aset' => 2, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH DESA'], - ['id_aset' => 3, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KAS DESA'], - ['id_aset' => 4, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH BENGKOK'], - ['id_aset' => 5, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BENGKOK KEPALA DESA'], - ['id_aset' => 6, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BENGKOK LAINNYA'], - ['id_aset' => 7, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH BONDO'], - ['id_aset' => 8, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KALAKERAN NEGERI'], - ['id_aset' => 9, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PECATU'], - ['id_aset' => 10, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PENGAREM-AREM'], - ['id_aset' => 11, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH TITISARA'], - ['id_aset' => 12, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERKAMPUNGAN'], - ['id_aset' => 13, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERKAMPUNGAN'], - ['id_aset' => 14, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH PERKAMPUNGAN'], - ['id_aset' => 15, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH PERKAMPUNGAN LAINNYA'], - ['id_aset' => 16, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'EMPLASMEN'], - ['id_aset' => 17, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'EMPLASMEN'], - ['id_aset' => 18, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'EMPLASMEN LAINNYA'], - ['id_aset' => 19, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KUBURAN'], - ['id_aset' => 20, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH KUBURAN ISLAM'], - ['id_aset' => 21, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH KUBURAN KRISTEN'], - ['id_aset' => 22, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH KUBURAN CINA'], - ['id_aset' => 23, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH KUBURAN HINDU'], - ['id_aset' => 24, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH KUBURAN BUDHA'], - ['id_aset' => 25, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH MAKAM PAHLAWAN'], - ['id_aset' => 26, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH KUBURAN TEMPAT BENDA BERSEJARAH'], - ['id_aset' => 27, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH MAKAM UMUM/KUBURAN UMUM'], - ['id_aset' => 28, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH KUBURAN LAINNYA'], - ['id_aset' => 29, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERTANIAN'], - ['id_aset' => 30, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'SAWAH SATU TAHUN DITANAMI'], - ['id_aset' => 31, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'SAWAH DITANAMI PADI'], - ['id_aset' => 32, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'SAWAH DITANAMI PALAWIJA'], - ['id_aset' => 33, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'SAWAH DITANAMI TEBU'], - ['id_aset' => 34, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'SAWAH DITANAMI SAYURAN'], - ['id_aset' => 35, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'SAWAH DITANAMI TEMBAKAU'], - ['id_aset' => 36, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'SAWAH DITANAMI ROSELLA'], - ['id_aset' => 37, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'SAWAH DITANAMI LAINNYA'], - ['id_aset' => 38, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KERING/TEGALAN'], - ['id_aset' => 39, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH KERING DITANAMI BUAH-BUAHAN'], - ['id_aset' => 40, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH KERING DITANAMI TEMBAKAU'], - ['id_aset' => 41, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH KERING DITANAMI JAGUNG'], - ['id_aset' => 42, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH KERING DITANAMI KETELA POHON'], - ['id_aset' => 43, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH KERING DITANAMI KACANG TANAH'], - ['id_aset' => 44, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH KERING DITANAMI KACANG HIJAU'], - ['id_aset' => 45, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH KERING DITANAMI KEDELAI'], - ['id_aset' => 46, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH KERING DITANAMI UBI JALAR'], - ['id_aset' => 47, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH KERING DITANAMI KELADI'], - ['id_aset' => 48, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH KERING DITANAMI LAINNYA'], - ['id_aset' => 49, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'LADANG'], - ['id_aset' => 50, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'LADANG PADI'], - ['id_aset' => 51, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'LADANG JAGUNG'], - ['id_aset' => 52, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'LADANG KETELA POHON'], - ['id_aset' => 53, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'LADANG KACANG TANAH'], - ['id_aset' => 54, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'LADANG KACANG HIJAU'], - ['id_aset' => 55, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'LADANG KEDELAI'], - ['id_aset' => 56, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'LADANG UBI JALAR'], - ['id_aset' => 57, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'LADANG KELADI'], - ['id_aset' => 58, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'LADANG BENGKUANG'], - ['id_aset' => 59, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'LADANG APEL'], - ['id_aset' => 60, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'LADANG KENTANG'], - ['id_aset' => 61, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'LADANG JERUK'], - ['id_aset' => 62, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'LADANG LAINNYA'], - ['id_aset' => 63, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERKEBUNAN'], - ['id_aset' => 64, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERKEBUNAN'], - ['id_aset' => 65, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH PERKEBUNAN KARET'], - ['id_aset' => 66, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH PERKEBUNAN KOPI'], - ['id_aset' => 67, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH PERKEBUNAN KELAPA'], - ['id_aset' => 68, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH PERKEBUNAN RANDU'], - ['id_aset' => 69, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH PERKEBUNAN LADA'], - ['id_aset' => 70, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH PERKEBUNAN TEH'], - ['id_aset' => 71, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH PERKEBUNAN KINA'], - ['id_aset' => 72, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH PERKEBUNAN COKLAT'], - ['id_aset' => 73, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH PERKEBUNAN KELAPA SAWIT'], - ['id_aset' => 74, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH PERKEBUNAN SEREH'], - ['id_aset' => 75, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH PERKEBUNAN CENGKEH'], - ['id_aset' => 76, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'TANAH PERKEBUNAN PALA'], - ['id_aset' => 77, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'TANAH PERKEBUNAN SAGU'], - ['id_aset' => 78, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'TANAH PERKEBUNAN JAMBU MENTE'], - ['id_aset' => 79, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'TANAH PERKEBUNAN TENGKAWANG'], - ['id_aset' => 80, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'TANAH PERKEBUNAN MINYAK KAYU PUTIH'], - ['id_aset' => 81, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'TANAH PERKEBUNAN KAYU MANIS'], - ['id_aset' => 82, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'TANAH PERKEBUNAN PETAI'], - ['id_aset' => 83, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH PERKEBUNAN LAINNYA'], - ['id_aset' => 84, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH HUTAN'], - ['id_aset' => 85, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH HUTAN LEBAT (DITANAMI JENIS KAYU UTAMA)'], - ['id_aset' => 86, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH HUTAN MERANTI'], - ['id_aset' => 87, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH HUTAN RASAMALA'], - ['id_aset' => 88, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH HUTAN BULIAN'], - ['id_aset' => 89, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH HUTAN MEDANG'], - ['id_aset' => 90, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH HUTAN JELUTUNG'], - ['id_aset' => 91, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH HUTAN RAMIN'], - ['id_aset' => 92, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH HUTAN PUSPA'], - ['id_aset' => 93, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH HUTAN SUNINTEM'], - ['id_aset' => 94, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH HUTAN ALBENIA'], - ['id_aset' => 95, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH HUTAN KAYU BESI/ULIN'], - ['id_aset' => 96, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'HUTAN LEBAT LAINNYA'], - ['id_aset' => 97, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH HUTAN BELUKAR'], - ['id_aset' => 98, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH HUTAN SEMAK-SEMAK'], - ['id_aset' => 99, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'HUTAN BELUKAR'], - ['id_aset' => 100, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'HUTAN BELUKAR LAINNYA'], - ['id_aset' => 101, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'HUTAN TANAMAN JENIS'], - ['id_aset' => 102, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'HUTAN TANAMAN JATI'], - ['id_aset' => 103, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'HUTAN TANAMAN PINUS'], - ['id_aset' => 104, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'HUTAN TANAMAN ROTAN'], - ['id_aset' => 105, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'HUTAN TANAMAN JENIS LAINNYA'], - ['id_aset' => 106, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'HUTAN ALAM SEJENIS/HUTAN RAWA'], - ['id_aset' => 107, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'HUTAN BAKAU'], - ['id_aset' => 108, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'HUTAN CEMARA (YANG TIDAK DITANAMAN)'], - ['id_aset' => 109, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'HUTAN GALAM'], - ['id_aset' => 110, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'HUTAN NIPAH'], - ['id_aset' => 111, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'HUTAN BAMBU'], - ['id_aset' => 112, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'HUTAN ROTAN'], - ['id_aset' => 113, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'HUTAN ALAM SEJENIS LAINNYA'], - ['id_aset' => 114, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'HUTAN UNTUK PENGGUNAAN KHUSUS'], - ['id_aset' => 115, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'HUTAN CADANGAN'], - ['id_aset' => 116, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'HUTAN LINDUNG'], - ['id_aset' => 117, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'HUTAN CAGAR ALAM'], - ['id_aset' => 118, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'HUTAN TAMAN WISATA'], - ['id_aset' => 119, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'HUTAN TAMAN BURUNG'], - ['id_aset' => 120, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'HUTAN SUAKA MARGA SATWA'], - ['id_aset' => 121, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'HUTAN TAMAN NASIONAL'], - ['id_aset' => 122, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'HUTAN PRODUKSI'], - ['id_aset' => 123, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'HUTAN UNTUK PENGGUNAAN KHUSUS LAINNYA'], - ['id_aset' => 124, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KEBUN CAMPURAN'], - ['id_aset' => 125, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH YANG TIDAK ADA JARINGAN PENGAIRAN'], - ['id_aset' => 126, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAMAN RUPA-RUPA'], - ['id_aset' => 127, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH KEBUN CAMPURAN LAINNYA'], - ['id_aset' => 128, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TUMBUH LIAR BERCAMPUR JENIS LAIN'], - ['id_aset' => 129, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JENIS TANAMAN RUPA-RUPA & TIDAK JELAS MANA YANG MENONJOL'], - ['id_aset' => 130, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'TANAMAN LUAR PERKARANGAN'], - ['id_aset' => 131, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TUMBUH LIAR BERCAMPUR JENIS LAINNYA'], - ['id_aset' => 132, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KOLAM IKAN'], - ['id_aset' => 133, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TAMBAK'], - ['id_aset' => 134, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TAMBAK'], - ['id_aset' => 135, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TAMBAK LAINNYA'], - ['id_aset' => 136, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'AIR TAWAR'], - ['id_aset' => 137, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'KOLAM AIR TAWAR'], - ['id_aset' => 138, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'AIR TAWAR LAINNYA'], - ['id_aset' => 139, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH DANAU / RAWA'], - ['id_aset' => 140, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'RAWA'], - ['id_aset' => 141, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'RAWA'], - ['id_aset' => 142, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'RAWA LAINNYA'], - ['id_aset' => 143, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'DANAU'], - ['id_aset' => 144, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SANAU/SITU'], - ['id_aset' => 145, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'WADUK'], - ['id_aset' => 146, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '08', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'DANAU LAINNYA'], - ['id_aset' => 147, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH TANDUS / RUSAK'], - ['id_aset' => 148, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH TANDUS'], - ['id_aset' => 149, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BERBATU-BATU'], - ['id_aset' => 150, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'LONGSOR'], - ['id_aset' => 151, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAHAR'], - ['id_aset' => 152, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH BERPASIR/PASIR'], - ['id_aset' => 153, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH PENGAMBILAN/KUASI'], - ['id_aset' => 154, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH TANDUS LAINNYA'], - ['id_aset' => 155, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH RUSAK'], - ['id_aset' => 156, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH YANG TEREROSI/LONGSOR'], - ['id_aset' => 157, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BEKAS TAMBANG/GALIAN'], - ['id_aset' => 158, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BEKAS SAWAH/RAWA'], - ['id_aset' => 159, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '09', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH RUSAK LAINNYA'], - ['id_aset' => 160, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH ALANG-ALANG DAN PADANG RUMPUT'], - ['id_aset' => 161, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALANG-ALANG'], - ['id_aset' => 162, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'ALANG-ALANG'], - ['id_aset' => 163, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALANG-ALANG LAINNYA'], - ['id_aset' => 164, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PADANG RUMPUT'], - ['id_aset' => 165, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SEMAK BELUKAR'], - ['id_aset' => 166, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'PADANG RUMPUT'], - ['id_aset' => 167, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '10', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PADANG RUMPUT LAINNYA'], - ['id_aset' => 168, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERTAMBANGAN'], - ['id_aset' => 169, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PERTAMBANGAN'], - ['id_aset' => 170, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH PERTAMBANGAN INTAN'], - ['id_aset' => 171, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH PERTAMBANGAN EMAS'], - ['id_aset' => 172, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH PERTAMBANGAN PERAK'], - ['id_aset' => 173, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH PERTAMBANGAN NEKEL'], - ['id_aset' => 174, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH PERTAMBANGAN TIMAH'], - ['id_aset' => 175, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH PERTAMBANGAN URANIUM'], - ['id_aset' => 176, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH PERTAMBANGAN TEMBAGA'], - ['id_aset' => 177, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH PERTAMBANGAN MINYAK BUMI'], - ['id_aset' => 178, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH PERTAMBANGAN BATU BARA'], - ['id_aset' => 179, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH PERTAMBANGAN KOSLIN'], - ['id_aset' => 180, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH PERTAMBANGAN BATU BARA BERHARGA'], - ['id_aset' => 181, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'TANAH PERTAMBANGAN PASIR BERHARGA'], - ['id_aset' => 182, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '11', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH PERTAMBANGAN LAINNYA'], - ['id_aset' => 183, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN GEDUNG'], - ['id_aset' => 184, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH BANGUNAN PERUMAHAN/GDG. TEMPAT TINGGAL'], - ['id_aset' => 185, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BANGUNAN MESS'], - ['id_aset' => 186, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH BANGUNAN WISMA'], - ['id_aset' => 187, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH BANGUNAN ASRAMA'], - ['id_aset' => 188, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH BANGUNAN PERISTIRAHATAN'], - ['id_aset' => 189, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH BANGUNAN BUNGALAOW'], - ['id_aset' => 190, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH BANGUNAN COTTAGE'], - ['id_aset' => 191, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN RUMAH TEMPAT TINGGAL LAINNYA'], - ['id_aset' => 192, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN GEDUNG PERDAGANGAN'], - ['id_aset' => 193, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BANGUNAN PASAR'], - ['id_aset' => 194, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH BANGUNAN PERTOKOAN/RUMAH TOKO'], - ['id_aset' => 195, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH BANGUNAN GUDANG'], - ['id_aset' => 196, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH BANGUNAN BIOSKOP'], - ['id_aset' => 197, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH BANGUNAN HOTEL/PENGINAPAN'], - ['id_aset' => 198, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH BANGUNAN TERMINAL DARAT'], - ['id_aset' => 199, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH BANGUNAN TERMINAL LAUT'], - ['id_aset' => 200, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH BANGUNAN GEDUNG KESENIAN'], - ['id_aset' => 201, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH BANGUNAN GEDUNG PAMERAN'], - ['id_aset' => 202, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH BANGUNAN GEDUNG PUSAT PERBELANJAAN'], - ['id_aset' => 203, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH BANGUNAN APOTIK'], - ['id_aset' => 204, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN GEDUNG PERDAGANGAN LAINNYA'], - ['id_aset' => 205, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN INDUSTRI'], - ['id_aset' => 206, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BANGUNAN INDUSTRI MAKANAN'], - ['id_aset' => 207, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH BANGUNAN INDUSTRI MINUMAN'], - ['id_aset' => 208, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH BANGUNAN INDUSTRI/ALAT RT.'], - ['id_aset' => 209, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH BANGUNAN INDUSTRI PAKAIAN/GARMENT'], - ['id_aset' => 210, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH BANGUNAN INDUSTRI BESI/LOGAM'], - ['id_aset' => 211, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH BANGUNAN INDUSTRI BAJA'], - ['id_aset' => 212, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH BANGUNAN INDUSTRI PENGALENGAN'], - ['id_aset' => 213, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH BANGUNAN INDUSTRI BENGKEL'], - ['id_aset' => 214, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH BANGUNAN INDUSTRI PENYULINGAN MINYAK'], - ['id_aset' => 215, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH BANGUNAN INDUSTRI SEMEN'], - ['id_aset' => 216, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH BANGUNAN INDUSTRI BATU BATA/BATAKO'], - ['id_aset' => 217, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'TANAH BANGUNAN INDUSTRI GENTENG'], - ['id_aset' => 218, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'TANAH BANGUNAN INDUSTRI PERCETAKAN'], - ['id_aset' => 219, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'TANAH BANGUNAN INDUSTRI TESKTIL'], - ['id_aset' => 220, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'TANAH BANGUNAN INDUSTRI OBAT-OBATAN'], - ['id_aset' => 221, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'TANAH BANGUNAN INDUSTRI ALAT OLAH RAGA'], - ['id_aset' => 222, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'TANAH BANGUNAN INDUSTRI KENDARAAN/ OTOMOTIF'], - ['id_aset' => 223, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '019', 'nama' => 'TANAH BANGUNAN INDUSTRI PERSENJATAAN'], - ['id_aset' => 224, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '020', 'nama' => 'TANAH BANGUNAN INDUSTRI KAPAL UDARA'], - ['id_aset' => 225, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '021', 'nama' => 'TANAH BANGUNAN INDUSTRI KAPAL LAUT'], - ['id_aset' => 226, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '022', 'nama' => 'TANAH BANGUNAN INDUSTRI KAPAL API'], - ['id_aset' => 227, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '023', 'nama' => 'TANAH BANGUNAN INDUSTRI KERAMIK/MARMER'], - ['id_aset' => 228, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN INDUSTRI LAINNYA'], - ['id_aset' => 229, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN TEMPAT KERJA/JASA'], - ['id_aset' => 230, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BANGUNAN KANTOR PEMERINTAH'], - ['id_aset' => 231, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH BANGUNAN SEKOLAH'], - ['id_aset' => 232, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH BANGUNAN RUMAH SAKIT'], - ['id_aset' => 233, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH BANGUNAN APOTIK'], - ['id_aset' => 234, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH BANGUNAN TEMPAT IBADAH'], - ['id_aset' => 235, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH BANGUNAN DERMAGA'], - ['id_aset' => 236, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH BANGUNAN PELABUHAN UDARA'], - ['id_aset' => 237, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH BANGUNAN OLAH RAGA'], - ['id_aset' => 238, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH BANGUNAN TAMAN/WISATA/REKREASI'], - ['id_aset' => 239, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH BANGUNAN BALAI SIDANG/PERTEMUAN'], - ['id_aset' => 240, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH BANGUNAN BALAI NIKAH'], - ['id_aset' => 241, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'TANAH BANGUNAN PUSKESMAS/POSYANDU'], - ['id_aset' => 242, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'TANAH BANGUNAN POLIKLINIK'], - ['id_aset' => 243, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'TANAH BANGUNAN LABORATURIUM'], - ['id_aset' => 244, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '015', 'nama' => 'TANAH BANGUNAN FUMIGASI/STERLISASI'], - ['id_aset' => 245, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '016', 'nama' => 'TANAH BANGUNAN KARANTINA'], - ['id_aset' => 246, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '017', 'nama' => 'TANAH BANGUNAN BANGSAL PENGOLAHAN PONDON KERJA'], - ['id_aset' => 247, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '018', 'nama' => 'TANAH BANGUNAN KANDANG HEWAN'], - ['id_aset' => 248, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '019', 'nama' => 'TANAH BANGUNAN-BANGUNAN PEMBIBITAN'], - ['id_aset' => 249, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '020', 'nama' => 'TANAH BANGUNAN RUMAH PENDINGIN'], - ['id_aset' => 250, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '021', 'nama' => 'TANAH BANGUNAN RUMAH PENGERING'], - ['id_aset' => 251, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '022', 'nama' => 'TANAH BANGUNAN STASIUN PENELITIAN'], - ['id_aset' => 252, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '023', 'nama' => 'TANAH BANGUNAN GEDUNG PELELANGAN IKAN'], - ['id_aset' => 253, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '024', 'nama' => 'TANAH BANGUNAN POS JAGA/MENARA JAGA'], - ['id_aset' => 254, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN TEMPAT KERJA LAINNYA'], - ['id_aset' => 255, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH KOSONG'], - ['id_aset' => 256, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH SAWAH'], - ['id_aset' => 257, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH TEGALAN'], - ['id_aset' => 258, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH KEBUN'], - ['id_aset' => 259, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'KEBUN PEMBIBITAN'], - ['id_aset' => 260, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH KOSONG YANG TIDAK DIUSAHAKAN'], - ['id_aset' => 261, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PETERNAKAN'], - ['id_aset' => 262, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH PETERNAKAN'], - ['id_aset' => 263, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH PETERNAKAN LAINNYA'], - ['id_aset' => 264, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH BANGUNAN PENGAIRAN'], - ['id_aset' => 265, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH WADUK'], - ['id_aset' => 266, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH KOMPLEK BENDUNGAN'], - ['id_aset' => 267, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH JARINGAN/SALURAN'], - ['id_aset' => 268, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN PENGAIRAN LAINNYA'], - ['id_aset' => 269, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH BANGUNAN JALAN DAN JEMBATAN'], - ['id_aset' => 270, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH JALAN'], - ['id_aset' => 271, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH JEMBATAN'], - ['id_aset' => 272, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN JALAN DAN JEMBATAN LAINNYA'], - ['id_aset' => 273, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LEMBIRAN/BANTARAN/LEPE-LEPE/SETREN DST'], - ['id_aset' => 274, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LEMBIRAN PENGAIRAN'], - ['id_aset' => 275, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LEMBIRAN JALAN DAN JEMBATAN'], - ['id_aset' => 276, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '12', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LEMBIRAN LAINNYA'], - ['id_aset' => 277, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN BUKAN GEDUNG'], - ['id_aset' => 278, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN OLAH RAGA'], - ['id_aset' => 279, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN TENIS'], - ['id_aset' => 280, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPANGAN BASKET'], - ['id_aset' => 281, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAPANGAN BADMINTON/BULUTANGKIS'], - ['id_aset' => 282, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH LAPANGAN GOLF'], - ['id_aset' => 283, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH LAPANGAN SEPAK BOLA'], - ['id_aset' => 284, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH LAPANGAN BOLA VOLLY'], - ['id_aset' => 285, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH LAPANGAN SEPAK TAKRAW'], - ['id_aset' => 286, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TAANH LAPANGAN PACUAN KUDA'], - ['id_aset' => 287, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH LAPANGAN BALAP SEPEDA'], - ['id_aset' => 288, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'TANAH LAPANGAN ATLETIK'], - ['id_aset' => 289, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'TANAH LAPANGAN SOFTBALL'], - ['id_aset' => 290, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN OLAHRAGA LAINNYA'], - ['id_aset' => 291, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN PARKIR'], - ['id_aset' => 292, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN PARKIR KONTRUKSI BETON'], - ['id_aset' => 293, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPANGAN PARKIR KONTRUKSI ASPAL'], - ['id_aset' => 294, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAPANGAN PARKIR SIRTU (PASIR BATU)'], - ['id_aset' => 295, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH LAPANGAN PARKIR KONBLOK'], - ['id_aset' => 296, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH LAPANGAN PARKIR TANAH KERAS'], - ['id_aset' => 297, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN PARKIR LAINNYA'], - ['id_aset' => 298, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN PENIMBUN BARANG'], - ['id_aset' => 299, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN PENIMBUN BARANG BELUM DIOLAH'], - ['id_aset' => 300, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPANGAN PENIMBUN BARANG JADI'], - ['id_aset' => 301, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAPANGAN PENIMBUN PEMBUANGAN SAMPAH'], - ['id_aset' => 302, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH LAPANGAN PENIMBUN BAHAN BANGUNAN'], - ['id_aset' => 303, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH LAPANGAN PENIMBUN BARANG BUKTI'], - ['id_aset' => 304, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN PENIMBUN BARANG LAINNYA'], - ['id_aset' => 305, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN PEMANCAR DAN STUDIO ALAM'], - ['id_aset' => 306, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN PEMANCAR TV/RADIO/RADAR'], - ['id_aset' => 307, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPANGAN STUDIO ALAM'], - ['id_aset' => 308, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAPANGAN PEMANCAR LAINNYA'], - ['id_aset' => 309, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN PEMANCAR DAN STUDIO ALAM LAINNYA'], - ['id_aset' => 310, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN PENGUJIAN/PENGOLAHAN'], - ['id_aset' => 311, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN PENGUJIAN KENDARAAN BERMOTOR'], - ['id_aset' => 312, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPANGAN PENGELOLAAN BAHAN BANGUNAN'], - ['id_aset' => 313, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN PENGUJIAN/PENGOLAHAN LAINNYA'], - ['id_aset' => 314, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH LAPANGAN TERBANG'], - ['id_aset' => 315, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH LAPANGAN TERBANG PERINTIS'], - ['id_aset' => 316, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH LAPNGAN KOMERSIAL'], - ['id_aset' => 317, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH LAPANGAN TERBANG KHUSUS/MILITER'], - ['id_aset' => 318, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH LAOPANGAN TERBANG OLAH RAGA'], - ['id_aset' => 319, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH LAPANGAN TERBANG PENDIDIKAN'], - ['id_aset' => 320, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH LAPANGAN TERBANG LAINNYA'], - ['id_aset' => 321, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN JALAN'], - ['id_aset' => 322, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK JALAN NASIONAL'], - ['id_aset' => 323, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK JALAN PROPINSI'], - ['id_aset' => 324, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK JALAN KABUPATEN'], - ['id_aset' => 325, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK JALAN KOTAMADYA'], - ['id_aset' => 326, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH UNTUK JALAN DESA'], - ['id_aset' => 327, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH UNTUK JALAN TOL'], - ['id_aset' => 328, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH UNTUK JALAN KERETA API/LORI'], - ['id_aset' => 329, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '008', 'nama' => 'TANAH UNTUK JALAN LANDASAN PACU PESAWAT TERBANG'], - ['id_aset' => 330, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '009', 'nama' => 'TANAH UNTUK JALAN KHUSUS/KOMPLEK'], - ['id_aset' => 331, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN JALAN LAINNYA'], - ['id_aset' => 332, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN AIR'], - ['id_aset' => 333, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK BANGUNAN AIR IRIGASI'], - ['id_aset' => 334, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK BANGUNAN PENGAIRAN PASANG SURUT'], - ['id_aset' => 335, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK BANGUNAN PENGEMBANGAN RAWA DAN POLDER'], - ['id_aset' => 336, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK BANGUNAN PENGAMAN SUNGAI DAN PENANGGULANGAN BENCANA ALAM'], - ['id_aset' => 337, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH UNTUK BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TNH'], - ['id_aset' => 338, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH UNTUK BANGUNAN AIR BERSIH/AIR BAKU'], - ['id_aset' => 339, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH UNTUK BANGUNAN AIR KOTOR'], - ['id_aset' => 340, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN AIR LAINNYA'], - ['id_aset' => 341, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI'], - ['id_aset' => 342, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI AIR BERSIH/AIR BAKU'], - ['id_aset' => 343, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI AIR KOTOR/AIR LIMBAH'], - ['id_aset' => 344, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI PENGELOHAN SAMPAH'], - ['id_aset' => 345, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI PENGOLAHAN BAHAN BANGUNAN'], - ['id_aset' => 346, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI LISTRIK'], - ['id_aset' => 347, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI GARDU LISTRIK'], - ['id_aset' => 348, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '007', 'nama' => 'TANAH UNTUK BANGUNAN PANGOLAHAN LIMBAH'], - ['id_aset' => 349, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN INSTALASI LAINNYA'], - ['id_aset' => 350, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN'], - ['id_aset' => 351, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN AIR BERSIH/AIR BAKU'], - ['id_aset' => 352, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN KOMUNIKASI'], - ['id_aset' => 353, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN LISTRIK'], - ['id_aset' => 354, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN GAS/BBM'], - ['id_aset' => 355, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN JARINGAN LAINNYA'], - ['id_aset' => 356, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN BERSEJARAH'], - ['id_aset' => 357, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK MONUMEN'], - ['id_aset' => 358, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK TUGU PERINGATAN'], - ['id_aset' => 359, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK TUGU BATAS WILAYAH'], - ['id_aset' => 360, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK CANDI'], - ['id_aset' => 361, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH UNTUK BANGUNAN MOSEUM'], - ['id_aset' => 362, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH UNTUK BANGUNAN BERSEJARAH'], - ['id_aset' => 363, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN BERSEJARAH LAINNYA'], - ['id_aset' => 364, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN GEDUNG OLAH RAGA'], - ['id_aset' => 365, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH BANGUNAN SARANA OLAOH RAGA TERBATAS'], - ['id_aset' => 366, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH BANGUNAN SARANA OLAH RAGA TERBUKA'], - ['id_aset' => 367, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH BANGUNAN SARANA OLAH RAGA LAINNYA'], - ['id_aset' => 368, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH UNTUK BANGUNAN TEMPAT IBADAH'], - ['id_aset' => 369, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH UNTUK BANGUNAN MESJID'], - ['id_aset' => 370, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '002', 'nama' => 'TANAH UNTUK BANGUNAN GEREJA'], - ['id_aset' => 371, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '003', 'nama' => 'TANAH UNTUK BANGUNAN PURA'], - ['id_aset' => 372, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '004', 'nama' => 'TANAH UNTUK BANGUNAN VIHARA'], - ['id_aset' => 373, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '005', 'nama' => 'TANAH UNTUK BANGUNAN KLENTENG/KUIL'], - ['id_aset' => 374, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '006', 'nama' => 'TANAH UNTUK BANGUNAN KREMATORIUM'], - ['id_aset' => 375, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '13', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH UNTUK BANGUNAN TAMPAT IBADAH LAINNYA'], - ['id_aset' => 376, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '14', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAH PENGGUNAAN LAINNYA'], - ['id_aset' => 377, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '14', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PENGGALIAN'], - ['id_aset' => 378, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '14', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PENGGALIAN'], - ['id_aset' => 379, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '14', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TEMPAT AIR HANGAT'], - ['id_aset' => 380, 'golongan' => '2', 'bidang' => '01', 'kelompok' => '14', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAH PENGGUNAAN LAINNYA'], - ['id_aset' => 381, 'golongan' => '3', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN DAN MESIN'], - ['id_aset' => 382, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BESAR'], - ['id_aset' => 383, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BESAR DARAT'], - ['id_aset' => 384, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TRACTOR'], - ['id_aset' => 385, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'CRAWLER TRACTOR + ATTACHMENT'], - ['id_aset' => 386, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'WHEEL TRACTOR + ATTACHMENT'], - ['id_aset' => 387, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'SWAMP TRACTOR + ATTACHMENT'], - ['id_aset' => 388, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'PRIME MOWER'], - ['id_aset' => 389, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'AIRCRAFT TOWING TRACTOR'], - ['id_aset' => 390, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TOWING BAR'], - ['id_aset' => 391, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'BULLDOZER'], - ['id_aset' => 392, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'WHEEL DOZER'], - ['id_aset' => 393, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TRACTOR LAINNYA'], - ['id_aset' => 394, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'GRADER'], - ['id_aset' => 395, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'GRADER + ATTACHMENT'], - ['id_aset' => 396, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'GRADER TOWED TYPE'], - ['id_aset' => 397, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'GRADER LAINNYA'], - ['id_aset' => 398, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'EXCAVATOR'], - ['id_aset' => 399, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'CRAWLER EXCAVATOR + ATTACHMENT'], - ['id_aset' => 400, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'WHEEL EXCAVATOR + ATTACHMENT'], - ['id_aset' => 401, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'EXCAVATOR LAINNYA'], - ['id_aset' => 402, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PILE DRIVER'], - ['id_aset' => 403, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'DIESEL PILE DRIVER'], - ['id_aset' => 404, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'PNEUMATIC PILE DRIVER'], - ['id_aset' => 405, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'VIBRATION PILE DRIVER'], - ['id_aset' => 406, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PILE DRIVER LAINNYA'], - ['id_aset' => 407, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'HAULER'], - ['id_aset' => 408, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'SELF PROPELLED SCRAPER'], - ['id_aset' => 409, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'TOWED SCRAPER'], - ['id_aset' => 410, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'DUMP TRUCK'], - ['id_aset' => 411, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'DUMP WAGON'], - ['id_aset' => 412, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'LORI'], - ['id_aset' => 413, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'HAULER LAINNYA'], - ['id_aset' => 414, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'ASPHALT EQUIPMENT'], - ['id_aset' => 415, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'ASPHALT MIXING PLANT'], - ['id_aset' => 416, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'ASPHALT FINISHER'], - ['id_aset' => 417, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'ASPHALT DISTRIBUTOR'], - ['id_aset' => 418, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'ASPHALT HEATER'], - ['id_aset' => 419, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'ASPHALT TANKER'], - ['id_aset' => 420, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'ASPHALT SPRAYER'], - ['id_aset' => 421, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'ASBUTON DRYER'], - ['id_aset' => 422, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'ASPHALT RECYCLE'], - ['id_aset' => 423, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'COLD MILLING MACHINE'], - ['id_aset' => 424, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'ASPHALT MIXER'], - ['id_aset' => 425, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'BITUMEN / ASPHALT TEST'], - ['id_aset' => 426, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'ASPHALT EQUIPMENT LAINNYA'], - ['id_aset' => 427, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'COMPACTING EQUIPMENT'], - ['id_aset' => 428, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'MACADAM ROLLER/THREE WHEEL ROLLER'], - ['id_aset' => 429, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'TANDEM ROLLER'], - ['id_aset' => 430, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'MESH ROLLER'], - ['id_aset' => 431, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'VIBRATION ROLLER'], - ['id_aset' => 432, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'TYRE ROLLER'], - ['id_aset' => 433, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'SOIL STABILIZER'], - ['id_aset' => 434, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'SHEEPFOOT/TAMPING ROLLER'], - ['id_aset' => 435, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '008', 'nama' => 'STAMPER'], - ['id_aset' => 436, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '009', 'nama' => 'VIBRATION PLATE'], - ['id_aset' => 437, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '010', 'nama' => 'PEMADAT SAMPAH'], - ['id_aset' => 438, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '011', 'nama' => 'TRUCK & BUSH TYRE'], - ['id_aset' => 439, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'COMPACTING EQUIPMENT LAINNYA'], - ['id_aset' => 440, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'AGGREGATE & CONCRETE EQUIPMENT'], - ['id_aset' => 441, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'STONE CRUSHING PLANT'], - ['id_aset' => 442, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'SCREENING CLASSIFER'], - ['id_aset' => 443, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'STONE CHUSER'], - ['id_aset' => 444, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '004', 'nama' => 'AGGREGATE WASHER'], - ['id_aset' => 445, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '005', 'nama' => 'BATCHING PLANT'], - ['id_aset' => 446, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '006', 'nama' => 'CONCRETE FINISHER'], - ['id_aset' => 447, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '007', 'nama' => 'CONCRETE PUMP'], - ['id_aset' => 448, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '008', 'nama' => 'CONCRETE LIFT'], - ['id_aset' => 449, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '009', 'nama' => 'CONCRETE PRESTRES'], - ['id_aset' => 450, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '010', 'nama' => 'CONCRETE CUTTER'], - ['id_aset' => 451, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '011', 'nama' => 'CONCRETE MIXER'], - ['id_aset' => 452, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '012', 'nama' => 'CONCRETE VIBRATOR'], - ['id_aset' => 453, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '013', 'nama' => 'CONCRETE BREAKER'], - ['id_aset' => 454, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '014', 'nama' => 'AGGREGATE/CHIP SPREADER'], - ['id_aset' => 455, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '015', 'nama' => 'GRAUTING MACHINE'], - ['id_aset' => 456, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '016', 'nama' => 'CONCRETE MOULD'], - ['id_aset' => 457, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '017', 'nama' => 'PIPE PLANT EQUIPMENT'], - ['id_aset' => 458, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '018', 'nama' => 'CONCRETE MIXER TANDEM'], - ['id_aset' => 459, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '019', 'nama' => 'ONION HEAD MACHINE'], - ['id_aset' => 460, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '020', 'nama' => 'PAN MIXER'], - ['id_aset' => 461, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '021', 'nama' => 'ASBUTON MIXER'], - ['id_aset' => 462, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '022', 'nama' => 'PADDLE MIXER'], - ['id_aset' => 463, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '023', 'nama' => 'ASPHALT BUTON CRUSHER'], - ['id_aset' => 464, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '024', 'nama' => 'ROCK DRILL'], - ['id_aset' => 465, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'AGGREGATE & CONCRETE EQUIPMENT LAINNYA'], - ['id_aset' => 466, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'LOADER'], - ['id_aset' => 467, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'TRACK LOADER + ATTACHMENT'], - ['id_aset' => 468, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'WHEEL LOADER + ATTACHMENT'], - ['id_aset' => 469, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'MAIN DECK LOADER'], - ['id_aset' => 470, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => 'CONVEYOR BELT TRUCK'], - ['id_aset' => 471, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '005', 'nama' => 'HIGH LIFT LOADER'], - ['id_aset' => 472, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '006', 'nama' => 'BACKHOE LOADER'], - ['id_aset' => 473, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'LOADER LAINNYA'], - ['id_aset' => 474, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGANGKAT'], - ['id_aset' => 475, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'TOWER CRANE'], - ['id_aset' => 476, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'TRUCK MOUNTED CRANE'], - ['id_aset' => 477, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'TRUCK CRANE'], - ['id_aset' => 478, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'WHEEL CRANE'], - ['id_aset' => 479, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '005', 'nama' => 'FORKLIFT'], - ['id_aset' => 480, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '006', 'nama' => 'FORTAL CRANE'], - ['id_aset' => 481, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '007', 'nama' => 'CRAWLER CRANE'], - ['id_aset' => 482, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '008', 'nama' => 'CONTAINER CRANE'], - ['id_aset' => 483, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '009', 'nama' => 'TRANSTAINER'], - ['id_aset' => 484, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '010', 'nama' => 'TRAVELT CONTAINER STACKER'], - ['id_aset' => 485, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '011', 'nama' => 'TOP LOADER'], - ['id_aset' => 486, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '012', 'nama' => 'RAIL LIFTER'], - ['id_aset' => 487, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '013', 'nama' => 'TRACK MOTOR CAR'], - ['id_aset' => 488, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '014', 'nama' => 'SALVAGE PESAWAT UDARA'], - ['id_aset' => 489, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '015', 'nama' => 'HAND PALET TRUCK'], - ['id_aset' => 490, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '016', 'nama' => 'CRANE SHOVEL 20 T'], - ['id_aset' => 491, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '017', 'nama' => 'SHOP WOOD WORKING CRANE SHOVEL 20 T'], - ['id_aset' => 492, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGANGKAT LAINNYA'], - ['id_aset' => 493, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => 'MESIN PROSES'], - ['id_aset' => 494, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN PEMBUAT PELLET'], - ['id_aset' => 495, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN PEMBUAT ES'], - ['id_aset' => 496, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN PENGHANCUR ES'], - ['id_aset' => 497, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '004', 'nama' => 'WATER TREATMENT (MESIN PROSES)'], - ['id_aset' => 498, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '005', 'nama' => 'SEA WATER TREATMENT'], - ['id_aset' => 499, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN PENGOLAH DODOL'], - ['id_aset' => 500, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => 'MESIN PROSES LAINNYA'], - ['id_aset' => 501, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BESAR DARAT LAINNYA'], - ['id_aset' => 502, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BESAR DARAT LAINNYA'], - ['id_aset' => 503, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BESAR APUNG'], - ['id_aset' => 504, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'DREDGER'], - ['id_aset' => 505, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'SUCTION DREDGER'], - ['id_aset' => 506, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'BUCKET DREDGER'], - ['id_aset' => 507, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'CUTTER SUCTION DREDGER'], - ['id_aset' => 508, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'DREDGER LAINNYA'], - ['id_aset' => 509, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'FLOATING EXCAVATOR'], - ['id_aset' => 510, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'FLOATING EXCAVATOR + ATTACHMENT'], - ['id_aset' => 511, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'FLOATING CRANE'], - ['id_aset' => 512, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'FLOATING PUMP'], - ['id_aset' => 513, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'FLOATING EXCAVATOR LAINNYA'], - ['id_aset' => 514, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'AMPHIBI DREDGER'], - ['id_aset' => 515, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PLAIN SUCTION'], - ['id_aset' => 516, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'CUTTER (AMPHIBI DREDGER)'], - ['id_aset' => 517, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'CLAMSHELL / DRAGLINE'], - ['id_aset' => 518, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'AMPHIBI DREDGER LAINNYA'], - ['id_aset' => 519, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'KAPAL TARIK'], - ['id_aset' => 520, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'KAPAL TARIK'], - ['id_aset' => 521, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'KAPAL TARIK LAINNYA'], - ['id_aset' => 522, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'MESIN PROSES APUNG'], - ['id_aset' => 523, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'WATER TREATMENT (MESIN PROSES APUNG)'], - ['id_aset' => 524, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'MESIN PROSES APUNG LAINNYA'], - ['id_aset' => 525, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BESAR APUNG LAINNYA'], - ['id_aset' => 526, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BESAR APUNG LAINNYA'], - ['id_aset' => 527, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BANTU'], - ['id_aset' => 528, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENARIK'], - ['id_aset' => 529, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PENARIK KAPAL'], - ['id_aset' => 530, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PENARIK JARING'], - ['id_aset' => 531, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENARIK LAINNYA'], - ['id_aset' => 532, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'FEEDER'], - ['id_aset' => 533, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'ELEVATOR /LIFT'], - ['id_aset' => 534, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BELT CONVEYOR (FEEDER)'], - ['id_aset' => 535, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'SCREW CONVEYOR (FEEDER)'], - ['id_aset' => 536, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'ESCALATOR'], - ['id_aset' => 537, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'GANDOLA'], - ['id_aset' => 538, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'ELEVATOR (FEEDER)'], - ['id_aset' => 539, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'GANGWAY'], - ['id_aset' => 540, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'FEEDER LAINNYA (ALAT BESAR)'], - ['id_aset' => 541, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'COMPRESSOR'], - ['id_aset' => 542, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSPORTABLE COMPRESSOR'], - ['id_aset' => 543, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'PORTABLE COMPRESSOR'], - ['id_aset' => 544, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'STATIONARY COMPRESSOR'], - ['id_aset' => 545, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'AIR COMPRESOR'], - ['id_aset' => 546, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'COMPRESSOR PNEUMATIC TOOL 25 GMP'], - ['id_aset' => 547, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'COMPRESSOR LAINNYA'], - ['id_aset' => 548, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ELECTRIC GENERATING SET'], - ['id_aset' => 549, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSPORTABLE GENERATING SET'], - ['id_aset' => 550, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'PORTABLE GENERATING SET'], - ['id_aset' => 551, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'STATIONARY GENERATING SET'], - ['id_aset' => 552, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'DYNAMO ELECTRIC'], - ['id_aset' => 553, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ELECTRIC GENERATING SET LAINNYA'], - ['id_aset' => 554, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'POMPA'], - ['id_aset' => 555, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSPORTABLE WATER PUMP'], - ['id_aset' => 556, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'PORTABLE WATER PUMP'], - ['id_aset' => 557, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'STATIONARY WATER PUMP'], - ['id_aset' => 558, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'POMPA LUMPUR'], - ['id_aset' => 559, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'SUMERSIBLE PUMP'], - ['id_aset' => 560, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'POMPA TANGAN'], - ['id_aset' => 561, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'POMPA ANGIN'], - ['id_aset' => 562, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'POMPA BENSIN/MINYAK STATIONERY'], - ['id_aset' => 563, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'POMPA BENSIN/MINYAK TRANSPORTABLE'], - ['id_aset' => 564, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'POMPA AIR'], - ['id_aset' => 565, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'WATER DISTRIBUTOR'], - ['id_aset' => 566, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'WATER PURIFICATION'], - ['id_aset' => 567, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'POMPA LAINNYA'], - ['id_aset' => 568, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'MESIN BOR'], - ['id_aset' => 569, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN BOR BATU'], - ['id_aset' => 570, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN BOR TANAH'], - ['id_aset' => 571, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN BOR BETON'], - ['id_aset' => 572, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'MESIN BOR LAINNYA'], - ['id_aset' => 573, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'UNIT PEMELIHARAAN LAPANGAN'], - ['id_aset' => 574, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'MOBIL WORKSHOP'], - ['id_aset' => 575, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'SERVICE CAR'], - ['id_aset' => 576, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'FLOATING WORKSHOP'], - ['id_aset' => 577, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'ROAD MAINTENANCE TRUCK'], - ['id_aset' => 578, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'SWEEPER TRUCK'], - ['id_aset' => 579, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'WRECK CAR'], - ['id_aset' => 580, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'LEAK DETECTOR (UNIT PEMELIHARAAN LAPANGAN)'], - ['id_aset' => 581, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '008', 'nama' => 'PIPE LOCATOR'], - ['id_aset' => 582, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '009', 'nama' => 'METAL LOCATOR'], - ['id_aset' => 583, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN DIESEL'], - ['id_aset' => 584, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '011', 'nama' => 'KETLE HEATING'], - ['id_aset' => 585, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '012', 'nama' => 'SWEEPER PENGHISAP OLI'], - ['id_aset' => 586, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '013', 'nama' => 'FUEL TANK'], - ['id_aset' => 587, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '014', 'nama' => 'GRASS COLECTOR'], - ['id_aset' => 588, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '015', 'nama' => 'MESIN PEMOTONG ASPAL (DRAGING)'], - ['id_aset' => 589, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '016', 'nama' => 'SWEEPER ROTARY'], - ['id_aset' => 590, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '017', 'nama' => 'EARTH VAGER TRUCK'], - ['id_aset' => 591, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '018', 'nama' => 'SCRAPPER'], - ['id_aset' => 592, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '019', 'nama' => 'ROSTER'], - ['id_aset' => 593, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '020', 'nama' => 'SHOP TRUCK EQUIPMENT'], - ['id_aset' => 594, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'UNIT PEMELIHARAAN LAPANGAN LAINNYA'], - ['id_aset' => 595, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN AIR KOTOR'], - ['id_aset' => 596, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PENGOLAHAN AIR KOTOR'], - ['id_aset' => 597, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN AIR KOTOR LAINNYA'], - ['id_aset' => 598, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'PEMBANGKIT UAP AIR PANAS/STEAM GENERATOR'], - ['id_aset' => 599, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMBANGKIT UAP AIR PANAS'], - ['id_aset' => 600, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'PEMBANGKIT UAP AIR PANAS/STEAM GENERATOR LAINNYA'], - ['id_aset' => 601, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KEBAKARAN HUTAN'], - ['id_aset' => 602, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '001', 'nama' => 'BACKPACK PUMP (POMPA PUNGGUNG BESAR)'], - ['id_aset' => 603, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '002', 'nama' => 'FLOATING FIRE PUMP (POMPA PUNGGUNG KECIL)'], - ['id_aset' => 604, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '003', 'nama' => 'POMPA PORTABLE'], - ['id_aset' => 605, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '004', 'nama' => 'JET SHOOTER'], - ['id_aset' => 606, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '005', 'nama' => 'GOLOK PEMADAM'], - ['id_aset' => 607, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '006', 'nama' => 'BLADE SHOVEL (SEKOP PEMADAM)'], - ['id_aset' => 608, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '007', 'nama' => 'SUMBUT'], - ['id_aset' => 609, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '008', 'nama' => 'VELD BED'], - ['id_aset' => 610, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '009', 'nama' => 'RANSEL PEMADAM'], - ['id_aset' => 611, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '010', 'nama' => 'FULL BODY HARNESS'], - ['id_aset' => 612, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '011', 'nama' => 'SIT HARNESS'], - ['id_aset' => 613, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '012', 'nama' => 'FIGURE'], - ['id_aset' => 614, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '013', 'nama' => 'ASCENDER'], - ['id_aset' => 615, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '014', 'nama' => 'SCROLL LOCK'], - ['id_aset' => 616, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '015', 'nama' => 'PERLENGKAPAN RESCUE'], - ['id_aset' => 617, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '016', 'nama' => 'AUTOMATIC SNAP HOOK'], - ['id_aset' => 618, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '017', 'nama' => 'TANGGA TALI'], - ['id_aset' => 619, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '018', 'nama' => 'NOZEL TABIR ALUMUNIUM'], - ['id_aset' => 620, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '019', 'nama' => 'NOZEL KUNINGAN PERNEKEL'], - ['id_aset' => 621, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '020', 'nama' => 'SELANG AIR'], - ['id_aset' => 622, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '021', 'nama' => 'BREATHING APARATUS (TABUNG 10 KG)'], - ['id_aset' => 623, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '022', 'nama' => 'GEPYOK PEMADAM'], - ['id_aset' => 624, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '023', 'nama' => 'FIRE RAKE (GARU TAJAM)'], - ['id_aset' => 625, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '024', 'nama' => 'PULASKI AXE (KAPAK DUA FUNGSI)'], - ['id_aset' => 626, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '025', 'nama' => 'FIRE TOOL (GARU PACUL/ CANGKUL)'], - ['id_aset' => 627, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '026', 'nama' => 'SABIT SEMAK'], - ['id_aset' => 628, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '027', 'nama' => 'FLAPPER (PEMUKUL API)'], - ['id_aset' => 629, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '028', 'nama' => 'DRIP TORCH (OBOR SULUT TETES)'], - ['id_aset' => 630, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '029', 'nama' => 'FILES (KIKIR BAJA)'], - ['id_aset' => 631, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '030', 'nama' => 'KACA MATA (LENSA TAHAN PANAS)'], - ['id_aset' => 632, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '031', 'nama' => 'KOPEL REM'], - ['id_aset' => 633, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '032', 'nama' => 'FELPES'], - ['id_aset' => 634, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '033', 'nama' => 'KANTONG AIR'], - ['id_aset' => 635, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '034', 'nama' => 'BATANG POMPA'], - ['id_aset' => 636, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN KEBAKARAN HUTAN LAINNYA'], - ['id_aset' => 637, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN SELAM'], - ['id_aset' => 638, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '001', 'nama' => 'TANKS (TABUNG SELAM)'], - ['id_aset' => 639, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '002', 'nama' => 'SEPATU KARANG'], - ['id_aset' => 640, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '003', 'nama' => 'KNIVES (PISAU SELAM)'], - ['id_aset' => 641, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '004', 'nama' => 'DIVE LIGHTS (SENTER SELAM)'], - ['id_aset' => 642, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '005', 'nama' => 'REGULATOR INSTRUMENTS'], - ['id_aset' => 643, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '006', 'nama' => 'BOUYANCY COMPENSATOR DEVICE (BCD)'], - ['id_aset' => 644, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '007', 'nama' => 'BELT (SABUK PEMBERAT)'], - ['id_aset' => 645, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '008', 'nama' => 'WEIGHT (PEMBERAT)'], - ['id_aset' => 646, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '009', 'nama' => 'DIVING GLOVES (SARUNG TANGAN SELAM)'], - ['id_aset' => 647, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '010', 'nama' => 'KOMPRESOR SELAM'], - ['id_aset' => 648, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '011', 'nama' => 'PELAMPUNG LIFE JACKET'], - ['id_aset' => 649, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN SELAM LAINNYA'], - ['id_aset' => 650, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN SAR MOUNTENERING'], - ['id_aset' => 651, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '001', 'nama' => 'TALI KAMANTEL STATIC'], - ['id_aset' => 652, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '002', 'nama' => 'TALI KAMANTEL DINAMIC'], - ['id_aset' => 653, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '003', 'nama' => 'RAINCOAT (PONCO)'], - ['id_aset' => 654, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '004', 'nama' => 'SEAT HARNESS'], - ['id_aset' => 655, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '005', 'nama' => 'PRUSIK'], - ['id_aset' => 656, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '006', 'nama' => 'JUMMAR'], - ['id_aset' => 657, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '007', 'nama' => 'PULLEY'], - ['id_aset' => 658, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '008', 'nama' => 'DESCENDER FIGURE OG EIGHT'], - ['id_aset' => 659, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '009', 'nama' => 'CARABINER NON SCREW'], - ['id_aset' => 660, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '010', 'nama' => 'WEBBING'], - ['id_aset' => 661, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '011', 'nama' => 'TANDU LIPAT'], - ['id_aset' => 662, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN SAR MOUNTENERING LAINNYA'], - ['id_aset' => 663, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BANTU LAINNYA'], - ['id_aset' => 664, 'golongan' => '3', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BANTU LAINNYA'], - ['id_aset' => 665, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN'], - ['id_aset' => 666, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN DARAT BERMOTOR'], - ['id_aset' => 667, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN DINAS BERMOTOR PERORANGAN'], - ['id_aset' => 668, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'SEDAN'], - ['id_aset' => 669, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'JEEP'], - ['id_aset' => 670, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'STATION WAGON'], - ['id_aset' => 671, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN DINAS BERMOTOR PERORANGAN LAINNYA'], - ['id_aset' => 672, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN BERMOTOR PENUMPANG'], - ['id_aset' => 673, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BUS ( PENUMPANG 30 ORANG KEATAS )'], - ['id_aset' => 674, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MICRO BUS ( PENUMPANG 15 S/D 29 ORANG )'], - ['id_aset' => 675, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'MINI BUS ( PENUMPANG 14 ORANG KEBAWAH )'], - ['id_aset' => 676, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'KENDARAAN LAPIS BAJA'], - ['id_aset' => 677, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN BERMOTOR PENUMPANG LAINNYA'], - ['id_aset' => 678, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN BERMOTOR ANGKUTAN BARANG'], - ['id_aset' => 679, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TRUCK + ATTACHMENT'], - ['id_aset' => 680, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'PICK UP'], - ['id_aset' => 681, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'YEENGLER/TRAILER'], - ['id_aset' => 682, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SEMI TRAILER'], - ['id_aset' => 683, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'TRUCK PONTON DENGAN TRAILLER'], - ['id_aset' => 684, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'DALHURA'], - ['id_aset' => 685, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN BERMOTOR ANGKUTAN BARANG LAINNYA'], - ['id_aset' => 686, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN BERMOTOR BERODA DUA'], - ['id_aset' => 687, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SEPEDA MOTOR'], - ['id_aset' => 688, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SCOOTER'], - ['id_aset' => 689, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'SEPEDA MOTOR PERPUSTAKAAN KELILING'], - ['id_aset' => 690, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'SEPEDA MOTOR PATROLI'], - ['id_aset' => 691, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'SEPEDA MOTOR PENGAWALAN'], - ['id_aset' => 692, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN BERMOTOR BERODA DUA LAINNYA'], - ['id_aset' => 693, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN BERMOTOR KHUSUS'], - ['id_aset' => 694, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'MOBIL AMBULANCE'], - ['id_aset' => 695, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'MOBIL JENAZAH'], - ['id_aset' => 696, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'MOBIL UNIT PENERANGAN DARAT'], - ['id_aset' => 697, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'MOBIL PEMADAM KEBAKARAN'], - ['id_aset' => 698, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'MOBIL TINJA'], - ['id_aset' => 699, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'MOBIL TANGKI AIR'], - ['id_aset' => 700, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'MOBIL UNIT MONITORING FREKWENSI'], - ['id_aset' => 701, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'MOBIL UNIT PERPUSTAKAAN KELILING'], - ['id_aset' => 702, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'MOBIL UNIT VISUAL MINI (MUVIANI)'], - ['id_aset' => 703, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'MOBIL UNIT SATELITE LINK VAN'], - ['id_aset' => 704, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'MOBIL UNIT PANGGUNG'], - ['id_aset' => 705, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'MOBIL UNIT PAMERAN'], - ['id_aset' => 706, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'OUT SIDE BROAD CAST VAN RADIO'], - ['id_aset' => 707, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'OUT SIDE BROAD CAST VAN TELEVISI'], - ['id_aset' => 708, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'MOBIL UNIT PRODUKSI FILM'], - ['id_aset' => 709, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'MOBIL UNIT PRODUKSI TELEVISI'], - ['id_aset' => 710, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'MOBIL UNIT PRODUKSI CINERAMA'], - ['id_aset' => 711, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'MOBIL UNIT KESEHATAN MASYARAKAT'], - ['id_aset' => 712, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'MOBIL UNIT KESEHATAN HEWAN'], - ['id_aset' => 713, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'MOBIL UNIT TAHANAN'], - ['id_aset' => 714, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'MOBIL UNIT PENGANGKUT UANG'], - ['id_aset' => 715, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'TRUCK SAMPAH'], - ['id_aset' => 716, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'MOBIL TANGKI BAHAN BAKAR'], - ['id_aset' => 717, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'MOBIL UNIT RONTGEN'], - ['id_aset' => 718, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'MOBIL UNIT REHABILITASI SOSIAL KELILING'], - ['id_aset' => 719, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '026', 'nama' => 'BOMP TRAILER'], - ['id_aset' => 720, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '027', 'nama' => 'KENDARAAN KLINIK'], - ['id_aset' => 721, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '028', 'nama' => 'MOBIL UNIT PENGANGKUT LIMBAH RADIO AKTIF'], - ['id_aset' => 722, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '029', 'nama' => 'MOBIL TRANFUSI DARAH'], - ['id_aset' => 723, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '030', 'nama' => 'KENDARAAN TIM PEMELIHARAAN'], - ['id_aset' => 724, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '031', 'nama' => 'MOBIL PENARIK (UNIMOG)'], - ['id_aset' => 725, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '032', 'nama' => 'KENDARAAN SATMOBEK/SATMOBENG/SATMOMAS'], - ['id_aset' => 726, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '033', 'nama' => 'MOBIL WORK SHOP/SERVICES'], - ['id_aset' => 727, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '034', 'nama' => 'KENDARAAN DEREK'], - ['id_aset' => 728, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '035', 'nama' => 'MOBIL UNIT KHUSUS ALJIHANDAK'], - ['id_aset' => 729, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '036', 'nama' => 'AIRCRAFT AIR CONDITIONING'], - ['id_aset' => 730, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '037', 'nama' => 'KENDARAAN GIRAFLE RADAR'], - ['id_aset' => 731, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '038', 'nama' => 'MOBIL PERS VAN'], - ['id_aset' => 732, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '039', 'nama' => 'KENDARAAN UNIT BEDAH'], - ['id_aset' => 733, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '040', 'nama' => 'MOBILE FLOODLIGHT'], - ['id_aset' => 734, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '041', 'nama' => 'KENDARAAN PENGANGKUT TANK'], - ['id_aset' => 735, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '042', 'nama' => 'CRASH CAR'], - ['id_aset' => 736, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '043', 'nama' => 'KENDARAAN WATER CANON'], - ['id_aset' => 737, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '044', 'nama' => 'FOAM VEHICLE'], - ['id_aset' => 738, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '045', 'nama' => 'KENDARAAN TOILET'], - ['id_aset' => 739, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '046', 'nama' => 'RAPID INVENTION VEHICLE'], - ['id_aset' => 740, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '047', 'nama' => 'KENDARAAN GAS AIRMATA'], - ['id_aset' => 741, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '048', 'nama' => 'KENDARAAN TAKTIS'], - ['id_aset' => 742, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '049', 'nama' => 'KENDARAAN VIP (ANTI PELURU)'], - ['id_aset' => 743, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '050', 'nama' => 'KENDARAAN TANGGA PESAWAT'], - ['id_aset' => 744, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '051', 'nama' => 'KENDARAAN METEO'], - ['id_aset' => 745, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '052', 'nama' => 'KENDARAAN SWEEPER'], - ['id_aset' => 746, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '053', 'nama' => 'KENDARAAN KAMAR SANDI'], - ['id_aset' => 747, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '054', 'nama' => 'KENDARAAN JAMMING FREKUENSI'], - ['id_aset' => 748, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '055', 'nama' => 'KENDARAAN MONITORING SINYAL'], - ['id_aset' => 749, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '056', 'nama' => 'MOBIL DAPUR LAPANGAN'], - ['id_aset' => 750, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '057', 'nama' => 'MOBIL PENARIK BARRIER'], - ['id_aset' => 751, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '058', 'nama' => 'MOBIL OPERASIONAL PJR'], - ['id_aset' => 752, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '059', 'nama' => 'AUTOMATIC UNGUIDED VEHICLE (AUGV)'], - ['id_aset' => 753, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '060', 'nama' => 'RESCUE CAR'], - ['id_aset' => 754, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '061', 'nama' => 'RAPID DEPLOYMENT LAND SAR'], - ['id_aset' => 755, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '062', 'nama' => 'RESCUE TRUCK'], - ['id_aset' => 756, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '063', 'nama' => 'MONILOG (MOBIL LOGISTIK/ PERSONIL)'], - ['id_aset' => 757, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '064', 'nama' => 'MOBIL LATIH'], - ['id_aset' => 758, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '065', 'nama' => 'RAN SWITCH WAGON'], - ['id_aset' => 759, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '066', 'nama' => 'RAN CACDRI WAGON'], - ['id_aset' => 760, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '067', 'nama' => 'RAN TRAKTOR'], - ['id_aset' => 761, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '068', 'nama' => 'RAN TANGKI'], - ['id_aset' => 762, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '069', 'nama' => 'RAN ZAT ASAM'], - ['id_aset' => 763, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '070', 'nama' => 'RAN PENYAPU LANDASAN'], - ['id_aset' => 764, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '071', 'nama' => 'RAN PANDU PESAWAT'], - ['id_aset' => 765, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '072', 'nama' => 'RAN PENARIK PESAWAT'], - ['id_aset' => 766, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '073', 'nama' => 'RAN PENYAPU HANGGAR'], - ['id_aset' => 767, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '074', 'nama' => 'RAN DRUG CHUTE'], - ['id_aset' => 768, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '075', 'nama' => 'RAN PEMBANGKIT TENAGA'], - ['id_aset' => 769, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '076', 'nama' => 'RAN CRIME SQUID'], - ['id_aset' => 770, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '077', 'nama' => 'RAN WEAPON CARRIER'], - ['id_aset' => 771, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '078', 'nama' => 'RAN LABORATORIUM / UJI COBA'], - ['id_aset' => 772, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '079', 'nama' => 'RAN KANTIN'], - ['id_aset' => 773, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '080', 'nama' => 'RAN PATROLI'], - ['id_aset' => 774, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '081', 'nama' => 'RAN JEEP KOMMAB'], - ['id_aset' => 775, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '082', 'nama' => 'RAN RECOVERY'], - ['id_aset' => 776, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '083', 'nama' => 'RAN PENGISI BB PESAWAT'], - ['id_aset' => 777, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '084', 'nama' => 'RAN WRECKER'], - ['id_aset' => 778, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '085', 'nama' => 'RAN FORKLIP'], - ['id_aset' => 779, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '086', 'nama' => 'MOBIL PATROLI'], - ['id_aset' => 780, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '087', 'nama' => 'KENDARAAN APC'], - ['id_aset' => 781, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '088', 'nama' => 'KENDARAAN DARE V'], - ['id_aset' => 782, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '089', 'nama' => 'KENDARAAN/MOBIL PENGAWALAN'], - ['id_aset' => 783, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '090', 'nama' => 'MOBIL IRUP'], - ['id_aset' => 784, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '091', 'nama' => 'MOBIL KOMLEK POLRI'], - ['id_aset' => 785, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '092', 'nama' => 'MOBIL UNIT TKP'], - ['id_aset' => 786, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '093', 'nama' => 'MOBIL UNIT LAKA LANTAS'], - ['id_aset' => 787, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '094', 'nama' => 'MOBIL UNIT IDENTIFIKASI'], - ['id_aset' => 788, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '095', 'nama' => 'MOBIL UNIT LABFOR'], - ['id_aset' => 789, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '096', 'nama' => 'MOBIL UNIT PENERANGAN POLRI'], - ['id_aset' => 790, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '097', 'nama' => 'MOBIL UNIT DEREK'], - ['id_aset' => 791, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '098', 'nama' => 'MOBIL UNIT SATWA'], - ['id_aset' => 792, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '099', 'nama' => 'RANTIS PHH'], - ['id_aset' => 793, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '100', 'nama' => 'KENDARAAN POS POLISI MOBILE'], - ['id_aset' => 794, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '101', 'nama' => 'MOBIL UNIT ALSUS JIHANDAK'], - ['id_aset' => 795, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '102', 'nama' => 'MOBIL GOLFCAR'], - ['id_aset' => 796, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '103', 'nama' => 'RANTIS RESCUE SAMAPTA'], - ['id_aset' => 797, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '104', 'nama' => 'RANSUS SATWA ANJING TYPE KECIL'], - ['id_aset' => 798, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '105', 'nama' => 'RANSUS SATWA ANJING TYPE SEDANG'], - ['id_aset' => 799, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '106', 'nama' => 'RANSUS SATWA ANJING TYPE BESAR'], - ['id_aset' => 800, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '107', 'nama' => 'RANSUS SATWA KUDA TYPE SEDANG'], - ['id_aset' => 801, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '108', 'nama' => 'RANSUS SATWA KUDA TYPE BESAR'], - ['id_aset' => 802, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '109', 'nama' => 'TRAILER KUDA'], - ['id_aset' => 803, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN BERMOTOR KHUSUS LAINNYA'], - ['id_aset' => 804, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN DARAT BERMOTOR LAINNYA'], - ['id_aset' => 805, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN DARAT BERMOTOR LAINNYA'], - ['id_aset' => 806, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN DARAT TAK BERMOTOR'], - ['id_aset' => 807, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN TAK BERMOTOR ANGKUTAN BARANG'], - ['id_aset' => 808, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'GEROBAK TARIK'], - ['id_aset' => 809, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'GEROBAK DORONG'], - ['id_aset' => 810, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'CARAVAN'], - ['id_aset' => 811, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'LORI DORONG'], - ['id_aset' => 812, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TRAILER'], - ['id_aset' => 813, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'CONTAINER DOLLY'], - ['id_aset' => 814, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'PALLET DOLLY'], - ['id_aset' => 815, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'BAGGAGE AND MAIL CART'], - ['id_aset' => 816, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'BAGGAGE TROLLY'], - ['id_aset' => 817, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'MEJA DORONG SAJI/TROLLEY SAJI'], - ['id_aset' => 818, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'RODA DUA BERINSULASI'], - ['id_aset' => 819, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'RODA TIGA/ GEROBAK KAYUH BERINSULASI'], - ['id_aset' => 820, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN TAK BERMOTOR ANGKUTAN BARANG LAINNYA'], - ['id_aset' => 821, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'KENDARAAN TAK BERMOTOR PENUMPANG'], - ['id_aset' => 822, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SEPEDA'], - ['id_aset' => 823, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'KUDA (KENDARAAN TAK BERMOTOR PENUMPANG)'], - ['id_aset' => 824, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'KENDARAAN TAK BERMOTOR PENUMPANG LAINNYA'], - ['id_aset' => 825, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN KERETA REL TAK BERMOTOR'], - ['id_aset' => 826, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'KERETA PENUMPANG'], - ['id_aset' => 827, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'KERETA MAKAN'], - ['id_aset' => 828, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'POWER CAR'], - ['id_aset' => 829, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'GERBONG BARANG TERTUTUP'], - ['id_aset' => 830, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'GERBONG BARANG TERBUKA'], - ['id_aset' => 831, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN KERETA REL TAK BERMOTOR LAINNYA'], - ['id_aset' => 832, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN DARAT TAK BERMOTOR LAINNYA'], - ['id_aset' => 833, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN DARAT TAK BERMOTOR LAINNYA'], - ['id_aset' => 834, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR'], - ['id_aset' => 835, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR UNTUK BARANG'], - ['id_aset' => 836, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'KAPAL MINYAK (TANKER)'], - ['id_aset' => 837, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TONGKANG BERMOTOR'], - ['id_aset' => 838, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TUG BOAT + ATTACHMENT'], - ['id_aset' => 839, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'LANDING SHIP TRANSPORTATION( L.S.T )'], - ['id_aset' => 840, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'KAPAL CARGO (KAPAL BARANG)'], - ['id_aset' => 841, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TRUCK AIR'], - ['id_aset' => 842, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR UNTUK BARANG LAINNYA'], - ['id_aset' => 843, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR UNTUK PENUMPANG'], - ['id_aset' => 844, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SPEED BOAT / MOTOR TEMPEL'], - ['id_aset' => 845, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MOTOR BOAT'], - ['id_aset' => 846, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'KLOTOK'], - ['id_aset' => 847, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'FERRY'], - ['id_aset' => 848, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'HIDROFOIL'], - ['id_aset' => 849, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'JETFOIL'], - ['id_aset' => 850, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'LONG BOAT'], - ['id_aset' => 851, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'KAPAL PASSANGER (KAPAL PENUMPANG)'], - ['id_aset' => 852, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'PERAHU KAYU'], - ['id_aset' => 853, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR UNTUK PENUMPANG LAINNYA'], - ['id_aset' => 854, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR KHUSUS'], - ['id_aset' => 855, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SURVEY BOAT'], - ['id_aset' => 856, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'KAPAL ANTI POLUSI'], - ['id_aset' => 857, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'KAPAL PERAMBUAN'], - ['id_aset' => 858, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'OUT BOAT MOTOR'], - ['id_aset' => 859, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'KAPAL HYDROGRAFI'], - ['id_aset' => 860, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'KAPAL UNIT PENERANGAN AIR'], - ['id_aset' => 861, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'KAPAL VISUAL MINI'], - ['id_aset' => 862, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'KAPAL PENANGKAP IKAN'], - ['id_aset' => 863, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'KAPAL PENGANGKUT HEWAN'], - ['id_aset' => 864, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'KAPAL PATROLI PANTAI'], - ['id_aset' => 865, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'KAPAL MOTOR PERPUSTAKAAN KELILING'], - ['id_aset' => 866, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'FLOATING WORK SHOP/DOCK'], - ['id_aset' => 867, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'MORING BOAT/KEPIL'], - ['id_aset' => 868, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'SUCTION DREDGER/KERUK HISAP'], - ['id_aset' => 869, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'QUTTER DREDGER/KERUK BOR'], - ['id_aset' => 870, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'BUCKET DREDGER/KERUK TIMBA'], - ['id_aset' => 871, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'CLAMPSHEL DREDGER/KERUK CAKRAM'], - ['id_aset' => 872, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '018', 'nama' => 'ALAT ANGKUTAN APUNG UNTUK MANCING'], - ['id_aset' => 873, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '019', 'nama' => 'FLOATING PILE + ATTACHMENT (ALAT ANGKUTAN APUNG BERMOTOR KHUSUS)'], - ['id_aset' => 874, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '020', 'nama' => 'SEKOCI MOTOR TEMPEL'], - ['id_aset' => 875, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '021', 'nama' => 'PERAHU MOTOR TEMPEL'], - ['id_aset' => 876, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '022', 'nama' => 'KAPAL OSEANOGRAFI'], - ['id_aset' => 877, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '023', 'nama' => 'PERAHU TRADISIONAL'], - ['id_aset' => 878, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '024', 'nama' => 'SEA RIDER'], - ['id_aset' => 879, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '025', 'nama' => 'HOVER CRAFT'], - ['id_aset' => 880, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '026', 'nama' => 'KAPAL PENGANGKUT IKAN'], - ['id_aset' => 881, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '027', 'nama' => 'KAPAL PENGOLAH IKAN'], - ['id_aset' => 882, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '028', 'nama' => 'KAPAL PENELITIAN/ EKSPLORASI PERIKANAN'], - ['id_aset' => 883, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '029', 'nama' => 'KAPAL PENDUKUNG OPERASI PENANGKAPAN IKAN'], - ['id_aset' => 884, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '030', 'nama' => 'KAPAL PENDUKUNG OPERASI PEMBUDIDAYAAN IKAN'], - ['id_aset' => 885, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '031', 'nama' => 'KAPAL PENGAWAS PERIKANAN'], - ['id_aset' => 886, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '032', 'nama' => 'PERAHU INTAI 3 ORANG'], - ['id_aset' => 887, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '033', 'nama' => 'PERAHU SERBU 15 ORANG'], - ['id_aset' => 888, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '034', 'nama' => 'KAPAL PATROLI POLISI'], - ['id_aset' => 889, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '035', 'nama' => 'JET SKY'], - ['id_aset' => 890, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR KHUSUS LAINNYA'], - ['id_aset' => 891, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR LAINNYA'], - ['id_aset' => 892, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG BERMOTOR LAINNYA'], - ['id_aset' => 893, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR'], - ['id_aset' => 894, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK BARANG'], - ['id_aset' => 895, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TONGKANG'], - ['id_aset' => 896, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'PERAHU BARANG'], - ['id_aset' => 897, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK BARANG LAINNYA'], - ['id_aset' => 898, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK PENUMPANG'], - ['id_aset' => 899, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'PERAHU PENUMPANG'], - ['id_aset' => 900, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'PERAHU PENYEBERANGAN'], - ['id_aset' => 901, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK PENUMPANG LAINNYA'], - ['id_aset' => 902, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS'], - ['id_aset' => 903, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PONTON'], - ['id_aset' => 904, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'PERAHU KARET (ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS)'], - ['id_aset' => 905, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'PONTON RUMAH'], - ['id_aset' => 906, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'FLOATING PLATFORM/RAKIT'], - ['id_aset' => 907, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS LAINNYA'], - ['id_aset' => 908, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR LAINNYA'], - ['id_aset' => 909, 'golongan' => '3', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT ANGKUTAN APUNG TAK BERMOTOR LAINNYA'], - ['id_aset' => 910, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BENGKEL DAN ALAT UKUR'], - ['id_aset' => 911, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BENGKEL BERMESIN'], - ['id_aset' => 912, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI'], - ['id_aset' => 913, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN BUBUT'], - ['id_aset' => 914, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN FRAIS'], - ['id_aset' => 915, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN KETAM (PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI)'], - ['id_aset' => 916, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN PRESS HIDROLIK & PUNCH'], - ['id_aset' => 917, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN BOR'], - ['id_aset' => 918, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN GERGAJI LOGAM'], - ['id_aset' => 919, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN GERINDA'], - ['id_aset' => 920, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN ROL'], - ['id_aset' => 921, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN BOR CYLINDER'], - ['id_aset' => 922, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN SKRUP'], - ['id_aset' => 923, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'MESIN MEILING'], - ['id_aset' => 924, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'MESIN PUREL'], - ['id_aset' => 925, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'MESIN PERAPEN'], - ['id_aset' => 926, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'MESIN SIKAT KULIT'], - ['id_aset' => 927, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'MESIN PEMOTONG KULIT'], - ['id_aset' => 928, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'MESIN JAHIT KULIT'], - ['id_aset' => 929, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'MESIN PENGEPRES KULIT'], - ['id_aset' => 930, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'MESIN KOMPRESOR'], - ['id_aset' => 931, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '019', 'nama' => 'MESIN LAS LISTRIK'], - ['id_aset' => 932, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '020', 'nama' => 'MESIN DYNAMO KRON'], - ['id_aset' => 933, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '021', 'nama' => 'MESIN SIKAT BESI KRON'], - ['id_aset' => 934, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '022', 'nama' => 'MESIN PEMOTONG FIBERGLAS/POLIYSTER'], - ['id_aset' => 935, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '023', 'nama' => 'MESIN GULUNG LISTRIK'], - ['id_aset' => 936, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '024', 'nama' => 'MESIN PELUBANG (PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI)'], - ['id_aset' => 937, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '025', 'nama' => 'MESIN PENEKUK/LIPAT PLAT'], - ['id_aset' => 938, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '026', 'nama' => 'MESIN GUNTING PLAT'], - ['id_aset' => 939, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '027', 'nama' => 'MESIN PEMBENGKOK UNI'], - ['id_aset' => 940, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '028', 'nama' => 'MESIN AMPLAS PLAT'], - ['id_aset' => 941, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '029', 'nama' => 'MESIN PEMOTONG PLAT'], - ['id_aset' => 942, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '030', 'nama' => 'MESIN TRANSMISSION AUTOMOTIVE'], - ['id_aset' => 943, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '031', 'nama' => 'MESIN PEMBENGKOK LOGAM'], - ['id_aset' => 944, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '032', 'nama' => 'MESIN CRYSTAL GROWING'], - ['id_aset' => 945, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '033', 'nama' => 'MESIN LASER CUTTING'], - ['id_aset' => 946, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '034', 'nama' => 'MESIN LASER WELDING'], - ['id_aset' => 947, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '035', 'nama' => 'MESIN LIPAT PLAT'], - ['id_aset' => 948, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '036', 'nama' => 'MESIN BRIKET'], - ['id_aset' => 949, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '037', 'nama' => 'UNIV. GRINDER SETING VALVE'], - ['id_aset' => 950, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '038', 'nama' => 'UNIV. GRINDER VALVE REPAIR'], - ['id_aset' => 951, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '039', 'nama' => 'MESIN SERUT'], - ['id_aset' => 952, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '040', 'nama' => 'MESIN PROFILE KAYU'], - ['id_aset' => 953, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI LAINNYA'], - ['id_aset' => 954, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS KONSTRUKSI LOGAM YANG TRANSPORTABLE (BERPINDAH)'], - ['id_aset' => 955, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN GERINDA TANGAN'], - ['id_aset' => 956, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN BOR TANGAN'], - ['id_aset' => 957, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN CYLINDER'], - ['id_aset' => 958, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'RIVETING MACHINE'], - ['id_aset' => 959, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN GULUNG MANUAL'], - ['id_aset' => 960, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN AMPELAS TANGAN'], - ['id_aset' => 961, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN AMPELAS ROL KECIL'], - ['id_aset' => 962, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN GERGAJI BESI'], - ['id_aset' => 963, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS KONSTRUKSI LOGAM YANG TRANSPORTABLE (BERPINDAH) LAINNYA'], - ['id_aset' => 964, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL LISTRIK'], - ['id_aset' => 965, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'BATTERY CHARGE'], - ['id_aset' => 966, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'WINDER'], - ['id_aset' => 967, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'TRANSFORMATOR'], - ['id_aset' => 968, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SOLDER LISTRIK'], - ['id_aset' => 969, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'SEDOTAN TIMAH LISTRIK'], - ['id_aset' => 970, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'ELECTRICAL DISCHARGE'], - ['id_aset' => 971, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'VERTICAL MACHINING CENTRE'], - ['id_aset' => 972, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'COPY MILLING'], - ['id_aset' => 973, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'SURFACE GRINDING PROTH'], - ['id_aset' => 974, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'CYDRICAL GRINDER YAM'], - ['id_aset' => 975, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'CAPACITY DIE CASTING'], - ['id_aset' => 976, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'HMC CINTINATI MILACRON'], - ['id_aset' => 977, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'ENGINE CYLINDER RESEARCH ENGINE'], - ['id_aset' => 978, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'VALVE SENSOR'], - ['id_aset' => 979, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'COORDINATE MEASURING MACHINES'], - ['id_aset' => 980, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'ENGINE COOLING SYSTEM'], - ['id_aset' => 981, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'OUTLET MANIFODLD PRESSURE'], - ['id_aset' => 982, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '018', 'nama' => 'IMPULSE ORBITAL WELDER'], - ['id_aset' => 983, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '019', 'nama' => 'AVL DIGAS'], - ['id_aset' => 984, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '020', 'nama' => 'ELECTRIC WIRE ROPE'], - ['id_aset' => 985, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '021', 'nama' => 'STEAM PRESSURE GAUGE'], - ['id_aset' => 986, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '022', 'nama' => 'SAVETUY VALVE'], - ['id_aset' => 987, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '023', 'nama' => 'TRESHER STATIS'], - ['id_aset' => 988, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '024', 'nama' => 'VARIAC'], - ['id_aset' => 989, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '025', 'nama' => 'MIXER (PERKAKAS BENGKEL LISTRIK)'], - ['id_aset' => 990, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '026', 'nama' => 'STEPPING MOTOR'], - ['id_aset' => 991, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '027', 'nama' => 'CYLINDER PRESSURE TRANDUCER'], - ['id_aset' => 992, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '028', 'nama' => 'ENGINE SIMULATION SOFTWARE PACKAGE'], - ['id_aset' => 993, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '029', 'nama' => 'AXHAUST GAS ANALIZER'], - ['id_aset' => 994, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '030', 'nama' => 'CIRCULAR SAW'], - ['id_aset' => 995, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '031', 'nama' => 'TESTER LISTRIK/TELEPON/INTERNET'], - ['id_aset' => 996, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL LISTRIK LAINNYA (ALAT BENGKEL BERMESIN)'], - ['id_aset' => 997, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL SERVICE'], - ['id_aset' => 998, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'AUTO LIFT'], - ['id_aset' => 999, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'CAR WASHER'], - ['id_aset' => 1000, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'STEAM CLEANER'], - ['id_aset' => 1001, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'LUBRIACATING EQUIPMENT'], - ['id_aset' => 1002, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN SPOORING'], - ['id_aset' => 1003, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN BALANCER'], - ['id_aset' => 1004, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'BRAKE DRUM LATHE/MESIN PERATA TROMOL'], - ['id_aset' => 1005, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'PENGASAH LUBANG STANG PISTON'], - ['id_aset' => 1006, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'LUBRICATING SET (PERKAKAS BENGKEL SERVICE)'], - ['id_aset' => 1007, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'AIR FILTER REGULATOR'], - ['id_aset' => 1008, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'DIAMOND CARE DRILL CARE'], - ['id_aset' => 1009, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'AC MOTOR CONTROL'], - ['id_aset' => 1010, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL SERVICE LAINNYA (ALAT BENGKEL BERMESIN)'], - ['id_aset' => 1011, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS PENGANGKAT BERMESIN'], - ['id_aset' => 1012, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'OVERHEAD CRANE'], - ['id_aset' => 1013, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'HOIST'], - ['id_aset' => 1014, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'WINCH/LIR'], - ['id_aset' => 1015, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS PENGANGKAT BERMESIN LAINNYA'], - ['id_aset' => 1016, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL KAYU'], - ['id_aset' => 1017, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN GERGAJI'], - ['id_aset' => 1018, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN KETAM (PERKAKAS BENGKEL KAYU)'], - ['id_aset' => 1019, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN BOR KAYU'], - ['id_aset' => 1020, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN PENGHALUS'], - ['id_aset' => 1021, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'TATAH LISTRIK OSCAR MK 361'], - ['id_aset' => 1022, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'PASAH LISTRIK MKC'], - ['id_aset' => 1023, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'PROFILE LISTRIK MKC'], - ['id_aset' => 1024, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'GRENDO DUDUK'], - ['id_aset' => 1025, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'GERGAJI BENGKOK ATS'], - ['id_aset' => 1026, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'AMPLAS LISTRIK GMT'], - ['id_aset' => 1027, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'GERGAJI CHAIN SAW'], - ['id_aset' => 1028, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'TABLE SAW 10 EASTCO'], - ['id_aset' => 1029, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL KAYU LAINNYA'], - ['id_aset' => 1030, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL KHUSUS'], - ['id_aset' => 1031, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN JAHIT TERPAL'], - ['id_aset' => 1032, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'PERKAKAS VULKANISIR BAN'], - ['id_aset' => 1033, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'PERKAKAS BONGKAR/PASANG BAN'], - ['id_aset' => 1034, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN TENUN TEKSTIL'], - ['id_aset' => 1035, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN CELUP (PERKAKAS BENGKEL KHUSUS)'], - ['id_aset' => 1036, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'PEMASANG BARU'], - ['id_aset' => 1037, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN TENUN JAHIT'], - ['id_aset' => 1038, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL KHUSUS LAINNYA'], - ['id_aset' => 1039, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN LAS'], - ['id_aset' => 1040, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'PERALATAN LAS LISTRIK'], - ['id_aset' => 1041, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN LAS KARBIT'], - ['id_aset' => 1042, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'PERALATAN LAS GAS'], - ['id_aset' => 1043, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN LAS LAINNYA'], - ['id_aset' => 1044, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BENGKEL BERMESIN LAINNYA'], - ['id_aset' => 1045, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BENGKEL BERMESIN LAINNYA'], - ['id_aset' => 1046, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BENGKEL TAK BERMESIN'], - ['id_aset' => 1047, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL KONSTRUKSI LOGAM'], - ['id_aset' => 1048, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PERKAKAS DAPUR TEMPA'], - ['id_aset' => 1049, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'PERKAKAS BANGKU KERJA'], - ['id_aset' => 1050, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PERKAKAS PENGUKUR'], - ['id_aset' => 1051, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'PERKAKAS PENGECORAN LOGAM'], - ['id_aset' => 1052, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'R O L'], - ['id_aset' => 1053, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'PERKAKAS PEMOTONG PLAT'], - ['id_aset' => 1054, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'PERKAKAS PRESS HIDROLIK'], - ['id_aset' => 1055, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'PERKAKAS PEMOTONG KABEL SLING'], - ['id_aset' => 1056, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'PERKAKAS PENGECATAN KENDARAAN'], - ['id_aset' => 1057, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL KONSTRUKSI LOGAM LAINNYA'], - ['id_aset' => 1058, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL LISTRIK'], - ['id_aset' => 1059, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'ARMATURE DRYING OVEN'], - ['id_aset' => 1060, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MICA UNDERCUTTER'], - ['id_aset' => 1061, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'COMMUTATOR TURNING TOOL'], - ['id_aset' => 1062, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'ARMATURE CROWLER'], - ['id_aset' => 1063, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'SOLID STATE SOLDERING GUN'], - ['id_aset' => 1064, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL LISTRIK LAINNYA (ALAT BENGKEL TAK BERMESIN)'], - ['id_aset' => 1065, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL SERVICE'], - ['id_aset' => 1066, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PERKAKAS BENGKEL SERVICE'], - ['id_aset' => 1067, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'LUBRICATING SET (PERKAKAS BENGKEL SERVICE)'], - ['id_aset' => 1068, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'PERLENGKAPAN BENGKEL MEKANIK'], - ['id_aset' => 1069, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'JEMBATAN SERVICE HIDROLIK'], - ['id_aset' => 1070, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL SERVICE LAINNYA (ALAT BENGKEL TAK BERMESIN)'], - ['id_aset' => 1071, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS PENGANGKAT'], - ['id_aset' => 1072, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'DONGKRAK MEKANIK'], - ['id_aset' => 1073, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'DONGKRAK HIDROLIK'], - ['id_aset' => 1074, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'T A K E L'], - ['id_aset' => 1075, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'G A N T R Y'], - ['id_aset' => 1076, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'T R I P O D'], - ['id_aset' => 1077, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'FLOOR CRANE'], - ['id_aset' => 1078, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS PENGANGKAT LAINNYA'], - ['id_aset' => 1079, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS STANDARD (STANDARD TOOLS)'], - ['id_aset' => 1080, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TOOL KIT SET'], - ['id_aset' => 1081, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'TOOL KIT BOX'], - ['id_aset' => 1082, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'TOOL CABINET SET'], - ['id_aset' => 1083, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'KUNCI PIPA'], - ['id_aset' => 1084, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'PULLER SET'], - ['id_aset' => 1085, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'TAP DIES'], - ['id_aset' => 1086, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'GREEPER'], - ['id_aset' => 1087, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'ENGINE STAND'], - ['id_aset' => 1088, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'KUNCI MOMENT'], - ['id_aset' => 1089, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'PEMBUAT FISIK (DIESS)'], - ['id_aset' => 1090, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'TUNGKU NON FERROUS'], - ['id_aset' => 1091, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'WHEEL CHOCK (PERKAKAS STANDARD (STANDARD TOOLS))'], - ['id_aset' => 1092, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'MAINTENANCE STEP'], - ['id_aset' => 1093, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'CRIMPING TOLLS'], - ['id_aset' => 1094, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'TOOLKIT TUKANG KAYU TON'], - ['id_aset' => 1095, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'TOOLKIT TUKANG BATU TON'], - ['id_aset' => 1096, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'TOOLKIT TUKANG LISTRIK'], - ['id_aset' => 1097, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'TOOLKIT PEMELIHARAAN'], - ['id_aset' => 1098, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'TOOLKIT PERBENGKELAN'], - ['id_aset' => 1099, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'TOOLKIT PERPIPAAN'], - ['id_aset' => 1100, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'TOOL OUTFIT PIONER ELECTRIC'], - ['id_aset' => 1101, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'TOOL GENERAL MECHANIC SET'], - ['id_aset' => 1102, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'TOOLKIT TUKANG BESI'], - ['id_aset' => 1103, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'TOOL ELECTRICAL SET'], - ['id_aset' => 1104, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'SAWMIL'], - ['id_aset' => 1105, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '026', 'nama' => 'UNIT PELUMAS PORTABLE'], - ['id_aset' => 1106, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '027', 'nama' => 'SCAFOLDING SET & TOOL'], - ['id_aset' => 1107, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '028', 'nama' => 'HAND FALLET'], - ['id_aset' => 1108, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '029', 'nama' => 'PARON'], - ['id_aset' => 1109, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '030', 'nama' => 'CYLINDER BEARING'], - ['id_aset' => 1110, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '031', 'nama' => 'PERLENGKAPAN BENGKEL PENGECATAN'], - ['id_aset' => 1111, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS STANDARD (STANDARD TOOLS) LAINNYA'], - ['id_aset' => 1112, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS KHUSUS (SPECIAL TOOLS)'], - ['id_aset' => 1113, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'KUNCI KHUSUS UNTUK ENGINE'], - ['id_aset' => 1114, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'KUNCI KHUSUS ALAT BESAR DARAT'], - ['id_aset' => 1115, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'KUNCI KHUSUS ALAT BESAR APUNG'], - ['id_aset' => 1116, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'KUNCI KHUSUS CASIS ALAT ANGKUT DARAT'], - ['id_aset' => 1117, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'KUNCI KHUSUS CASIS'], - ['id_aset' => 1118, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'KUNCI KHUSUS ALAT ANGKUT APUNG'], - ['id_aset' => 1119, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'KUNCI KHUSUS PEMBUKA MUR/BAUT'], - ['id_aset' => 1120, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'KUNCI KHUSUS MOMENT'], - ['id_aset' => 1121, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'KUNCI KHUSUS ALAT BESAR UDARA'], - ['id_aset' => 1122, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'KUNCI KHUSUS CASIS ALAT BESAR UDARA'], - ['id_aset' => 1123, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'DIGITAL TANG AMPERE'], - ['id_aset' => 1124, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'DIGITAL TACHOMETER'], - ['id_aset' => 1125, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '013', 'nama' => 'FOOT KLEP'], - ['id_aset' => 1126, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '014', 'nama' => 'CINCIN/KOPLING SLANG HYDRANT'], - ['id_aset' => 1127, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '015', 'nama' => 'KUNCI L'], - ['id_aset' => 1128, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '016', 'nama' => 'TBA'], - ['id_aset' => 1129, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS KHUSUS (SPECIAL TOOLS) LAINNYA'], - ['id_aset' => 1130, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'PERKAKAS BENGKEL KERJA'], - ['id_aset' => 1131, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'GERGAJI'], - ['id_aset' => 1132, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'KETAM'], - ['id_aset' => 1133, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BOR'], - ['id_aset' => 1134, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'PAHAT'], - ['id_aset' => 1135, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'KAKAK TUA'], - ['id_aset' => 1136, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'WATER PAS'], - ['id_aset' => 1137, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'SIKU'], - ['id_aset' => 1138, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '008', 'nama' => 'PALU'], - ['id_aset' => 1139, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS BENGKEL KERJA LAINNYA'], - ['id_aset' => 1140, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TUKANG BESI'], - ['id_aset' => 1141, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'TANGGEM'], - ['id_aset' => 1142, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'GUNTING PLAT'], - ['id_aset' => 1143, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'LANDASAN KENTENG'], - ['id_aset' => 1144, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '004', 'nama' => 'KUNCI KAUL'], - ['id_aset' => 1145, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '005', 'nama' => 'GUNTING PLAT TANGAN'], - ['id_aset' => 1146, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '006', 'nama' => 'TANG KOMBINASI'], - ['id_aset' => 1147, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '007', 'nama' => 'TANG POTONG'], - ['id_aset' => 1148, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '008', 'nama' => '\"BETEL'], - ['id_aset' => 1149, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '009', 'nama' => 'PUKUL KONDE'], - ['id_aset' => 1150, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '010', 'nama' => 'PUKUL LENGKUNG'], - ['id_aset' => 1151, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '011', 'nama' => 'PUKUL SABIT'], - ['id_aset' => 1152, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '012', 'nama' => 'KIKIR'], - ['id_aset' => 1153, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '013', 'nama' => 'KUNCI PAS'], - ['id_aset' => 1154, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '014', 'nama' => 'TANG SENAI & TAP'], - ['id_aset' => 1155, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '015', 'nama' => 'DREI BIASA (OBENG)'], - ['id_aset' => 1156, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '016', 'nama' => 'DREI KEMBANG (OBENG)'], - ['id_aset' => 1157, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '017', 'nama' => 'DREI KETOK (OBENG)'], - ['id_aset' => 1158, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '018', 'nama' => 'SEKET MAT'], - ['id_aset' => 1159, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '019', 'nama' => 'JANGKA BESI'], - ['id_aset' => 1160, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '020', 'nama' => 'KUNCI STANG'], - ['id_aset' => 1161, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TUKANG BESI LAINNYA'], - ['id_aset' => 1162, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TUKANG KAYU'], - ['id_aset' => 1163, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'TATAH BIASA'], - ['id_aset' => 1164, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'TATAH LENGKUNG'], - ['id_aset' => 1165, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'KAOTA'], - ['id_aset' => 1166, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => 'PETEL'], - ['id_aset' => 1167, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '005', 'nama' => 'PATAR'], - ['id_aset' => 1168, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '006', 'nama' => 'BOR ENGKOL'], - ['id_aset' => 1169, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '007', 'nama' => 'PERLENGKAPAN BENGKEL KAYU'], - ['id_aset' => 1170, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TUKANG KAYU LAINNYA'], - ['id_aset' => 1171, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TUKANG KULIT'], - ['id_aset' => 1172, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'PISAU KULIT'], - ['id_aset' => 1173, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'PANDOKAN SEPATU'], - ['id_aset' => 1174, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'LIS SEPATU'], - ['id_aset' => 1175, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'COKRO'], - ['id_aset' => 1176, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '005', 'nama' => 'PLONG KULIT'], - ['id_aset' => 1177, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '006', 'nama' => 'CATUT'], - ['id_aset' => 1178, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '007', 'nama' => 'PUKUL SEPATU'], - ['id_aset' => 1179, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '008', 'nama' => 'GUNTING KULIT'], - ['id_aset' => 1180, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '009', 'nama' => 'GUNTING KAIN'], - ['id_aset' => 1181, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '010', 'nama' => 'DREK MATA AYAM'], - ['id_aset' => 1182, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '012', 'nama' => 'UNCEK'], - ['id_aset' => 1183, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TUKANG KULIT LAINNYA'], - ['id_aset' => 1184, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => '\"PERALATAN UKUR'], - ['id_aset' => 1185, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'DIPAN UKUR'], - ['id_aset' => 1186, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'METERAN KAIN'], - ['id_aset' => 1187, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'ROL METER'], - ['id_aset' => 1188, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '004', 'nama' => 'JANGKA BERKAKI'], - ['id_aset' => 1189, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '005', 'nama' => 'PATAR GIP'], - ['id_aset' => 1190, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '006', 'nama' => 'PISAU GIP'], - ['id_aset' => 1191, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '007', 'nama' => 'PARAREL BAR'], - ['id_aset' => 1192, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '008', 'nama' => 'CERMIN BESAR'], - ['id_aset' => 1193, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '009', 'nama' => 'TANGGA LATIHAN'], - ['id_aset' => 1194, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '010', 'nama' => 'TRAP LATIHAN'], - ['id_aset' => 1195, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => '\"PERALATAN UKUR'], - ['id_aset' => 1196, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN BENGKEL KHUSUS PELADAM'], - ['id_aset' => 1197, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN CNC'], - ['id_aset' => 1198, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '002', 'nama' => 'DYNAMO TUNGKU'], - ['id_aset' => 1199, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN FRAIS'], - ['id_aset' => 1200, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN SKRAF'], - ['id_aset' => 1201, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN BOR MEJA / KAKI LISTRIK'], - ['id_aset' => 1202, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '006', 'nama' => 'PALU BESAR'], - ['id_aset' => 1203, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN KORTER'], - ['id_aset' => 1204, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '008', 'nama' => 'PALU KECIL'], - ['id_aset' => 1205, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN GERINDA DUDUK (BENCH GERINDA)'], - ['id_aset' => 1206, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '010', 'nama' => 'GEGEP PEMOTONG KUKU'], - ['id_aset' => 1207, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '011', 'nama' => 'GEGEP PEMOTONG PAKU'], - ['id_aset' => 1208, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '012', 'nama' => 'PISAU RENET'], - ['id_aset' => 1209, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '013', 'nama' => 'MESIN JAHIT TERPAL'], - ['id_aset' => 1210, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '014', 'nama' => 'PELOBANG TAPEL'], - ['id_aset' => 1211, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '015', 'nama' => 'TANG BUAYA'], - ['id_aset' => 1212, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '016', 'nama' => 'MESIN BATTERY SET / PENGISI ACCU'], - ['id_aset' => 1213, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '017', 'nama' => 'PERALATAN BENGKEL LAINNYA'], - ['id_aset' => 1214, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '018', 'nama' => 'MESIN BLOWER LISTRIK / MEKANIK'], - ['id_aset' => 1215, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '019', 'nama' => 'MESIN SIKAT / BRUSH MACHINE'], - ['id_aset' => 1216, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '020', 'nama' => 'MESIN PEMBUKA BAN'], - ['id_aset' => 1217, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '021', 'nama' => 'MESIN SLEP KRUK AS'], - ['id_aset' => 1218, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '022', 'nama' => 'MESIN ASAH SILIDER COP'], - ['id_aset' => 1219, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '023', 'nama' => 'MESIN GULUNG SPOOL'], - ['id_aset' => 1220, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '024', 'nama' => 'MESIN GULUNG PLAT'], - ['id_aset' => 1221, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '025', 'nama' => 'MESIN POMPA AIR PMK'], - ['id_aset' => 1222, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '026', 'nama' => 'MESIN ASAH KLEP'], - ['id_aset' => 1223, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '027', 'nama' => 'MESIN TUSUK / STIK'], - ['id_aset' => 1224, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '028', 'nama' => 'MESIN BOR LISTRIK TANGAN'], - ['id_aset' => 1225, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '029', 'nama' => 'MESIN NIMBLING'], - ['id_aset' => 1226, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '030', 'nama' => 'MESIN GERINDA TANGAN LISTRIK'], - ['id_aset' => 1227, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '031', 'nama' => 'MESIN POTONG PLAT BENTUK / HAND NIMBLER'], - ['id_aset' => 1228, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '032', 'nama' => 'UNIT CAT'], - ['id_aset' => 1229, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '033', 'nama' => 'CUT OFF SAW'], - ['id_aset' => 1230, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '034', 'nama' => 'MESIN ANALISA SYSTEM'], - ['id_aset' => 1231, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '035', 'nama' => 'BLENDER LAS POTONG'], - ['id_aset' => 1232, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '036', 'nama' => 'MESIN CUCI KENDARAAN/ CAR WASHER'], - ['id_aset' => 1233, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '037', 'nama' => 'PERKAKAS AC'], - ['id_aset' => 1234, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN BENGKEL KHUSUS PELADAM LAINNYA'], - ['id_aset' => 1235, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BENGKEL TAK BERMESIN LAINNYA'], - ['id_aset' => 1236, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BENGKEL TAK BERMESIN LAINNYA'], - ['id_aset' => 1237, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT UKUR'], - ['id_aset' => 1238, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT UKUR UNIVERSAL'], - ['id_aset' => 1239, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'AF GENERATOR TONE GENERATOR'], - ['id_aset' => 1240, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'AUDIO SIGNAL SOURCE'], - ['id_aset' => 1241, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'AUDIO TEST SET'], - ['id_aset' => 1242, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'AUDIO MORSE & DISTRIBUTOR METER'], - ['id_aset' => 1243, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'AUDIO SWEEP OSILATOR'], - ['id_aset' => 1244, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'VTVM VOLT'], - ['id_aset' => 1245, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'INDEPENDENCE METER'], - ['id_aset' => 1246, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'DECIBLE METER'], - ['id_aset' => 1247, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'CRT TESTER'], - ['id_aset' => 1248, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'CIRCUIT TESTER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1249, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'ELECTRONIC CAPASITOR TESTER'], - ['id_aset' => 1250, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'ILLUMINO METER'], - ['id_aset' => 1251, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'IC TESTER SEMI TEST IV'], - ['id_aset' => 1252, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'IC METER'], - ['id_aset' => 1253, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'MIHVOLT METER'], - ['id_aset' => 1254, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'MULTITESTER & ACCESSORIE'], - ['id_aset' => 1255, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'MULTISESTER DIGITAL'], - ['id_aset' => 1256, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'PHOTO ILLUMINATION METER'], - ['id_aset' => 1257, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '019', 'nama' => 'TRANSISTOR TESTER SEMITEST I'], - ['id_aset' => 1258, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '020', 'nama' => 'TRANSISTOR TESTER SEMITEST II'], - ['id_aset' => 1259, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '021', 'nama' => 'TRANSISTOR TESTER SEMITEST V'], - ['id_aset' => 1260, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '022', 'nama' => 'TRANSISTOR TESTER AVO'], - ['id_aset' => 1261, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '023', 'nama' => 'VOLT METER ELEKTRONIK'], - ['id_aset' => 1262, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '024', 'nama' => 'VOLT METER DIGITAL'], - ['id_aset' => 1263, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '025', 'nama' => 'VOLT METER HIGT TENSION'], - ['id_aset' => 1264, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '026', 'nama' => 'WIDW BAND LEVEL METER'], - ['id_aset' => 1265, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '027', 'nama' => 'AUTOMATIC DISTROTION METER'], - ['id_aset' => 1266, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '028', 'nama' => 'POWER METER AND ACCESSORIES'], - ['id_aset' => 1267, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '029', 'nama' => 'PH METER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1268, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '030', 'nama' => 'QUASI PEAK METER'], - ['id_aset' => 1269, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '031', 'nama' => 'THRULINE WATT METER'], - ['id_aset' => 1270, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '032', 'nama' => 'DIGITAL MULTIMETER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1271, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '033', 'nama' => 'MULTI METER'], - ['id_aset' => 1272, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '034', 'nama' => 'METER CALIBRATOR'], - ['id_aset' => 1273, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '035', 'nama' => 'MOISE FIGURE METER'], - ['id_aset' => 1274, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '036', 'nama' => 'DISTORTION ANALYZER'], - ['id_aset' => 1275, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '037', 'nama' => 'VECTOR VOLT METER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1276, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '038', 'nama' => 'PULSE GENERATOR (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1277, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '039', 'nama' => 'DME GROUND STATION TEST SET (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1278, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '040', 'nama' => 'UHF SIGNAL GENERATOR'], - ['id_aset' => 1279, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '041', 'nama' => 'SWEEP OSCILLATOR (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1280, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '042', 'nama' => 'VHF SIGNAL GENERATOR'], - ['id_aset' => 1281, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '043', 'nama' => 'SPEKTRUM ANALYZER'], - ['id_aset' => 1282, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '044', 'nama' => 'TUBE TESTER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1283, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '045', 'nama' => 'DOSIMETER & ACCESORIES'], - ['id_aset' => 1284, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '046', 'nama' => 'SURVEY METER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1285, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '047', 'nama' => 'SOUND DETECTOR'], - ['id_aset' => 1286, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '048', 'nama' => 'VIDICON QUICK TESTER'], - ['id_aset' => 1287, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '049', 'nama' => 'PATTERN FOR TV ADJUSTMENT'], - ['id_aset' => 1288, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '050', 'nama' => 'POWER METER CILLIBRATOR'], - ['id_aset' => 1289, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '051', 'nama' => 'THERMISTOR'], - ['id_aset' => 1290, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '052', 'nama' => '\"SIGNAL GENERATOR AUDIO VHF'], - ['id_aset' => 1291, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '053', 'nama' => 'X - TAL DETECTOR'], - ['id_aset' => 1292, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '054', 'nama' => 'CO - AXIAL SLOT LINE'], - ['id_aset' => 1293, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '055', 'nama' => 'RF VOLT METER'], - ['id_aset' => 1294, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '056', 'nama' => 'FREKQUENCY WAVE METER'], - ['id_aset' => 1295, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '057', 'nama' => 'MEGGER'], - ['id_aset' => 1296, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '058', 'nama' => 'CO AXIAL ATTENUATOR'], - ['id_aset' => 1297, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '059', 'nama' => 'VARIABEL CO AXIAL ATTENUATOR'], - ['id_aset' => 1298, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '060', 'nama' => 'DIRECTIONAL COUPLER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1299, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '061', 'nama' => 'PIN MODULATOR'], - ['id_aset' => 1300, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '062', 'nama' => 'LOGIG TROUBLE SHOTING KIT'], - ['id_aset' => 1301, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '063', 'nama' => 'SWR METER'], - ['id_aset' => 1302, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '064', 'nama' => 'MEMORI PROGRAMMER'], - ['id_aset' => 1303, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '065', 'nama' => 'LOGIG STATC ANALYZER'], - ['id_aset' => 1304, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '066', 'nama' => 'FREQUENCY CUONTER'], - ['id_aset' => 1305, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '067', 'nama' => 'UNIVERSAL BRIDGE'], - ['id_aset' => 1306, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '068', 'nama' => 'FB METER'], - ['id_aset' => 1307, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '069', 'nama' => 'NOISE'], - ['id_aset' => 1308, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '070', 'nama' => 'RADIATION MONITOR ISOTROPIC'], - ['id_aset' => 1309, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '071', 'nama' => 'PHASE METER'], - ['id_aset' => 1310, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '072', 'nama' => 'GLOBAL POSITIONING SYSTEM'], - ['id_aset' => 1311, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '073', 'nama' => 'ILS. CALIBRATION RX.'], - ['id_aset' => 1312, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '074', 'nama' => 'DCP ( ALAT CONTROL ) SENSOR'], - ['id_aset' => 1313, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '075', 'nama' => 'MOISTEUR METER'], - ['id_aset' => 1314, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '076', 'nama' => 'ROTA METER'], - ['id_aset' => 1315, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '077', 'nama' => 'MINI PHASEC VIEW'], - ['id_aset' => 1316, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '078', 'nama' => 'FREQUENCY INVERTER'], - ['id_aset' => 1317, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '079', 'nama' => 'ACCUMETER'], - ['id_aset' => 1318, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '080', 'nama' => 'TEMPERATUR DIGITAL'], - ['id_aset' => 1319, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '081', 'nama' => 'ARGOMETER'], - ['id_aset' => 1320, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '082', 'nama' => 'DIAL TEST INDICATOR'], - ['id_aset' => 1321, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '083', 'nama' => 'SPEED METER'], - ['id_aset' => 1322, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '084', 'nama' => '\"OIL BATH'], - ['id_aset' => 1323, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '085', 'nama' => 'SPEED DETECTOR'], - ['id_aset' => 1324, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '086', 'nama' => 'THERMOHYGROMETER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1325, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '087', 'nama' => 'TRAFFIC COUNTER'], - ['id_aset' => 1326, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '088', 'nama' => 'STANDAR TEST GAUGE'], - ['id_aset' => 1327, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '090', 'nama' => 'SIGMA METER'], - ['id_aset' => 1328, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '091', 'nama' => 'IONISASI METER'], - ['id_aset' => 1329, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '092', 'nama' => 'ROTAN SAMPLER SPLITER'], - ['id_aset' => 1330, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '093', 'nama' => 'HENRY METER'], - ['id_aset' => 1331, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '094', 'nama' => 'MESIN KOCOK HORISONTAL'], - ['id_aset' => 1332, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '095', 'nama' => 'CAPASITOR METER'], - ['id_aset' => 1333, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '096', 'nama' => 'MICROPROCESSOR CONDUCTIVITY'], - ['id_aset' => 1334, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '097', 'nama' => 'UHF OUT PUSTTESSTING EQUIPMENT'], - ['id_aset' => 1335, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '098', 'nama' => 'SHRANGKAGE LIMIT APPARATUS'], - ['id_aset' => 1336, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '099', 'nama' => 'R.F. SIGNAL GENERATOR'], - ['id_aset' => 1337, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '100', 'nama' => 'DEWMETER PRINT'], - ['id_aset' => 1338, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '102', 'nama' => 'ORBITAL SHAKER'], - ['id_aset' => 1339, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '103', 'nama' => 'VHF/UHF DUMMY LOAD'], - ['id_aset' => 1340, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '104', 'nama' => 'OZONIZER'], - ['id_aset' => 1341, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '105', 'nama' => 'PSOPHOMETRIC WEIGHTING NETWORK'], - ['id_aset' => 1342, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '106', 'nama' => 'PERSONAL CDT'], - ['id_aset' => 1343, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '107', 'nama' => 'PORTABLE TEST RECK'], - ['id_aset' => 1344, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '108', 'nama' => 'RADIO METER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1345, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '109', 'nama' => 'NMOTOR DRIVE WIRE WROPPER'], - ['id_aset' => 1346, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '110', 'nama' => 'SALINITY TEMP DEPTH ANALIZER'], - ['id_aset' => 1347, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '111', 'nama' => 'DIGITAL CIRCUIT TESTER'], - ['id_aset' => 1348, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '112', 'nama' => 'SALINOMETER'], - ['id_aset' => 1349, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '113', 'nama' => 'FIELD STRENGTH METER'], - ['id_aset' => 1350, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '114', 'nama' => 'ACIENTIFIC SOUNDEER SYSTEM'], - ['id_aset' => 1351, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '115', 'nama' => 'ALTERNEATUR'], - ['id_aset' => 1352, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '116', 'nama' => 'SENTER BAWAH AIR'], - ['id_aset' => 1353, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '117', 'nama' => 'MEGA OHM TESTER'], - ['id_aset' => 1354, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '118', 'nama' => 'SIX PLACE HIDROMANIFOLD'], - ['id_aset' => 1355, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '119', 'nama' => 'INSULATION TESTER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1356, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '120', 'nama' => 'SONICATOR VIRSOIC CALL DISLUPTOR'], - ['id_aset' => 1357, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '121', 'nama' => 'ELECTRIC BENCH'], - ['id_aset' => 1358, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '122', 'nama' => 'SWEEP FUNCTION GENERATOR'], - ['id_aset' => 1359, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '123', 'nama' => 'LOADMETER'], - ['id_aset' => 1360, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '124', 'nama' => 'SYSTEM UV STERELISASI DAN SIRKULASI AI'], - ['id_aset' => 1361, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '125', 'nama' => 'COUNTER TESTER'], - ['id_aset' => 1362, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '126', 'nama' => 'SYSTEM FOR CHEMICAL OXYGEN DEMOND'], - ['id_aset' => 1363, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '127', 'nama' => 'THE DACOR SEASPRINT UNDER WATER VEHICLE'], - ['id_aset' => 1364, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '128', 'nama' => 'TITRATION UNIT'], - ['id_aset' => 1365, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '129', 'nama' => 'ULTRASONIC CLEANER (ALAT UKUR UNIVERSAL)'], - ['id_aset' => 1366, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '130', 'nama' => 'WATER ANALYSIS KIT'], - ['id_aset' => 1367, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '131', 'nama' => 'WHEEL METER'], - ['id_aset' => 1368, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '132', 'nama' => 'PROYECTION POLARISCOPE'], - ['id_aset' => 1369, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '133', 'nama' => 'CDMA/GSM TEST'], - ['id_aset' => 1370, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '134', 'nama' => 'ANTENNA SELECTOR'], - ['id_aset' => 1371, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '135', 'nama' => 'LOG PERIODIC ANTENNA'], - ['id_aset' => 1372, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '136', 'nama' => 'ALAT UKUR SIGMAT'], - ['id_aset' => 1373, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT UKUR UNIVERSAL LAINNYA'], - ['id_aset' => 1374, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'UNIVERSAL TESTER'], - ['id_aset' => 1375, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'FREQUENCY COUNTER (UNIVERSAL TESTER)'], - ['id_aset' => 1376, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSULATION RES METER MOD'], - ['id_aset' => 1377, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'NOISE & DISTORTION METER'], - ['id_aset' => 1378, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'OSCILATOR DISTORTION METER'], - ['id_aset' => 1379, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'OSCILATOR TEST SIGNAL'], - ['id_aset' => 1380, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'OSCILATOR WIDW BAND'], - ['id_aset' => 1381, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'OSCILATOR SWEEP'], - ['id_aset' => 1382, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'PRECISION ENCODER MONITOR'], - ['id_aset' => 1383, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'PLAMBICON TEST UNIT'], - ['id_aset' => 1384, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'SCANNER (UNIVERSAL TESTER)'], - ['id_aset' => 1385, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '011', 'nama' => 'TIME INTERVAL UNIT'], - ['id_aset' => 1386, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '012', 'nama' => 'UNIVERSAL COUNTER (UNIVERSAL TESTER)'], - ['id_aset' => 1387, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '013', 'nama' => 'VIDEO NOISE METER'], - ['id_aset' => 1388, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '014', 'nama' => 'ADMINTANCE METER'], - ['id_aset' => 1389, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '015', 'nama' => 'ADMINTANCE BRIDE'], - ['id_aset' => 1390, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '016', 'nama' => 'FIELDSTRENGTH METER'], - ['id_aset' => 1391, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '017', 'nama' => 'RF BRIDGE'], - ['id_aset' => 1392, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '018', 'nama' => 'RF PUSH BUTTON ATTENUATOR'], - ['id_aset' => 1393, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '019', 'nama' => 'VISION AND SOUND NYQUIST DEMODULATOR AMF'], - ['id_aset' => 1394, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '020', 'nama' => 'V.S.W.R STANDING REVIEW'], - ['id_aset' => 1395, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '022', 'nama' => 'DIGITAL FREQUENCE METER'], - ['id_aset' => 1396, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '023', 'nama' => 'VINDICAM QUICK TESTER'], - ['id_aset' => 1397, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '024', 'nama' => 'COAXIAL ATT'], - ['id_aset' => 1398, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '025', 'nama' => 'VARIABLE COAXIAL ATT'], - ['id_aset' => 1399, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '026', 'nama' => 'LOGIC PROBE (UNIVERSAL TESTER)'], - ['id_aset' => 1400, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '027', 'nama' => 'SURVEY METER (UNIVERSAL TESTER)'], - ['id_aset' => 1401, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '028', 'nama' => 'LOGIC COMPARATOR'], - ['id_aset' => 1402, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'UNIVERSAL TESTER LAINNYA'], - ['id_aset' => 1403, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT UKUR/PEMBANDING'], - ['id_aset' => 1404, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'UKURAN JOHANSON (ALAT PEMBANDING STANDAR UKURAN PANJANG)'], - ['id_aset' => 1405, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'MICRO INDICATOR (DENGAN PERLENGKAPAN SUPARTO POINTERS DAN REVOLV'], - ['id_aset' => 1406, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'PERLENGKAPAN MICRO INDICATOR'], - ['id_aset' => 1407, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'PSYCOMETER VANLAMBRECHT'], - ['id_aset' => 1408, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'PSYCOMETER'], - ['id_aset' => 1409, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'BAROMETER LOGAM'], - ['id_aset' => 1410, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'BAROMETER MERCURY'], - ['id_aset' => 1411, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'MANOMETER UNTUK MESIN'], - ['id_aset' => 1412, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'MONOTOR PRECISI'], - ['id_aset' => 1413, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'ALAT PEMERIKSA MANOMETER ( DENGAN PERLENGKAPAN )'], - ['id_aset' => 1414, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'ALAT PEMERIKSAAN ZAT CAIR'], - ['id_aset' => 1415, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'TERMOMETER STANDAR'], - ['id_aset' => 1416, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'TERMOMETER GOVERMEN TESTER 0 DERAJAT SAMPAI DENGAN 100 DERAJAT C'], - ['id_aset' => 1417, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'THERMOSTAT ( PENGUJI PEMERIKSAAN TERMOMETER )'], - ['id_aset' => 1418, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'JAM UKUR ( MEET LOCK )'], - ['id_aset' => 1419, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'HARDNES TESTER'], - ['id_aset' => 1420, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'STOPWATCH'], - ['id_aset' => 1421, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '018', 'nama' => 'LOUP'], - ['id_aset' => 1422, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '019', 'nama' => 'PLANIMETER (ALAT UKUR/PEMBANDING)'], - ['id_aset' => 1423, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '020', 'nama' => 'METRA BLOCK'], - ['id_aset' => 1424, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '021', 'nama' => 'LEMARI BAJA PENGERING'], - ['id_aset' => 1425, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '022', 'nama' => 'SANBLAS UNIT'], - ['id_aset' => 1426, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '023', 'nama' => 'ALAT PEMERIKSAAN TIMBANGAN TEKANAN BERODA'], - ['id_aset' => 1427, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '024', 'nama' => 'STELAN INSTRUMEN BOURJE'], - ['id_aset' => 1428, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '025', 'nama' => 'LAMPU UNTUK MENERANGI SKALA NERACA PAKAI STANDAR'], - ['id_aset' => 1429, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '026', 'nama' => 'AVOMETER SU 20 - 20 K'], - ['id_aset' => 1430, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '027', 'nama' => 'TRAPPO 1.000 WATT'], - ['id_aset' => 1431, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '028', 'nama' => 'TOOL SET'], - ['id_aset' => 1432, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '029', 'nama' => 'LANDASAN CAP LENGKAP'], - ['id_aset' => 1433, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '030', 'nama' => 'KAKI TIGA GANTUNGAN DACIN'], - ['id_aset' => 1434, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '031', 'nama' => 'ALAT PENDATAR TAKARAN BENSIN'], - ['id_aset' => 1435, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '032', 'nama' => 'TANG PLOMBIR / SEGEL'], - ['id_aset' => 1436, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '033', 'nama' => 'EXICATOR BESAR'], - ['id_aset' => 1437, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '034', 'nama' => 'EXICATOR KECIL'], - ['id_aset' => 1438, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '035', 'nama' => 'DESICATOR ( SIZE ) 3'], - ['id_aset' => 1439, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '036', 'nama' => 'DESICATOR ( SIZE ) 4'], - ['id_aset' => 1440, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '037', 'nama' => 'BOTOL AIR SALING DARI 25 LITER'], - ['id_aset' => 1441, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '038', 'nama' => 'PICNOMETER'], - ['id_aset' => 1442, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '039', 'nama' => 'DESIMETER ( HIDROMETER )'], - ['id_aset' => 1443, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '040', 'nama' => 'TELESCOPE TILE VARIEBLE'], - ['id_aset' => 1444, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '041', 'nama' => 'OPTICAL STREAN ( UNTUK PEMERIKSAAN KACA )'], - ['id_aset' => 1445, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '042', 'nama' => 'OPTOCAL TEKNIS GANGE ( PENGUKUR TEBAL DINDING )'], - ['id_aset' => 1446, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '043', 'nama' => 'LIFTER CAPASITAS 500 KG'], - ['id_aset' => 1447, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '044', 'nama' => 'TAXIMETER TESTER'], - ['id_aset' => 1448, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '045', 'nama' => 'SPEDOMETER TESTER'], - ['id_aset' => 1449, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '046', 'nama' => 'STANDARD GUAGE BLOCKS'], - ['id_aset' => 1450, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '047', 'nama' => 'FINEST DIRECT READING INTERN MICROMETER OF VARIOS RANGE UP TO 10'], - ['id_aset' => 1451, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '048', 'nama' => 'CONSTANT TEMPERATURE COMBINED BRIDGE THERMOSTAT'], - ['id_aset' => 1452, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '049', 'nama' => 'TRANSPARAN PLASTIC RACK INSERT FOR 20 TEST TEST TUBES 75 X 17'], - ['id_aset' => 1453, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '050', 'nama' => 'WATER BATH PLEXIGLASS CAPASITY 71'], - ['id_aset' => 1454, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '051', 'nama' => 'TEST TUBE RACK STAINLESSTEL WITH 10 HOLES 18 MM DIA'], - ['id_aset' => 1455, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '052', 'nama' => 'CALORIMETER THERMOMETER ACETO BESTMEN CERTIFICATE'], - ['id_aset' => 1456, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '053', 'nama' => 'SIT OF GAUGE PRETITION LANDS BERGER THERMOMETER'], - ['id_aset' => 1457, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '054', 'nama' => 'SET OF 14 HIGHT PRECISION AMERAL THERMOMETER'], - ['id_aset' => 1458, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '055', 'nama' => 'ADDITION TUNER STOP WATCH'], - ['id_aset' => 1459, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '056', 'nama' => '\"UNIVERSAL CLAMP'], - ['id_aset' => 1460, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '057', 'nama' => '\"UNIVERSAL CLAMP'], - ['id_aset' => 1461, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '058', 'nama' => 'VENIER CALIVER'], - ['id_aset' => 1462, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '059', 'nama' => 'PROPILE PROYEKTOR TOYO SERIE'], - ['id_aset' => 1463, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '060', 'nama' => 'TOOL MAKER MICROSCOPE MAGNIFICATION 30 X'], - ['id_aset' => 1464, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '061', 'nama' => 'MICROSCOPE MULTIVIEW'], - ['id_aset' => 1465, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT UKUR/PEMBANDING LAINNYA'], - ['id_aset' => 1466, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT UKUR LAINNYA'], - ['id_aset' => 1467, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'METER X - 27 DARI PLATINA TRIDIUM'], - ['id_aset' => 1468, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'H - METER DARI BAJA NIKEL'], - ['id_aset' => 1469, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'KOMPARATOR'], - ['id_aset' => 1470, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT PENGUKUR GARIS TENGAH'], - ['id_aset' => 1471, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'BAN UKUR'], - ['id_aset' => 1472, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'DIAMETER TAPE'], - ['id_aset' => 1473, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'UKURAN TINGGI ORANG'], - ['id_aset' => 1474, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'SCHUIFMAAT ( UKURAN INGSUT )'], - ['id_aset' => 1475, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'LIFTER STANDARD ( 1 LITER )'], - ['id_aset' => 1476, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'BEJANA UKUR'], - ['id_aset' => 1477, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'ALAT UKUR KADAR AIR (ALAT UKUR LAINNYA)'], - ['id_aset' => 1478, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'ALAT UKUR PEMECAH KULIT GABAH'], - ['id_aset' => 1479, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'RAIN GAUGE'], - ['id_aset' => 1480, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'NEEDLE LIFT SENSOR'], - ['id_aset' => 1481, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT UKUR LAINNYA'], - ['id_aset' => 1482, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT TIMBANGAN/BIARA'], - ['id_aset' => 1483, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TIMBANGAN JEMBATAN CAPASITAS 10 TON'], - ['id_aset' => 1484, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'TIMBANGAN MEJA CAPASITAS 10 KG'], - ['id_aset' => 1485, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'TIMBANGAN MEJA CAPASITAS 5 KG'], - ['id_aset' => 1486, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'TIMBANGAN BBI CAPASITAS 100 KG'], - ['id_aset' => 1487, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'TIMBANGAN BBI CAPASITAS 25 KG'], - ['id_aset' => 1488, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'TIMBANGAN BBI CAPASITAS 15 KG ( TIMBANGAN BAYI )'], - ['id_aset' => 1489, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'TIMBANGAN BBI CAPASITAS 10 KG'], - ['id_aset' => 1490, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'TIMBANGAN CEPAT CAPASITAS 10 KG'], - ['id_aset' => 1491, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'TIMBANGAN CEPAT CAPASITAS 25 KG'], - ['id_aset' => 1492, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'TIMBANGAN CEPAT CAPASITAS 200 KG'], - ['id_aset' => 1493, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'TIMBANGAN PEGAS CAPASITAS 10 KG'], - ['id_aset' => 1494, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'TIMBANGAN PEGAS CAPASITAS 50 KG (ALAT TIMBANGAN/BIARA)'], - ['id_aset' => 1495, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'TIMBANGAN SURAT CAPASITAS 100 KG'], - ['id_aset' => 1496, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'TIMBANGAN KWADRAN CAPASITAS 100 KG'], - ['id_aset' => 1497, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'TIMBANGAN SENTISIMAL DACIN KUNINGAN'], - ['id_aset' => 1498, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'TIMBANGAN GULA GAVEKA'], - ['id_aset' => 1499, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'TIMBANGAN GANTUNG CAPASITAS 50 GRAM'], - ['id_aset' => 1500, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'NERACA HALUS + LEMARI CAPASITAS 500 GRAM'], - ['id_aset' => 1501, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'NERACA PARAMA E'], - ['id_aset' => 1502, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'NERACA PARAMA D CAPASITAS 5 GRAM'], - ['id_aset' => 1503, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'NERACA PERCISI ELEKTRONIK CAPASITAS 1 KG.'], - ['id_aset' => 1504, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'NERACA PERCISI ( SINGLE PAN ) CAPASITAS 20 KG.'], - ['id_aset' => 1505, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'NERACA PERCISI ( ELEKTRONIK VACUM ME )'], - ['id_aset' => 1506, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'NERACA PERCISI 30 KG ( MICRO BALANCE )'], - ['id_aset' => 1507, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '026', 'nama' => 'NERACA PERCISI CAPASITAS 50 GRAM'], - ['id_aset' => 1508, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '027', 'nama' => 'NERACA PERCISI CAPASITAS 1 KG.'], - ['id_aset' => 1509, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '028', 'nama' => 'NERACA TERA E'], - ['id_aset' => 1510, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '029', 'nama' => 'NERACA TERA A CAPASITAS 75 KG.'], - ['id_aset' => 1511, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '030', 'nama' => 'NERACA TERA B CAPASITAS 10 KG.'], - ['id_aset' => 1512, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '031', 'nama' => 'NERACA TORSION BALANCE CAPASITAS 500 GRAM'], - ['id_aset' => 1513, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '032', 'nama' => 'NERACA ANALISA CAPASITAS 1000 GRAM'], - ['id_aset' => 1514, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '033', 'nama' => 'NERACA ANALISA CAPASITAS 20 KG'], - ['id_aset' => 1515, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '034', 'nama' => 'NERACA CAPASITAS 1 KG.'], - ['id_aset' => 1516, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '035', 'nama' => 'NERACA CAPASITAS 20 KG.'], - ['id_aset' => 1517, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '036', 'nama' => 'MOISTER METER'], - ['id_aset' => 1518, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '037', 'nama' => 'NERACA DENGAN DIGITAL DISPLAY'], - ['id_aset' => 1519, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT TIMBANGAN/BIARA LAINNYA'], - ['id_aset' => 1520, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'ANAK TIMBANGAN / BIARA'], - ['id_aset' => 1521, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'KILOGRAM TEMBAGA NASIONAL PLATINA'], - ['id_aset' => 1522, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'KILOGRAM TEMBAGA BENTUK TONG BERSADUR MAS MURNI 1 KG.'], - ['id_aset' => 1523, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'KILOGRAM SEPUH MAS 1 KG. PAKAI TOMBOL'], - ['id_aset' => 1524, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'KILOGRAM BAJA BERBENTUK TONG BERSADUR CROOM'], - ['id_aset' => 1525, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'KILOGRAM DARI BAJA BERBENTUK SLINDER'], - ['id_aset' => 1526, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'KILOGRAM KERJA STANDAR TK.II'], - ['id_aset' => 1527, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'KILOGRAM STANDAR'], - ['id_aset' => 1528, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'ANAK TIMBANGAN TEMBAGA KANTOR TK.III'], - ['id_aset' => 1529, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'ANAK TIMBANGAN MILIGRAM'], - ['id_aset' => 1530, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'ANAK TIMBANGAN MILIGRAM PLATINA'], - ['id_aset' => 1531, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'ANAK TIMBANGAN MILIGRAM ALUMINIUM'], - ['id_aset' => 1532, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'ANAK TIMBANGAN GRAM STANDAR 1 GRAM'], - ['id_aset' => 1533, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '013', 'nama' => 'ANAK TIMBANGAN HALUS DARI 1.000 - 1 GRAM'], - ['id_aset' => 1534, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '014', 'nama' => 'ANAK TIMBANGAN BIASA DARI 1.000 - 1 GRAM'], - ['id_aset' => 1535, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '015', 'nama' => 'ANAK TIMBANGAN BIDUR'], - ['id_aset' => 1536, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '016', 'nama' => 'ANAK TIMBANGAN DARI BESI'], - ['id_aset' => 1537, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '017', 'nama' => 'ANAK TIMBANGAN KEPING ( MULUT KECIL )'], - ['id_aset' => 1538, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '018', 'nama' => 'ANAK TIMBANGAN KEPING ( MULUT BESAR )'], - ['id_aset' => 1539, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'ANAK TIMBANGAN / BIARA LAINNYA'], - ['id_aset' => 1540, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'TAKARAN KERING'], - ['id_aset' => 1541, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'TAKARAN KERING DARI 100 - 50 - 20 LITER'], - ['id_aset' => 1542, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => '\"TAKARAN KERING DARI 10 S/D 0'], - ['id_aset' => 1543, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'TAKARAN KERING LAINNYA'], - ['id_aset' => 1544, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'TAKARAN BAHAN BANGUNAN'], - ['id_aset' => 1545, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'TAKARAN BAHAN BANGUNAN 2 HL BERBENTUK TONG'], - ['id_aset' => 1546, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'TAKARAN BAHAN BANGUNAN LAINNYA'], - ['id_aset' => 1547, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'TAKARAN LAINNYA'], - ['id_aset' => 1548, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'TAKARAN LATEX/GETAH SUSU'], - ['id_aset' => 1549, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => '\"TAKARAN BUAH KOPI DARI 0'], - ['id_aset' => 1550, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'TAKARAN KAPUK DARI KAYU 2 DAN 1 HL'], - ['id_aset' => 1551, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => '\"TAKARAN MINYAK DARI BESI 0'], - ['id_aset' => 1552, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '005', 'nama' => '\"TAKARAN GANDUM 0'], - ['id_aset' => 1553, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'TAKARAN LAINNYA'], - ['id_aset' => 1554, 'golongan' => '3', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT UKUR LAINNYA'], - ['id_aset' => 1555, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PERTANIAN'], - ['id_aset' => 1556, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN'], - ['id_aset' => 1557, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN TANAH DAN TANAMAN'], - ['id_aset' => 1558, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BAJAK KAYU'], - ['id_aset' => 1559, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'BAJAK MUARA'], - ['id_aset' => 1560, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PACUL'], - ['id_aset' => 1561, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'LINGGIS'], - ['id_aset' => 1562, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'GARPU PACUL'], - ['id_aset' => 1563, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'GARPU KAYU'], - ['id_aset' => 1564, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'GARPU BESI'], - ['id_aset' => 1565, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TRACTOR FOUR WHEEL (DENGAN KELENGKAPANNYA)'], - ['id_aset' => 1566, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'TRACTOR TANGAN DENGAN PERLENGKAPANNYA'], - ['id_aset' => 1567, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN TANAH DAN TANAMAN LAINNYA'], - ['id_aset' => 1568, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PEMELIHARAAN TANAMAN/IKAN/TERNAK'], - ['id_aset' => 1569, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'KORED'], - ['id_aset' => 1570, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'ARIT'], - ['id_aset' => 1571, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BABATAN'], - ['id_aset' => 1572, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'PACUL DANGIR'], - ['id_aset' => 1573, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'PENYEMPROT OTOMATIS (AUTOMATIC SPRAYER)'], - ['id_aset' => 1574, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'PENYEMPROT MESIN (POWER SPRAYER)'], - ['id_aset' => 1575, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'PENYEMPROT TANGAN (HAND SPRAYER)'], - ['id_aset' => 1576, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'ALAT PENYIANG TANAMAN'], - ['id_aset' => 1577, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PEMELIHARAAN TANAMAN/IKAN/TERNAK LAINNYA'], - ['id_aset' => 1578, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PANEN'], - ['id_aset' => 1579, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'ANI-ANI'], - ['id_aset' => 1580, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PERONTOKAN (THRESSER PEDAL)'], - ['id_aset' => 1581, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT PERONTOKAN MESIN (POWER THRESSER)'], - ['id_aset' => 1582, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT PEMIPIL JAGUNG'], - ['id_aset' => 1583, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'ALAT PENGERING (DRYER)'], - ['id_aset' => 1584, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'ALAT PENGUKUR KADAR AIR (MOISTURE TESTER)'], - ['id_aset' => 1585, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'ALAT PENGGILING KOPI'], - ['id_aset' => 1586, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'ALAT PENGOLAH TEPUNG'], - ['id_aset' => 1587, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'ALAT BANTU UJI TUMBUH'], - ['id_aset' => 1588, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'ALAT PENAMPI'], - ['id_aset' => 1589, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PANEN LAINNYA'], - ['id_aset' => 1590, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENYIMPAN HASIL PERCOBAAN PERTANIAN'], - ['id_aset' => 1591, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'COLD STORAGE (KAMAR PENDINGIN)'], - ['id_aset' => 1592, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SELO (KOTAK PENYIMPANAN) DENGAN PENGATUR TEMPERATUR'], - ['id_aset' => 1593, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'RAK-RAK PENYIMPAN'], - ['id_aset' => 1594, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'LEMARI PENYIMPAN'], - ['id_aset' => 1595, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENYIMPAN HASIL PERCOBAAN PERTANIAN LAINNYA'], - ['id_aset' => 1596, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT LABORATORIUM PERTANIAN'], - ['id_aset' => 1597, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PENGUKUR CURAH HUJAN'], - ['id_aset' => 1598, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PENGUKUR CAHAYA'], - ['id_aset' => 1599, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT PENGUKUR INTENSITAS CAHAYA'], - ['id_aset' => 1600, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT PENGUKUR TEMPERATUR'], - ['id_aset' => 1601, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'ALAT PENGUKUR P.H. TANAH (SOIL TESTER)'], - ['id_aset' => 1602, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'ALAT PENGAMBIL SAMPLE TANAH'], - ['id_aset' => 1603, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'RICE'], - ['id_aset' => 1604, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'GRINDDING MILL'], - ['id_aset' => 1605, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'VOLUME TEST'], - ['id_aset' => 1606, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'WEIGHT'], - ['id_aset' => 1607, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'STRAW FACTURE'], - ['id_aset' => 1608, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'FALLING NUMBER'], - ['id_aset' => 1609, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'ELECTRODE PH METER'], - ['id_aset' => 1610, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'ALAT PENURUN KADAR AIR MADU'], - ['id_aset' => 1611, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT LABORATORIUM PERTANIAN LAINNYA (ALAT PENGOLAHAN PERTANIAN)'], - ['id_aset' => 1612, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PROSESING'], - ['id_aset' => 1613, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PENGADUK'], - ['id_aset' => 1614, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PENCABUT BULU AYAM'], - ['id_aset' => 1615, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT PEMBUAT PELET/MAKANAN TERNAK'], - ['id_aset' => 1616, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT PEMBUAT MOLASE BLOK'], - ['id_aset' => 1617, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN TETAS'], - ['id_aset' => 1618, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN PERAH SUSU'], - ['id_aset' => 1619, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'MILK CAN'], - ['id_aset' => 1620, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'PENGUPAS KULIT ARI KEDELAI'], - ['id_aset' => 1621, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'PEMARUT SERAT SERBA GUNA'], - ['id_aset' => 1622, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'PENYAWUT SINGKONG'], - ['id_aset' => 1623, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'GILINGAN BERAS'], - ['id_aset' => 1624, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'SALINA INJECTOR'], - ['id_aset' => 1625, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '013', 'nama' => 'SCALLER MOTOR'], - ['id_aset' => 1626, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '014', 'nama' => 'ULV CABINET'], - ['id_aset' => 1627, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '015', 'nama' => 'TLC DRAYER'], - ['id_aset' => 1628, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '016', 'nama' => 'MESIN PENCUCI ALAT (MIELE)'], - ['id_aset' => 1629, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '017', 'nama' => 'HYDROLIC PIECES'], - ['id_aset' => 1630, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '018', 'nama' => 'REAPER'], - ['id_aset' => 1631, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '019', 'nama' => 'ELECTRIC DISK CUTTER'], - ['id_aset' => 1632, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '020', 'nama' => 'RAGUM /CATOK'], - ['id_aset' => 1633, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '021', 'nama' => 'DIESEL EGGANE'], - ['id_aset' => 1634, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '022', 'nama' => 'ALAT PROSESING DAGING'], - ['id_aset' => 1635, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '023', 'nama' => 'ALAT PROSESING TELUR'], - ['id_aset' => 1636, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '024', 'nama' => 'ICE CREAM MAKER'], - ['id_aset' => 1637, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '025', 'nama' => 'HAND SEPARATOR'], - ['id_aset' => 1638, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '026', 'nama' => 'MESIN PENEPUNG BERAS'], - ['id_aset' => 1639, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '027', 'nama' => 'ALAT PENGGILING JAGUNG'], - ['id_aset' => 1640, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '028', 'nama' => 'MESIN PENGAYAK TEPUNG'], - ['id_aset' => 1641, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '029', 'nama' => 'PENGOLAHAN PRODUK KERING'], - ['id_aset' => 1642, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '030', 'nama' => 'PENYAWUT BESAR DAN KECIL'], - ['id_aset' => 1643, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '031', 'nama' => 'PROCESSING MULTIGUNA'], - ['id_aset' => 1644, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '032', 'nama' => 'PUMP FOR HPLC AND ACCESSORIES'], - ['id_aset' => 1645, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '033', 'nama' => 'SAUSAGE FEELER MACHINE'], - ['id_aset' => 1646, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '034', 'nama' => 'TWIN PAPER ROLLER BEARING'], - ['id_aset' => 1647, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '035', 'nama' => 'SKINNING CRADLE'], - ['id_aset' => 1648, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '036', 'nama' => 'HEAD RESTRAINER'], - ['id_aset' => 1649, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '037', 'nama' => 'STUNING DEVICE'], - ['id_aset' => 1650, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '038', 'nama' => 'PENYODOK KOTORAN'], - ['id_aset' => 1651, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '039', 'nama' => 'PENGARAH KEPALA'], - ['id_aset' => 1652, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '040', 'nama' => 'OFFAL WASH'], - ['id_aset' => 1653, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '041', 'nama' => 'BEEF SPLITTER'], - ['id_aset' => 1654, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PROSESING LAINNYA'], - ['id_aset' => 1655, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PASCA PANEN'], - ['id_aset' => 1656, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PENGASAPAN'], - ['id_aset' => 1657, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PEMBEKUAN'], - ['id_aset' => 1658, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT PENGGILING PADI'], - ['id_aset' => 1659, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT PENCACAH HIJAUAN'], - ['id_aset' => 1660, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'ALAT PEMECAH TAPIOKA'], - ['id_aset' => 1661, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PASCA PANEN LAINNYA'], - ['id_aset' => 1662, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PRODUKSI PERIKANAN'], - ['id_aset' => 1663, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'PUKAT'], - ['id_aset' => 1664, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'DOUBLE RIG SHRIMP TRAWL/PUKAT UDANG GANDA'], - ['id_aset' => 1665, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'PAYANG ( TERMASUK LAMPARA )'], - ['id_aset' => 1666, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '004', 'nama' => 'DANISH SEINE ( DOGOL )'], - ['id_aset' => 1667, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '005', 'nama' => 'BEACH SEINE ( PUKAT PANTAI )'], - ['id_aset' => 1668, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '006', 'nama' => 'DRIFT GILL NET ( JARING INSANG HANYUT )'], - ['id_aset' => 1669, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '007', 'nama' => 'ENCIRCLING GILL NET ( JARING INSANG LINGKAR )'], - ['id_aset' => 1670, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '008', 'nama' => 'SHRIMP GILL NET ( JARING KLITIK )'], - ['id_aset' => 1671, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '009', 'nama' => 'SET GILL NET ( JARING INSANG TETAP )'], - ['id_aset' => 1672, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '010', 'nama' => 'BOAT RAFT LIFT NET ( BAGAN PERAHU/RAKIT )'], - ['id_aset' => 1673, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '011', 'nama' => 'BAGAN TANCAP BERIKUT KELONG'], - ['id_aset' => 1674, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '012', 'nama' => 'SCOOP NET ( SEROK )'], - ['id_aset' => 1675, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '013', 'nama' => 'JARING ANGKAT LAINNYA'], - ['id_aset' => 1676, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '014', 'nama' => 'GUIDING BARRIER ( SEROK )'], - ['id_aset' => 1677, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '015', 'nama' => 'STOW NET ( JERMAL TERMASUK TOGO )'], - ['id_aset' => 1678, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '016', 'nama' => 'PORTABLE TRAPS ( BUBU )'], - ['id_aset' => 1679, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '017', 'nama' => 'PERANGKAP LAINNYA'], - ['id_aset' => 1680, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '018', 'nama' => 'TUNA LONG LINE ( RAWAI TUNA )'], - ['id_aset' => 1681, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '019', 'nama' => 'SET LONG LINE ( RAWAI TETAP )'], - ['id_aset' => 1682, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '020', 'nama' => 'SKIPJACK POLE AND LINES ( HUHATE )'], - ['id_aset' => 1683, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '021', 'nama' => 'TROOL LINE ( PANCING TONDA )'], - ['id_aset' => 1684, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '022', 'nama' => 'PANCING LAINNYA'], - ['id_aset' => 1685, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '023', 'nama' => 'MUROAMI INC. MALLALUGIS'], - ['id_aset' => 1686, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '024', 'nama' => 'JALA'], - ['id_aset' => 1687, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '025', 'nama' => 'GARPU'], - ['id_aset' => 1688, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '026', 'nama' => 'TOMBAK'], - ['id_aset' => 1689, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '027', 'nama' => 'SEA WATER RESERVOIR'], - ['id_aset' => 1690, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '028', 'nama' => 'BAK PEMELIHARAAN SEMENTARA'], - ['id_aset' => 1691, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '029', 'nama' => 'BAK PENGENDAPAN'], - ['id_aset' => 1692, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '030', 'nama' => 'KERAMBA ( JARING APUNG )'], - ['id_aset' => 1693, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '031', 'nama' => 'JARING LINGKAR'], - ['id_aset' => 1694, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '032', 'nama' => 'PUKAT TARIK BERKAPAL'], - ['id_aset' => 1695, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '033', 'nama' => 'PUKAT HELA'], - ['id_aset' => 1696, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '034', 'nama' => 'PUKAT DORONG'], - ['id_aset' => 1697, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '035', 'nama' => 'PENGGARUK'], - ['id_aset' => 1698, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '036', 'nama' => 'JARING ANGKAT MENETAP'], - ['id_aset' => 1699, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '037', 'nama' => 'JARING ANGKAT TIDAK MENETAP'], - ['id_aset' => 1700, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '038', 'nama' => 'ALAT YANG DIJATUHKAN'], - ['id_aset' => 1701, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '039', 'nama' => 'ALAT PENJEPIT DAN MELUKAI'], - ['id_aset' => 1702, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PRODUKSI PERIKANAN LAINNYA'], - ['id_aset' => 1703, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN LAINNYA'], - ['id_aset' => 1704, 'golongan' => '3', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN LAINNYA'], - ['id_aset' => 1705, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KANTOR & RUMAH TANGGA'], - ['id_aset' => 1706, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KANTOR'], - ['id_aset' => 1707, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'MESIN KETIK'], - ['id_aset' => 1708, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN KETIK MANUAL PORTABLE (11-13 INCI)'], - ['id_aset' => 1709, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN KETIK MANUAL STANDARD (14-16 INCI)'], - ['id_aset' => 1710, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN KETIK MANUAL LANGEWAGON (18-27 INCI)'], - ['id_aset' => 1711, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN KETIK LISTRIK'], - ['id_aset' => 1712, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN KETIK LISTRIK POTABLE (11-13 INCI)'], - ['id_aset' => 1713, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN KETIK LISTRIK STANDARD (14-16 INCI)'], - ['id_aset' => 1714, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN KETIK LISTRIK LANGEWAGON (18-27 INCI)'], - ['id_aset' => 1715, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN KETIK ELEKTRONIK/SELEKTRIK'], - ['id_aset' => 1716, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN KETIK BRAILLE'], - ['id_aset' => 1717, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN PHROMOSONS'], - ['id_aset' => 1718, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'MESIN CETAK STEREO PIPER (BRAILLE)'], - ['id_aset' => 1719, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'MESIN KETIK LAINNYA'], - ['id_aset' => 1720, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'MESIN HITUNG/MESIN JUMLAH'], - ['id_aset' => 1721, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN HITUNG MANUAL'], - ['id_aset' => 1722, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN HITUNG LISTRIK'], - ['id_aset' => 1723, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN HITUNG ELEKTRONIK/CALCULATOR'], - ['id_aset' => 1724, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN KAS REGISTER'], - ['id_aset' => 1725, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'ABAKUS (ALAT HITUNG)'], - ['id_aset' => 1726, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'BLOKYCS (MESIN HITUNG BRAILLE)'], - ['id_aset' => 1727, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN PENGHITUNG UANG'], - ['id_aset' => 1728, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN PEMBUKUAN'], - ['id_aset' => 1729, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN PENGHITUNG KERTAS/PITA CUKAI'], - ['id_aset' => 1730, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'MESIN HITUNG/MESIN JUMLAH LAINNYA'], - ['id_aset' => 1731, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT REPRODUKSI (PENGGANDAAN)'], - ['id_aset' => 1732, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN STENSIL MANUAL FOLIO'], - ['id_aset' => 1733, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN STENSIL MANUAL DOUBLE FOLIO'], - ['id_aset' => 1734, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN STENSIL LISTRIK FOLIO'], - ['id_aset' => 1735, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN STENSIL LISTRIK DOUBLE FOLIO'], - ['id_aset' => 1736, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN STENSIL SPIRITUS MANUAL'], - ['id_aset' => 1737, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN STENSIL SPIRITUS LISTRIK'], - ['id_aset' => 1738, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN FOTOCOPY FOLIO'], - ['id_aset' => 1739, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN FOTOCOPY DOUBLE FOLIO'], - ['id_aset' => 1740, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN FOTOCOPY ELECTRONIC'], - ['id_aset' => 1741, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN THERMOFORN'], - ['id_aset' => 1742, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'MESIN FOTOCOPY LAINNYA'], - ['id_aset' => 1743, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'RISOGRAF'], - ['id_aset' => 1744, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT REPRODUKSI (PENGGANDAAN) LAINNYA'], - ['id_aset' => 1745, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENYIMPAN PERLENGKAPAN KANTOR'], - ['id_aset' => 1746, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'LEMARI BESI/METAL'], - ['id_aset' => 1747, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'LEMARI KAYU'], - ['id_aset' => 1748, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'RAK BESI'], - ['id_aset' => 1749, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'RAK KAYU'], - ['id_aset' => 1750, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'FILING CABINET BESI'], - ['id_aset' => 1751, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'FILING CABINET KAYU'], - ['id_aset' => 1752, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'BRANDKAS'], - ['id_aset' => 1753, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'PETI UANG/CASH BOX/COIN BOX'], - ['id_aset' => 1754, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'KARDEX BESI'], - ['id_aset' => 1755, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'KARDEX KAYU'], - ['id_aset' => 1756, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'ROTARY FILLING'], - ['id_aset' => 1757, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'COMPACT ROLLING'], - ['id_aset' => 1758, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'BUFFET'], - ['id_aset' => 1759, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'MOBILE FILE'], - ['id_aset' => 1760, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '015', 'nama' => 'LOCKER'], - ['id_aset' => 1761, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '016', 'nama' => 'ROLL OPEK'], - ['id_aset' => 1762, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '017', 'nama' => 'TEMPAT MENYIMPAN GAMBAR'], - ['id_aset' => 1763, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '018', 'nama' => 'KONTAINER'], - ['id_aset' => 1764, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '019', 'nama' => 'COIN BOX'], - ['id_aset' => 1765, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '020', 'nama' => 'LEMARI DISPLAY'], - ['id_aset' => 1766, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '021', 'nama' => 'WATER PROOF BOX'], - ['id_aset' => 1767, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '022', 'nama' => 'FOLDING CONTAINER BOX'], - ['id_aset' => 1768, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '023', 'nama' => 'BOX TRUCK'], - ['id_aset' => 1769, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '024', 'nama' => 'LACI BOX'], - ['id_aset' => 1770, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '025', 'nama' => 'LEMARI KATALOG'], - ['id_aset' => 1771, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENYIMPAN PERLENGKAPAN KANTOR LAINNYA'], - ['id_aset' => 1772, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KANTOR LAINNYA'], - ['id_aset' => 1773, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TABUNG PEMADAM API'], - ['id_aset' => 1774, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'HYDRANT'], - ['id_aset' => 1775, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'SPRINKLER'], - ['id_aset' => 1776, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'FIRE ALARM'], - ['id_aset' => 1777, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'RAMBU-RAMBU'], - ['id_aset' => 1778, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'NARKOTIK TEST'], - ['id_aset' => 1779, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'CCTV - CAMERA CONTROL TELEVISION SYSTEM'], - ['id_aset' => 1780, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'PAPAN VISUAL/PAPAN NAMA'], - ['id_aset' => 1781, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'MOVITEX BOARD'], - ['id_aset' => 1782, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'WHITE BOARD'], - ['id_aset' => 1783, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'ALAT DETEKTOR UANG PALSU'], - ['id_aset' => 1784, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'ALAT DETEKTOR BARANG TERLARANG/X RAY'], - ['id_aset' => 1785, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'COPY BOARD/ELEKTRIC WHITE BOARD'], - ['id_aset' => 1786, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'PETA'], - ['id_aset' => 1787, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'ALAT PENGHANCUR KERTAS'], - ['id_aset' => 1788, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'GLOBE'], - ['id_aset' => 1789, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'MESIN ABSENSI'], - ['id_aset' => 1790, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'DRY SEAL'], - ['id_aset' => 1791, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'FERGULATOR'], - ['id_aset' => 1792, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'CREAM POLISHER'], - ['id_aset' => 1793, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'MESIN PERANGKO'], - ['id_aset' => 1794, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'CHECK WRITER'], - ['id_aset' => 1795, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'NUMERATOR'], - ['id_aset' => 1796, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'ALAT PEMOTONG KERTAS'], - ['id_aset' => 1797, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'HEADMACHINE BESAR'], - ['id_aset' => 1798, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '026', 'nama' => 'PERFORATOR BESAR'], - ['id_aset' => 1799, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '027', 'nama' => 'ALAT PENCETAK LABEL'], - ['id_aset' => 1800, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '028', 'nama' => 'OVERHEAD PROJECTOR'], - ['id_aset' => 1801, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '029', 'nama' => 'HAND METAL DETECTOR'], - ['id_aset' => 1802, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '030', 'nama' => 'WALKMAN DETECTOR'], - ['id_aset' => 1803, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '031', 'nama' => 'PANEL PAMERAN'], - ['id_aset' => 1804, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '032', 'nama' => 'ALAT PENGAMAN / SINYAL'], - ['id_aset' => 1805, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '033', 'nama' => 'BOARD MODULUX'], - ['id_aset' => 1806, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '034', 'nama' => 'PORTO SAFE TRAVEL COSE'], - ['id_aset' => 1807, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '035', 'nama' => 'DISK PRIME'], - ['id_aset' => 1808, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '036', 'nama' => 'MEGASHOW'], - ['id_aset' => 1809, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '037', 'nama' => 'WHITE BOARD ELECTRONIC'], - ['id_aset' => 1810, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '038', 'nama' => 'LASER POINTER'], - ['id_aset' => 1811, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '039', 'nama' => 'DISPLAY'], - ['id_aset' => 1812, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '040', 'nama' => 'EXHAUSTER FORM'], - ['id_aset' => 1813, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '041', 'nama' => 'RUBU MUJAYYAB'], - ['id_aset' => 1814, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '042', 'nama' => 'ELECTRIC DUMPER'], - ['id_aset' => 1815, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '043', 'nama' => 'MESIN TERAAN'], - ['id_aset' => 1816, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '044', 'nama' => 'MESIN LAMINATING'], - ['id_aset' => 1817, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '045', 'nama' => 'PENANGKAL PETIR'], - ['id_aset' => 1818, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '046', 'nama' => 'STEMPEL TIMBUL/BULAT'], - ['id_aset' => 1819, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '047', 'nama' => 'LAMPU-LAMPU KRISTAL'], - ['id_aset' => 1820, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '048', 'nama' => 'LCD PROJECTOR/INFOCUS'], - ['id_aset' => 1821, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '049', 'nama' => 'FLIP CHART'], - ['id_aset' => 1822, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '050', 'nama' => 'BINDING MACHINE'], - ['id_aset' => 1823, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '051', 'nama' => 'SOFTBOARD'], - ['id_aset' => 1824, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '052', 'nama' => 'ALAT PEREKAM SUARA (VOICE PEN)'], - ['id_aset' => 1825, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '053', 'nama' => 'ACCES CONTROL SYSTEM'], - ['id_aset' => 1826, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '054', 'nama' => 'INTRUCTION DETECTOR'], - ['id_aset' => 1827, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '055', 'nama' => 'MONITOR PANEL WITH MIMIC BOARD'], - ['id_aset' => 1828, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '056', 'nama' => '\"PANIC BUTTON SYSTEM'], - ['id_aset' => 1829, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '057', 'nama' => 'PINTU ELEKTRIK (YANG MEMAKAI AKSES)'], - ['id_aset' => 1830, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '058', 'nama' => 'FOCUSING SCREEN/LAYAR LCD PROJECTOR'], - ['id_aset' => 1831, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '059', 'nama' => 'ALAT DETEKTOR BARANG TERLARANG'], - ['id_aset' => 1832, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '060', 'nama' => 'PROYECTOR SPIDER BRACKET'], - ['id_aset' => 1833, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '061', 'nama' => 'PAPAN GAMBAR'], - ['id_aset' => 1834, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '062', 'nama' => 'BEL'], - ['id_aset' => 1835, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '063', 'nama' => 'ELECTRIC PRESSING MACHINE'], - ['id_aset' => 1836, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '064', 'nama' => 'ENCAPSULATOR (JARASONIC WELDER)'], - ['id_aset' => 1837, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '065', 'nama' => 'DEACIDIFICATOR UNIT (NON AQUAS)'], - ['id_aset' => 1838, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '066', 'nama' => 'FULL AUTOMATIC LEAF CASTER'], - ['id_aset' => 1839, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '067', 'nama' => 'CONSERVATION TOOLS'], - ['id_aset' => 1840, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '068', 'nama' => 'BOARD STAN'], - ['id_aset' => 1841, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '069', 'nama' => 'VACUM FREEZE DRY CHAMBER'], - ['id_aset' => 1842, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '070', 'nama' => 'KOTAK SURAT'], - ['id_aset' => 1843, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '071', 'nama' => 'GEMBOK'], - ['id_aset' => 1844, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '072', 'nama' => 'COMPACT HAND PROJECTOR'], - ['id_aset' => 1845, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '073', 'nama' => 'ALAT SIDIK JARI'], - ['id_aset' => 1846, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '074', 'nama' => 'ALAT PENGHANCUR JARUM'], - ['id_aset' => 1847, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '075', 'nama' => 'WALKTHROUGH/ PORTAL METAL DETECTOR'], - ['id_aset' => 1848, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '076', 'nama' => 'HANDHELD TRACE DETECTOR'], - ['id_aset' => 1849, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '077', 'nama' => 'ALAT DETEKSI PITA CUKAI PALSU/ VIDEO SPECTRAL COMPARATOR'], - ['id_aset' => 1850, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '078', 'nama' => 'MESIN PACKING/ STARPPING MACHINE'], - ['id_aset' => 1851, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '079', 'nama' => 'TELEVISION CONTROL OPERASIONAL LIFT'], - ['id_aset' => 1852, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '080', 'nama' => 'MESIN ANTRIAN'], - ['id_aset' => 1853, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '081', 'nama' => 'PAPAN PENGUMUMAN'], - ['id_aset' => 1854, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '082', 'nama' => 'MESIN FOGGING'], - ['id_aset' => 1855, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '083', 'nama' => 'TERALIS'], - ['id_aset' => 1856, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERKAKAS KANTOR LAINNYA'], - ['id_aset' => 1857, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KANTOR LAINNYA'], - ['id_aset' => 1858, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KANTOR LAINNYA'], - ['id_aset' => 1859, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT RUMAH TANGGA'], - ['id_aset' => 1860, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'MEUBELAIR'], - ['id_aset' => 1861, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'MEJA KERJA BESI/METAL'], - ['id_aset' => 1862, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MEJA KERJA KAYU'], - ['id_aset' => 1863, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'KURSI BESI/METAL'], - ['id_aset' => 1864, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'KURSI KAYU'], - ['id_aset' => 1865, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'SICE'], - ['id_aset' => 1866, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'BANGKU PANJANG BESI/METAL'], - ['id_aset' => 1867, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'BANGKU PANJANG KAYU'], - ['id_aset' => 1868, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'MEJA RAPAT'], - ['id_aset' => 1869, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'MEJA KOMPUTER'], - ['id_aset' => 1870, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'TEMPAT TIDUR BESI'], - ['id_aset' => 1871, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'TEMPAT TIDUR KAYU'], - ['id_aset' => 1872, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'MEJA KETIK'], - ['id_aset' => 1873, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'MEJA TELEPON'], - ['id_aset' => 1874, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'MEJA RESEPSIONIS'], - ['id_aset' => 1875, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'MEJA MARMER'], - ['id_aset' => 1876, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'KASUR/SPRING BED'], - ['id_aset' => 1877, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'SKETSEL'], - ['id_aset' => 1878, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'MEJA MAKAN BESI'], - ['id_aset' => 1879, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '019', 'nama' => 'MEJA MAKAN KAYU'], - ['id_aset' => 1880, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '020', 'nama' => 'KURSI FIBER GLAS/PLASTIK'], - ['id_aset' => 1881, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '021', 'nama' => 'POT BUNGA'], - ['id_aset' => 1882, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '022', 'nama' => 'PARTISI'], - ['id_aset' => 1883, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '023', 'nama' => 'PUBLIK ASTARI (PEMBATAS ANTRIAN)'], - ['id_aset' => 1884, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '024', 'nama' => 'RAK SEPATU ( ALMUNIUM )'], - ['id_aset' => 1885, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '025', 'nama' => 'GANTUNGAN JAS'], - ['id_aset' => 1886, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '026', 'nama' => 'NAKAS'], - ['id_aset' => 1887, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '027', 'nama' => 'CUBIKAL'], - ['id_aset' => 1888, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '028', 'nama' => 'WORKSTATION'], - ['id_aset' => 1889, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'MEUBELAIR LAINNYA'], - ['id_aset' => 1890, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGUKUR WAKTU'], - ['id_aset' => 1891, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JAM MEKANIS'], - ['id_aset' => 1892, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JAM LISTRIK'], - ['id_aset' => 1893, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JAM ELEKTRONIK'], - ['id_aset' => 1894, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'CONTROL CLOCK'], - ['id_aset' => 1895, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGUKUR WAKTU LAINNYA'], - ['id_aset' => 1896, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PEMBERSIH'], - ['id_aset' => 1897, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'MESIN PENGHISAP DEBU/VACUUM CLEANER'], - ['id_aset' => 1898, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'MESIN PEL/POLES'], - ['id_aset' => 1899, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN PEMOTONG RUMPUT'], - ['id_aset' => 1900, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN CUCI'], - ['id_aset' => 1901, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'AIR CLEANER'], - ['id_aset' => 1902, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'ALAT PEMBERSIH SALJU'], - ['id_aset' => 1903, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PEMBERSIH LAINNYA'], - ['id_aset' => 1904, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENDINGIN'], - ['id_aset' => 1905, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'LEMARI ES'], - ['id_aset' => 1906, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'A.C. SENTRAL'], - ['id_aset' => 1907, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'A.C. WINDOW'], - ['id_aset' => 1908, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'A.C. SPLIT'], - ['id_aset' => 1909, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'PORTABLE AIR CONDITIONER (ALAT PENDINGIN)'], - ['id_aset' => 1910, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'KIPAS ANGIN'], - ['id_aset' => 1911, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'EXHAUSE FAN'], - ['id_aset' => 1912, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'COLD STORAGE (ALAT PENDINGIN)'], - ['id_aset' => 1913, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'REACH IN FREZZER'], - ['id_aset' => 1914, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'REACH IN CHILLER'], - ['id_aset' => 1915, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'UP RIGHT CHILLER/FREZZER'], - ['id_aset' => 1916, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'COLD ROOM FREZZER'], - ['id_aset' => 1917, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'AIR CURTAIN'], - ['id_aset' => 1918, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'AIR HANDLING UNIT'], - ['id_aset' => 1919, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENDINGIN LAINNYA'], - ['id_aset' => 1920, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT DAPUR'], - ['id_aset' => 1921, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'KOMPOR LISTRIK (ALAT DAPUR)'], - ['id_aset' => 1922, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'KOMPOR GAS (ALAT DAPUR)'], - ['id_aset' => 1923, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'KOMPOR MINYAK'], - ['id_aset' => 1924, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'TEKO LISTRIK'], - ['id_aset' => 1925, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'RICE COOKER (ALAT DAPUR)'], - ['id_aset' => 1926, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'OVEN LISTRIK'], - ['id_aset' => 1927, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'RICE WARMER'], - ['id_aset' => 1928, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'KITCHEN SET'], - ['id_aset' => 1929, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'TABUNG GAS'], - ['id_aset' => 1930, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN GILING BUMBU'], - ['id_aset' => 1931, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'TRENG AIR/TANDON AIR'], - ['id_aset' => 1932, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'MESIN PARUTAN KELAPA'], - ['id_aset' => 1933, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'KOMPOR KOMPRESOR'], - ['id_aset' => 1934, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'ALAT PEMANGGANG ROTI/SATE'], - ['id_aset' => 1935, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'RAK PIRING ALUMUNIUM'], - ['id_aset' => 1936, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'ALAT PENYIMPAN BERAS'], - ['id_aset' => 1937, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'PANCI'], - ['id_aset' => 1938, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'BLENDER'], - ['id_aset' => 1939, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'MIXER'], - ['id_aset' => 1940, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'OVEN GAS'], - ['id_aset' => 1941, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'PRESTO COOKER'], - ['id_aset' => 1942, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'WONDER PAN'], - ['id_aset' => 1943, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'MESIN GILING DAGING'], - ['id_aset' => 1944, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'HEATING SET'], - ['id_aset' => 1945, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'THERMOS AIR'], - ['id_aset' => 1946, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT DAPUR LAINNYA'], - ['id_aset' => 1947, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT RUMAH TANGGA LAINNYA ( HOME USE )'], - ['id_aset' => 1948, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'RADIO'], - ['id_aset' => 1949, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'TELEVISI'], - ['id_aset' => 1950, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'VIDEO CASSETTE'], - ['id_aset' => 1951, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'TAPE RECORDER (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))'], - ['id_aset' => 1952, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'AMPLIFIER'], - ['id_aset' => 1953, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'EQUALIZER'], - ['id_aset' => 1954, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'LOUDSPEAKER'], - ['id_aset' => 1955, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'SOUND SYSTEM'], - ['id_aset' => 1956, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'COMPACT DISC'], - ['id_aset' => 1957, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'LASER DISC'], - ['id_aset' => 1958, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'KARAOKE'], - ['id_aset' => 1959, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'WIRELESS'], - ['id_aset' => 1960, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '013', 'nama' => 'MEGAPHONE'], - ['id_aset' => 1961, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '014', 'nama' => 'MICROPHONE'], - ['id_aset' => 1962, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '015', 'nama' => 'MICROPHONE TABLE STAND'], - ['id_aset' => 1963, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '016', 'nama' => 'MIC CONFERENCE'], - ['id_aset' => 1964, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '017', 'nama' => 'UNIT POWER SUPPLY'], - ['id_aset' => 1965, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '018', 'nama' => 'STEP UP/DOWN (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))'], - ['id_aset' => 1966, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '019', 'nama' => 'STABILISATOR'], - ['id_aset' => 1967, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '020', 'nama' => 'CAMERA VIDEO'], - ['id_aset' => 1968, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '021', 'nama' => 'TUSTEL'], - ['id_aset' => 1969, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '022', 'nama' => 'MESIN JAHIT'], - ['id_aset' => 1970, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '023', 'nama' => 'TIMBANGAN ORANG'], - ['id_aset' => 1971, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '024', 'nama' => 'TIMBANGAN BARANG'], - ['id_aset' => 1972, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '025', 'nama' => 'ALAT HIASAN'], - ['id_aset' => 1973, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '026', 'nama' => 'LAMBANG GARUDA PANCASILA'], - ['id_aset' => 1974, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '027', 'nama' => 'GAMBAR PRESIDEN/WAKIL PRESIDEN'], - ['id_aset' => 1975, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '028', 'nama' => 'LAMBANG KORPRI/DHARMA WANITA'], - ['id_aset' => 1976, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '029', 'nama' => 'AQUARIUM (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))'], - ['id_aset' => 1977, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '030', 'nama' => 'TIANG BENDERA'], - ['id_aset' => 1978, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '031', 'nama' => 'PATAKA'], - ['id_aset' => 1979, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '032', 'nama' => 'SETERIKA'], - ['id_aset' => 1980, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '033', 'nama' => 'WATER FILTER'], - ['id_aset' => 1981, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '034', 'nama' => 'TANGGA ALUMINIUM'], - ['id_aset' => 1982, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '035', 'nama' => 'KACA HIAS'], - ['id_aset' => 1983, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '036', 'nama' => 'DISPENSER'], - ['id_aset' => 1984, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '037', 'nama' => 'MIMBAR/PODIUM'], - ['id_aset' => 1985, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '038', 'nama' => 'GUCCI'], - ['id_aset' => 1986, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '039', 'nama' => 'TANGGA HIDROLIK'], - ['id_aset' => 1987, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '040', 'nama' => 'PALU SIDANG'], - ['id_aset' => 1988, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '041', 'nama' => 'MESIN PENGERING PAKAIAN'], - ['id_aset' => 1989, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '042', 'nama' => 'LAMBANG INSTANSI'], - ['id_aset' => 1990, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '043', 'nama' => 'LONCENG/GENTA'], - ['id_aset' => 1991, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '044', 'nama' => 'MESIN PEMOTONG KERAMIK'], - ['id_aset' => 1992, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '045', 'nama' => 'COFFEE MAKER'], - ['id_aset' => 1993, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '046', 'nama' => 'HANDY CAM'], - ['id_aset' => 1994, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '047', 'nama' => 'MESIN OBRAS'], - ['id_aset' => 1995, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '048', 'nama' => 'MESIN POTONG KAIN'], - ['id_aset' => 1996, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '049', 'nama' => 'MESIN PELUBANG KANCING'], - ['id_aset' => 1997, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '050', 'nama' => 'MEJA POTONG'], - ['id_aset' => 1998, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '051', 'nama' => 'RADER'], - ['id_aset' => 1999, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '052', 'nama' => 'MANEQUIN (BONEKA)'], - ['id_aset' => 2000, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '053', 'nama' => 'PINSET (PISAU LOBANG KANCING)'], - ['id_aset' => 2001, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '054', 'nama' => 'MINI COMPO'], - ['id_aset' => 2002, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '055', 'nama' => 'HEATER (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))'], - ['id_aset' => 2003, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '056', 'nama' => 'KARPET'], - ['id_aset' => 2004, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '057', 'nama' => 'VERTIKAL BLIND'], - ['id_aset' => 2005, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '058', 'nama' => 'GORDYIN/KRAY'], - ['id_aset' => 2006, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '059', 'nama' => 'KABEL ROLL'], - ['id_aset' => 2007, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '060', 'nama' => 'ASBAK TINGGI'], - ['id_aset' => 2008, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '061', 'nama' => 'KESET KAKI'], - ['id_aset' => 2009, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '062', 'nama' => 'SUN SCREEN'], - ['id_aset' => 2010, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '063', 'nama' => 'ALAT PEMANAS RUANGAN'], - ['id_aset' => 2011, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '064', 'nama' => 'LEMARI PLASTIK'], - ['id_aset' => 2012, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '065', 'nama' => 'MESIN PENGERING TANGAN'], - ['id_aset' => 2013, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '066', 'nama' => 'PANGGUNG'], - ['id_aset' => 2014, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '067', 'nama' => 'MESIN PEDDING'], - ['id_aset' => 2015, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '068', 'nama' => 'DVD PLAYER'], - ['id_aset' => 2016, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '069', 'nama' => 'LAMPU BELAJAR'], - ['id_aset' => 2017, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '070', 'nama' => 'TANGGA'], - ['id_aset' => 2018, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '071', 'nama' => 'KABEL'], - ['id_aset' => 2019, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '072', 'nama' => 'LAMPU'], - ['id_aset' => 2020, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '073', 'nama' => 'JEMURAN'], - ['id_aset' => 2021, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '074', 'nama' => 'PATUNG PERAGA PAKAIAN'], - ['id_aset' => 2022, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '075', 'nama' => 'GENDOLA'], - ['id_aset' => 2023, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '076', 'nama' => 'GUNTING RUMPUT NON MESIN'], - ['id_aset' => 2024, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '077', 'nama' => 'BENDERA NEGARA'], - ['id_aset' => 2025, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '078', 'nama' => 'BINGKAI FOTO'], - ['id_aset' => 2026, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '079', 'nama' => 'ALAT PANGKAS RAMBUT LISTRIK'], - ['id_aset' => 2027, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '080', 'nama' => 'BRACKET STANDING PERALATAN'], - ['id_aset' => 2028, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '081', 'nama' => 'TANGKI AIR'], - ['id_aset' => 2029, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '082', 'nama' => 'HOME THEATER'], - ['id_aset' => 2030, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT RUMAH TANGGA LAINNYA ( HOME USE )'], - ['id_aset' => 2031, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT RUMAH TANGGA LAINNYA'], - ['id_aset' => 2032, 'golongan' => '3', 'bidang' => '05', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT RUMAH TANGGA LAINNYA'], - ['id_aset' => 2033, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"ALAT STUDIO'], - ['id_aset' => 2034, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT STUDIO'], - ['id_aset' => 2035, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN STUDIO AUDIO'], - ['id_aset' => 2036, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'AUDIO MIXING CONSOLE'], - ['id_aset' => 2037, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'AUDIO MIXING PORTABLE'], - ['id_aset' => 2038, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'AUDIO MIXING STATIONER'], - ['id_aset' => 2039, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'AUDIO ATTENUATOR'], - ['id_aset' => 2040, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'AUDIO AMPLIFIER'], - ['id_aset' => 2041, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'AUDIO ERASE UNIT'], - ['id_aset' => 2042, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'AUDIO VIDEO SELECTOR (PERALATAN STUDIO AUDIO)'], - ['id_aset' => 2043, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'AUDIO MONITOR ACTIVE'], - ['id_aset' => 2044, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'AUDIO MONITOR PASSIVE'], - ['id_aset' => 2045, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'AUDIO REVERBERATION'], - ['id_aset' => 2046, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'AUDIO PATCH PANEL'], - ['id_aset' => 2047, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'AUDIO DISTRIBUTION'], - ['id_aset' => 2048, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'AUDIO TONE GENERATOR'], - ['id_aset' => 2049, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'AUDIO CATRIDGE RECORDER'], - ['id_aset' => 2050, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'AUDIO LOGGING RECORDER'], - ['id_aset' => 2051, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'COMPACT DISC PLAYER'], - ['id_aset' => 2052, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'CASSETTE DUPLICATOR'], - ['id_aset' => 2053, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'DISC RECORD PLAYER'], - ['id_aset' => 2054, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '019', 'nama' => 'MULTITRACK RECORDER'], - ['id_aset' => 2055, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '020', 'nama' => 'REEL TAPE DUPLICATOR'], - ['id_aset' => 2056, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '021', 'nama' => 'COMPACT DISC JUKE BOX SYSTEM'], - ['id_aset' => 2057, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '022', 'nama' => 'TELEPHONE HYBRID'], - ['id_aset' => 2058, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '023', 'nama' => 'AUDIO PHONE IN'], - ['id_aset' => 2059, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '024', 'nama' => 'PROFANITY DELAY SYSTEM'], - ['id_aset' => 2060, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '025', 'nama' => 'AUDIO VISUAL'], - ['id_aset' => 2061, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '026', 'nama' => 'AUDIO FILTER'], - ['id_aset' => 2062, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '027', 'nama' => 'AUDIO LIMITER'], - ['id_aset' => 2063, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '028', 'nama' => 'AUDIO COMPRESSOR'], - ['id_aset' => 2064, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '029', 'nama' => 'TURN TABLE'], - ['id_aset' => 2065, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '030', 'nama' => 'TALK BACK UNIT'], - ['id_aset' => 2066, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '031', 'nama' => 'INTERCOM UNIT'], - ['id_aset' => 2067, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '032', 'nama' => 'BUZZER'], - ['id_aset' => 2068, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '033', 'nama' => 'SET STUDIO LIGHT SIGNAL'], - ['id_aset' => 2069, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '034', 'nama' => 'DOLBY NOISE REDUCTION'], - ['id_aset' => 2070, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '035', 'nama' => 'MODULATION MONITOR SPEAKER KABARET'], - ['id_aset' => 2071, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '036', 'nama' => 'MICROPHONE/WIRELESS MIC'], - ['id_aset' => 2072, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '037', 'nama' => 'MICROPHONE/BOOM STAND'], - ['id_aset' => 2073, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '038', 'nama' => 'MICROPHONE CONNECTOR BOX'], - ['id_aset' => 2074, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '039', 'nama' => 'LIGHT SIGNAL'], - ['id_aset' => 2075, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '040', 'nama' => 'POWER SUPPLY MICROPHONE'], - ['id_aset' => 2076, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '041', 'nama' => 'PROFESSIONAL SOUND SYSTEM'], - ['id_aset' => 2077, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '042', 'nama' => 'AUDIO MASTER CONTROL UNIT'], - ['id_aset' => 2078, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '043', 'nama' => 'TIME INDETIFICATION UNIT'], - ['id_aset' => 2079, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '044', 'nama' => 'AUDIO ANNOUNCER DESK'], - ['id_aset' => 2080, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '045', 'nama' => 'MASTER CLOCK (PERALATAN STUDIO AUDIO)'], - ['id_aset' => 2081, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '046', 'nama' => 'SLAVE CLOCK (PERALATAN STUDIO AUDIO)'], - ['id_aset' => 2082, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '047', 'nama' => 'AUDIO COMMAND DESK'], - ['id_aset' => 2083, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '048', 'nama' => 'UNINTERRUPTIBLE POWER SUPPLY (UPS)'], - ['id_aset' => 2084, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '049', 'nama' => 'MASTER CONTROL DESK'], - ['id_aset' => 2085, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '050', 'nama' => 'HEAD COMPENSATOR'], - ['id_aset' => 2086, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '051', 'nama' => 'AUTOMATIC VOLTAGE REGULATOR (AVR)'], - ['id_aset' => 2087, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '053', 'nama' => 'HUM/CABLE CONPENSATOR'], - ['id_aset' => 2088, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '054', 'nama' => 'EDITING & DUBBING SYSTEM'], - ['id_aset' => 2089, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '055', 'nama' => 'ANALOG DELAY (PERALATAN STUDIO AUDIO)'], - ['id_aset' => 2090, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '056', 'nama' => 'BATTERY CHARGER (PERALATAN STUDIO AUDIO)'], - ['id_aset' => 2091, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '057', 'nama' => 'BLANK PANEL'], - ['id_aset' => 2092, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '058', 'nama' => 'CONTROL UNIT HF'], - ['id_aset' => 2093, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '059', 'nama' => 'DELAY UNIT'], - ['id_aset' => 2094, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '060', 'nama' => 'POWER AMPLIFIER'], - ['id_aset' => 2095, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '061', 'nama' => 'PAGING MIC'], - ['id_aset' => 2096, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '062', 'nama' => 'COMPACT MONITOR PANEL FOR STEREO'], - ['id_aset' => 2097, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '063', 'nama' => 'PISTOL GRIP'], - ['id_aset' => 2098, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '064', 'nama' => 'MOUNTING BREAKEN'], - ['id_aset' => 2099, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '065', 'nama' => 'CHAIRMAN/AUDIO CONFERENCE'], - ['id_aset' => 2100, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '066', 'nama' => 'TIME SWITCHING'], - ['id_aset' => 2101, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '067', 'nama' => 'TERMINAL BOARD'], - ['id_aset' => 2102, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '068', 'nama' => 'ENCODER/DECODER'], - ['id_aset' => 2103, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '069', 'nama' => 'WIND SHIELD'], - ['id_aset' => 2104, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '070', 'nama' => 'RECEIVER HF/LF'], - ['id_aset' => 2105, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '071', 'nama' => 'RECEIVER VHF/FM'], - ['id_aset' => 2106, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '072', 'nama' => 'AUDIO TAPE REEL RECORDER'], - ['id_aset' => 2107, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '073', 'nama' => 'AUDIO CASSETTE RECORDER'], - ['id_aset' => 2108, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '074', 'nama' => 'COMPACT DISC RECORDER'], - ['id_aset' => 2109, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '075', 'nama' => 'DIGITAL AUDIO STORAGE SYSTEM'], - ['id_aset' => 2110, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '076', 'nama' => 'DIGITAL AUDIO TAPERECORDER'], - ['id_aset' => 2111, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '077', 'nama' => 'BLITZZER'], - ['id_aset' => 2112, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '078', 'nama' => 'AUDIO MAXIMIZER'], - ['id_aset' => 2113, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '079', 'nama' => 'MICROPHONE CABLE'], - ['id_aset' => 2114, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '080', 'nama' => 'SIGNAL INSTRUMENT SWITCER'], - ['id_aset' => 2115, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '081', 'nama' => 'CELLING MOUNT BRACKET'], - ['id_aset' => 2116, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '082', 'nama' => 'INTERFACEBOARD'], - ['id_aset' => 2117, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '083', 'nama' => 'VIDEO PRESENTER'], - ['id_aset' => 2118, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '084', 'nama' => 'MULTISCAN PROYECTOR'], - ['id_aset' => 2119, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '085', 'nama' => 'CABLE'], - ['id_aset' => 2120, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '086', 'nama' => '\"SCANNER COIR'], - ['id_aset' => 2121, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '087', 'nama' => 'KOMP. INTERFACE BOAR'], - ['id_aset' => 2122, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '088', 'nama' => 'VOICE RECORDER'], - ['id_aset' => 2123, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '089', 'nama' => 'AM/FM MEASUREMENT'], - ['id_aset' => 2124, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '090', 'nama' => 'SIGNAL ON AIR'], - ['id_aset' => 2125, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '091', 'nama' => 'DIGITAL LED RUNNING TEXT'], - ['id_aset' => 2126, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '092', 'nama' => 'ANALOG/DIGITAL RECEIVER'], - ['id_aset' => 2127, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '093', 'nama' => 'DIGITAL KEYBOARD TECHNICS'], - ['id_aset' => 2128, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '094', 'nama' => 'EXPLORIST 600'], - ['id_aset' => 2129, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN STUDIO AUDIO LAINNYA'], - ['id_aset' => 2130, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN STUDIO VIDEO DAN FILM'], - ['id_aset' => 2131, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'ASSIGNMENT SWITCHER'], - ['id_aset' => 2132, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'OFF AIR TV MONITOR'], - ['id_aset' => 2133, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'CAMERA ELECTRONIC'], - ['id_aset' => 2134, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'PULSE GENERATOR (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2135, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'PULSE DISTRIBUTION AMPLIFIER'], - ['id_aset' => 2136, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'PULSE SWITCHER'], - ['id_aset' => 2137, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'PULSE DELAY LINE'], - ['id_aset' => 2138, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'CHARACTER GENERATOR (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2139, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'CAPTION GENERATOR'], - ['id_aset' => 2140, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'TELECINE'], - ['id_aset' => 2141, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '011', 'nama' => 'VIDEO DISTRIBUTION AMPLIFIER'], - ['id_aset' => 2142, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '012', 'nama' => 'VIDEO MONITOR'], - ['id_aset' => 2143, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '013', 'nama' => 'VIDEO TAPE RECORDER PORTABLE'], - ['id_aset' => 2144, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '014', 'nama' => 'VIDEO TAPE RECORDER STATIONER'], - ['id_aset' => 2145, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '015', 'nama' => 'VIDEO MIXER'], - ['id_aset' => 2146, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '016', 'nama' => 'VIDEO SWITCHER'], - ['id_aset' => 2147, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '017', 'nama' => 'VIDEO EQUALIZER AMPLIFIER'], - ['id_aset' => 2148, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '018', 'nama' => 'VIDEO COLOR BAR GENERATOR'], - ['id_aset' => 2149, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '019', 'nama' => 'VIDEO CROSS BAR SWITCH'], - ['id_aset' => 2150, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '020', 'nama' => 'VIDEO TEST SIGNAL GENERATOR'], - ['id_aset' => 2151, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '021', 'nama' => 'VIDEO CORRECTOR'], - ['id_aset' => 2152, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '022', 'nama' => 'VIDEO CAPTION ADDER'], - ['id_aset' => 2153, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '023', 'nama' => 'VIDEO HUM COMPENSATOR'], - ['id_aset' => 2154, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '024', 'nama' => 'VIDEO PROCESSOR'], - ['id_aset' => 2155, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '025', 'nama' => 'VIDEO STATION ID GENERATOR'], - ['id_aset' => 2156, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '026', 'nama' => 'VIDEO PATCH PANEL'], - ['id_aset' => 2157, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '027', 'nama' => 'VIDEO DELAY UNIT'], - ['id_aset' => 2158, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '028', 'nama' => 'VIDEO PROCESSING AMPLIFIER'], - ['id_aset' => 2159, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '029', 'nama' => 'VIDEO EQUALIZER'], - ['id_aset' => 2160, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '030', 'nama' => 'VIDEO TAPE EVALUATOR'], - ['id_aset' => 2161, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '031', 'nama' => 'VIDEO EFFECT GENERATOR'], - ['id_aset' => 2162, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '032', 'nama' => 'VITS INSERTER GENERATOR'], - ['id_aset' => 2163, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '033', 'nama' => 'CAMERA WALL BOX'], - ['id_aset' => 2164, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '034', 'nama' => 'TELEPROMPTER'], - ['id_aset' => 2165, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '035', 'nama' => 'TIME BASE CORRECTOR'], - ['id_aset' => 2166, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '036', 'nama' => 'GUN SMOKE'], - ['id_aset' => 2167, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '037', 'nama' => 'AUTOMATIC EDITING CONTROL (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2168, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '038', 'nama' => 'POWER SUPPLY (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2169, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '039', 'nama' => 'EDITING ELECTRONIC'], - ['id_aset' => 2170, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '040', 'nama' => 'RECTIFIER UNIT'], - ['id_aset' => 2171, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '041', 'nama' => 'REMOTE CONTROL UNIT'], - ['id_aset' => 2172, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '042', 'nama' => 'RAK PERALATAN'], - ['id_aset' => 2173, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '043', 'nama' => 'STABILIZING AMPLIFIER'], - ['id_aset' => 2174, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '044', 'nama' => 'DIGITAL VIDEO EFFECT'], - ['id_aset' => 2175, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '045', 'nama' => 'TRIPOD CAMERA'], - ['id_aset' => 2176, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '046', 'nama' => 'DIMMER'], - ['id_aset' => 2177, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '047', 'nama' => 'CHILLER'], - ['id_aset' => 2178, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '048', 'nama' => 'SLAVE CLOCK (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2179, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '049', 'nama' => 'MASTER CLOCK (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2180, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '050', 'nama' => 'TELEDYNE'], - ['id_aset' => 2181, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '051', 'nama' => 'FLYING SPOT SCANNER'], - ['id_aset' => 2182, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '052', 'nama' => 'SYNCHRONIZING PULSE GENERATOR'], - ['id_aset' => 2183, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '053', 'nama' => 'DC CONVERTER'], - ['id_aset' => 2184, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '054', 'nama' => 'BLACK BURST GENERATOR'], - ['id_aset' => 2185, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '055', 'nama' => 'LIGHTING STAND TRIPOD'], - ['id_aset' => 2186, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '056', 'nama' => 'FILM PROJECTOR'], - ['id_aset' => 2187, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '057', 'nama' => 'SLIDE PROJECTOR'], - ['id_aset' => 2188, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '058', 'nama' => 'COMMAND DESK'], - ['id_aset' => 2189, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '059', 'nama' => 'ANNOUNCER DESK'], - ['id_aset' => 2190, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '060', 'nama' => 'CAMERA FILM'], - ['id_aset' => 2191, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '061', 'nama' => 'LENSA KAMERA'], - ['id_aset' => 2192, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '062', 'nama' => 'FILM MAGAZINE'], - ['id_aset' => 2193, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '063', 'nama' => 'CLAPER'], - ['id_aset' => 2194, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '064', 'nama' => 'CHANGING BAG'], - ['id_aset' => 2195, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '065', 'nama' => 'CONDITIONER'], - ['id_aset' => 2196, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '066', 'nama' => 'COLOUR FILM ANALYZER'], - ['id_aset' => 2197, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '068', 'nama' => 'FILM SOUND RECORDER'], - ['id_aset' => 2198, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '069', 'nama' => 'TELE RECORDER'], - ['id_aset' => 2199, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '070', 'nama' => 'CAMERA VIEW FINDER'], - ['id_aset' => 2200, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '071', 'nama' => 'SERVO ZOOM LENS'], - ['id_aset' => 2201, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '072', 'nama' => 'CAMERA ADAPTOR'], - ['id_aset' => 2202, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '073', 'nama' => 'PHOTO PROCESSING SET'], - ['id_aset' => 2203, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '074', 'nama' => 'MICRO FILM'], - ['id_aset' => 2204, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '075', 'nama' => 'MIXER PVC'], - ['id_aset' => 2205, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '076', 'nama' => 'UNIT REPLENIESER TANK'], - ['id_aset' => 2206, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '077', 'nama' => 'HORIZONTAL MOTORIZED FILM REWINDER'], - ['id_aset' => 2207, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '078', 'nama' => 'VERTICAL MOTORIZED FILM REWINDER'], - ['id_aset' => 2208, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '079', 'nama' => 'MANUAL FILM REWINDER'], - ['id_aset' => 2209, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '080', 'nama' => 'MESIN PROSESING FILM NEGATIF'], - ['id_aset' => 2210, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '081', 'nama' => 'MESIN PROSESING FILM POSITIF'], - ['id_aset' => 2211, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '082', 'nama' => 'MESIN PROSESING FILM WARNA NEGATIF (ECN)'], - ['id_aset' => 2212, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '083', 'nama' => 'MESIN PROSESING FILM WARNA POSITIF (ECP)'], - ['id_aset' => 2213, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '084', 'nama' => 'MESIN FILM COLOR ANALYZER'], - ['id_aset' => 2214, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '085', 'nama' => 'ANALITICAL BALANCE (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2215, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '086', 'nama' => 'ALAT PEMANAS PROSESING ( WATER HEATER )'], - ['id_aset' => 2216, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '087', 'nama' => 'STAPLER FILM'], - ['id_aset' => 2217, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '088', 'nama' => 'MAGNETIC STIP'], - ['id_aset' => 2218, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '089', 'nama' => 'SPLITZER TAPE'], - ['id_aset' => 2219, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '090', 'nama' => 'MEJA EDITING FILM'], - ['id_aset' => 2220, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '091', 'nama' => 'DIGITAL TBC'], - ['id_aset' => 2221, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '092', 'nama' => 'TITANIUM TANK SINGLE SHAFT'], - ['id_aset' => 2222, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '093', 'nama' => 'TEMPERATUR CONTROL C/W'], - ['id_aset' => 2223, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '094', 'nama' => 'GEAR BOX SUN ASSY'], - ['id_aset' => 2224, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '095', 'nama' => 'TACHO GENERATOR FOR DRIVE MOTOR RACHING'], - ['id_aset' => 2225, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '096', 'nama' => 'CIRCULATION SYSTEM COMPLET'], - ['id_aset' => 2226, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '097', 'nama' => 'CHILLER WATER COMPLET'], - ['id_aset' => 2227, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '098', 'nama' => 'VIDEO AUDIO JACK PANEL'], - ['id_aset' => 2228, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '099', 'nama' => 'AUTOMATIC EMERGENCY LIGHT'], - ['id_aset' => 2229, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '100', 'nama' => 'FILM CHAIN MULTIPLIER'], - ['id_aset' => 2230, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '101', 'nama' => 'PHOTO TUSTEL'], - ['id_aset' => 2231, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '102', 'nama' => 'PHOTO TUSTEL POLAROID'], - ['id_aset' => 2232, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '103', 'nama' => 'BETACAM RECORDER/PLAYER'], - ['id_aset' => 2233, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '104', 'nama' => 'SLIDE RAIL'], - ['id_aset' => 2234, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '105', 'nama' => 'WEAPON & METAL DETECTOR ( CHECK GATE )'], - ['id_aset' => 2235, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '107', 'nama' => 'LAYAR FILM/PROJECTOR'], - ['id_aset' => 2236, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '108', 'nama' => 'CAMERA TUNE SIMULATOR'], - ['id_aset' => 2237, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '109', 'nama' => 'DRY SPLITZER FILM'], - ['id_aset' => 2238, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '110', 'nama' => 'VIDEO TONE CLEANER'], - ['id_aset' => 2239, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '111', 'nama' => 'MINI VIEWER'], - ['id_aset' => 2240, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '112', 'nama' => 'PUSH BUTTON CONTROL PANEL'], - ['id_aset' => 2241, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '113', 'nama' => 'RAK TERMINAL VENCING'], - ['id_aset' => 2242, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '114', 'nama' => 'STANDARD TRUE SIGNAL/MASTER RACK'], - ['id_aset' => 2243, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '115', 'nama' => 'MOTOR DRIVER'], - ['id_aset' => 2244, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '116', 'nama' => 'ANALOG DELAY (PERALATAN STUDIO VIDEO DAN FILM)'], - ['id_aset' => 2245, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '117', 'nama' => 'STANDARD POINT ANIMATION'], - ['id_aset' => 2246, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '118', 'nama' => 'HEAD SET'], - ['id_aset' => 2247, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '119', 'nama' => 'CHARACTER EFFECT INTERFACE'], - ['id_aset' => 2248, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '120', 'nama' => 'LIGHTING HEAD BODY'], - ['id_aset' => 2249, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '121', 'nama' => 'LIGHTING MECHANIC'], - ['id_aset' => 2250, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '122', 'nama' => 'ALOS 321 FICHE READER'], - ['id_aset' => 2251, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '123', 'nama' => 'ALOS 321 ALOS READER'], - ['id_aset' => 2252, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '124', 'nama' => 'INSERTER JACKET FILMNES MODEL FRF-160 & 3500'], - ['id_aset' => 2253, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '125', 'nama' => '\"DIASO PRINTER'], - ['id_aset' => 2254, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '126', 'nama' => 'DIASO PROCESSOR 404 DAN 404 D'], - ['id_aset' => 2255, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '127', 'nama' => 'CAMERA UNDER WATER'], - ['id_aset' => 2256, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '128', 'nama' => 'CAMERA DIGITAL'], - ['id_aset' => 2257, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '129', 'nama' => 'TAS KAMERA'], - ['id_aset' => 2258, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '130', 'nama' => 'LAMPU BLITZ KAMERA'], - ['id_aset' => 2259, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '131', 'nama' => 'LENSA FILTER'], - ['id_aset' => 2260, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '132', 'nama' => 'VIDEO CONFERENCE'], - ['id_aset' => 2261, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '133', 'nama' => 'TURBO IDDR (INTELLIGENT DIGITAL DISK RECORDER)'], - ['id_aset' => 2262, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '134', 'nama' => 'VIDEO ROUTER'], - ['id_aset' => 2263, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '135', 'nama' => 'LCD MONITOR'], - ['id_aset' => 2264, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '136', 'nama' => 'SDI RASTERISER'], - ['id_aset' => 2265, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '137', 'nama' => 'AUDIO MONITORING UNIT'], - ['id_aset' => 2266, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '138', 'nama' => 'FRAME SYNCHRONIZER'], - ['id_aset' => 2267, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '139', 'nama' => 'AUDIO TRANSCODER'], - ['id_aset' => 2268, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '140', 'nama' => 'AUDIO CONVERTER'], - ['id_aset' => 2269, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '141', 'nama' => 'AUTOMATION MAIN'], - ['id_aset' => 2270, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '142', 'nama' => 'RECORDING WORKSTATION'], - ['id_aset' => 2271, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '143', 'nama' => 'EDITOR WORKSTATION'], - ['id_aset' => 2272, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '144', 'nama' => 'ON AIR RECORDING'], - ['id_aset' => 2273, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '145', 'nama' => 'CONNECTORS'], - ['id_aset' => 2274, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '146', 'nama' => 'PATCH CORD'], - ['id_aset' => 2275, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '147', 'nama' => 'AUDIO EMBEDDER'], - ['id_aset' => 2276, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '148', 'nama' => 'VTR RECORDER'], - ['id_aset' => 2277, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '149', 'nama' => 'ANALOG VIDEO ROUTER'], - ['id_aset' => 2278, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '150', 'nama' => 'BROADBAND AMLIFIER'], - ['id_aset' => 2279, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '151', 'nama' => 'SPLITTER'], - ['id_aset' => 2280, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '152', 'nama' => 'RF CABLE'], - ['id_aset' => 2281, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '153', 'nama' => 'F CONNECTOR'], - ['id_aset' => 2282, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '154', 'nama' => 'TV CONNECTOR'], - ['id_aset' => 2283, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '155', 'nama' => 'THERMO BIND MACHINE'], - ['id_aset' => 2284, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '156', 'nama' => 'KAMERA STILE'], - ['id_aset' => 2285, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '157', 'nama' => 'MINI DV'], - ['id_aset' => 2286, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '158', 'nama' => 'MONOPOD'], - ['id_aset' => 2287, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '159', 'nama' => 'CLIPP ON'], - ['id_aset' => 2288, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '160', 'nama' => 'COMPUTER EDITING'], - ['id_aset' => 2289, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '161', 'nama' => 'CUT EDITING'], - ['id_aset' => 2290, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '162', 'nama' => 'DUPLICATOR VCD'], - ['id_aset' => 2291, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '163', 'nama' => 'DUPLICATOR DVD'], - ['id_aset' => 2292, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '164', 'nama' => 'VIDEO SPLITTER'], - ['id_aset' => 2293, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '165', 'nama' => 'CAMERA CONFERENCE'], - ['id_aset' => 2294, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN STUDIO VIDEO DAN FILM LAINNYA'], - ['id_aset' => 2295, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN STUDIO GAMBAR'], - ['id_aset' => 2296, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'MEJA GAMBAR'], - ['id_aset' => 2297, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'LICHDRUCK APPARAAT'], - ['id_aset' => 2298, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'SABLON SET'], - ['id_aset' => 2299, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT TULIS GAMBAR'], - ['id_aset' => 2300, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'BUSUR GAMBAR'], - ['id_aset' => 2301, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'JANGKA GAMBAR'], - ['id_aset' => 2302, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN STUDIO GAMBAR LAINNYA'], - ['id_aset' => 2303, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN CETAK'], - ['id_aset' => 2304, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'MEJA MEMBUAT KLISE'], - ['id_aset' => 2305, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'MEJA CETAK TANGAN'], - ['id_aset' => 2306, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'MESIN CETAK LISTRIK SHEET'], - ['id_aset' => 2307, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN CETAK LISTRIK ROLL'], - ['id_aset' => 2308, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'MESIN CETAK ELEKTRONIK'], - ['id_aset' => 2309, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN CETAK'], - ['id_aset' => 2310, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN CETAK OFFSET SHEET'], - ['id_aset' => 2311, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN CETAK OFFSET ROLL'], - ['id_aset' => 2312, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN CETAK OFFSET MINI'], - ['id_aset' => 2313, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN PEMOTONG BIASA'], - ['id_aset' => 2314, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'MESIN PEMOTONG BIASA TIGA PISAU'], - ['id_aset' => 2315, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'MESIN JILID BUNDAR'], - ['id_aset' => 2316, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'MESIN JILID BESAR'], - ['id_aset' => 2317, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'MESIN JILID'], - ['id_aset' => 2318, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '015', 'nama' => 'MESIN LIPAT'], - ['id_aset' => 2319, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '016', 'nama' => 'MESIN PEMBUAT HURUF'], - ['id_aset' => 2320, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '017', 'nama' => 'MESIN PENYUSUN HURUF BIASA'], - ['id_aset' => 2321, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '018', 'nama' => 'MESIN PENYUSUN HURUF FOTO (FOTO TYPE SETTING)'], - ['id_aset' => 2322, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '019', 'nama' => 'MESIN PELUBANG (PERALATAN CETAK)'], - ['id_aset' => 2323, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '020', 'nama' => 'MESIN PROOF'], - ['id_aset' => 2324, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '021', 'nama' => 'CAMERA VERTICAL'], - ['id_aset' => 2325, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '022', 'nama' => 'MESIN PRES'], - ['id_aset' => 2326, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '023', 'nama' => 'MESIN JAHIT KAWAT'], - ['id_aset' => 2327, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '024', 'nama' => 'MESIN JAHIT BENANG'], - ['id_aset' => 2328, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '025', 'nama' => 'MESIN PILUNG'], - ['id_aset' => 2329, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '026', 'nama' => 'MESIN GARIS'], - ['id_aset' => 2330, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '027', 'nama' => 'MESIN PEREKAM STENSIL FOLIO'], - ['id_aset' => 2331, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '028', 'nama' => 'MESIN PEREKAM STENSIL DOUBLE FOLIO'], - ['id_aset' => 2332, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '029', 'nama' => 'MESIN PLATE MAKER FOLIO'], - ['id_aset' => 2333, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '030', 'nama' => 'MESIN PLATE MAKER DOUBLE FOLIO'], - ['id_aset' => 2334, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '031', 'nama' => 'MESIN POTONG'], - ['id_aset' => 2335, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '032', 'nama' => 'MESIN HANDPRESS'], - ['id_aset' => 2336, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '033', 'nama' => 'MESIN STAHD'], - ['id_aset' => 2337, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '034', 'nama' => 'MESIN KERTAS'], - ['id_aset' => 2338, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '035', 'nama' => 'KACIP POTONG SUDUT'], - ['id_aset' => 2339, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '036', 'nama' => 'ALAT PEMBUAT VORMSTAND'], - ['id_aset' => 2340, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '037', 'nama' => 'MESIN PASET'], - ['id_aset' => 2341, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '038', 'nama' => 'MESIN PRASISE KLISE'], - ['id_aset' => 2342, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '039', 'nama' => 'MESIN PEMBOLONG FILM SETENGAH PLANO'], - ['id_aset' => 2343, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '040', 'nama' => 'MESIN CETAK MAS'], - ['id_aset' => 2344, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '041', 'nama' => 'MESIN CETAK STEREO TYPER'], - ['id_aset' => 2345, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '042', 'nama' => 'MESIN CETAK BRAILLE'], - ['id_aset' => 2346, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '043', 'nama' => 'MESIN FONDS'], - ['id_aset' => 2347, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '044', 'nama' => 'MESIN FOLDING'], - ['id_aset' => 2348, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '045', 'nama' => 'MESIN BARCODE'], - ['id_aset' => 2349, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '046', 'nama' => 'MESIN PROFESIONAL VELOBINDER'], - ['id_aset' => 2350, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '047', 'nama' => 'MESIN CACAH'], - ['id_aset' => 2351, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '048', 'nama' => 'IMAGE SETTER'], - ['id_aset' => 2352, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '049', 'nama' => 'MESIN SPARASI'], - ['id_aset' => 2353, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '050', 'nama' => 'CAMERA HORIZONTAL'], - ['id_aset' => 2354, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '051', 'nama' => 'ALAT COVER CREASING'], - ['id_aset' => 2355, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '052', 'nama' => 'MESIN PEMBUAT ID CARD'], - ['id_aset' => 2356, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN CETAK LAINNYA'], - ['id_aset' => 2357, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH'], - ['id_aset' => 2358, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'AUTOGRAPH UNIT'], - ['id_aset' => 2359, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'AVIOGRAPH PLUS PLOTING TABLE'], - ['id_aset' => 2360, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'PLANITOP'], - ['id_aset' => 2361, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'POINT TRANTER DEVICE'], - ['id_aset' => 2362, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'TRESTIRIAL CAMERA'], - ['id_aset' => 2363, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'SLOHED TEMLET'], - ['id_aset' => 2364, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'SKETCH MASTER'], - ['id_aset' => 2365, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'RECTIFIER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2366, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'OPTICAL PANTOGRAPH'], - ['id_aset' => 2367, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'CONTACT PRINTER'], - ['id_aset' => 2368, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'PENGERING PHOTO'], - ['id_aset' => 2369, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'VACUM FRAME'], - ['id_aset' => 2370, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'COORDINATOGRAPH'], - ['id_aset' => 2371, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '014', 'nama' => 'PEMOTONG FILM'], - ['id_aset' => 2372, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '015', 'nama' => 'STREOSCOPE TANAH'], - ['id_aset' => 2373, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '016', 'nama' => 'WATERPAS'], - ['id_aset' => 2374, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '017', 'nama' => 'THEODOLITE (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2375, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '018', 'nama' => 'DISTOMAT'], - ['id_aset' => 2376, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '019', 'nama' => 'B.T.M'], - ['id_aset' => 2377, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '020', 'nama' => 'LEVEL'], - ['id_aset' => 2378, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '021', 'nama' => 'JALON'], - ['id_aset' => 2379, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '022', 'nama' => 'RAMBU/BAK UKUR'], - ['id_aset' => 2380, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '023', 'nama' => 'KOMPAS GEOLOGI'], - ['id_aset' => 2381, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '024', 'nama' => 'CLINOMETER'], - ['id_aset' => 2382, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '025', 'nama' => 'ALTIMETER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2383, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '026', 'nama' => 'HOLIOMETER'], - ['id_aset' => 2384, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '027', 'nama' => 'TELESCOPE (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2385, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '028', 'nama' => 'PASSER DOSS'], - ['id_aset' => 2386, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '029', 'nama' => 'CURVERMETER'], - ['id_aset' => 2387, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '030', 'nama' => 'ROLLMETER'], - ['id_aset' => 2388, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '031', 'nama' => 'MEET BAND'], - ['id_aset' => 2389, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '032', 'nama' => 'BUSUR DERAJAT'], - ['id_aset' => 2390, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '033', 'nama' => 'CHRONOMETER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2391, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '034', 'nama' => 'GAWANG LOKASI'], - ['id_aset' => 2392, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '035', 'nama' => 'KOMPAS (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)'], - ['id_aset' => 2393, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '036', 'nama' => 'SEXTANT'], - ['id_aset' => 2394, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '037', 'nama' => 'TEROPONG/KEKER'], - ['id_aset' => 2395, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '038', 'nama' => 'GPS RECEIVER'], - ['id_aset' => 2396, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '039', 'nama' => 'GROUND PARETRATING RADAR'], - ['id_aset' => 2397, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '040', 'nama' => 'TEKEN SCHAAL/JANGKA TUSUK'], - ['id_aset' => 2398, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '041', 'nama' => 'PANTOGRAPH'], - ['id_aset' => 2399, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '042', 'nama' => 'PLANI METER'], - ['id_aset' => 2400, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '043', 'nama' => 'PRISMA ROELAK'], - ['id_aset' => 2401, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '044', 'nama' => 'PRISMA METER'], - ['id_aset' => 2402, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '045', 'nama' => 'PRISMA UKUR'], - ['id_aset' => 2403, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '046', 'nama' => 'RUITER PLAAT'], - ['id_aset' => 2404, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '047', 'nama' => 'KAMERA UDARA'], - ['id_aset' => 2405, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '048', 'nama' => 'STEREOPLOTTER'], - ['id_aset' => 2406, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '049', 'nama' => 'PLANICOMP'], - ['id_aset' => 2407, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '050', 'nama' => 'MEJA SINAR'], - ['id_aset' => 2408, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '051', 'nama' => 'GRAVER'], - ['id_aset' => 2409, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '052', 'nama' => 'PEN HOLDER'], - ['id_aset' => 2410, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH LAINNYA'], - ['id_aset' => 2411, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT STUDIO LAINNYA'], - ['id_aset' => 2412, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT STUDIO LAINNYA'], - ['id_aset' => 2413, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI'], - ['id_aset' => 2414, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI TELEPHONE'], - ['id_aset' => 2415, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TELEPHONE (PABX)'], - ['id_aset' => 2416, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INTERMEDIATE TELEPHONE/KEY TELEPHONE'], - ['id_aset' => 2417, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PESAWAT TELEPHONE'], - ['id_aset' => 2418, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TELEPHONE MOBILE'], - ['id_aset' => 2419, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'PAGER'], - ['id_aset' => 2420, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'HANDY TALKY (HT)'], - ['id_aset' => 2421, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TELEX'], - ['id_aset' => 2422, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'SELECTIVE COLLING'], - ['id_aset' => 2423, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'PERALATAN SPECH PLAS'], - ['id_aset' => 2424, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'FACSIMILE'], - ['id_aset' => 2425, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'BIDDING PIT'], - ['id_aset' => 2426, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'LOCAL BATTERY TELEPHONE'], - ['id_aset' => 2427, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'SENHUB FIXED'], - ['id_aset' => 2428, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'SENHUB MOBILE'], - ['id_aset' => 2429, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'TELEPON LAPANGAN'], - ['id_aset' => 2430, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'SENTRAL TELEPON LAPANGAN'], - ['id_aset' => 2431, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'TELEPON SATELIT'], - ['id_aset' => 2432, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '018', 'nama' => 'KOM DATA'], - ['id_aset' => 2433, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '019', 'nama' => 'PDA'], - ['id_aset' => 2434, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '020', 'nama' => 'TELEPON DIGITAL'], - ['id_aset' => 2435, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '021', 'nama' => 'TELEPON ANALOG'], - ['id_aset' => 2436, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI TELEPHONE LAINNYA'], - ['id_aset' => 2437, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI RADIO SSB'], - ['id_aset' => 2438, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANCEIVER SSB PORTABLE'], - ['id_aset' => 2439, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANCEIVER SSB TRANSPORTABLE'], - ['id_aset' => 2440, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANCEIVER SSB STATIONERY'], - ['id_aset' => 2441, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI RADIO SSB LAINNYA'], - ['id_aset' => 2442, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI RADIO HF/FM'], - ['id_aset' => 2443, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANCEIVER HF PORTABLE'], - ['id_aset' => 2444, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANCEIVER HF TRANSPORTABLE'], - ['id_aset' => 2445, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANCEIVER HF STATIONERY'], - ['id_aset' => 2446, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'UNIT TRANCEIVER FM'], - ['id_aset' => 2447, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI RADIO HF/FM LAINNYA'], - ['id_aset' => 2448, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI RADIO VHF'], - ['id_aset' => 2449, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANCEIVER VHF PORTABLE'], - ['id_aset' => 2450, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANCEIVER VHF TRANSPORTABLE'], - ['id_aset' => 2451, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANCEIVER VHF STATIONARY'], - ['id_aset' => 2452, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI RADIO VHF LAINNYA'], - ['id_aset' => 2453, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI RADIO UHF'], - ['id_aset' => 2454, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANCEIVER UHF PORTABLE'], - ['id_aset' => 2455, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANCEIVER UHF TRANSPORTABLE'], - ['id_aset' => 2456, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANCEIVER UHF STATIONARY'], - ['id_aset' => 2457, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI RADIO UHF LAINNYA'], - ['id_aset' => 2458, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI SOSIAL'], - ['id_aset' => 2459, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'PUBLIK ADDRESS (LAPANGAN)'], - ['id_aset' => 2460, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'WIRELESS AMPLIFIER'], - ['id_aset' => 2461, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'SLIDE PROJECTOR (LAPANGAN)'], - ['id_aset' => 2462, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'MULTIPLEX SYSTEM'], - ['id_aset' => 2463, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'FREQUENCY SYSTHESIZER UNIT'], - ['id_aset' => 2464, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'PATCHING BOARD'], - ['id_aset' => 2465, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI SOSIAL LAINNYA'], - ['id_aset' => 2466, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT-ALAT SANDI'], - ['id_aset' => 2467, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'MORSE KEYER'], - ['id_aset' => 2468, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'AUTOMATIC DEORSE KEYER'], - ['id_aset' => 2469, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT SEMBOYAN'], - ['id_aset' => 2470, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '004', 'nama' => 'MESIN SANDI DAN KELENGKAPANNYA'], - ['id_aset' => 2471, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '005', 'nama' => 'FINGER PRINTER TIME AND ATTANDANCE ACCES CONTROL SYSTEM'], - ['id_aset' => 2472, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '006', 'nama' => 'MESIN SANDI TEKS'], - ['id_aset' => 2473, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '007', 'nama' => 'MESIN SANDI SUARA'], - ['id_aset' => 2474, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '008', 'nama' => 'MESIN SANDI DATA'], - ['id_aset' => 2475, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '009', 'nama' => 'MESIN SANDI BERBASIS SOFTWARE'], - ['id_aset' => 2476, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '010', 'nama' => 'MESIN SANDI BERBASIS HARDWARE'], - ['id_aset' => 2477, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '011', 'nama' => 'MESIN SANDI BERBASIS SOFTWARE DAN HARDWARE'], - ['id_aset' => 2478, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '012', 'nama' => 'ALAT PEMBANGKIT KUNCI'], - ['id_aset' => 2479, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '013', 'nama' => 'ALAT PENDISTRIBUSI KUNCI'], - ['id_aset' => 2480, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '014', 'nama' => 'CRYPTHOPONE'], - ['id_aset' => 2481, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '015', 'nama' => 'CRYTOFAX'], - ['id_aset' => 2482, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '016', 'nama' => 'SERVER ENCRIPTION'], - ['id_aset' => 2483, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '017', 'nama' => 'HANDPHONE ENCRIPTION'], - ['id_aset' => 2484, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '018', 'nama' => 'GSM JAMMER'], - ['id_aset' => 2485, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '019', 'nama' => 'CDMA JAMMER'], - ['id_aset' => 2486, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT-ALAT SANDI LAINNYA'], - ['id_aset' => 2487, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI KHUSUS'], - ['id_aset' => 2488, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT DF RADIO SSB'], - ['id_aset' => 2489, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'SUPER BROOM'], - ['id_aset' => 2490, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT DF RADIO HF/FM'], - ['id_aset' => 2491, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '004', 'nama' => 'SCANLOCK PLUS CEBERUS'], - ['id_aset' => 2492, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '005', 'nama' => 'ALAT DF RADIO VHF'], - ['id_aset' => 2493, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '006', 'nama' => 'STELATH DIGITAL REPEATER'], - ['id_aset' => 2494, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '007', 'nama' => 'ALAT DF RADIO UHF'], - ['id_aset' => 2495, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '008', 'nama' => 'TRANKING'], - ['id_aset' => 2496, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '009', 'nama' => 'TELEPON TAPING'], - ['id_aset' => 2497, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '010', 'nama' => 'STELATH'], - ['id_aset' => 2498, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '011', 'nama' => 'VISATELIT'], - ['id_aset' => 2499, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '012', 'nama' => 'MAINFRAME (ALAT KOMUNIKASI KHUSUS)'], - ['id_aset' => 2500, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '013', 'nama' => 'SAFE LIGHT FILTER'], - ['id_aset' => 2501, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '014', 'nama' => 'ANTI SADAP TELEPON (SCANBLER)'], - ['id_aset' => 2502, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '015', 'nama' => 'BILLINF SYSTEM'], - ['id_aset' => 2503, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '016', 'nama' => 'ROOM MONITORING MC06'], - ['id_aset' => 2504, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '017', 'nama' => 'WATCH TRANSMITER'], - ['id_aset' => 2505, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '018', 'nama' => 'ASHTRAY'], - ['id_aset' => 2506, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '019', 'nama' => 'NON DIRECTION BEACON (NDB)'], - ['id_aset' => 2507, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '020', 'nama' => 'RADIO LINK'], - ['id_aset' => 2508, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '021', 'nama' => 'LOCALIZER'], - ['id_aset' => 2509, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '022', 'nama' => 'GLADE PATH'], - ['id_aset' => 2510, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '023', 'nama' => 'MIDLE MARKER'], - ['id_aset' => 2511, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '024', 'nama' => 'RADIO COMMUNICATION MATCHING SWITCH (RCMS)'], - ['id_aset' => 2512, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '025', 'nama' => 'DIRECTION VERY OMNI RANGE (DVOR)'], - ['id_aset' => 2513, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '026', 'nama' => 'INTEGRATED GROUND CAOMMUNICATION SYSTEM (SGRS)'], - ['id_aset' => 2514, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '027', 'nama' => 'SWITCHING GROUND RECEIVER SYSTEM (SGRS)'], - ['id_aset' => 2515, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '028', 'nama' => 'ALAT RX RADIO SSB'], - ['id_aset' => 2516, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '029', 'nama' => 'ALAT RX RADIO HF/FM'], - ['id_aset' => 2517, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '030', 'nama' => 'ALAT RX RADIO VHF'], - ['id_aset' => 2518, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '031', 'nama' => 'ALAT RX RADIO UHF'], - ['id_aset' => 2519, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '032', 'nama' => 'ALAT JAMMING RADIO SSB'], - ['id_aset' => 2520, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '033', 'nama' => 'ALAT JAMMING RADIO HF/FM'], - ['id_aset' => 2521, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '034', 'nama' => 'ALAT JAMMING RADIO VHF'], - ['id_aset' => 2522, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '035', 'nama' => 'ALAT JAMMING RADIO UHF'], - ['id_aset' => 2523, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '036', 'nama' => 'ALAT SPEKTRUM FREK MONITOR SSB'], - ['id_aset' => 2524, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '037', 'nama' => 'ALAT SPEKTRUM FREK MONITOR HF/FM'], - ['id_aset' => 2525, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '038', 'nama' => 'ALAT SPEKTRUM FREK MONITOR VHF'], - ['id_aset' => 2526, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '039', 'nama' => 'ALAT SPEKTRUM FREK MONITOR UHF'], - ['id_aset' => 2527, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '040', 'nama' => 'ALAT TRAFFIC ANALYSIS'], - ['id_aset' => 2528, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '041', 'nama' => 'ALAT COUNTERSURVEILLANCE'], - ['id_aset' => 2529, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '042', 'nama' => 'ALAT SURVEILLANCE'], - ['id_aset' => 2530, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '043', 'nama' => 'ALAT JAMMING FREKUENSI'], - ['id_aset' => 2531, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '044', 'nama' => 'ALAT PENGENDALI PANCARAN GELOMBANG ELEKTROMAGNETIK (TEMPEST)'], - ['id_aset' => 2532, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI KHUSUS LAINNYA'], - ['id_aset' => 2533, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI DIGITAL DAN KONVENSIONAL'], - ['id_aset' => 2534, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'SYSTEM CONTROL NODE MULTI SITE SYSTEM'], - ['id_aset' => 2535, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'SITE BASE STATAION MULTI SITE SYSTEM'], - ['id_aset' => 2536, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'CONTROLL CENTER'], - ['id_aset' => 2537, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => 'E2EENCRYPTION MANAGEMENT TOOLS'], - ['id_aset' => 2538, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '005', 'nama' => 'NETWORK MONITORING SYSTEM'], - ['id_aset' => 2539, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '006', 'nama' => 'SWITCHING MATRIX AND SERVER'], - ['id_aset' => 2540, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '007', 'nama' => 'DIGITAL RECORDING SYSTEM'], - ['id_aset' => 2541, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '008', 'nama' => 'OFFICIAL PHERIPHERAL'], - ['id_aset' => 2542, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '009', 'nama' => 'MOBILE UNIT'], - ['id_aset' => 2543, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '010', 'nama' => 'MOBILE GATEWAY'], - ['id_aset' => 2544, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '011', 'nama' => 'CONVERT BODY'], - ['id_aset' => 2545, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '012', 'nama' => 'REPEATER RX/TX'], - ['id_aset' => 2546, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '013', 'nama' => 'REPEATER MULTIBAND COMBINER 4 IN 4OUT'], - ['id_aset' => 2547, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '014', 'nama' => 'REPEATER MULTIBAND COMBINER 4 IN 2OUT'], - ['id_aset' => 2548, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '015', 'nama' => 'REPEATER MULTIBAND COMBINER 2 IN 2OUT'], - ['id_aset' => 2549, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '016', 'nama' => 'REPEATER CDMA 80PO MHZ'], - ['id_aset' => 2550, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '017', 'nama' => 'REPEATER CDS 1800 MHZ'], - ['id_aset' => 2551, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI DIGITAL DAN KONVENSIONAL LAINNYA'], - ['id_aset' => 2552, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI SATELIT'], - ['id_aset' => 2553, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'FULLY SYSTEM HUB'], - ['id_aset' => 2554, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'VSAT SYSTEM FOR REMOTE TERMINAL'], - ['id_aset' => 2555, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'COMMOB (COMMUNICATION MOBILE) VSAT'], - ['id_aset' => 2556, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'WIRELESS BASE STATION + SURVEILLANCE MANPACK KIT'], - ['id_aset' => 2557, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '005', 'nama' => 'FLYAWAY'], - ['id_aset' => 2558, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '006', 'nama' => 'ENCRYPTION'], - ['id_aset' => 2559, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '007', 'nama' => 'REMOTE DATA CONNECTION DISTRIBUTION'], - ['id_aset' => 2560, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '008', 'nama' => 'REMOTE VOIP GATEWAY E1 CARD INTERFACE'], - ['id_aset' => 2561, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '009', 'nama' => 'SPECTRUM ANALYZER FOR HUB STATION'], - ['id_aset' => 2562, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '010', 'nama' => 'SPECTRUM ANALYZER PORTABLE FOR FIELD USE'], - ['id_aset' => 2563, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '011', 'nama' => 'UPS 15 KVA FOR HUB STATION'], - ['id_aset' => 2564, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '012', 'nama' => 'UPS 1 KVA FOR REMOTE STATION'], - ['id_aset' => 2565, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI SATELIT LAINNYA'], - ['id_aset' => 2566, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT KOMUNIKASI LAINNYA'], - ['id_aset' => 2567, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT KOMUNIKASI LAINNYA'], - ['id_aset' => 2568, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR'], - ['id_aset' => 2569, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR MF/MW'], - ['id_aset' => 2570, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR MF/MW PORTABLE'], - ['id_aset' => 2571, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR MF/MW TRANSPORTABLE'], - ['id_aset' => 2572, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR MF/MW STATIONARY'], - ['id_aset' => 2573, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR MF/MW LAINNYA'], - ['id_aset' => 2574, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR HF/SW'], - ['id_aset' => 2575, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR HF/SW PORTABLE'], - ['id_aset' => 2576, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR HF/SW TRANSPORTABLE'], - ['id_aset' => 2577, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR HF/SW STATIONARY'], - ['id_aset' => 2578, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR HF/SW LAINNYA'], - ['id_aset' => 2579, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR VHF/FM'], - ['id_aset' => 2580, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR VHF/FM PORTABLE'], - ['id_aset' => 2581, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR VHF/FM TRANSPORTABLE'], - ['id_aset' => 2582, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR VHF/FM STATIONARY'], - ['id_aset' => 2583, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR VHF/FM LAINNYA'], - ['id_aset' => 2584, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR UHF'], - ['id_aset' => 2585, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR UHF PORTABLE'], - ['id_aset' => 2586, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR UHF TRANSPORTABLE'], - ['id_aset' => 2587, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR UHF STATIONARY'], - ['id_aset' => 2588, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'PORTABLE REPORTER LINK'], - ['id_aset' => 2589, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR UHF LAINNYA'], - ['id_aset' => 2590, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR SHF'], - ['id_aset' => 2591, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR SHF PORTABLE'], - ['id_aset' => 2592, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR SHF TRANSPORTABLE'], - ['id_aset' => 2593, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR SHF STATIONARY'], - ['id_aset' => 2594, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'SATELLITE LINK ( UP/DOWN LINK )'], - ['id_aset' => 2595, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR SHF LAINNYA'], - ['id_aset' => 2596, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA MF/MW'], - ['id_aset' => 2597, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE MF/MW PORTABLE'], - ['id_aset' => 2598, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENE MF/MW TRANSPORTABLE'], - ['id_aset' => 2599, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENE MF/MW STATIONARY'], - ['id_aset' => 2600, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA MF/MW LAINNYA'], - ['id_aset' => 2601, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA HF/SW'], - ['id_aset' => 2602, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE HF/SW PORTABLE'], - ['id_aset' => 2603, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENE HF/SW TRANSPORTABLE'], - ['id_aset' => 2604, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENE HF/SW STATIONARY'], - ['id_aset' => 2605, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA HF/SW LAINNYA'], - ['id_aset' => 2606, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA VHF/FM'], - ['id_aset' => 2607, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE VHF/FM PORTABLE'], - ['id_aset' => 2608, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENE VHF/FM TRANSPORTABLE'], - ['id_aset' => 2609, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENE VHF/FM STATIONARY'], - ['id_aset' => 2610, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA VHF/FM LAINNYA'], - ['id_aset' => 2611, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA UHF'], - ['id_aset' => 2612, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE UHF PORTABLE'], - ['id_aset' => 2613, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENE UHF TRANSPORTABLE'], - ['id_aset' => 2614, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENE UHF STATIONARY'], - ['id_aset' => 2615, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA UHF LAINNYA'], - ['id_aset' => 2616, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA SHF/PARABOLA'], - ['id_aset' => 2617, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE SHF PORTABLE'], - ['id_aset' => 2618, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENE SHF TRANSPORTABLE'], - ['id_aset' => 2619, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENE SHF STATIONARY'], - ['id_aset' => 2620, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'ANTENA ALL BAND'], - ['id_aset' => 2621, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '005', 'nama' => 'ANTENA SSB'], - ['id_aset' => 2622, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA SHF/PARABOLA LAINNYA'], - ['id_aset' => 2623, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TRANSLATOR VHF/VHF'], - ['id_aset' => 2624, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSLATOR VHF/VHF PORTABLE'], - ['id_aset' => 2625, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'TRANSLATOR VHF/VHF TRANSPORTABLE'], - ['id_aset' => 2626, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'TRANSLATOR VHF/VHF STATIONARY'], - ['id_aset' => 2627, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TRANSLATOR VHF/VHF LAINNYA'], - ['id_aset' => 2628, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TRANSLATOR UHF/UHF'], - ['id_aset' => 2629, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSLATOR UHF/UHF PORTABLE'], - ['id_aset' => 2630, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '002', 'nama' => 'TRANSLATOR UHF/UHF TRANSPORTABLE'], - ['id_aset' => 2631, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '003', 'nama' => 'TRANSLATOR UHF/UHF STATIONARY'], - ['id_aset' => 2632, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TRANSLATOR UHF/UHF LAINNYA'], - ['id_aset' => 2633, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TRANSLATOR VHF/UHF'], - ['id_aset' => 2634, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSLATOR VHF/UHF PORTABLE'], - ['id_aset' => 2635, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '002', 'nama' => 'TRANSLATOR VHF/UHF TRANSPORTABLE'], - ['id_aset' => 2636, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '003', 'nama' => 'TRANSLATOR VHF/UHF STATIONARY'], - ['id_aset' => 2637, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TRANSLATOR VHF/UHF LAINNYA'], - ['id_aset' => 2638, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN TRANSLATOR UHF/VHF'], - ['id_aset' => 2639, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSLATOR UHF/VHF PORTABLE'], - ['id_aset' => 2640, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '002', 'nama' => 'TRANSLATOR UHF/VHF TRANSPORTABLE'], - ['id_aset' => 2641, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '003', 'nama' => 'TRANSLATOR UHF/VHF STATIONARY'], - ['id_aset' => 2642, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN TRANSLATOR UHF/VHF LAINNYA'], - ['id_aset' => 2643, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN MICROWAVE F P U'], - ['id_aset' => 2644, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '001', 'nama' => 'MICROWAVE F P U PORTABLE'], - ['id_aset' => 2645, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '002', 'nama' => 'MICROWAVE F P U TRANSPORTABLE'], - ['id_aset' => 2646, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '003', 'nama' => 'MICROWAVE F P U STATIONARY'], - ['id_aset' => 2647, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN MICROWAVE F P U LAINNYA'], - ['id_aset' => 2648, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN MICROWAVE TERESTRIAL'], - ['id_aset' => 2649, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '001', 'nama' => 'MICROWAVE TERESTRIAL PORTABLE'], - ['id_aset' => 2650, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '002', 'nama' => 'MICROWAVE TERESTRIAL TRANSPORTABLE'], - ['id_aset' => 2651, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '003', 'nama' => 'MICROWAVE TERESTRIAL STATIONARY'], - ['id_aset' => 2652, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN MICROWAVE TERESTRIAL LAINNYA'], - ['id_aset' => 2653, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN MICROWAVE TVRO'], - ['id_aset' => 2654, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '001', 'nama' => 'MICROWAVE TVRO PORTABLE'], - ['id_aset' => 2655, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '002', 'nama' => 'MICROWAVE TVRO TRANSPORTABLE'], - ['id_aset' => 2656, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '003', 'nama' => 'MICROWAVE TVRO STATIONARY'], - ['id_aset' => 2657, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN MICROWAVE TVRO LAINNYA'], - ['id_aset' => 2658, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN DUMMY LOAD'], - ['id_aset' => 2659, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '001', 'nama' => 'DUMMY LOAD PENDINGIN UDARA'], - ['id_aset' => 2660, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '002', 'nama' => 'DUMMY LOAD PENDINGIN AIR'], - ['id_aset' => 2661, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '003', 'nama' => 'DUMMY LOAD PENDINGIN MINYAK'], - ['id_aset' => 2662, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '004', 'nama' => 'DUMMY LOAD PENDINGIN GAS'], - ['id_aset' => 2663, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN DUMMY LOAD LAINNYA'], - ['id_aset' => 2664, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '000', 'nama' => 'SWITCHER ANTENA'], - ['id_aset' => 2665, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '001', 'nama' => 'SWITCHER COMBINATION'], - ['id_aset' => 2666, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '002', 'nama' => 'SWITCHER MANUAL'], - ['id_aset' => 2667, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '003', 'nama' => 'SWITCHER AUTOMATIC MOTOR'], - ['id_aset' => 2668, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '999', 'nama' => 'SWITCHER ANTENA LAINNYA'], - ['id_aset' => 2669, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '000', 'nama' => 'SWITCHER/MENARA ANTENA'], - ['id_aset' => 2670, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '001', 'nama' => 'SELF SUPPORTING TOWER'], - ['id_aset' => 2671, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '002', 'nama' => 'GUY TOWER'], - ['id_aset' => 2672, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '003', 'nama' => 'MAST TOWER'], - ['id_aset' => 2673, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '004', 'nama' => 'CONCRETE TOWER'], - ['id_aset' => 2674, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '999', 'nama' => 'SWITCHER/MENARA ANTENA LAINNYA'], - ['id_aset' => 2675, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '000', 'nama' => 'FEEDER'], - ['id_aset' => 2676, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '001', 'nama' => 'OPEN WIRE'], - ['id_aset' => 2677, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '002', 'nama' => 'COAXIAL FEEDER'], - ['id_aset' => 2678, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '003', 'nama' => 'ANTENNA TUNING UNIT'], - ['id_aset' => 2679, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '004', 'nama' => 'DEHYDRATOR'], - ['id_aset' => 2680, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '999', 'nama' => '\"FEEDER LAINNYA (ALAT STUDIO'], - ['id_aset' => 2681, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '000', 'nama' => 'HUMIDITY CONTROL'], - ['id_aset' => 2682, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '001', 'nama' => 'DEHUMIDIFIER (HUMIDITY CONTROL)'], - ['id_aset' => 2683, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '999', 'nama' => 'HUMIDITY CONTROL LAINNYA'], - ['id_aset' => 2684, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '000', 'nama' => 'PROGRAM INPUT EQUIPMENT'], - ['id_aset' => 2685, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '001', 'nama' => 'RECEIVER STL/VHF ( FM)'], - ['id_aset' => 2686, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '002', 'nama' => 'RECEIVER STL/UHF'], - ['id_aset' => 2687, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '003', 'nama' => 'RECEIVER STL/SHF'], - ['id_aset' => 2688, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '004', 'nama' => 'TVRO'], - ['id_aset' => 2689, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '005', 'nama' => 'LINE AMPLIFIER'], - ['id_aset' => 2690, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '006', 'nama' => 'S R O'], - ['id_aset' => 2691, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '007', 'nama' => 'LINE EQUALIZER'], - ['id_aset' => 2692, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '008', 'nama' => 'AUTOMATIC GAIN CONTROL'], - ['id_aset' => 2693, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '009', 'nama' => 'COMPRESSOR AMPLIFIER'], - ['id_aset' => 2694, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '010', 'nama' => 'EXPANDER AMPLIFIER'], - ['id_aset' => 2695, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '011', 'nama' => 'ATTENUATOR'], - ['id_aset' => 2696, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '012', 'nama' => 'AUDIO PROCESSOR AM'], - ['id_aset' => 2697, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '013', 'nama' => 'STEREO GENERATOR FM'], - ['id_aset' => 2698, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '014', 'nama' => 'DISTRIBUTOR AMPLIFIER'], - ['id_aset' => 2699, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '015', 'nama' => 'SWITCHER/PATCH PANEL'], - ['id_aset' => 2700, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '016', 'nama' => 'AUDIO MONITOR'], - ['id_aset' => 2701, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '017', 'nama' => 'AM MONITOR'], - ['id_aset' => 2702, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '018', 'nama' => 'FM MONITOR'], - ['id_aset' => 2703, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '019', 'nama' => 'POWER DISTRIBUTION BOARD'], - ['id_aset' => 2704, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '020', 'nama' => 'LIGHTNING PROTECTOR'], - ['id_aset' => 2705, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '021', 'nama' => 'ALL BAND RECEIVER'], - ['id_aset' => 2706, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '022', 'nama' => 'CHANGE OVER SWITCH'], - ['id_aset' => 2707, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '999', 'nama' => 'PROGRAM INPUT EQUIPMENT LAINNYA'], - ['id_aset' => 2708, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENE PENERIMA VHF'], - ['id_aset' => 2709, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '001', 'nama' => 'ANTENE PENERIMA VHF'], - ['id_aset' => 2710, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN ANTENA PENERIMA LF'], - ['id_aset' => 2711, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '003', 'nama' => 'PERALATAN ANTENA PENERIMA MF'], - ['id_aset' => 2712, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '004', 'nama' => 'PERALATAN ANTENA PENERIMA HF'], - ['id_aset' => 2713, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '005', 'nama' => 'PERALATAN ANTENA PENERIMA MF+HF'], - ['id_aset' => 2714, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '006', 'nama' => 'PERALATAN ANTENA PENERIMA VHF'], - ['id_aset' => 2715, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '007', 'nama' => 'PERALATAN ANTENA PENERIMA UHF'], - ['id_aset' => 2716, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '008', 'nama' => 'PERALATAN ANTENA PENERIMA SSHF'], - ['id_aset' => 2717, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENE PENERIMA VHF LAINNYA'], - ['id_aset' => 2718, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR LF'], - ['id_aset' => 2719, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '001', 'nama' => 'PERALATAN PEMANCAR LF TRANSPORTABLE'], - ['id_aset' => 2720, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN PEMANCAR LF PORTABLE'], - ['id_aset' => 2721, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '003', 'nama' => 'PERALATAN PEMANCAR LF STATIONARY'], - ['id_aset' => 2722, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR LF LAINNYA'], - ['id_aset' => 2723, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '26', 'sub_sub_kelompok' => '000', 'nama' => 'UNIT PEMANCAR MF+HF'], - ['id_aset' => 2724, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '26', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT PEMANCAR MF+HF TRANSPORTABLE'], - ['id_aset' => 2725, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '26', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT PEMANCAR MF+HF PORTABLE'], - ['id_aset' => 2726, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '26', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT PEMANCAR MF+HF STATIONARY'], - ['id_aset' => 2727, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '26', 'sub_sub_kelompok' => '999', 'nama' => 'UNIT PEMANCAR MF+HF LAINNYA'], - ['id_aset' => 2728, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '27', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR MF+HF'], - ['id_aset' => 2729, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '27', 'sub_sub_kelompok' => '001', 'nama' => 'PERALATAN ANTENA PEMANCAR MF+HF TRANSPORTABLE'], - ['id_aset' => 2730, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '27', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN ANTENA PEMANCAR MF+HF PORTABLE'], - ['id_aset' => 2731, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '27', 'sub_sub_kelompok' => '003', 'nama' => 'PERALATAN ANTENA PEMANCAR MF+HF STATIONARY'], - ['id_aset' => 2732, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '27', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR MF+HF LAINNYA'], - ['id_aset' => 2733, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PENERIMA'], - ['id_aset' => 2734, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '001', 'nama' => 'PERALATAN PENERIMA LF'], - ['id_aset' => 2735, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN PENERIMA MF'], - ['id_aset' => 2736, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '003', 'nama' => 'PERALATAN PENERIMA HF'], - ['id_aset' => 2737, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '004', 'nama' => 'PERALATAN PENERIMA MF+HF'], - ['id_aset' => 2738, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '005', 'nama' => 'PERALATAN PENERIMA UHF'], - ['id_aset' => 2739, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '006', 'nama' => 'PERALATAN PENERIMA SHF'], - ['id_aset' => 2740, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '28', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PENERIMA LAINNYA'], - ['id_aset' => 2741, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '29', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA LF'], - ['id_aset' => 2742, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '29', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER LF TRANSPORTABLE'], - ['id_aset' => 2743, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '29', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER LF PORTABLE'], - ['id_aset' => 2744, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '29', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER LF STATIONARY'], - ['id_aset' => 2745, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '29', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA LF LAINNYA'], - ['id_aset' => 2746, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '30', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA MF'], - ['id_aset' => 2747, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '30', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER MF TRANSPORTABLE'], - ['id_aset' => 2748, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '30', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER MF PORTABLE'], - ['id_aset' => 2749, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '30', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER MF STATIONARY'], - ['id_aset' => 2750, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '30', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA MF LAINNYA'], - ['id_aset' => 2751, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA HF'], - ['id_aset' => 2752, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER HF TRANSPORTABLE'], - ['id_aset' => 2753, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER HF PORTABLE'], - ['id_aset' => 2754, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER HF STATIONARY'], - ['id_aset' => 2755, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '004', 'nama' => 'RS SSB TRANCIEVER'], - ['id_aset' => 2756, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '005', 'nama' => 'MINI RANGER'], - ['id_aset' => 2757, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '006', 'nama' => 'ARTEMIS'], - ['id_aset' => 2758, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '007', 'nama' => 'TELEROMETER'], - ['id_aset' => 2759, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '31', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA HF LAINNYA'], - ['id_aset' => 2760, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA MF+HF'], - ['id_aset' => 2761, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER MF+HF TRANSPORTABLE'], - ['id_aset' => 2762, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER MF+HF PORTABLE'], - ['id_aset' => 2763, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER MF+HF STATIONARY'], - ['id_aset' => 2764, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '004', 'nama' => 'DIFFERENTIAL OMEGA (PERALATAN PEMANCAR DAN PENERIMA MF+HF)'], - ['id_aset' => 2765, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '32', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA MF+HF LAINNYA'], - ['id_aset' => 2766, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '33', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA VHF'], - ['id_aset' => 2767, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '33', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER VHF TRANSPORTABLE'], - ['id_aset' => 2768, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '33', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER VHF PORTABLE'], - ['id_aset' => 2769, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '33', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER VHF STATIONARY'], - ['id_aset' => 2770, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '33', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA VHF LAINNYA'], - ['id_aset' => 2771, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA UHF'], - ['id_aset' => 2772, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER UHF TRANSPORTABLE'], - ['id_aset' => 2773, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER UHF PORTABLE'], - ['id_aset' => 2774, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER UHF STATIONARY'], - ['id_aset' => 2775, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '004', 'nama' => 'ULTRA HIGHT FREQUENCE LINK'], - ['id_aset' => 2776, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '005', 'nama' => 'AUTO ALARM TUSTEL (AAT)'], - ['id_aset' => 2777, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '006', 'nama' => 'DISTRIBUTION BOARD AND SIGNAL UNIT'], - ['id_aset' => 2778, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '007', 'nama' => 'REMOTE TERMINAL UNIT'], - ['id_aset' => 2779, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '008', 'nama' => 'MULTIPLEX TERMINAL EQUIPMENT'], - ['id_aset' => 2780, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '009', 'nama' => 'SIGNAL VELVOGER GROUNDING'], - ['id_aset' => 2781, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '010', 'nama' => 'BRIDGE MERGER TESTING'], - ['id_aset' => 2782, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '011', 'nama' => 'MESSAGE REPEATER'], - ['id_aset' => 2783, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '012', 'nama' => 'ELECTRIC CLEANER'], - ['id_aset' => 2784, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '013', 'nama' => 'AOTOMATIC AERLALE'], - ['id_aset' => 2785, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '014', 'nama' => 'POWER AND AWR METER ROUND'], - ['id_aset' => 2786, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '015', 'nama' => 'VOLTAGE REGULATOR'], - ['id_aset' => 2787, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '016', 'nama' => 'GYRO COMPASS'], - ['id_aset' => 2788, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '017', 'nama' => 'FREQUENCE SYNTHESIZER UNIT'], - ['id_aset' => 2789, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '018', 'nama' => 'VODAS (VOICE DEVISE ANTI SINGING)'], - ['id_aset' => 2790, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '019', 'nama' => 'ANEMOMETER (PERALATAN PEMANCAR DAN PENERIMA UHF)'], - ['id_aset' => 2791, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '020', 'nama' => 'CLEAR VIEW SCREEN'], - ['id_aset' => 2792, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '021', 'nama' => 'ARQ UNIT'], - ['id_aset' => 2793, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '022', 'nama' => 'RADIO DIRECTION FINDER'], - ['id_aset' => 2794, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '023', 'nama' => 'POWER TRANSMITTER'], - ['id_aset' => 2795, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '024', 'nama' => 'TELE CONTROLLER'], - ['id_aset' => 2796, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '025', 'nama' => 'LOCAL TERMINAL'], - ['id_aset' => 2797, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '026', 'nama' => 'DIGITAL SELECTIVE CALLING (DSC)'], - ['id_aset' => 2798, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '34', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA UHF LAINNYA'], - ['id_aset' => 2799, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '35', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA SHF'], - ['id_aset' => 2800, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '35', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TRANSCEIVER SHF TRANSPORTABLE'], - ['id_aset' => 2801, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '35', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TRANSCEIVER SHF PORTABLE'], - ['id_aset' => 2802, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '35', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT TRANSCEIVER SHF STATIONARY'], - ['id_aset' => 2803, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '35', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR DAN PENERIMA SHF LAINNYA'], - ['id_aset' => 2804, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '36', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA LF'], - ['id_aset' => 2805, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '36', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER LF TRANSPORTABLE'], - ['id_aset' => 2806, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '36', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER LF PORTABLE'], - ['id_aset' => 2807, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '36', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER LF STATIONARY'], - ['id_aset' => 2808, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '36', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA LF LAINNYA'], - ['id_aset' => 2809, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '37', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA MF'], - ['id_aset' => 2810, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '37', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER MF TRANSPORTABLE'], - ['id_aset' => 2811, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '37', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER MF PORTABLE'], - ['id_aset' => 2812, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '37', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER MF STATIONARY'], - ['id_aset' => 2813, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '37', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA MF LAINNYA'], - ['id_aset' => 2814, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '38', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA HF'], - ['id_aset' => 2815, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '38', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER HF TRANSPORTABLE'], - ['id_aset' => 2816, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '38', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER HF PORTABLE'], - ['id_aset' => 2817, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '38', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER HF STATIONARY'], - ['id_aset' => 2818, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '38', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA HF LAINNYA'], - ['id_aset' => 2819, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '39', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA MF+HF'], - ['id_aset' => 2820, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '39', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER MF+ HF TRANSPORTABLE'], - ['id_aset' => 2821, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '39', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER MF+HF PORTABLE'], - ['id_aset' => 2822, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '39', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER MF+HF STATIONARY'], - ['id_aset' => 2823, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '39', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA MF+HF LAINNYA'], - ['id_aset' => 2824, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '40', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA VHF'], - ['id_aset' => 2825, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '40', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER VHF TRANSPORTABLE'], - ['id_aset' => 2826, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '40', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER VHF PORTABLE'], - ['id_aset' => 2827, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '40', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER VHF STATIONARY'], - ['id_aset' => 2828, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '40', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA VHF LAINNYA'], - ['id_aset' => 2829, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '41', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA UHF'], - ['id_aset' => 2830, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '41', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER UHF TRANSPORTABLE'], - ['id_aset' => 2831, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '41', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER UHF PORTABLE'], - ['id_aset' => 2832, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '41', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER UHF STATIONARY'], - ['id_aset' => 2833, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '41', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA UHF LAINNYA'], - ['id_aset' => 2834, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '42', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA SHF'], - ['id_aset' => 2835, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '42', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT ANTENA TRANSCEIVER SHF TRANSPORTABLE'], - ['id_aset' => 2836, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '42', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT ANTENA TRANSCEIVER SHF PORTABLE'], - ['id_aset' => 2837, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '42', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT ANTENA TRANSCEIVER SHF STATIONARY'], - ['id_aset' => 2838, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '42', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ANTENA PEMANCAR DAN PENERIMA SHF LAINNYA'], - ['id_aset' => 2839, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '43', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI RENDAH'], - ['id_aset' => 2840, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '43', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PENERIMA SATELITE CUACA'], - ['id_aset' => 2841, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '43', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI RENDAH LAINNYA'], - ['id_aset' => 2842, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '44', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI TINGGI'], - ['id_aset' => 2843, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '44', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PENERIMA SATELITE CUACA GEO STASIMETER'], - ['id_aset' => 2844, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '44', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT PENERIMA SATELITE CUACA ORBIT POLAR'], - ['id_aset' => 2845, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '44', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI TINGGI LAINNYA'], - ['id_aset' => 2846, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PENERIMA DAN PENGIRIM GAMBAR KE PERMUKAAN'], - ['id_aset' => 2847, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '001', 'nama' => 'SCANNER FACSIMILE'], - ['id_aset' => 2848, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '002', 'nama' => 'ALDEN MINIFAX RECORDER'], - ['id_aset' => 2849, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '003', 'nama' => 'UNIVERSAL GRAPHIC RECORDER'], - ['id_aset' => 2850, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '004', 'nama' => 'WEATHER CHART RECORDER'], - ['id_aset' => 2851, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '45', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PENERIMA DAN PENGIRIM GAMBAR KE PERMUKAAN LAINNYA'], - ['id_aset' => 2852, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PERLENGKAPAN RADIO'], - ['id_aset' => 2853, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '001', 'nama' => 'BOX BATTERY'], - ['id_aset' => 2854, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '002', 'nama' => 'CUTTON DUCK'], - ['id_aset' => 2855, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '003', 'nama' => 'CARRING CASE'], - ['id_aset' => 2856, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '004', 'nama' => 'HAND SET'], - ['id_aset' => 2857, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '005', 'nama' => 'CONECCTOR'], - ['id_aset' => 2858, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '46', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PERLENGKAPAN RADIO LAINNYA'], - ['id_aset' => 2859, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '000', 'nama' => 'SUMBER TENAGA'], - ['id_aset' => 2860, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '001', 'nama' => 'BA-30'], - ['id_aset' => 2861, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '002', 'nama' => 'GENSET'], - ['id_aset' => 2862, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '003', 'nama' => 'SOLAR CELL'], - ['id_aset' => 2863, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '004', 'nama' => 'CHARGER'], - ['id_aset' => 2864, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '47', 'sub_sub_kelompok' => '999', 'nama' => 'SUMBER TENAGA LAINNYA'], - ['id_aset' => 2865, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PEMANCAR LAINNYA'], - ['id_aset' => 2866, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PEMANCAR LAINNYA'], - ['id_aset' => 2867, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMUNIKASI NAVIGASI'], - ['id_aset' => 2868, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMUNIKASI NAVIGASI INSTRUMEN LANDING SYSTEM'], - ['id_aset' => 2869, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'STANDARD INSTRUMEN LANDING SYSTEM'], - ['id_aset' => 2870, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MICROWAVE LANDING SYSTEM'], - ['id_aset' => 2871, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN KOMUNIKASI NAVIGASI INSTRUMEN LANDING SYSTEM LAINNYA'], - ['id_aset' => 2872, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'VERY HIGHT FREQUENCE OMNI RANGE (VOR)'], - ['id_aset' => 2873, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'CONVENTIONAL VOR (CVOR)'], - ['id_aset' => 2874, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'DOOPLE VOR (DVOR)'], - ['id_aset' => 2875, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'VERY HIGHT FREQUENCE OMNI RANGE (VOR) LAINNYA'], - ['id_aset' => 2876, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'DISTANCE MEASURING EQUIPMENT (DME)'], - ['id_aset' => 2877, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'TRANSPONDER DME'], - ['id_aset' => 2878, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'ANTENA DME'], - ['id_aset' => 2879, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'BEACON'], - ['id_aset' => 2880, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'NDB'], - ['id_aset' => 2881, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'DB'], - ['id_aset' => 2882, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'RADAR BEACON'], - ['id_aset' => 2883, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'DIFFERENTIAL OMEGA (DISTANCE MEASURING EQUIPMENT (DME))'], - ['id_aset' => 2884, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'DIFFERENTIAL GPS'], - ['id_aset' => 2885, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'DISTANCE MEASURING EQUIPMENT (DME) LAINNYA'], - ['id_aset' => 2886, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'RADAR'], - ['id_aset' => 2887, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'PRIMARY SURVEILLANCE RADAR'], - ['id_aset' => 2888, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SECONDARY SURVEILLANCE RADAR'], - ['id_aset' => 2889, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'RADAR LAINNYA'], - ['id_aset' => 2890, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGATUR TELEKOMUNIKASI'], - ['id_aset' => 2891, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'MESSAGE SWITCHING CENTER (MSC)'], - ['id_aset' => 2892, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'AUTOMATIC MESSAGE SWITCHING CENTER (AMSC)'], - ['id_aset' => 2893, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'CURRENT CONSOLE REGULATOR'], - ['id_aset' => 2894, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'CONTROLLER CONSOLE PVC'], - ['id_aset' => 2895, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'NO BREAK CASINET'], - ['id_aset' => 2896, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'TELEGRAPHIC FRAME'], - ['id_aset' => 2897, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'MORDEN'], - ['id_aset' => 2898, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'RADIO CONSOLE'], - ['id_aset' => 2899, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'SUPERVISORI CONSOLE'], - ['id_aset' => 2900, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGATUR TELEKOMUNIKASI LAINNYA'], - ['id_aset' => 2901, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMUNIKASI UNTUK DOKUMENTASI'], - ['id_aset' => 2902, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'UNIT TAPE RECORDER'], - ['id_aset' => 2903, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'UNIT TIME ANNOUNCING'], - ['id_aset' => 2904, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'UNIT MASTER CLOCK'], - ['id_aset' => 2905, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'UNIT REPRODUCER'], - ['id_aset' => 2906, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'UNIT REMOTE CONTROL'], - ['id_aset' => 2907, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN KOMUNIKASI UNTUK DOKUMENTASI LAINNYA'], - ['id_aset' => 2908, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMUNIKASI NAVIGASI LAINNYA'], - ['id_aset' => 2909, 'golongan' => '3', 'bidang' => '06', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN KOMUNIKASI NAVIGASI LAINNYA'], - ['id_aset' => 2910, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'KOMPUTER'], - ['id_aset' => 2911, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'KOMPUTER UNIT'], - ['id_aset' => 2912, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'KOMPUTER JARINGAN'], - ['id_aset' => 2913, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'MAINFRAME (KOMPUTER JARINGAN)'], - ['id_aset' => 2914, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MINI KOMPUTER'], - ['id_aset' => 2915, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'LOCAL AREA NETWORK (LAN)'], - ['id_aset' => 2916, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'INTERNET'], - ['id_aset' => 2917, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'KOMPUTER WEDIS'], - ['id_aset' => 2918, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'KOMPUTER SYNERGIE'], - ['id_aset' => 2919, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'PC WORKSTATION'], - ['id_aset' => 2920, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'KOMPUTER JARINGAN LAINNYA'], - ['id_aset' => 2921, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERSONAL KOMPUTER'], - ['id_aset' => 2922, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'P.C UNIT'], - ['id_aset' => 2923, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'LAP TOP'], - ['id_aset' => 2924, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'NOTE BOOK'], - ['id_aset' => 2925, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'PALM TOP'], - ['id_aset' => 2926, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'CODE BREAKER SUPER KOMPUTER'], - ['id_aset' => 2927, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'THINCLIENT'], - ['id_aset' => 2928, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'NET BOOK'], - ['id_aset' => 2929, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'ULTRA MOBILE P.C.'], - ['id_aset' => 2930, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERSONAL KOMPUTER LAINNYA'], - ['id_aset' => 2931, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'KOMPUTER UNIT LAINNYA'], - ['id_aset' => 2932, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'KOMPUTER UNIT LAINNYA'], - ['id_aset' => 2933, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMPUTER'], - ['id_aset' => 2934, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN MAINFRAME'], - ['id_aset' => 2935, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'CARD READER (PERALATAN MAINFRAME)'], - ['id_aset' => 2936, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MAGNETIC TAPE UNIT (PERALATAN MAINFRAME)'], - ['id_aset' => 2937, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'FLOPPY DISK UNIT (PERALATAN MAINFRAME)'], - ['id_aset' => 2938, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'STORAGE MODUL DISK (PERALATAN MAINFRAME)'], - ['id_aset' => 2939, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'CONSOLE UNIT (PERALATAN MAINFRAME)'], - ['id_aset' => 2940, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'CPU (PERALATAN MAINFRAME)'], - ['id_aset' => 2941, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'DISK PACK (PERALATAN MAINFRAME)'], - ['id_aset' => 2942, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'HARD COPY CONSOLE'], - ['id_aset' => 2943, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'SERIAL PRINTER'], - ['id_aset' => 2944, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'LINE PRINTER'], - ['id_aset' => 2945, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'PLOTTER (PERALATAN MAINFRAME)'], - ['id_aset' => 2946, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'HARD DISK'], - ['id_aset' => 2947, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'KEYBOARD (PERALATAN MAINFRAME)'], - ['id_aset' => 2948, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'STEAMER'], - ['id_aset' => 2949, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'DATA PATCH PANEL'], - ['id_aset' => 2950, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '016', 'nama' => 'PAPER TAPE READER'], - ['id_aset' => 2951, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '017', 'nama' => 'PANABOARD'], - ['id_aset' => 2952, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN MAINFRAME LAINNYA'], - ['id_aset' => 2953, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN MINI KOMPUTER'], - ['id_aset' => 2954, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'CARD READER (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2955, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MAGNETIC TAPE UNIT (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2956, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'FLOPPY DISK UNIT (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2957, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'STORAGE MODUL DISK (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2958, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'CONSOLE UNIT (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2959, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'CPU (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2960, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'DISK PACK (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2961, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'PLOTTER (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2962, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'SCANNER (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2963, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '011', 'nama' => 'COMPUTER COMPATIBLE'], - ['id_aset' => 2964, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '012', 'nama' => 'VIEWER (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2965, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '013', 'nama' => 'DIGITIZER (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2966, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '014', 'nama' => 'KEYBOARD (PERALATAN MINI KOMPUTER)'], - ['id_aset' => 2967, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '015', 'nama' => 'AUTO SWITCH/DATA SWITCH'], - ['id_aset' => 2968, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '016', 'nama' => 'CUT SHEET FEEDER'], - ['id_aset' => 2969, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '017', 'nama' => 'SPEAKER KOMPUTER'], - ['id_aset' => 2970, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN MINI KOMPUTER LAINNYA'], - ['id_aset' => 2971, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PERSONAL KOMPUTER'], - ['id_aset' => 2972, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'CPU (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2973, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'MONITOR'], - ['id_aset' => 2974, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'PRINTER (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2975, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SCANNER (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2976, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'PLOTTER (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2977, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'VIEWER (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2978, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'EXTERNAL'], - ['id_aset' => 2979, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'DIGITIZER (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2980, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'KEYBOARD (PERALATAN PERSONAL KOMPUTER)'], - ['id_aset' => 2981, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'CD WRITTER'], - ['id_aset' => 2982, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'DVD WRITER'], - ['id_aset' => 2983, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'FIREWIRE CARD'], - ['id_aset' => 2984, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'CAPTURE CARD'], - ['id_aset' => 2985, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'LAN CARD'], - ['id_aset' => 2986, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'EXTERNAL CD/ DVD DRIVE (ROM)'], - ['id_aset' => 2987, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'EXTERNAL FLOPPY DISK DRIVE'], - ['id_aset' => 2988, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'EXTERNAL/ PORTABLE HARDISK'], - ['id_aset' => 2989, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PERSONAL KOMPUTER LAINNYA'], - ['id_aset' => 2990, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN JARINGAN'], - ['id_aset' => 2991, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SERVER'], - ['id_aset' => 2992, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'ROUTER'], - ['id_aset' => 2993, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'HUB'], - ['id_aset' => 2994, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'MODEM'], - ['id_aset' => 2995, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'NETWARE INTERFACE EXTERNAL'], - ['id_aset' => 2996, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'REPEATER AND TRANSCIEVER'], - ['id_aset' => 2997, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'HEAD COPY TERMINAL'], - ['id_aset' => 2998, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'RACK MODEM'], - ['id_aset' => 2999, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'CARD PUNCH'], - ['id_aset' => 3000, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'HEAD COPY PRINTER'], - ['id_aset' => 3001, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'CHARACTER TERMINAL'], - ['id_aset' => 3002, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'GRAPHIC TERMINAL'], - ['id_aset' => 3003, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'TERMINAL'], - ['id_aset' => 3004, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'RAK SERVER'], - ['id_aset' => 3005, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '015', 'nama' => 'FIREWALL'], - ['id_aset' => 3006, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '016', 'nama' => 'SWITCH RAK'], - ['id_aset' => 3007, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '017', 'nama' => 'WANSCALLER'], - ['id_aset' => 3008, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '018', 'nama' => 'E-MAIL SECURITY'], - ['id_aset' => 3009, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '019', 'nama' => 'CLIENT CLEARING HOUSE'], - ['id_aset' => 3010, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '020', 'nama' => 'CAT 6 CABLE'], - ['id_aset' => 3011, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '021', 'nama' => 'KABEL UTP'], - ['id_aset' => 3012, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '022', 'nama' => 'WIRELESS PCI CARD'], - ['id_aset' => 3013, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '023', 'nama' => 'WIRELESS ACCESS POINT'], - ['id_aset' => 3014, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '024', 'nama' => 'SWITCH'], - ['id_aset' => 3015, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '025', 'nama' => 'HUBBEL UTP'], - ['id_aset' => 3016, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '026', 'nama' => 'ACCES POINT'], - ['id_aset' => 3017, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '027', 'nama' => 'RACKMOUNT'], - ['id_aset' => 3018, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '028', 'nama' => 'KVM KEYBOARD VIDEO MONITOR'], - ['id_aset' => 3019, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '029', 'nama' => 'MOBILE MODEM GSM/ CDMA'], - ['id_aset' => 3020, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '030', 'nama' => 'NETWORK CABLE TESTER'], - ['id_aset' => 3021, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '031', 'nama' => 'JARINGAN SATPAS'], - ['id_aset' => 3022, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN JARINGAN LAINNYA'], - ['id_aset' => 3023, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN KOMPUTER LAINNYA'], - ['id_aset' => 3024, 'golongan' => '3', 'bidang' => '07', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN KOMPUTER LAINNYA'], - ['id_aset' => 3025, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGEBORAN'], - ['id_aset' => 3026, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGEBORAN MESIN'], - ['id_aset' => 3027, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BOR MESIN TUMBUK'], - ['id_aset' => 3028, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BOR MESIN TUMBUK PAKAI KABEL'], - ['id_aset' => 3029, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'BOR MESIN TUMBUK PAKAI SETANG BOR'], - ['id_aset' => 3030, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'BOR MESIN TUMBUK KOMBINASI 01 & 02'], - ['id_aset' => 3031, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BOR MESIN TUMBUK LAINNYA'], - ['id_aset' => 3032, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BOR MESIN PUTAR'], - ['id_aset' => 3033, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'ROTARY TABLE (BOR MESIN PUTAR)'], - ['id_aset' => 3034, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'SPINDLE'], - ['id_aset' => 3035, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'KOMBINASI 01 & 02'], - ['id_aset' => 3036, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'TOP DRIVE'], - ['id_aset' => 3037, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'WIKIE DRILL'], - ['id_aset' => 3038, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BOR MESIN PUTAR LAINNYA'], - ['id_aset' => 3039, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGEBORAN MESIN LAINNYA'], - ['id_aset' => 3040, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGEBORAN MESIN LAINNYA'], - ['id_aset' => 3041, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGEBORAN NON MESIN'], - ['id_aset' => 3042, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGKA'], - ['id_aset' => 3043, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BANGKA'], - ['id_aset' => 3044, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGKA LAINNYA'], - ['id_aset' => 3045, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PANTEK'], - ['id_aset' => 3046, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'PANTEK'], - ['id_aset' => 3047, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'SONDIR'], - ['id_aset' => 3048, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PANTEK LAINNYA'], - ['id_aset' => 3049, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PUTAR'], - ['id_aset' => 3050, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PUTAR'], - ['id_aset' => 3051, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'BAND HIDROLIK'], - ['id_aset' => 3052, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PUTAR LAINNYA'], - ['id_aset' => 3053, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN BANTU'], - ['id_aset' => 3054, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'DRAWWORK'], - ['id_aset' => 3055, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'DRILL PIPE'], - ['id_aset' => 3056, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'DRILL CILLAR'], - ['id_aset' => 3057, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'KELLY'], - ['id_aset' => 3058, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'CEMETING UNIT'], - ['id_aset' => 3059, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'ROTARY TABLE (PERALATAN BANTU)'], - ['id_aset' => 3060, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'TUBING SLIP'], - ['id_aset' => 3061, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'TUBING SPINDER'], - ['id_aset' => 3062, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'ALAT PANCING'], - ['id_aset' => 3063, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'SWIVEL'], - ['id_aset' => 3064, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'MUD TANK'], - ['id_aset' => 3065, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN BANTU LAINNYA'], - ['id_aset' => 3066, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGEBORAN NON MESIN LAINNYA'], - ['id_aset' => 3067, 'golongan' => '3', 'bidang' => '08', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGEBORAN NON MESIN LAINNYA'], - ['id_aset' => 3068, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"ALAT PRODUKSI'], - ['id_aset' => 3069, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'SUMUR'], - ['id_aset' => 3070, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN SUMUR MINYAK'], - ['id_aset' => 3071, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT PERAWAT SUMUR'], - ['id_aset' => 3072, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'AMERADA TEST'], - ['id_aset' => 3073, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'SONOLOG'], - ['id_aset' => 3074, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'PERFORMING UNIT'], - ['id_aset' => 3075, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'LOGGING UNIT'], - ['id_aset' => 3076, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'SAND PUMP'], - ['id_aset' => 3077, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN SUMUR MINYAK LAINNYA'], - ['id_aset' => 3078, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'SUMUR PEMBORAN'], - ['id_aset' => 3079, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SUMUR PEMBORAN PANAS BUMI'], - ['id_aset' => 3080, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'SUMUR PEMBORAN GAS'], - ['id_aset' => 3081, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'SUMUR PEMBORAN AIR'], - ['id_aset' => 3082, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'SUMUR PEMBORAN LAINNYA'], - ['id_aset' => 3083, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'SUMUR LAINNYA'], - ['id_aset' => 3084, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'SUMUR LAINNYA'], - ['id_aset' => 3085, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PRODUKSI'], - ['id_aset' => 3086, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'R I G'], - ['id_aset' => 3087, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'STANG BOR'], - ['id_aset' => 3088, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'R I G LAINNYA'], - ['id_aset' => 3089, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'PRODUKSI LAINNYA'], - ['id_aset' => 3090, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PRODUKSI LAINNYA'], - ['id_aset' => 3091, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PENGOLAHAN DAN PEMURNIAN'], - ['id_aset' => 3092, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN MINYAK'], - ['id_aset' => 3093, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'KAPASITAS KECIL (ALAT PENGOLAHAN MINYAK)'], - ['id_aset' => 3094, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'KAPASITAS SEDANG (ALAT PENGOLAHAN MINYAK)'], - ['id_aset' => 3095, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'KAPASITAS BESAR (ALAT PENGOLAHAN MINYAK)'], - ['id_aset' => 3096, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'CALON EVAPORATOR'], - ['id_aset' => 3097, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'CONDENSOR (ALAT PENGOLAHAN MINYAK)'], - ['id_aset' => 3098, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'COOLER (ALAT PENGOLAHAN MINYAK)'], - ['id_aset' => 3099, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'POMPA PROSO'], - ['id_aset' => 3100, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TURBINE'], - ['id_aset' => 3101, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'AIR DRYER'], - ['id_aset' => 3102, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'BOILER'], - ['id_aset' => 3103, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN MINYAK LAINNYA'], - ['id_aset' => 3104, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN AIR'], - ['id_aset' => 3105, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'KAPASITAS KECIL (ALAT PENGOLAHAN AIR)'], - ['id_aset' => 3106, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'KAPASITAS SEDANG (ALAT PENGOLAHAN AIR)'], - ['id_aset' => 3107, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'KAPASITAS BESAR (ALAT PENGOLAHAN AIR)'], - ['id_aset' => 3108, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN AIR LAINNYA'], - ['id_aset' => 3109, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN STEAM'], - ['id_aset' => 3110, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'KAPASITAS KECIL (ALAT PENGOLAHAN STEAM)'], - ['id_aset' => 3111, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'KAPASITAS SEDANG (ALAT PENGOLAHAN STEAM)'], - ['id_aset' => 3112, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'KAPASITAS BESAR (ALAT PENGOLAHAN STEAM)'], - ['id_aset' => 3113, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN STEAM LAINNYA'], - ['id_aset' => 3114, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PENGOLAHAN WAX'], - ['id_aset' => 3115, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'KAPASITAS KECIL (ALAT PENGOLAHAN WAX)'], - ['id_aset' => 3116, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'KAPASITAS SEDANG (ALAT PENGOLAHAN WAX)'], - ['id_aset' => 3117, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'KAPASITAS BESAR (ALAT PENGOLAHAN WAX)'], - ['id_aset' => 3118, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PENGOLAHAN WAX LAINNYA'], - ['id_aset' => 3119, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'PENGOLAHAN DAN PEMURNIAN LAINNYA'], - ['id_aset' => 3120, 'golongan' => '3', 'bidang' => '09', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PENGOLAHAN DAN PEMURNIAN LAINNYA'], - ['id_aset' => 3121, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN OLAH RAGA'], - ['id_aset' => 3122, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN OLAH RAGA'], - ['id_aset' => 3123, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN OLAH RAGA ATLETIK'], - ['id_aset' => 3124, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'LEMPAR CAKRAM'], - ['id_aset' => 3125, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'LEMPAR LEMBING'], - ['id_aset' => 3126, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TOLAK PELURU'], - ['id_aset' => 3127, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT LARI GAWANG'], - ['id_aset' => 3128, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'GALAH'], - ['id_aset' => 3129, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'MARTIL'], - ['id_aset' => 3130, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'MISTAR LOMPAT TINGGI'], - ['id_aset' => 3131, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'MATRAS LARI'], - ['id_aset' => 3132, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '009', 'nama' => 'START BLOCK'], - ['id_aset' => 3133, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '010', 'nama' => 'METER LINE'], - ['id_aset' => 3134, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '011', 'nama' => 'BENDERA START'], - ['id_aset' => 3135, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '012', 'nama' => 'PULL MASTER'], - ['id_aset' => 3136, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '013', 'nama' => 'KOSTUM'], - ['id_aset' => 3137, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '014', 'nama' => 'BAK LOMPAT TINGGI'], - ['id_aset' => 3138, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '015', 'nama' => 'BAK LOMPAT JAUH'], - ['id_aset' => 3139, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN ATLETIK LAINNYA'], - ['id_aset' => 3140, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN PERMAINAN'], - ['id_aset' => 3141, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT TENIS MEJA'], - ['id_aset' => 3142, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT VOLLEY'], - ['id_aset' => 3143, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'ALAT BILYARD'], - ['id_aset' => 3144, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT BADMINTON'], - ['id_aset' => 3145, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'SEPATU RODA'], - ['id_aset' => 3146, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'BOLA KAKI'], - ['id_aset' => 3147, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'ALAT BASKET'], - ['id_aset' => 3148, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'BOLA BASKET'], - ['id_aset' => 3149, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'KERANJANG BOLA/RING'], - ['id_aset' => 3150, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'KOSTUM BASKET'], - ['id_aset' => 3151, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '011', 'nama' => 'KOSTUM SEPAK BOLA'], - ['id_aset' => 3152, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '012', 'nama' => 'SEPATU BOLA + KAOS KAKI'], - ['id_aset' => 3153, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '013', 'nama' => 'RAKET TENIS'], - ['id_aset' => 3154, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '014', 'nama' => 'NET TENIS'], - ['id_aset' => 3155, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '015', 'nama' => 'BOLA TENIS'], - ['id_aset' => 3156, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '016', 'nama' => 'ROOT'], - ['id_aset' => 3157, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN PERMAINAN LAINNYA'], - ['id_aset' => 3158, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN SENAM'], - ['id_aset' => 3159, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PALANG SEJAJAR'], - ['id_aset' => 3160, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'PALANG KUDA'], - ['id_aset' => 3161, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'MATRAS'], - ['id_aset' => 3162, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'GELANG-GELANG'], - ['id_aset' => 3163, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'PERALATAN FITNES'], - ['id_aset' => 3164, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'KUDA PELANA'], - ['id_aset' => 3165, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'BALANCE BEEM'], - ['id_aset' => 3166, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '008', 'nama' => 'MULTI STATION'], - ['id_aset' => 3167, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '009', 'nama' => 'ARGOCYCLE'], - ['id_aset' => 3168, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '010', 'nama' => 'TREADMILL'], - ['id_aset' => 3169, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '011', 'nama' => 'ORBITREK'], - ['id_aset' => 3170, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '012', 'nama' => 'HENG UP BOARD'], - ['id_aset' => 3171, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '013', 'nama' => 'SIT UP BOARD'], - ['id_aset' => 3172, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '014', 'nama' => 'BECK UP BOARD'], - ['id_aset' => 3173, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '015', 'nama' => 'DAMBLE SET'], - ['id_aset' => 3174, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '016', 'nama' => 'BARBLE SET'], - ['id_aset' => 3175, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '017', 'nama' => 'RAK DAMBLE SET'], - ['id_aset' => 3176, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '018', 'nama' => 'RAK DARBLE SET'], - ['id_aset' => 3177, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '019', 'nama' => 'MASSAGE CHAIR'], - ['id_aset' => 3178, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '020', 'nama' => 'MASSAGE FOOT'], - ['id_aset' => 3179, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN SENAM LAINNYA'], - ['id_aset' => 3180, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'PARALATAN OLAH RAGA AIR'], - ['id_aset' => 3181, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SKI AIR'], - ['id_aset' => 3182, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SKI DIVING'], - ['id_aset' => 3183, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'SELANCAR'], - ['id_aset' => 3184, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'PERAHU KARET (PARALATAN OLAH RAGA AIR)'], - ['id_aset' => 3185, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '005', 'nama' => 'PERAHU LAYAR'], - ['id_aset' => 3186, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '006', 'nama' => 'ALAT ARUNG JERAM'], - ['id_aset' => 3187, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '007', 'nama' => 'ALAT DAYUNG'], - ['id_aset' => 3188, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '008', 'nama' => 'KACA MATA AIR'], - ['id_aset' => 3189, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '009', 'nama' => 'FULL FOOT FIN'], - ['id_aset' => 3190, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '010', 'nama' => 'ALAT UKUR KEDALAMAN'], - ['id_aset' => 3191, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '011', 'nama' => 'BOUYANCE KOMPENSATOR'], - ['id_aset' => 3192, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '012', 'nama' => 'HP KOMPRESSOR'], - ['id_aset' => 3193, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '013', 'nama' => 'KOMPAS SELAM'], - ['id_aset' => 3194, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '014', 'nama' => 'PISAU SELAM'], - ['id_aset' => 3195, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '015', 'nama' => 'PERAYU KAYAK 1'], - ['id_aset' => 3196, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '016', 'nama' => 'PERAYU KAYAK 2'], - ['id_aset' => 3197, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '017', 'nama' => 'PERAHU CANO CANADIAN 1'], - ['id_aset' => 3198, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '018', 'nama' => 'PERAHU CANO CANADIAN 2'], - ['id_aset' => 3199, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '019', 'nama' => 'PERAHU TRADISIONAL/PERAHU NAGA'], - ['id_aset' => 3200, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '020', 'nama' => 'ROOWING/SINGLE SCOOL'], - ['id_aset' => 3201, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '021', 'nama' => 'ROOWING/DOUBLE SCOOL'], - ['id_aset' => 3202, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '022', 'nama' => 'PAPAN JUMPING + TALI + HELM'], - ['id_aset' => 3203, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '023', 'nama' => 'PAPAN SLALOM + TALI + HELM'], - ['id_aset' => 3204, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '024', 'nama' => 'PAPAN TRICK + TALI + HELM'], - ['id_aset' => 3205, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '025', 'nama' => 'JAMPING TRACK'], - ['id_aset' => 3206, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '026', 'nama' => 'MOTOR PENARIK/SPEED BOAT'], - ['id_aset' => 3207, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '027', 'nama' => 'PELAMPUNG LINTASAN'], - ['id_aset' => 3208, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '028', 'nama' => 'OPTIMIST'], - ['id_aset' => 3209, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '029', 'nama' => 'ENTERPRISE'], - ['id_aset' => 3210, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '030', 'nama' => 'KELAS 420'], - ['id_aset' => 3211, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '031', 'nama' => 'KELAS 470'], - ['id_aset' => 3212, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '032', 'nama' => 'FIREBALL'], - ['id_aset' => 3213, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '033', 'nama' => 'SELANCAR ANGIN'], - ['id_aset' => 3214, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '034', 'nama' => 'HOBBY CAT'], - ['id_aset' => 3215, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '035', 'nama' => 'KIIL BOAT'], - ['id_aset' => 3216, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'PARALATAN OLAH RAGA AIR LAINNYA'], - ['id_aset' => 3217, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN OLAH RAGA UDARA'], - ['id_aset' => 3218, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'GANTOLE'], - ['id_aset' => 3219, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BALON UDARA'], - ['id_aset' => 3220, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'PAYUNG UDARA (PARASUT)'], - ['id_aset' => 3221, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'ALAT TERBANG LAYANG'], - ['id_aset' => 3222, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN OLAH RAGA UDARA LAINNYA'], - ['id_aset' => 3223, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'PERALATAN OLAH RAGA LAINNYA'], - ['id_aset' => 3224, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'CATUR'], - ['id_aset' => 3225, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'SARUNG TINJU'], - ['id_aset' => 3226, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'SEPEDA OLAH RAGA'], - ['id_aset' => 3227, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN OLAH RAGA LAINNYA'], - ['id_aset' => 3228, 'golongan' => '3', 'bidang' => '10', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'PERALATAN OLAH RAGA LAINNYA'], - ['id_aset' => 3229, 'golongan' => '4', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'GEDUNG DAN BANGUNAN'], - ['id_aset' => 3230, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG'], - ['id_aset' => 3231, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA'], - ['id_aset' => 3232, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG KANTOR'], - ['id_aset' => 3233, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG KANTOR PERMANEN'], - ['id_aset' => 3234, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG KANTOR SEMI PERMANEN'], - ['id_aset' => 3235, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG KANTOR DARURAT'], - ['id_aset' => 3236, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'RUMAH PANEL'], - ['id_aset' => 3237, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG KANTOR LAINNYA'], - ['id_aset' => 3238, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GUDANG'], - ['id_aset' => 3239, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GUDANG TERTUTUP PERMANEN'], - ['id_aset' => 3240, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GUDANG TERTUTUP SEMI PERMANEN'], - ['id_aset' => 3241, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GUDANG TERTUTUP DARURAT'], - ['id_aset' => 3242, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN GUDANG TERBUKA PERMANEN'], - ['id_aset' => 3243, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN GUDANG TERBUKA SEMI PERMANEN'], - ['id_aset' => 3244, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN GUDANG TERBUKA DARURAT'], - ['id_aset' => 3245, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GUDANG LAINNYA'], - ['id_aset' => 3246, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG UNTUK BENGKEL'], - ['id_aset' => 3247, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN BENGKEL PERMANEN'], - ['id_aset' => 3248, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN BENGKEL SEMI PERMANEN'], - ['id_aset' => 3249, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN BENGKEL DARURAT'], - ['id_aset' => 3250, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG UNTUK BENGKEL LAINNYA'], - ['id_aset' => 3251, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG INSTALASI'], - ['id_aset' => 3252, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'GEDUNG INSTALASI STUDIO'], - ['id_aset' => 3253, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'GEDUNG INSTALASI PEMANCAR'], - ['id_aset' => 3254, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG INSTALASI LAINNYA'], - ['id_aset' => 3255, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG LABORATORIUM'], - ['id_aset' => 3256, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG LABORATORIUM PERMANEN'], - ['id_aset' => 3257, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG LABORATORIUM SEMI PERMANEN'], - ['id_aset' => 3258, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG LABORATORIUM DARURAT'], - ['id_aset' => 3259, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG LABORATORIUM LAINNYA'], - ['id_aset' => 3260, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN KESEHATAN'], - ['id_aset' => 3261, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN POSYANDU'], - ['id_aset' => 3262, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN POLINDES (PONDOK BERSALIN DESA)'], - ['id_aset' => 3263, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN APOTIK'], - ['id_aset' => 3264, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN TOKO KHUSUS OBAT/JAMU'], - ['id_aset' => 3265, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN KESEHATAN LAINNYA'], - ['id_aset' => 3266, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT IBADAH'], - ['id_aset' => 3267, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG TEMPAT IBADAH PERMANEN'], - ['id_aset' => 3268, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG TEMPAT IBADAH SEMI PERMANEN'], - ['id_aset' => 3269, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG TEMPAT IBADAH DARURAT'], - ['id_aset' => 3270, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT IBADAH LAINNYA'], - ['id_aset' => 3271, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT PERTEMUAN'], - ['id_aset' => 3272, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG PERTEMUAN PERMANEN'], - ['id_aset' => 3273, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG PERTEMUAN SEMI PERMANEN'], - ['id_aset' => 3274, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG PERTEMUAN DARURAT'], - ['id_aset' => 3275, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT PERTEMUAN LAINNYA'], - ['id_aset' => 3276, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT PENDIDIKAN'], - ['id_aset' => 3277, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG PENDIDIKAN PERMANEN'], - ['id_aset' => 3278, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG PENDIDIKAN SEMI PERMANEN'], - ['id_aset' => 3279, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG PENDIDIKAN DARURAT'], - ['id_aset' => 3280, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN GEDUNG PENDIDIKAN DAN LATIHAN'], - ['id_aset' => 3281, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT PENDIDIKAN LAINNYA'], - ['id_aset' => 3282, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT OLAH RAGA'], - ['id_aset' => 3283, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'GEDUNG OLAH RAGA TETUTUP PERMANEN'], - ['id_aset' => 3284, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'GEDUNG OLAH RAGA TERTUTUP SEMI PERMANEN'], - ['id_aset' => 3285, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG OLAH RAGA TERTUTUP DARURAT'], - ['id_aset' => 3286, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN OLAH RAGA TERBUKA PERMANEN'], - ['id_aset' => 3287, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN OLAH RAGA TERBUKA SEMI PERMANEN'], - ['id_aset' => 3288, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN OLAH RAGA TERBUKA DARURAT'], - ['id_aset' => 3289, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN GEDUNG OLAH RAGA KOLAM RENANG'], - ['id_aset' => 3290, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT OLAH RAGA LAINNYA'], - ['id_aset' => 3291, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG PERTOKOAN/KOPERASI/PASAR'], - ['id_aset' => 3292, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'GEDUNG PERTOKOAN/KOPERASI/PASAR PERMANEN'], - ['id_aset' => 3293, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'GEDUNG PERTOKOAN/KOPERASI/PASAR SEMI PERMANEN'], - ['id_aset' => 3294, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG PERTOKOAN/KOPERASI/PASAR DARURAT'], - ['id_aset' => 3295, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG PERTOKOAN/KOPERASI/PASAR LAINNYA'], - ['id_aset' => 3296, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG GARASI/POOL'], - ['id_aset' => 3297, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '001', 'nama' => 'GEDUNG GARASI/POOL PERMANEN'], - ['id_aset' => 3298, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '002', 'nama' => 'GEDUNG GARASI/POOL SEMI PERMANEN'], - ['id_aset' => 3299, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG GARASI/POOL DARURAT'], - ['id_aset' => 3300, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '12', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG GARASI/POOL LAINNYA'], - ['id_aset' => 3301, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG PEMOTONG HEWAN'], - ['id_aset' => 3302, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '001', 'nama' => 'GEDUNG PEMOTONG HEWAN PERMANEN'], - ['id_aset' => 3303, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '002', 'nama' => 'GEDUNG PEMOTONG HEWAN SEMI PERMANEN'], - ['id_aset' => 3304, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG PEMOTONG HEWAN DARURAT'], - ['id_aset' => 3305, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '13', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG PEMOTONG HEWAN LAINNYA'], - ['id_aset' => 3306, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG PERPUSTAKAAN'], - ['id_aset' => 3307, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG PERPUSTAKAAN PERMANEN'], - ['id_aset' => 3308, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG PERPUSTAKAAN SEMI PERMANEN'], - ['id_aset' => 3309, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG PERPUSTAKAAN DARURAT'], - ['id_aset' => 3310, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '14', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG PERPUSTAKAAN LAINNYA'], - ['id_aset' => 3311, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG MUSIUM'], - ['id_aset' => 3312, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG MUSIUM PERMANEN'], - ['id_aset' => 3313, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG MUSIUM SEMI PERMANEN'], - ['id_aset' => 3314, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG MUSIUM DARURAT'], - ['id_aset' => 3315, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '15', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG MUSIUM LAINNYA'], - ['id_aset' => 3316, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TERMINAL/PELABUHAN'], - ['id_aset' => 3317, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG TERMINAL/PELABUHAN PERMANEN'], - ['id_aset' => 3318, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG TERMINAL/PELABUHAN SEMI PERMANEN'], - ['id_aset' => 3319, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG TERMINAL/PELABUHAN DARURAT'], - ['id_aset' => 3320, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN HALTE/SHELTER'], - ['id_aset' => 3321, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '16', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TERMINAL/PELABUHAN LAINNYA'], - ['id_aset' => 3322, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN TERBUKA'], - ['id_aset' => 3323, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN LANTAI JEMUR PERMANEN'], - ['id_aset' => 3324, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN LANTAI JEMUR SEMI PERMANEN'], - ['id_aset' => 3325, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN LANTAI JEMUR DARURAT'], - ['id_aset' => 3326, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '17', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN TERBUKA LAINNYA'], - ['id_aset' => 3327, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENAMPUNG SEKAM'], - ['id_aset' => 3328, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PENAMPUNG SEKAM PERMANEN'], - ['id_aset' => 3329, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PENAMPUNG SEKAM SEMI PERMANEN'], - ['id_aset' => 3330, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PENAMPUNG SEKAM DARURAT'], - ['id_aset' => 3331, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '18', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENAMPUNG SEKAM LAINNYA'], - ['id_aset' => 3332, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN TEMPAT PELELANGAN IKAN (TPI)'], - ['id_aset' => 3333, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TPI PERMANEN'], - ['id_aset' => 3334, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN TPI SEMI PERMANEN'], - ['id_aset' => 3335, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN TPI DARURAT'], - ['id_aset' => 3336, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '19', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN TEMPAT PELELANGAN IKAN (TPI) LAINNYA'], - ['id_aset' => 3337, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN INDUSTRI'], - ['id_aset' => 3338, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN INDUSTRI MAKANAN'], - ['id_aset' => 3339, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN INDUSTRI MINUMAN'], - ['id_aset' => 3340, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN INDUSTRI ALAT RT'], - ['id_aset' => 3341, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN INDUSTRI PAKAIAN/GARMENT'], - ['id_aset' => 3342, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN INDUSTRI BAJA/BESI/LOGAM'], - ['id_aset' => 3343, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN INDUSTRI PENGEMASAN'], - ['id_aset' => 3344, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN INDUSTRI BENGKEL'], - ['id_aset' => 3345, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN INDUSTRI PENYULINGAN MINYAK'], - ['id_aset' => 3346, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '009', 'nama' => 'BANGUNAN INDUSTRI KIMIA DAN PUPUK'], - ['id_aset' => 3347, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '010', 'nama' => 'BANGUNAN INDUSTRI OBAT-OBATAN'], - ['id_aset' => 3348, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '011', 'nama' => 'BANGUNAN INDUSTRI SEMEN'], - ['id_aset' => 3349, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '012', 'nama' => 'BANGUNAN INDUSTRI BATU-BATA/BATAKO'], - ['id_aset' => 3350, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '013', 'nama' => 'BANGUNAN INDUSTRI GENTENG'], - ['id_aset' => 3351, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '014', 'nama' => 'BANGUNAN INDUSTRI PERCETAKAN'], - ['id_aset' => 3352, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '015', 'nama' => 'BANGUNAN INDUSTRI TEKSTIL'], - ['id_aset' => 3353, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '016', 'nama' => 'BANGUNAN INDUSTRI ALAT OLAH RAGA'], - ['id_aset' => 3354, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '017', 'nama' => 'BANGUNAN INDUSTRI KENDARAAN/OTOMOTIF'], - ['id_aset' => 3355, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '018', 'nama' => 'BANGUNAN INDUSTRI KERAMIK/MARMER'], - ['id_aset' => 3356, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '019', 'nama' => 'BANGUNAN PABRIK ES'], - ['id_aset' => 3357, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '020', 'nama' => 'BANGUNAN PASAR IKAN HIGIENIS/ PIH'], - ['id_aset' => 3358, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '021', 'nama' => 'BANGUNAN DEPO PASAR IKAN'], - ['id_aset' => 3359, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '022', 'nama' => 'BANGUNAN PASAR/ RAISER IKAN HIAS'], - ['id_aset' => 3360, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '20', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN INDUSTRI LAINNYA'], - ['id_aset' => 3361, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PETERNAKAN/PERIKANAN'], - ['id_aset' => 3362, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN UNTUK KANDANG'], - ['id_aset' => 3363, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN KOLAM/BAK IKAN'], - ['id_aset' => 3364, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PEMBESAR IKAN'], - ['id_aset' => 3365, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '21', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PETERNAKAN/PERIKANAN LAINNYA'], - ['id_aset' => 3366, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA'], - ['id_aset' => 3367, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA PERMANEN'], - ['id_aset' => 3368, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA SEMI PERMANEN'], - ['id_aset' => 3369, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA DARURAT'], - ['id_aset' => 3370, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '004', 'nama' => 'GEDUNG PENGUJIAN KENDARAAN LAINNYA'], - ['id_aset' => 3371, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '22', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN LAINNYA'], - ['id_aset' => 3372, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN FASILITAS UMUM'], - ['id_aset' => 3373, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TEMPAT PARKIR'], - ['id_aset' => 3374, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN TEMPAT BERMAIN ANAK'], - ['id_aset' => 3375, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PENERANGAN JALAN'], - ['id_aset' => 3376, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PENERANGAN TAMAN'], - ['id_aset' => 3377, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '23', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN FASILITAS UMUM LAINNYA'], - ['id_aset' => 3378, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PARKIR'], - ['id_aset' => 3379, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PARKIR TERBUKA PERMANEN'], - ['id_aset' => 3380, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PARKIR TERBUKA SEMI PERMANEN'], - ['id_aset' => 3381, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PARKIR TERBUKA DARURAT'], - ['id_aset' => 3382, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PARKIR TERTUTUP PERMANEN'], - ['id_aset' => 3383, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PARKIR TERTUTUP SEMI PERMANEN'], - ['id_aset' => 3384, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN PARKIR TERTUTUP DARURAT'], - ['id_aset' => 3385, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '24', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PARKIR LAINNYA'], - ['id_aset' => 3386, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '000', 'nama' => 'TAMAN'], - ['id_aset' => 3387, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '001', 'nama' => 'TAMAN PERMANEN'], - ['id_aset' => 3388, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '002', 'nama' => 'TAMAN SEMI PERMANEN'], - ['id_aset' => 3389, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '25', 'sub_sub_kelompok' => '999', 'nama' => 'TAMAN LAINNYA'], - ['id_aset' => 3390, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA'], - ['id_aset' => 3391, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT KERJA LAINNYA'], - ['id_aset' => 3392, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'HOTEL'], - ['id_aset' => 3393, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'HOTEL PERMANEN'], - ['id_aset' => 3394, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'HOTEL SEMI PERMANEN'], - ['id_aset' => 3395, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'HOTEL LAINNYA'], - ['id_aset' => 3396, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'MOTEL'], - ['id_aset' => 3397, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'MOTEL PERMANEN'], - ['id_aset' => 3398, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MOTEL SEMI PERMANEN'], - ['id_aset' => 3399, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'MOTEL LAINNYA'], - ['id_aset' => 3400, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'PANTI ASUHAN'], - ['id_aset' => 3401, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'PANTI ASUHAN'], - ['id_aset' => 3402, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'PANTI ASUHAN LAINNYA'], - ['id_aset' => 3403, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN GEDUNG TEMPAT TINGGAL LAINNYA'], - ['id_aset' => 3404, 'golongan' => '4', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN GEDUNG TEMPAT TINGGAL LAINNYA'], - ['id_aset' => 3405, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'MONUMEN'], - ['id_aset' => 3406, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'CANDI/TUGU PERINGATAN/PRASASTI'], - ['id_aset' => 3407, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'CANDI'], - ['id_aset' => 3408, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'CANDI'], - ['id_aset' => 3409, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'CANDI LAINNYA'], - ['id_aset' => 3410, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TUGU'], - ['id_aset' => 3411, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'TUGU KEMERDEKAAN'], - ['id_aset' => 3412, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'TUGU PEMBANGUNAN'], - ['id_aset' => 3413, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TUGU PERINGATAN LAINNYA'], - ['id_aset' => 3414, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENINGGALAN'], - ['id_aset' => 3415, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'ISTANA PENINGGALAN'], - ['id_aset' => 3416, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'RUMAH ADAT'], - ['id_aset' => 3417, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'RUMAH PENINGGALAN SEJARAH'], - ['id_aset' => 3418, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'MAKAM BERSEJARAH'], - ['id_aset' => 3419, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENINGGALAN LAINNYA'], - ['id_aset' => 3420, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'CANDI/TUGU PERINGATAN/PRASASTI LAINNYA'], - ['id_aset' => 3421, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENINGGALAN LAINNYA'], - ['id_aset' => 3422, 'golongan' => '4', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'CANDI/TUGU PERINGATAN/PRASASTI LAINNYA'], - ['id_aset' => 3423, 'golongan' => '5', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN'], - ['id_aset' => 3424, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN DAN JEMBATAN'], - ['id_aset' => 3425, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN'], - ['id_aset' => 3426, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN DESA'], - ['id_aset' => 3427, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JALAN DESA'], - ['id_aset' => 3428, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JALAN DESA LAINNYA'], - ['id_aset' => 3429, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN KHUSUS'], - ['id_aset' => 3430, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JALAN KHUSUS INSPEKSI'], - ['id_aset' => 3431, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JALAN KHUSUS KOMPLEKS'], - ['id_aset' => 3432, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JALAN KHUSUS PROYEK'], - ['id_aset' => 3433, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'JALAN KHUSUS QUARRY'], - ['id_aset' => 3434, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'JALAN KHUSUS LORI'], - ['id_aset' => 3435, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'JALAN KHUSUS BADAN HUKUM'], - ['id_aset' => 3436, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'JALAN KHUSUS PERORANGAN'], - ['id_aset' => 3437, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'JALAN KHUSUS LAINNYA'], - ['id_aset' => 3438, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'JALAN KHUSUS PEJALAN KAKI (TROTOAR)'], - ['id_aset' => 3439, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'LAINNYA (JALAN KHUSUS)'], - ['id_aset' => 3440, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JALAN LAINNYA'], - ['id_aset' => 3441, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JALAN LAINNYA'], - ['id_aset' => 3442, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN'], - ['id_aset' => 3443, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN PADA JALAN DESA'], - ['id_aset' => 3444, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JEMBATAN PADA JALAN DESA'], - ['id_aset' => 3445, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN PADA JALAN DESA LAINNYA'], - ['id_aset' => 3446, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN PADA JALAN KHUSUS'], - ['id_aset' => 3447, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JEMBATAN PADA JALAN KHUSUS INSPEKSI'], - ['id_aset' => 3448, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JEMBATAN PADA JALAN KHUSUS KOMPLEKS'], - ['id_aset' => 3449, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JEMBATAN PADA JALAN KHUSUS PROYEK'], - ['id_aset' => 3450, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'JEMBATAN PADA JALAN KHUSUS QUARRY'], - ['id_aset' => 3451, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'JEMBATAN PADA JALAN KHUSUS LORI'], - ['id_aset' => 3452, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'JEMBATAN PADA JALAN KHUSUS BADAN HUKUM'], - ['id_aset' => 3453, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'JEMBATAN PADA JALAN KHUSUS PERORANGAN'], - ['id_aset' => 3454, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN PADA JALAN KHUSUS LAINNYA'], - ['id_aset' => 3455, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN PENYEBERANGAN'], - ['id_aset' => 3456, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'JEMBATAN PENYEBERANGAN ORANG'], - ['id_aset' => 3457, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'JEMBATAN PENYEBERANGAN KENDARAAN'], - ['id_aset' => 3458, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'JEMBATAN GANTUNG'], - ['id_aset' => 3459, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN PENYEBERANGAN LAINNYA'], - ['id_aset' => 3460, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN LABUH/SANDAR PADA TERMINAL'], - ['id_aset' => 3461, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'DERMAGA'], - ['id_aset' => 3462, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'KADE'], - ['id_aset' => 3463, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'EMBARKASI/DEBARKASI'], - ['id_aset' => 3464, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'JEMBATAN PANTAI'], - ['id_aset' => 3465, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN LABUH/SANDAR PADA TERMINAL LAINNYA'], - ['id_aset' => 3466, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN PENGUKUR'], - ['id_aset' => 3467, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'JEMBATAN TIMBANG'], - ['id_aset' => 3468, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'JEMBATAN KIR/PENGUJIAN'], - ['id_aset' => 3469, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN PENGUKUR LAINNYA'], - ['id_aset' => 3470, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JEMBATAN LAINNYA'], - ['id_aset' => 3471, 'golongan' => '5', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JEMBATAN LAINNYA'], - ['id_aset' => 3472, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR'], - ['id_aset' => 3473, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR IRIGASI'], - ['id_aset' => 3474, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK IRIGASI'], - ['id_aset' => 3475, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => '\"WADUK DENGAN BENDUNGAN'], - ['id_aset' => 3476, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => '\"WADUK DENGAN BENDUNGAN'], - ['id_aset' => 3477, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'WADUK DENGAN MENARA PENGAMBILAN'], - ['id_aset' => 3478, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => '\"WADUK DENGAN TANGGUL'], - ['id_aset' => 3479, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'WADUK DENGAN TANGGUL DAN PINTU PENGUKUR WADUK LAPANGAN'], - ['id_aset' => 3480, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK IRIGASI LAINNYA'], - ['id_aset' => 3481, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN IRIGASI'], - ['id_aset' => 3482, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BENDUNG'], - ['id_aset' => 3483, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BENDUNG DENGAN PINTU BILAS'], - ['id_aset' => 3484, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BENDUNG DENGAN POMPA'], - ['id_aset' => 3485, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PENGAMBILAN BEBAS'], - ['id_aset' => 3486, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PENGAMBILAN BEBAS DGN POMPA (BGNAN PENGAMBILAN IRIGASI)'], - ['id_aset' => 3487, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'SUMUR DENGAN POMPA (BANGUNAN PENGAMBILAN IRIGASI)'], - ['id_aset' => 3488, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN IRIGASI LAINNYA'], - ['id_aset' => 3489, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA IRIGASI'], - ['id_aset' => 3490, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN MUKA (BANGUNAN PEMBAWA IRIGASI)'], - ['id_aset' => 3491, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN INDUK (BANGUNAN PEMBAWA IRIGASI)'], - ['id_aset' => 3492, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN SEKUNDER (BANGUNAN PEMBAWA IRIGASI)'], - ['id_aset' => 3493, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN TERSIER (BANGUNAN PEMBAWA IRIGASI)'], - ['id_aset' => 3494, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'SALURAN KWARTER'], - ['id_aset' => 3495, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'SALURAN PASANG TERTUTUP/TEROWONGAN'], - ['id_aset' => 3496, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '007', 'nama' => 'SALURAN SUPLESI'], - ['id_aset' => 3497, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA IRIGASI LAINNYA'], - ['id_aset' => 3498, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG IRIGASI'], - ['id_aset' => 3499, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN INDUK PEMBUANG (BANGUNAN PEMBUANG IRIGASI)'], - ['id_aset' => 3500, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN SEKUNDER PEMBUANG (BANGUNAN PEMBUANG IRIGASI)'], - ['id_aset' => 3501, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN TERSIER PEMBUANG (BANGUNAN PEMBUANG IRIGASI)'], - ['id_aset' => 3502, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG IRIGASI LAINNYA'], - ['id_aset' => 3503, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN IRIGASI'], - ['id_aset' => 3504, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TANGGUL BANJIR (BANGUNAN PENGAMAN IRIGASI)'], - ['id_aset' => 3505, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN IRIGASI)'], - ['id_aset' => 3506, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN IRIGASI LAINNYA'], - ['id_aset' => 3507, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP IRIGASI'], - ['id_aset' => 3508, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN BAGI'], - ['id_aset' => 3509, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN BAGI DAN SADAP (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3510, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SADAP (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3511, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN GOT MIRING'], - ['id_aset' => 3512, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN TERJUN (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3513, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN TALANG (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3514, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3515, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3516, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'BANGUNAN PELIMPAH SAMPAH'], - ['id_aset' => 3517, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'BANGUNAN PENGELUARAN/PINTU'], - ['id_aset' => 3518, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'BANGUNAN BOX TERSIER (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3519, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '012', 'nama' => 'BANGUNAN PENGUKUR'], - ['id_aset' => 3520, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '013', 'nama' => 'BANGUNAN MANDI HEWAN'], - ['id_aset' => 3521, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '014', 'nama' => 'BANGUNAN PERTEMUAN SALURAN'], - ['id_aset' => 3522, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '015', 'nama' => 'BANGUNAN PELENGKAP DALAM PETAK TERSIER'], - ['id_aset' => 3523, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '016', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP IRIGASI)'], - ['id_aset' => 3524, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP IRIGASI LAINNYA'], - ['id_aset' => 3525, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN SAWAH IRIGASI'], - ['id_aset' => 3526, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN SAWAH IRIGASI TEHNIS'], - ['id_aset' => 3527, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SAWAH IRIGASI SEMI TEHNIS'], - ['id_aset' => 3528, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SAWAH IRIGASI NON TEHNIS'], - ['id_aset' => 3529, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN SAWAH IRIGASI LAINNYA'], - ['id_aset' => 3530, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR IRIGASI LAINNYA'], - ['id_aset' => 3531, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN AIR IRIGASI LAINNYA'], - ['id_aset' => 3532, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAIRAN PASANG SURUT'], - ['id_aset' => 3533, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK PASANG SURUT'], - ['id_aset' => 3534, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'WADUK PASANG SURUT'], - ['id_aset' => 3535, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK PASANG SURUT LAINNYA'], - ['id_aset' => 3536, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN PASANG SURUT'], - ['id_aset' => 3537, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN BENDUNG DENGAN POMPA'], - ['id_aset' => 3538, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PENGAMBILAN BEBAS DGN POMPA (BGNAN PENGAMBILAN PSG SURUT'], - ['id_aset' => 3539, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN PASANG SURUT LAINNYA'], - ['id_aset' => 3540, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA PASANG SURUT'], - ['id_aset' => 3541, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN MUKA (BANGUNAN PEMBAWA PASANG SURUT)'], - ['id_aset' => 3542, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN INDUK (BANGUNAN PEMBAWA PASANG SURUT)'], - ['id_aset' => 3543, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN SEKUNDER (BANGUNAN PEMBAWA PASANG SURUT)'], - ['id_aset' => 3544, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN TERSIER (BANGUNAN PEMBAWA PASANG SURUT)'], - ['id_aset' => 3545, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'SALURAN PENYIMPAN AIR'], - ['id_aset' => 3546, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '006', 'nama' => 'SALURAN LALU LINTAS AIR'], - ['id_aset' => 3547, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA PASANG SURUT LAINNYA'], - ['id_aset' => 3548, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'SALURAN PEMBUANG PASANG SURUT'], - ['id_aset' => 3549, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN INDUK PEMBUANG (SALURAN PEMBUANG PASANG SURUT)'], - ['id_aset' => 3550, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN SEKUNDER PEMBUANG (SALURAN PEMBUANG PASANG SURUT)'], - ['id_aset' => 3551, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN TERSIER PEMBUANG (SALURAN PEMBUANG PASANG SURUT)'], - ['id_aset' => 3552, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN PENGUMPUL AIR'], - ['id_aset' => 3553, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'SALURAN PEMBUANG PASANG SURUT LAINNYA'], - ['id_aset' => 3554, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN PASANG SURUT'], - ['id_aset' => 3555, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN PASANG SURUT)'], - ['id_aset' => 3556, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PEMASUKAN/PEMBUANG'], - ['id_aset' => 3557, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'KOLAM PASANG'], - ['id_aset' => 3558, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN PASANG SURUT LAINNYA'], - ['id_aset' => 3559, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP PASANG SURUT'], - ['id_aset' => 3560, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PASANG SURUT)'], - ['id_aset' => 3561, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN JEMBATAN PENGHALANG (BANGUNAN PELENGKAP PASANG SURUT)'], - ['id_aset' => 3562, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PENUTUP PENANGKIS KOTORAN'], - ['id_aset' => 3563, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PASANG SURUT)'], - ['id_aset' => 3564, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PENGUKUR CURAH HUJAN (BANGUNAN PELENGKAP PASANG SURUT)'], - ['id_aset' => 3565, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP PASANG SURUT LAINNYA'], - ['id_aset' => 3566, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN SAWAH PASANG SURUT'], - ['id_aset' => 3567, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN SAWAH PASANG SURUT TEKNIS'], - ['id_aset' => 3568, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SAWAH PASANG SURUT SEMI TEKNIS'], - ['id_aset' => 3569, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SAWAH PASANG SURUT NON TEKNIS'], - ['id_aset' => 3570, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN SAWAH PASANG SURUT LAINNYA'], - ['id_aset' => 3571, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAIRAN PASANG SURUT LAINNYA'], - ['id_aset' => 3572, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAIRAN PASANG SURUT LAINNYA'], - ['id_aset' => 3573, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGEMBANGAN RAWA DAN POLDER'], - ['id_aset' => 3574, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK PENGEMBANGAN RAWA'], - ['id_aset' => 3575, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN WADUK'], - ['id_aset' => 3576, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3577, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN PENGEMBANGAN RAWA'], - ['id_aset' => 3578, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'WADUK PENGAMBILAN RAWA'], - ['id_aset' => 3579, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3580, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA PENGEMBANGAN RAWA'], - ['id_aset' => 3581, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN MUKA (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)'], - ['id_aset' => 3582, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN INDUK (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)'], - ['id_aset' => 3583, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN SEKUNDER (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)'], - ['id_aset' => 3584, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN TERSIER (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)'], - ['id_aset' => 3585, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3586, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG PENGEMBANGAN RAWA'], - ['id_aset' => 3587, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN INDUK PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)'], - ['id_aset' => 3588, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN SEKUNDER PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)'], - ['id_aset' => 3589, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN TERSIER PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)'], - ['id_aset' => 3590, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3591, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN PENGEMBANGAN RAWA'], - ['id_aset' => 3592, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TANGGUL KELILING'], - ['id_aset' => 3593, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN PENGEMBANGAN RAWA)'], - ['id_aset' => 3594, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3595, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP PENGEMBANGAN RAWA'], - ['id_aset' => 3596, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN BAGI DAN SADAP (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3597, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SADAP (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3598, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN TERJUN (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3599, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3600, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3601, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3602, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN JEMBATAN PENGHALANG (BGNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3603, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3604, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'BANGUNAN PENGUKUR CURAH HUJAN (BGNAN PELENGKAP PENGEMBANGAN RAWA)'], - ['id_aset' => 3605, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '010', 'nama' => 'BANGUNAN PENUTUP SUNGAI'], - ['id_aset' => 3606, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '011', 'nama' => 'BANGUNAN STASIUN POMPA PEMASUKAN/PEMBUANG'], - ['id_aset' => 3607, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3608, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN SAWAH PENGEMBANGAN RAWA'], - ['id_aset' => 3609, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN SAWAH RAWA TEKNIS'], - ['id_aset' => 3610, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SAWAH RAWA SEMI TEKNIS'], - ['id_aset' => 3611, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SAWAH RAWA NON TEKNIS'], - ['id_aset' => 3612, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN SAWAH PENGEMBANGAN RAWA LAINNYA'], - ['id_aset' => 3613, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGEMBANGAN RAWA DAN POLDER LAINNYA'], - ['id_aset' => 3614, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGEMBANGAN RAWA DAN POLDER LAINNYA'], - ['id_aset' => 3615, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM'], - ['id_aset' => 3616, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM'], - ['id_aset' => 3617, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNA WASUK PENGAMAN SUNGAI/PANTAI'], - ['id_aset' => 3618, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => '\"WADUK DENGAN TANGGUL'], - ['id_aset' => 3619, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA'], - ['id_aset' => 3620, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN PENGAMAN SUNGAI/PANTAI'], - ['id_aset' => 3621, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PENGAMBILAN PENGAMANAN SUNGAI'], - ['id_aset' => 3622, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PENGAMBILAN PENGAMANAN PANTAI'], - ['id_aset' => 3623, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN PENGAMAN SUNGAI/PANTAI LAINNYA'], - ['id_aset' => 3624, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA PENGAMAN SUNGAI/PANTAI'], - ['id_aset' => 3625, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PEMBAWA PENGAMAN SUNGAI'], - ['id_aset' => 3626, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PEMBAWA PENGAMAN PANTAI'], - ['id_aset' => 3627, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA PENGAMAN SUNGAI/PANTAI LAINNYA'], - ['id_aset' => 3628, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG PENGAMAN SUNGAI'], - ['id_aset' => 3629, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN BANJIR'], - ['id_aset' => 3630, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN DRAINAGE'], - ['id_aset' => 3631, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG PENGAMAN SUNGAI LAINNYA'], - ['id_aset' => 3632, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI'], - ['id_aset' => 3633, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'TANGGUL BANJIR (BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI)'], - ['id_aset' => 3634, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'PINTU PENGATUR BANJIR'], - ['id_aset' => 3635, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'COUPURE/SODETAN'], - ['id_aset' => 3636, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'KANTONG PASIR/LAHAR/LUMPUR'], - ['id_aset' => 3637, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'CHEKDAM/PENAHAN SEDIMEN'], - ['id_aset' => 3638, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'KRIB PENGAMAN SUNGAI/PANTAI'], - ['id_aset' => 3639, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN PENGUAT TEBING/PANTAI'], - ['id_aset' => 3640, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN PELIMPAH BANJIR'], - ['id_aset' => 3641, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'DAM KONSOLIDASI'], - ['id_aset' => 3642, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '010', 'nama' => 'PERALATAN SARINGAN SAMPAH ( POND SCREEN )'], - ['id_aset' => 3643, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '011', 'nama' => 'KLEP PENGATUR BANJIR'], - ['id_aset' => 3644, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '012', 'nama' => 'BANGUNAN PEMECAH GELOMBANG'], - ['id_aset' => 3645, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '013', 'nama' => 'BANGUNAN PELANTARAN PANTAI'], - ['id_aset' => 3646, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI LAINNYA'], - ['id_aset' => 3647, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP PENGAMAN SUNGAI'], - ['id_aset' => 3648, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGAMAN SUNGAI)'], - ['id_aset' => 3649, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP PENGAMAN SUNGAI)'], - ['id_aset' => 3650, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGAMAN SUNGAI)'], - ['id_aset' => 3651, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PENGAMAN SUNGAI)'], - ['id_aset' => 3652, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PENGUKUR CURAH HUJAN (BGNAN PELENGKAP PENGAMAN SUNGAI)'], - ['id_aset' => 3653, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'STASIUN POS PENJAGA/PENGAMAT'], - ['id_aset' => 3654, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN DERMAGA'], - ['id_aset' => 3655, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN STASIUN POMPA PEMBUANG'], - ['id_aset' => 3656, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '009', 'nama' => 'WARNING SYSTEM'], - ['id_aset' => 3657, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP PENGAMAN SUNGAI LAINNYA'], - ['id_aset' => 3658, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA'], - ['id_aset' => 3659, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA'], - ['id_aset' => 3660, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH'], - ['id_aset' => 3661, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3662, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'EMBUNG/WADUK LAPANGAN'], - ['id_aset' => 3663, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3664, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3665, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SUMUR DENGAN POMPA (BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3666, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'SUMUR ARTETIS'], - ['id_aset' => 3667, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3668, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3669, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN TERSIER (BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3670, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN KUARTIER'], - ['id_aset' => 3671, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3672, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3673, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN PEMBUANG'], - ['id_aset' => 3674, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3675, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3676, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'BAK PENAMPUNG/KOLAM/ MENARA PENAMPUNGAN'], - ['id_aset' => 3677, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN KLIMATOLOGI'], - ['id_aset' => 3678, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN HIDROMETRI'], - ['id_aset' => 3679, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'SUMUR PENGAMATAN'], - ['id_aset' => 3680, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3681, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR'], - ['id_aset' => 3682, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TERJUN (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3683, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN TALANG (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3684, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3685, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN GORONG-GORONG (BGNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3686, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN BOX TERSIER (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3687, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)'], - ['id_aset' => 3688, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR LAINNYA'], - ['id_aset' => 3689, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN SAWAH IRIGASI AIR TANAH'], - ['id_aset' => 3690, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN SAWAH IRIGASI AIR TANAH TEKNIS'], - ['id_aset' => 3691, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SAWAH IRIGASI AIR TANAH SEMI TEKNIS'], - ['id_aset' => 3692, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN SAWAH IRIGASI AIR TANAH NON TEKNIS'], - ['id_aset' => 3693, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN SAWAH IRIGASI AIR TANAH LAINNYA'], - ['id_aset' => 3694, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH LAINNYA'], - ['id_aset' => 3695, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '05', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH LAINNYA'], - ['id_aset' => 3696, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR BERSIH/AIR BAKU'], - ['id_aset' => 3697, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK AIR BERSIH/AIR BAKU'], - ['id_aset' => 3698, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'WADUK PENYIMPANAN AIR BAKU'], - ['id_aset' => 3699, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'WADUK PENYIMPANAN AIR HUJAN'], - ['id_aset' => 3700, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'BAK PENYIMPANAN/TOWER AIR BAKU'], - ['id_aset' => 3701, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3702, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMBILAN AIR BERSIH/AIR BAKU'], - ['id_aset' => 3703, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN PENGAMBILAN DARI WADUK'], - ['id_aset' => 3704, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN PENGAMBILAN DARI SUNGAI'], - ['id_aset' => 3705, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN PENGAMBILAN DARI DANAU'], - ['id_aset' => 3706, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN PENGAMBILAN DARI RAWA'], - ['id_aset' => 3707, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PENGAMBILAN DARI AIR LAUT'], - ['id_aset' => 3708, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN PENGAMBILAN DARI SUMBER AIR'], - ['id_aset' => 3709, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN PENGAMBILAN DARI SUMUR ARTETIS'], - ['id_aset' => 3710, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMBILAN AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3711, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA AIR BERSIH/AIR BAKU'], - ['id_aset' => 3712, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN PEMBAWA AIR BAKU TERBUKA'], - ['id_aset' => 3713, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN PEMBAWA AIR BAKU TERTUTUP'], - ['id_aset' => 3714, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3715, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG AIR BERSIH/AIR BAKU'], - ['id_aset' => 3716, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN PEMBUANG AIR CUCIAN AIR BAKU'], - ['id_aset' => 3717, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN PEMBUANG AIR CUCIAN INSTALASI'], - ['id_aset' => 3718, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3719, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU'], - ['id_aset' => 3720, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TALANG (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)'], - ['id_aset' => 3721, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)'], - ['id_aset' => 3722, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)'], - ['id_aset' => 3723, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)'], - ['id_aset' => 3724, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN PENAMPUNG AIR BAKU'], - ['id_aset' => 3725, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'BANGUNAN HIDRAN UMUM'], - ['id_aset' => 3726, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN MANDI CUCI KAKUS (MCK)'], - ['id_aset' => 3727, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'BANGUNAN MENARA/BAK PENAMPUNG/RESERVOIR AIR MINUM'], - ['id_aset' => 3728, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'BANGUNAN BUSTER PUMP'], - ['id_aset' => 3729, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3730, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3731, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '06', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN AIR BERSIH/AIR BAKU LAINNYA'], - ['id_aset' => 3732, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR KOTOR'], - ['id_aset' => 3733, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBAWA AIR KOTOR'], - ['id_aset' => 3734, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN PENGUMPUL AIR HUJAN'], - ['id_aset' => 3735, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN PENGUMPUL AIR BUANGAN DOMESTIK'], - ['id_aset' => 3736, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN PENGUMPUL AIR BUANGAN INDUSTRI'], - ['id_aset' => 3737, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN PENGUMPUL AIR BUANGAN PERTANIAN'], - ['id_aset' => 3738, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBAWA AIR KOTOR LAINNYA'], - ['id_aset' => 3739, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN WADUK AIR KOTOR'], - ['id_aset' => 3740, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'WADUK AIR HUJAN'], - ['id_aset' => 3741, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'WADUK AIR BUANGAN DOMESTIK'], - ['id_aset' => 3742, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'WADUK AIR BUANGAN INDUSTRI'], - ['id_aset' => 3743, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'WADUK AIR BUANGAN PERTANIAN'], - ['id_aset' => 3744, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN WADUK AIR KOTOR LAINNYA'], - ['id_aset' => 3745, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PEMBUANG AIR KOTOR'], - ['id_aset' => 3746, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'SALURAN PEMBUANG AIR BUANGAN AIR HUJAN'], - ['id_aset' => 3747, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'SALURAN PEMBUANG AIR BUANGAN DOMESTIK'], - ['id_aset' => 3748, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'SALURAN PEMBUANG AIR BUANGAN AIR INDUSTRI'], - ['id_aset' => 3749, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'SALURAN PEMBUANG AIR BUANGAN AIR PERTANIAN'], - ['id_aset' => 3750, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PEMBUANG AIR KOTOR LAINNYA'], - ['id_aset' => 3751, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENGAMAN AIR KOTOR'], - ['id_aset' => 3752, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN POMPA AIR HUJAN'], - ['id_aset' => 3753, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN POMPA AIR BUANGAN DOMESTIK'], - ['id_aset' => 3754, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN POMPA AIR BUANGAN INDUSTRI'], - ['id_aset' => 3755, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN POMPA AIR BUANGAN PERTANIAN'], - ['id_aset' => 3756, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENGAMAN AIR KOTOR LAINNYA'], - ['id_aset' => 3757, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PELENGKAP AIR KOTOR'], - ['id_aset' => 3758, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TALANG (BANGUNAN PELENGKAP AIR KOTOR)'], - ['id_aset' => 3759, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN SYPHON (BANGUNAN PELENGKAP AIR KOTOR)'], - ['id_aset' => 3760, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP AIR KOTOR)'], - ['id_aset' => 3761, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'BANGUNAN JEMBATAN (BANGUNAN PELENGKAP AIR KOTOR)'], - ['id_aset' => 3762, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'BANGUNAN BAK KONTROL/MAN HOLE'], - ['id_aset' => 3763, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '006', 'nama' => 'SALURAN AIR KOTOR SAMBUNGAN DARI RUMAH'], - ['id_aset' => 3764, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '007', 'nama' => 'BANGUNAN (BOX) CULVERT'], - ['id_aset' => 3765, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '008', 'nama' => 'MULTIPLE PIPA ARCHES'], - ['id_aset' => 3766, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '009', 'nama' => 'BANGUNAN PLAT DEKER'], - ['id_aset' => 3767, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PELENGKAP AIR KOTOR LAINNYA'], - ['id_aset' => 3768, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN AIR KOTOR LAINNYA'], - ['id_aset' => 3769, 'golongan' => '5', 'bidang' => '02', 'kelompok' => '07', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN AIR KOTOR LAINNYA'], - ['id_aset' => 3770, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI'], - ['id_aset' => 3771, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BERSIH / AIR BAKU'], - ['id_aset' => 3772, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR PERMUKAAN'], - ['id_aset' => 3773, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR PERMUKAAN KAPASITAS KECIL'], - ['id_aset' => 3774, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR PERMUKAAN KAPASITAS SEDANG'], - ['id_aset' => 3775, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR PERMUKAAN KAPASITAS BESAR'], - ['id_aset' => 3776, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR PERMUKAAN LAINNYA'], - ['id_aset' => 3777, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR SUMBER / MATA AIR'], - ['id_aset' => 3778, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR SUMBER / MATA AIR KAPASITAS KECIL'], - ['id_aset' => 3779, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR SUMBER / MATA AIR KAPASITAS SEDANG'], - ['id_aset' => 3780, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR SUMBER / MATA AIR KAPASITAS BESAR'], - ['id_aset' => 3781, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR SUMBER / MATA AIR LAINNYA'], - ['id_aset' => 3782, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR TANAH DALAM'], - ['id_aset' => 3783, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR TANAH DALAM KAPASITAS KECIL'], - ['id_aset' => 3784, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR TANAH DALAM KAPASITAS SEDANG'], - ['id_aset' => 3785, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR TANAH DALAM KAPASITAS BESAR'], - ['id_aset' => 3786, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR TANAH DALAM LAINNYA'], - ['id_aset' => 3787, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR TANAH DANGKAL'], - ['id_aset' => 3788, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR TANAH DANGKAL KAPASITAS KECIL'], - ['id_aset' => 3789, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR TANAH DANGKAL KAPASITAS SEDANG'], - ['id_aset' => 3790, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR TANAH DANGKAL KAPASITAS BESAR'], - ['id_aset' => 3791, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR TANAH DANGKAL LAINNYA'], - ['id_aset' => 3792, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BERSIH / AIR BAKU LAINNYA'], - ['id_aset' => 3793, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'SISTEM PENGOLAHAN AIR SEDERHANA (SIPAS)'], - ['id_aset' => 3794, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN RUMAH TANGGA (JARUT)'], - ['id_aset' => 3795, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'PENAMPUNGAN AIR HUJAN (PAH)'], - ['id_aset' => 3796, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '004', 'nama' => 'SUMUR GALI (SGL)'], - ['id_aset' => 3797, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '005', 'nama' => 'SUMUR RESAPAN'], - ['id_aset' => 3798, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR BERSIH / AIR BAKU LAINNYA LAINNYA'], - ['id_aset' => 3799, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BERSIH / AIR BAKU LAINNYA'], - ['id_aset' => 3800, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR BERSIH / AIR BAKU LAINNYA'], - ['id_aset' => 3801, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR KOTOR'], - ['id_aset' => 3802, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BUANGAN DOMESTIK'], - ['id_aset' => 3803, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR BUANGAN DOMESTIK KAPASITAS KECIL'], - ['id_aset' => 3804, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR BUANGAN DOMESTIK KAPASITAS SEDANG'], - ['id_aset' => 3805, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR BUANGAN DOMESTIK KAPASITAS BESAR'], - ['id_aset' => 3806, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR BUANGAN DOMESTIK LAINNYA'], - ['id_aset' => 3807, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BUANGAN INDUSTRI'], - ['id_aset' => 3808, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR BUANGAN INDUSTRI KAPASITAS KECIL'], - ['id_aset' => 3809, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR BUANGAN INDUSTRI KAPASITAS SEDANG'], - ['id_aset' => 3810, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR BUANGAN INDUSTRI KAPASITAS BESAR'], - ['id_aset' => 3811, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR BUANGAN INDUSTRI LAINNYA'], - ['id_aset' => 3812, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR BUANGAN PERTANIAN'], - ['id_aset' => 3813, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI AIR BUANGAN PERTANIAN KAPASITAS KECIL'], - ['id_aset' => 3814, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AIR BUANGAN PERTANIAN KAPASITAS SEDANG'], - ['id_aset' => 3815, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI AIR BUANGAN PERTANIAN KAPASITAS BESAR'], - ['id_aset' => 3816, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR BUANGAN PERTANIAN LAINNYA'], - ['id_aset' => 3817, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI AIR KOTOR LAINNYA'], - ['id_aset' => 3818, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI AIR KOTOR LAINNYA'], - ['id_aset' => 3819, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH'], - ['id_aset' => 3820, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH ORGANIK'], - ['id_aset' => 3821, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM PEMBAKARAN'], - ['id_aset' => 3822, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM KOMPOS'], - ['id_aset' => 3823, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM PENIMBUNAN'], - ['id_aset' => 3824, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH ORGANIK LAINNYA'], - ['id_aset' => 3825, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH NON ORGANIK'], - ['id_aset' => 3826, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH NON ORGANIK DAUR ULANG LOGAM'], - ['id_aset' => 3827, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH NON ORGANIK DAUR ULANG NON LOGAM'], - ['id_aset' => 3828, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH NON ORGANIK LAINNYA'], - ['id_aset' => 3829, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'BANGUNAN PENAMPUNG SAMPAH'], - ['id_aset' => 3830, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'BANGUNAN TEMPAT PENAMPUNG SAMPAH RUMAH TANGGA'], - ['id_aset' => 3831, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'BANGUNAN TEMPAT MENAMPUNG SAMPAH LINGKUNGAN'], - ['id_aset' => 3832, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'BANGUNAN PENAMPUNG SAMPAH LAINNYA'], - ['id_aset' => 3833, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH LAINNYA'], - ['id_aset' => 3834, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN SAMPAH LAINNYA'], - ['id_aset' => 3835, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN'], - ['id_aset' => 3836, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN'], - ['id_aset' => 3837, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGAWETAN KAYU'], - ['id_aset' => 3838, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGERINGAN KAYU'], - ['id_aset' => 3839, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGERJAAN KAYU'], - ['id_aset' => 3840, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PERKAPURAN'], - ['id_aset' => 3841, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PEMBUATAN BATU'], - ['id_aset' => 3842, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PEMBUATAN AGREGA'], - ['id_aset' => 3843, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN LAINNYA'], - ['id_aset' => 3844, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS'], - ['id_aset' => 3845, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGAWETAN KAYU'], - ['id_aset' => 3846, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGERINGAN KAYU'], - ['id_aset' => 3847, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGERJAAN KAYU'], - ['id_aset' => 3848, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PERKAPURAN'], - ['id_aset' => 3849, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PEMBUATAN BATU CETA'], - ['id_aset' => 3850, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PEMBUATAN AGREGAT'], - ['id_aset' => 3851, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS LAINNYA'], - ['id_aset' => 3852, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN'], - ['id_aset' => 3853, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN'], - ['id_aset' => 3854, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN LAINNYA'], - ['id_aset' => 3855, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN LAINNYA'], - ['id_aset' => 3856, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PENGOLAHAN BAHAN BANGUNAN LAINNYA'], - ['id_aset' => 3857, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK'], - ['id_aset' => 3858, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA AIR (PLTA)'], - ['id_aset' => 3859, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTA KAPASITAS KECIL'], - ['id_aset' => 3860, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTA KAPASITAS SEDANG'], - ['id_aset' => 3861, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTA KAPASITAS BESAR'], - ['id_aset' => 3862, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA AIR (PLTA) LAINNYA'], - ['id_aset' => 3863, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA DIESEL (PLTD)'], - ['id_aset' => 3864, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTD KAPASITAS KECIL'], - ['id_aset' => 3865, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTD KAPASITAS SEDANG'], - ['id_aset' => 3866, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTD KAPASITAS BESAR'], - ['id_aset' => 3867, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA DIESEL (PLTD) LAINNYA'], - ['id_aset' => 3868, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA MIKRO HIDRO (PLTM)'], - ['id_aset' => 3869, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTM KAPASITAS KECIL'], - ['id_aset' => 3870, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTM KAPASITAS SEDANG'], - ['id_aset' => 3871, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTM KAPASITAS BESAR'], - ['id_aset' => 3872, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA MIKRO HIDRO (PLTM) LAINNYA'], - ['id_aset' => 3873, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA ANGIN (PLTAN)'], - ['id_aset' => 3874, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTAN KAPASITAS KECIL'], - ['id_aset' => 3875, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTAN KAPASITAS SEDANG'], - ['id_aset' => 3876, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTAN KAPASITAS BESAR'], - ['id_aset' => 3877, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA ANGIN (PLTAN) LAINNYA'], - ['id_aset' => 3878, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA UAP (PLTU)'], - ['id_aset' => 3879, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTU KAPASITAS KECIL'], - ['id_aset' => 3880, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTU KAPASITAS SEDANG'], - ['id_aset' => 3881, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTU KAPASITAS BESAR'], - ['id_aset' => 3882, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '05', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA UAP (PLTU) LAINNYA'], - ['id_aset' => 3883, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA NUKLIR (PLTN)'], - ['id_aset' => 3884, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTN KAPASITAS KECIL'], - ['id_aset' => 3885, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTN KAPASITAS SEDANG'], - ['id_aset' => 3886, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTN KAPASITAS BESAR'], - ['id_aset' => 3887, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '06', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA NUKLIR (PLTN) LAINNYA'], - ['id_aset' => 3888, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA GAS (PLTG)'], - ['id_aset' => 3889, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTG KAPASITAS KECIL'], - ['id_aset' => 3890, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTG KAPASITAS SEDANG'], - ['id_aset' => 3891, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTG KAPASITAS BESAR'], - ['id_aset' => 3892, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '07', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA GAS (PLTG) LAINNYA'], - ['id_aset' => 3893, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA PANAS BUMI (PLTP)'], - ['id_aset' => 3894, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTP KAPASITAS KECIL'], - ['id_aset' => 3895, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTP KAPASITAS SEDANG'], - ['id_aset' => 3896, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTP KAPASITAS BESAR'], - ['id_aset' => 3897, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '08', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA PANAS BUMI (PLTP) LAINNYA'], - ['id_aset' => 3898, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA SURYA (PLTS)'], - ['id_aset' => 3899, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTS KAPASITAS KECIL'], - ['id_aset' => 3900, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTS KAPASITAS SEDANG'], - ['id_aset' => 3901, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTS KAPASITAS BESAR'], - ['id_aset' => 3902, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '09', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA SURYA (PLTS) LAIINNYA'], - ['id_aset' => 3903, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA BIOGAS (PLTB)'], - ['id_aset' => 3904, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTB KAPASITAS KECIL'], - ['id_aset' => 3905, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTB KAPASITAS SEDANG'], - ['id_aset' => 3906, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTB KAPASITAS BESAR'], - ['id_aset' => 3907, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '10', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA BIOGAS (PLTB) LAINNYA'], - ['id_aset' => 3908, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA SAMUDERA / GELOMBANG SAMUDERA'], - ['id_aset' => 3909, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PLTSM KAPASITAS KECIL'], - ['id_aset' => 3910, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PLTSM KAPASITAS SEDANG'], - ['id_aset' => 3911, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PLTSM KAPASITAS BESAR'], - ['id_aset' => 3912, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '11', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK TENAGA SAMUDERA / GELOMBANG SAMUDERA LAINNYA'], - ['id_aset' => 3913, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK LAINNYA'], - ['id_aset' => 3914, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '05', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PEMBANGKIT LISTRIK LAINNYA'], - ['id_aset' => 3915, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI GARDU LISTRIK'], - ['id_aset' => 3916, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI GARDU LISTRIK INDUK'], - ['id_aset' => 3917, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI GARDU LISTRIK INDUK KAPASITAS KECIL'], - ['id_aset' => 3918, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI GARDU LISTRIK INDUK KAPASITAS SEDANG'], - ['id_aset' => 3919, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI GARDU LISTRIK INDUK KAPASITAS BESAR'], - ['id_aset' => 3920, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI GARDU LISTRIK INDUK LAINNYA'], - ['id_aset' => 3921, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI GARDU LISTRIK DISTRIBUSI'], - ['id_aset' => 3922, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS KECIL'], - ['id_aset' => 3923, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS SEDANG'], - ['id_aset' => 3924, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS BESAR'], - ['id_aset' => 3925, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI GARDU LISTRIK DISTRIBUSI LAINNYA'], - ['id_aset' => 3926, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI PUSAT PENGATUR LISTRIK'], - ['id_aset' => 3927, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS KECIL'], - ['id_aset' => 3928, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS SEDANG'], - ['id_aset' => 3929, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS BESAR'], - ['id_aset' => 3930, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI PUSAT PENGATUR LISTRIK LAINNYA'], - ['id_aset' => 3931, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI GARDU LISTRIK LAINNYA'], - ['id_aset' => 3932, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '06', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI GARDU LISTRIK LAINNYA'], - ['id_aset' => 3933, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI LAIN'], - ['id_aset' => 3934, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'INSTALASI LAIN'], - ['id_aset' => 3935, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'INSTALASI GENERATING SET'], - ['id_aset' => 3936, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'INSTALASI AC'], - ['id_aset' => 3937, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'INSTALASI BUILDING AUTOMATION SYSTEM (BAS)'], - ['id_aset' => 3938, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'INSTALASI KOMPUTER'], - ['id_aset' => 3939, 'golongan' => '5', 'bidang' => '03', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'INSTALASI LAIN-LAIN'], - ['id_aset' => 3940, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN'], - ['id_aset' => 3941, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN AIR MINUM'], - ['id_aset' => 3942, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN PEMBAWA'], - ['id_aset' => 3943, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN PEMBAWA KAPASITAS KECIL'], - ['id_aset' => 3944, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN PEMBAWA KAPASITAS SEDANG'], - ['id_aset' => 3945, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN PEMBAWA KAPASITAS BESAR'], - ['id_aset' => 3946, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN PEMBAWA LAINNYA'], - ['id_aset' => 3947, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN INDUK DISTRIBUSI'], - ['id_aset' => 3948, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN INDUK DISTRIBUSI KAPASITAS KECIL'], - ['id_aset' => 3949, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN INDUK DISTRIBUSI KAPASITAS SEDANG'], - ['id_aset' => 3950, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN INDUK DISTRIBUSI KAPASITAS BESAR'], - ['id_aset' => 3951, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN INDUK DISTRIBUSI LAINNYA'], - ['id_aset' => 3952, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN CABANG DISTRIBUSI'], - ['id_aset' => 3953, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN CABANG DISTRIBUSI KAPASITAS KECIL'], - ['id_aset' => 3954, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN CABANG DISTRIBUSI KAPASITAS SEDANG'], - ['id_aset' => 3955, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN CABANG DISTRIBUSI KAPASITAS BESAR'], - ['id_aset' => 3956, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN CABANG DISTRIBUSI LAINNYA'], - ['id_aset' => 3957, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN SAMBUNGAN KE RUMAH'], - ['id_aset' => 3958, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN SAMBUNGAN KE RUMAH KAPASITAS KECIL'], - ['id_aset' => 3959, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN SAMBUNGAN KE RUMAH KAPASITAS SEDANG'], - ['id_aset' => 3960, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN SAMBUNGAN KE RUMAH KAPASITAS BESAR'], - ['id_aset' => 3961, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN SAMBUNGAN KE RUMAH LAINNYA'], - ['id_aset' => 3962, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN AIR MINUM LAINNYA'], - ['id_aset' => 3963, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN AIR MINUM LAINNYA'], - ['id_aset' => 3964, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN LISTRIK'], - ['id_aset' => 3965, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TRANSMISI'], - ['id_aset' => 3966, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN TRANSMISI TEGANGAN DIATAS 300 KVA'], - ['id_aset' => 3967, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN TRANSMISI TEGANGAN 100 S/D 300 KVA'], - ['id_aset' => 3968, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN TRANSMISI TEGANGAN DIBAWAH 100 KVA'], - ['id_aset' => 3969, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN TRANSMISI LAINNYA'], - ['id_aset' => 3970, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN DISTRIBUSI'], - ['id_aset' => 3971, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN DISTRIBUSI TEGANGAN DIATAS 20 KVA'], - ['id_aset' => 3972, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN DISTRIBUSI TEGANGAN 1 S/D 20 KVA'], - ['id_aset' => 3973, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN DISTRIBUSI TEGANGAN DIBAWAH 1 KVA'], - ['id_aset' => 3974, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN DISTRIBUSI LAINNYA'], - ['id_aset' => 3975, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN LISTRIK LAINNYA'], - ['id_aset' => 3976, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN LISTRIK LAINNYA'], - ['id_aset' => 3977, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TELEPON'], - ['id_aset' => 3978, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TELEPON DIATAS TANAH'], - ['id_aset' => 3979, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN TELEPON DIATAS TANAH KAPASITAS KECIL'], - ['id_aset' => 3980, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN TELEPON DIATAS TANAH KAPASITAS SEDANG'], - ['id_aset' => 3981, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN TELEPON DIATAS TANAH KAPASITAS BESAR'], - ['id_aset' => 3982, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN TELEPON DIATAS TANAH LAINNYA'], - ['id_aset' => 3983, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TELEPON DIBAWAH TANAH'], - ['id_aset' => 3984, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN TELEPON DIBAWAH TANAH KAPASITAS KECIL'], - ['id_aset' => 3985, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN TELEPON DIBAWAH TANAH KAPASITAS SEDANG'], - ['id_aset' => 3986, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN TELEPON DIBAWAH TANAH KAPASITAS BESAR'], - ['id_aset' => 3987, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN TELEPON DIBAWAH TANAH LAINNYA'], - ['id_aset' => 3988, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TELEPON DIDALAM AIR'], - ['id_aset' => 3989, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN TELEPON DIDALAM AIR KAPASITAS KECIL'], - ['id_aset' => 3990, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN TELEPON DIDALAM AIR KAPASITAS SEDANG'], - ['id_aset' => 3991, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN TELEPON DIDALAM AIR KAPASITAS BESAR'], - ['id_aset' => 3992, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN TELEPON DIDALAM AIR LAINNYA'], - ['id_aset' => 3993, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN DENGAN MEDIA UDARA'], - ['id_aset' => 3994, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN SATELIT'], - ['id_aset' => 3995, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN RADIO'], - ['id_aset' => 3996, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN DENGAN MEDIA UDARA LAINNYA'], - ['id_aset' => 3997, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN TELEPON LAINNYA'], - ['id_aset' => 3998, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN TELEPON LAINNYA'], - ['id_aset' => 3999, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN GAS'], - ['id_aset' => 4000, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN PIPA GAS TRANSMISI'], - ['id_aset' => 4001, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN PIPA BAJA'], - ['id_aset' => 4002, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN PIPA GAS TRANSMISI LAINNYA'], - ['id_aset' => 4003, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN PIPA DISTRIBUSI'], - ['id_aset' => 4004, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN PIPA DISTRIBUSI TEKANAN TINGGI'], - ['id_aset' => 4005, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN PIPA DISTRIBUSI TEKANAN MENENGAH PIPA BAJA'], - ['id_aset' => 4006, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN PIPA DISTRIBUSI TEKANAN MENENGAH PIPA PE'], - ['id_aset' => 4007, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'JARINGAN PIPA DISTRIBUSI TEKANAN RENDAH PIPA BAJA'], - ['id_aset' => 4008, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'JARINGAN PIPA DISTRIBUSI TEKANAN RENDAH PIPA PC'], - ['id_aset' => 4009, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN PIPA DISTRIBUSI LAINNYA'], - ['id_aset' => 4010, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN PIPA DINAS'], - ['id_aset' => 4011, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN PIPA DINAS PIPA BAJA'], - ['id_aset' => 4012, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN PIPA DINAS PIPA PE'], - ['id_aset' => 4013, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN PIPA DINAS LAINNYA'], - ['id_aset' => 4014, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN BBM'], - ['id_aset' => 4015, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '001', 'nama' => 'JARINGAN BBM BENSIN'], - ['id_aset' => 4016, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '002', 'nama' => 'JARINGAN BBM SOLAR'], - ['id_aset' => 4017, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '003', 'nama' => 'JARINGAN BBM MINYAK TANAH'], - ['id_aset' => 4018, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '04', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN BBM LAINNYA'], - ['id_aset' => 4019, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'JARINGAN GAS LAINNYA'], - ['id_aset' => 4020, 'golongan' => '5', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'JARINGAN GAS LAINNYA'], - ['id_aset' => 4021, 'golongan' => '6', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ASET TETAP LAINNYA'], - ['id_aset' => 4022, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BAHAN PERPUSTAKAAN'], - ['id_aset' => 4023, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BAHAN PERPUSTAKAAN TERCETAK'], - ['id_aset' => 4024, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BUKU'], - ['id_aset' => 4025, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'MONOGRAF'], - ['id_aset' => 4026, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'REFERENSI'], - ['id_aset' => 4027, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BUKU LAINNYA'], - ['id_aset' => 4028, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'SERIAL'], - ['id_aset' => 4029, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SURAT KABAR'], - ['id_aset' => 4030, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MAJALAH'], - ['id_aset' => 4031, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'BULETIN'], - ['id_aset' => 4032, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'LAPORAN'], - ['id_aset' => 4033, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'SERIAL LAINNYA'], - ['id_aset' => 4034, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'TERCETAK LAINNYA'], - ['id_aset' => 4035, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BAHAN PERPUSTAKAAN TERCETAK LAINNYA'], - ['id_aset' => 4036, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BAHAN PERPUSTAKAAN TEREKAM DAN BENTUK MIKRO'], - ['id_aset' => 4037, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'AUDIO VISUAL'], - ['id_aset' => 4038, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'KASET'], - ['id_aset' => 4039, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'VIDEO'], - ['id_aset' => 4040, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'CD/VCD/DVD/LD'], - ['id_aset' => 4041, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'PITA FILM'], - ['id_aset' => 4042, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'PITA SUARA'], - ['id_aset' => 4043, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'PIRINGAN HITAM'], - ['id_aset' => 4044, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '028', 'nama' => 'PETA DIGITAL'], - ['id_aset' => 4045, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'AUDIO VISUAL LAINNYA'], - ['id_aset' => 4046, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'BENTUK MIKRO (MICROFORM)'], - ['id_aset' => 4047, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'MIKROFILM'], - ['id_aset' => 4048, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'MIKROFISCH'], - ['id_aset' => 4049, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'SLIDE'], - ['id_aset' => 4050, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'BENTUK MIKRO/MIKROFORM LAINNYA'], - ['id_aset' => 4051, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'TEREKAM DAN BENTUK MIKRO LAINNYA'], - ['id_aset' => 4052, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BAHAN PERPUSTAKAAN TEREKAM DAN BENTUK MIKRO LAINNYA'], - ['id_aset' => 4053, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"KARTOGRAFI'], - ['id_aset' => 4054, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BAHAN KARTOGRAFI'], - ['id_aset' => 4055, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PETA (MAP)'], - ['id_aset' => 4056, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'ATLAS'], - ['id_aset' => 4057, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'BLUE PRINT'], - ['id_aset' => 4058, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'BOLA DUNIA (GLOBE)'], - ['id_aset' => 4059, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'BAHAN KARTOGRAFI LAINNYA'], - ['id_aset' => 4060, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'NASKAH (MANUSKRIP) / ASLI'], - ['id_aset' => 4061, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN KERTAS'], - ['id_aset' => 4062, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN DAUN'], - ['id_aset' => 4063, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN KAYU'], - ['id_aset' => 4064, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN BAMBU'], - ['id_aset' => 4065, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN KULIT KAYU'], - ['id_aset' => 4066, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN KULIT BINATANG'], - ['id_aset' => 4067, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN TULANG/TANDUK'], - ['id_aset' => 4068, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN TEMPURUNG'], - ['id_aset' => 4069, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'NASKAH/MANUSKRIP BERBAHAN LAINNYA'], - ['id_aset' => 4070, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'LUKISAN DAN UKIRAN'], - ['id_aset' => 4071, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'LUKISAN KANVAS'], - ['id_aset' => 4072, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => '\"LUKISAN BATU'], - ['id_aset' => 4073, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'UKIRAN KAYU DAN SEJENISNYA'], - ['id_aset' => 4074, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '004', 'nama' => 'UKIRAN LOGAM DAN SEJENISNYA'], - ['id_aset' => 4075, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '005', 'nama' => 'UKIRAN BATU DAN SEJENISNYA'], - ['id_aset' => 4076, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'UKIRAN DAN LUKISAN LAINNYA'], - ['id_aset' => 4077, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => '\"KARTOGRAFI'], - ['id_aset' => 4078, 'golongan' => '6', 'bidang' => '01', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => '\"KARTOGRAFI'], - ['id_aset' => 4079, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BARANG BERCORAK KESENIAN/KEBUDAYAAN/OLAHRAGA'], - ['id_aset' => 4080, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BARANG BERCORAK KESENIAN'], - ['id_aset' => 4081, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT MUSIK'], - ['id_aset' => 4082, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'ALAT MUSIK TRADISIONAL/DAERAH'], - ['id_aset' => 4083, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'ALAT MUSIK MODERN/BAND'], - ['id_aset' => 4084, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT MUSIK LAINNYA'], - ['id_aset' => 4085, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'LUKISAN'], - ['id_aset' => 4086, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'LUKISAN CAT AIR'], - ['id_aset' => 4087, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'SULAMAN / TEMPELAN'], - ['id_aset' => 4088, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'LUKISAN CAT MINYAK'], - ['id_aset' => 4089, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'LUKISAN BULU'], - ['id_aset' => 4090, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'SENI RELIEF'], - ['id_aset' => 4091, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'LUKISAN LAINNYA'], - ['id_aset' => 4092, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT PERAGA KESENIAN'], - ['id_aset' => 4093, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'WAYANG GOLEK'], - ['id_aset' => 4094, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'WAYANG KULIT'], - ['id_aset' => 4095, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT PERAGA KESENIAN LAINNYA'], - ['id_aset' => 4096, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'BARANG BERCORAK KESENIAN LAINNYA'], - ['id_aset' => 4097, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'BARANG BERCORAK KESENIAN LAINNYA'], - ['id_aset' => 4098, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BERCORAK KEBUDAYAAN'], - ['id_aset' => 4099, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'PAHATAN'], - ['id_aset' => 4100, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PAHATAN BATU'], - ['id_aset' => 4101, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'PAHATAN KAYU'], - ['id_aset' => 4102, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PAHATAN LOGAM'], - ['id_aset' => 4103, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'PAHATAN LAINNYA'], - ['id_aset' => 4104, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => '\"MAKET'], - ['id_aset' => 4105, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'MAKET/MINIATUR/REPLIKA'], - ['id_aset' => 4106, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'FOTO DOKUMEN'], - ['id_aset' => 4107, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'NASKAH KUNO'], - ['id_aset' => 4108, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '004', 'nama' => 'MATA UANG/ NUMISMATIK'], - ['id_aset' => 4109, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '005', 'nama' => 'PERHIASAN'], - ['id_aset' => 4110, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '006', 'nama' => 'BARANG KERAMIK/ GERABAH'], - ['id_aset' => 4111, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '007', 'nama' => 'ARCA/ PATUNG'], - ['id_aset' => 4112, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '008', 'nama' => 'BENDA KUNO/ UNIK'], - ['id_aset' => 4113, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '009', 'nama' => 'FOSIL'], - ['id_aset' => 4114, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '010', 'nama' => 'MUMY'], - ['id_aset' => 4115, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'MAKET DAN FOTO DOKUMEN LAINNYA'], - ['id_aset' => 4116, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'ALAT BERCORAK KEBUDAYAAN LAINNYA'], - ['id_aset' => 4117, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'ALAT BERCORAK KEBUDAYAAN LAINNYA'], - ['id_aset' => 4118, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANDA PENGHARGAAN BIDANG OLAH RAGA'], - ['id_aset' => 4119, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANDA PENGHARGAAN'], - ['id_aset' => 4120, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PIALA'], - ['id_aset' => 4121, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'MEDALI'], - ['id_aset' => 4122, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PIAGAM'], - ['id_aset' => 4123, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANDA PENGHARGAAN LAINNYA'], - ['id_aset' => 4124, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'TANDA PENGHARGAAN BIDANG OLAH RAGA LAINNYA'], - ['id_aset' => 4125, 'golongan' => '6', 'bidang' => '02', 'kelompok' => '03', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'TANDA PENGHARGAAN BIDANG OLAH RAGA LAINNYA'], - ['id_aset' => 4126, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN'], - ['id_aset' => 4127, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN PIARAAN'], - ['id_aset' => 4128, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN PENGAMAN'], - ['id_aset' => 4129, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'ANJING PELACAK'], - ['id_aset' => 4130, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'ANJING PENJAGA'], - ['id_aset' => 4131, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'HEWAN PENGAMAN LAINNYA'], - ['id_aset' => 4132, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN PENGANGKUT'], - ['id_aset' => 4133, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'GAJAH'], - ['id_aset' => 4134, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'KUDA (HEWAN PENGANGKUT)'], - ['id_aset' => 4135, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'HEWAN PENGANGKUT LAINNYA'], - ['id_aset' => 4136, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN PIARAAN LAINNYA'], - ['id_aset' => 4137, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '01', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'HEWAN PIARAAN LAINNYA'], - ['id_aset' => 4138, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TERNAK'], - ['id_aset' => 4139, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TERNAK POTONG'], - ['id_aset' => 4140, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BABI'], - ['id_aset' => 4141, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'DOMBA'], - ['id_aset' => 4142, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'KAMBING'], - ['id_aset' => 4143, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'KERBAU'], - ['id_aset' => 4144, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'SAPI POTONG'], - ['id_aset' => 4145, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TERNAK POTONG LAINNYA'], - ['id_aset' => 4146, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '000', 'nama' => 'TERNAK PERAH'], - ['id_aset' => 4147, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '001', 'nama' => 'SAPI PERAH'], - ['id_aset' => 4148, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '002', 'nama' => 'DOMBA PERAH'], - ['id_aset' => 4149, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '003', 'nama' => 'KAMBING PERAH'], - ['id_aset' => 4150, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '02', 'sub_sub_kelompok' => '999', 'nama' => 'TERNAK PERAH LAINNYA'], - ['id_aset' => 4151, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '000', 'nama' => 'TERNAK UNGGAS'], - ['id_aset' => 4152, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '001', 'nama' => 'AYAM'], - ['id_aset' => 4153, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '002', 'nama' => 'BURUNG'], - ['id_aset' => 4154, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '003', 'nama' => 'ITIK'], - ['id_aset' => 4155, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '03', 'sub_sub_kelompok' => '999', 'nama' => 'TERNAK UNGGAS LAINNYA'], - ['id_aset' => 4156, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '000', 'nama' => 'TERNAK LAINNYA'], - ['id_aset' => 4157, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '02', 'sub_kelompok' => '99', 'sub_sub_kelompok' => '999', 'nama' => 'TERNAK LAINNYA'], - ['id_aset' => 4158, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN LAINNYA'], - ['id_aset' => 4159, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'HEWAN LAINNYA'], - ['id_aset' => 4160, 'golongan' => '6', 'bidang' => '03', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'HEWAN LAINNYA'], - ['id_aset' => 4161, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'IKAN'], - ['id_aset' => 4162, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'IKAN BERSIRIP (PISCES/IKAN BERSIRIP)'], - ['id_aset' => 4163, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'IKAN BUDIDAYA'], - ['id_aset' => 4164, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'IKAN AIR TAWAR BUDIDAYA'], - ['id_aset' => 4165, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'IKAN AIR LAUT BUDIDAYA'], - ['id_aset' => 4166, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'IKAN AIR PAYAU BUDIDAYA'], - ['id_aset' => 4167, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'IKAN HIAS AIR TAWAR BUDIDAYA'], - ['id_aset' => 4168, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'IKAN HIAS AIR PAYAU/LAUT BUDIDAYA'], - ['id_aset' => 4169, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'IKAN BUDIDAYA LAINNYA'], - ['id_aset' => 4170, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"CRUSTEA (UDANG'], - ['id_aset' => 4171, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => '\"CRUSTEA BUDIDAYA (UDANG'], - ['id_aset' => 4172, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'UDANG'], - ['id_aset' => 4173, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'RAJUNGAN'], - ['id_aset' => 4174, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'KEPITING'], - ['id_aset' => 4175, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '02', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => '\"CRUSTEA (UDANG'], - ['id_aset' => 4176, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"MOLLUSCA (KERANG'], - ['id_aset' => 4177, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => '\"MOLLUSCA BUDIDAYA (KERANG'], - ['id_aset' => 4178, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'KERANG'], - ['id_aset' => 4179, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TIRAM'], - ['id_aset' => 4180, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'CUMI-CUMI'], - ['id_aset' => 4181, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'GURITA'], - ['id_aset' => 4182, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'SIPUT'], - ['id_aset' => 4183, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '03', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => '\"MOLLUSCA (KERANG'], - ['id_aset' => 4184, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'COELENTERATA (UBUR-UBUR DAN SEBANGSANYA)'], - ['id_aset' => 4185, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'COELENTERATA BUDIDAYA (UBUR-UBUR DAN SEBANGSANYA)'], - ['id_aset' => 4186, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'UBUR-UBUR BUDIDAYA'], - ['id_aset' => 4187, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '04', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'COELENTERATA (UBUR-UBUR DAN SEBANGSANYA) LAINNYA'], - ['id_aset' => 4188, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '05', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"ECHINODERMATA (TRIPANG'], - ['id_aset' => 4189, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => '\"ECHINODERMATA BUDIDAYA (TRIPANG'], - ['id_aset' => 4190, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TERIPANG'], - ['id_aset' => 4191, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'BULU BABI'], - ['id_aset' => 4192, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '05', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => '\"ECHINODERMATA (TRIPANG'], - ['id_aset' => 4193, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '06', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'AMPHIBIA (KODOK DAN SEBANGSANYA)'], - ['id_aset' => 4194, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'AMPHIBIA BUDIDAYA (KODOK DAN SEBANGSANYA)'], - ['id_aset' => 4195, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'KODOK'], - ['id_aset' => 4196, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'SEBANGSA KODOK'], - ['id_aset' => 4197, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '06', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'AMPHIBIA (KODOK DAN SEBANGSANYA) LAINNYA'], - ['id_aset' => 4198, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"REPTILIA (BUAYA'], - ['id_aset' => 4199, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => '\"REPTILIA BUDIDAYA (BUAYA'], - ['id_aset' => 4200, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PENYU'], - ['id_aset' => 4201, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'KURA-KURA'], - ['id_aset' => 4202, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'BIAWAK'], - ['id_aset' => 4203, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'ULAR AIR'], - ['id_aset' => 4204, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '07', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => '\"REPTILIA (BUAYA'], - ['id_aset' => 4205, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => '\"MAMMALIA (PAUS'], - ['id_aset' => 4206, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => '\"MAMMALIA BUDIDAYA (PAUS'], - ['id_aset' => 4207, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'PAUS'], - ['id_aset' => 4208, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'LUMBA-LUMBA'], - ['id_aset' => 4209, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'PESUT'], - ['id_aset' => 4210, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'DUYUNG'], - ['id_aset' => 4211, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '08', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => '\"MAMMALIA (PAUS'], - ['id_aset' => 4212, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '09', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ALGAE (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR)'], - ['id_aset' => 4213, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ALGAE BUDIDAYA (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR)'], - ['id_aset' => 4214, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'RUMPUT LAUT'], - ['id_aset' => 4215, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR'], - ['id_aset' => 4216, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '09', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ALGAE (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR) LAINNYA'], - ['id_aset' => 4217, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '10', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'BIOTA PERAIRAN LAINNYA'], - ['id_aset' => 4218, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '10', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'BUDIDAYA BIOTA PERAIRAN LAINNYA'], - ['id_aset' => 4219, 'golongan' => '6', 'bidang' => '04', 'kelompok' => '10', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'BIOTA PERAIRAN LAINNYA'], - ['id_aset' => 4220, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAMAN'], - ['id_aset' => 4221, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'TANAMAN'], - ['id_aset' => 4222, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'TANAMAN'], - ['id_aset' => 4223, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAMAN KERAS'], - ['id_aset' => 4224, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'TANAMAN INDUSTRI'], - ['id_aset' => 4225, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'TANAMAN PERKEBUNAN'], - ['id_aset' => 4226, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => 'TANAMAN HORTIKULTURA'], - ['id_aset' => 4227, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'TANAMAN PANGAN'], - ['id_aset' => 4228, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '006', 'nama' => 'TANAMAN HIAS'], - ['id_aset' => 4229, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '007', 'nama' => 'TANAMAN OBAT'], - ['id_aset' => 4230, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '008', 'nama' => 'TANAMAN PLASMA'], - ['id_aset' => 4231, 'golongan' => '6', 'bidang' => '05', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'TANAMAN LAINNYA'], - ['id_aset' => 4232, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ASET TETAP DALAM RENOVASI'], - ['id_aset' => 4233, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'ASET TETAP DALAM RENOVASI'], - ['id_aset' => 4234, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'ASET TETAP DALAM RENOVASI'], - ['id_aset' => 4235, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH DALAM RENOVASI'], - ['id_aset' => 4236, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN DAN MESIN DALAM RENOVASI'], - ['id_aset' => 4237, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG DAN BANGUNAN DALAM RENOVASI'], - ['id_aset' => 4238, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => '\"JALAN'], - ['id_aset' => 4239, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'ASET TETAP LAINNYA DALAM RENOVASI'], - ['id_aset' => 4240, 'golongan' => '6', 'bidang' => '06', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'ASET TETAP DALAM RENOVASI LAINNYA'], - ['id_aset' => 4241, 'golongan' => '7', 'bidang' => '00', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'KONSTRUKSI DALAM PENGERJAAN'], - ['id_aset' => 4242, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '00', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'KONSTRUKSI DALAM PENGERJAAN'], - ['id_aset' => 4243, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '00', 'sub_sub_kelompok' => '000', 'nama' => 'KONSTRUKSI DALAM PENGERJAAN'], - ['id_aset' => 4244, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '000', 'nama' => 'KONSTRUKSI DALAM PENGERJAAN'], - ['id_aset' => 4245, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '001', 'nama' => 'TANAH DALAM PENGERJAAN'], - ['id_aset' => 4246, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '002', 'nama' => 'PERALATAN DAN MESIN DALAM PENGERJAAN'], - ['id_aset' => 4247, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '003', 'nama' => 'GEDUNG DAN BANGUNAN DALAM PENGERJAAN'], - ['id_aset' => 4248, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '004', 'nama' => '\"JALAN'], - ['id_aset' => 4249, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '005', 'nama' => 'ASET TETAP LAINNYA DALAM PENGERJAAN'], - ['id_aset' => 4250, 'golongan' => '7', 'bidang' => '01', 'kelompok' => '01', 'sub_kelompok' => '01', 'sub_sub_kelompok' => '999', 'nama' => 'KONSTRUKSI DALAM PENGERJAAN LAINNYA'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_buku_admin() - { - DB::statement(" - CREATE TABLE `kader_pemberdayaan_masyarakat` ( - `id` int(12) unsigned NOT NULL AUTO_INCREMENT, - `penduduk_id` int(12) NOT NULL, - `kursus` text DEFAULT NULL, - `bidang` text DEFAULT NULL, - `keterangan` text DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_keuangan() - { - DB::statement(" - CREATE TABLE `keuangan_manual_ref_bidang` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Kd_Bid` varchar(50) NOT NULL, - `Nama_Bidang` varchar(250) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('keuangan_manual_ref_bidang')->insert([ - ['id' => 1, 'Kd_Bid' => '00.0000.01', 'Nama_Bidang' => 'BIDANG PENYELENGGARAN PEMERINTAHAN DESA'], - ['id' => 2, 'Kd_Bid' => '00.0000.02', 'Nama_Bidang' => 'BIDANG PELAKSANAAN PEMBANGUNAN DESA'], - ['id' => 3, 'Kd_Bid' => '00.0000.03', 'Nama_Bidang' => 'BIDANG PEMBINAAN KEMASYARAKATAN'], - ['id' => 4, 'Kd_Bid' => '00.0000.04', 'Nama_Bidang' => 'BIDANG PEMBERDAYAAN MASYARAKAT'], - ['id' => 5, 'Kd_Bid' => '00.0000.05', 'Nama_Bidang' => 'BIDANG PENANGGULANGAN BENCANA, DARURAT DAN MENDESAK DESA'], - ]); - - DB::statement(" - CREATE TABLE `keuangan_manual_ref_kegiatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `ID_Keg` varchar(100) NOT NULL, - `Nama_Kegiatan` varchar(250) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('keuangan_manual_ref_kegiatan')->insert([ - ['id' => 1, 'ID_Keg' => '01.01.01.', 'Nama_Kegiatan' => 'Penyediaan Penghasilan Tetap dan Tunjangan Kepala Desa'], - ['id' => 2, 'ID_Keg' => '01.01.02.', 'Nama_Kegiatan' => 'Penyediaan Penghasilan Tetap dan Tunjangan Perangkat Desa'], - ['id' => 3, 'ID_Keg' => '01.01.03.', 'Nama_Kegiatan' => 'Penyediaan Jaminan Sosial bagi Kepala Desa dan Perangkat Desa'], - ['id' => 4, 'ID_Keg' => '01.01.04.', 'Nama_Kegiatan' => 'Penyediaan Operasional Pemerintah Desa (ATK, Honor PKPKD dan PPKD dll)'], - ['id' => 5, 'ID_Keg' => '01.01.05.', 'Nama_Kegiatan' => 'Penyediaan Tunjangan BPD'], - ['id' => 6, 'ID_Keg' => '01.01.06.', 'Nama_Kegiatan' => 'Penyediaan Operasional BPD (rapat, ATK, Makan Minum, Pakaian Seragam, Listrik dll)'], - ['id' => 7, 'ID_Keg' => '01.01.07.', 'Nama_Kegiatan' => 'Penyediaan Insentif/Operasional RT/RW'], - ['id' => 8, 'ID_Keg' => '01.01.92', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Siltap dan Operasional Pemerintahan Desa'], - ['id' => 9, 'ID_Keg' => '01.02.01.', 'Nama_Kegiatan' => 'Penyediaan Sarana (Aset Tetap) Perkantoran/Pemerintahan'], - ['id' => 10, 'ID_Keg' => '01.02.02.', 'Nama_Kegiatan' => 'Pemeliharaan Gedung/Prasarana Kantor Desa'], - ['id' => 11, 'ID_Keg' => '01.02.03.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Gedung/Prasarana Kantor Desa **)'], - ['id' => 12, 'ID_Keg' => '01.02.90', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Sarana Prasarana Pemerintahan Desa'], - ['id' => 13, 'ID_Keg' => '01.03.01.', 'Nama_Kegiatan' => 'Pelayanan Administrasi Umum dan Kependudukan'], - ['id' => 14, 'ID_Keg' => '01.03.02.', 'Nama_Kegiatan' => 'Penyusunan, Pendataan, dan Pemutakhiran Profil Desa **)'], - ['id' => 15, 'ID_Keg' => '01.03.03.', 'Nama_Kegiatan' => 'Pengelolaan Adminstrasi dan Kearsipan Pemerintahan Desa'], - ['id' => 16, 'ID_Keg' => '01.03.04.', 'Nama_Kegiatan' => 'Penyuluhan dan Penyadaran Masyarakat tentang Kependudukan dan Capil'], - ['id' => 17, 'ID_Keg' => '01.03.05.', 'Nama_Kegiatan' => 'Pemetaan dan Analisis Kemiskinan Desa secara Partisipatif'], - ['id' => 18, 'ID_Keg' => '01.03.90', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Administrasi Kependudukan, Capil, Statistik dan Kearsipan'], - ['id' => 19, 'ID_Keg' => '01.04.01.', 'Nama_Kegiatan' => 'Penyelenggaraan Musyawarah Perencanaan Desa/Pembahasan APBDes (Reguler)'], - ['id' => 20, 'ID_Keg' => '01.04.02.', 'Nama_Kegiatan' => 'Penyelenggaraan Musyawaran Desa Lainnya (Musdus, rembug desa Non Reguler)'], - ['id' => 21, 'ID_Keg' => '01.04.03.', 'Nama_Kegiatan' => 'Penyusunan Dokumen Perencanaan Desa (RPJMDesa/RKPDesa dll)'], - ['id' => 22, 'ID_Keg' => '01.04.04.', 'Nama_Kegiatan' => 'Penyusunan Dokumen Keuangan Desa (APBDes, APBDes Perubahan, LPJ dll)'], - ['id' => 23, 'ID_Keg' => '01.04.05.', 'Nama_Kegiatan' => 'Pengelolaan Administrasi/ Inventarisasi/Penilaian Aset Desa'], - ['id' => 24, 'ID_Keg' => '01.04.06.', 'Nama_Kegiatan' => 'Penyusunan Kebijakan Desa (Perdes/Perkades selain Perencanaan/Keuangan)'], - ['id' => 25, 'ID_Keg' => '01.04.07.', 'Nama_Kegiatan' => 'Penyusunan Laporan Kepala Desa, LPPDesa dan Informasi Kepada Masyarakat'], - ['id' => 26, 'ID_Keg' => '01.04.08.', 'Nama_Kegiatan' => 'Pengembangan Sistem Informasi Desa'], - ['id' => 27, 'ID_Keg' => '01.04.09.', 'Nama_Kegiatan' => 'Koordinasi/Kerjasama Penyelenggaraan Pemerintahan & Pembangunan Desa'], - ['id' => 28, 'ID_Keg' => '01.04.10.', 'Nama_Kegiatan' => 'Dukungan & Sosialisasi Pelaksanaan Pilkades, Pemilihan Ka. Kewilayahan & BPD'], - ['id' => 29, 'ID_Keg' => '01.04.11.', 'Nama_Kegiatan' => 'Penyelenggaran Lomba antar Kewilayahan & Pengiriman Kontingen dlm Lomdes'], - ['id' => 30, 'ID_Keg' => '01.04.97', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Tata Praja Pemerintahan, Perencanaan, Keuangan & Pelaporan'], - ['id' => 31, 'ID_Keg' => '01.05.01.', 'Nama_Kegiatan' => 'Sertifikasi Tanah Kas Desa'], - ['id' => 32, 'ID_Keg' => '01.05.02.', 'Nama_Kegiatan' => 'Administrasi Pertanahan (Pendaftaran Tanah dan Pemberian Registrasi Agenda Pertanahan)'], - ['id' => 33, 'ID_Keg' => '01.05.03.', 'Nama_Kegiatan' => 'Fasilitasi Sertifikasi Tanah untuk Masyarakat Miskin'], - ['id' => 34, 'ID_Keg' => '01.05.04.', 'Nama_Kegiatan' => 'Kegiatan Mediasi Konflik Pertanahan'], - ['id' => 35, 'ID_Keg' => '01.05.05.', 'Nama_Kegiatan' => 'Kegiatan Penyuluhan Pertanahan'], - ['id' => 36, 'ID_Keg' => '01.05.06.', 'Nama_Kegiatan' => 'Adminstrasi Pajak Bumi dan Bangunan (PBB)'], - ['id' => 37, 'ID_Keg' => '01.05.07.', 'Nama_Kegiatan' => 'Penentuan/Penegasan Batas/patok Tanah Kas Desa'], - ['id' => 38, 'ID_Keg' => '01.05.94', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Pertanahan'], - ['id' => 39, 'ID_Keg' => '02.01.01', 'Nama_Kegiatan' => 'Penyelenggaran PAUD/TK/TPA/TKA/TPQ/Madrasah NonFormal Milik Desa (Honor, Pakaian dll)'], - ['id' => 40, 'ID_Keg' => '02.01.02.', 'Nama_Kegiatan' => 'Dukungan Penyelenggaran PAUD (APE, Sarana PAUD dst)'], - ['id' => 41, 'ID_Keg' => '02.01.03.', 'Nama_Kegiatan' => 'Penyuluhan dan Pelatihan Pendidikan Bagi Masyarakat'], - ['id' => 42, 'ID_Keg' => '02.01.04.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana Prasarana Perpustakaan/Taman Bacaan/Sanggar Belajar Milik Desa'], - ['id' => 43, 'ID_Keg' => '02.01.05.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana Prasarana PAUD/TK/TPA/TKA/TPQ/Madrasah Nonformal Milik Desa'], - ['id' => 44, 'ID_Keg' => '02.01.08.', 'Nama_Kegiatan' => 'Pengelolaan Perpustakaan Milik Desa (Pengadaan Buku, Honor, Taman Baca)'], - ['id' => 45, 'ID_Keg' => '02.01.09.', 'Nama_Kegiatan' => 'Pengembangan dan Pembinaan Sanggar Seni dan Belajar'], - ['id' => 46, 'ID_Keg' => '02.01.10.', 'Nama_Kegiatan' => 'Dukungan Pendidikan bagi Siswa Miskin/Berprestasi'], - ['id' => 47, 'ID_Keg' => '02.01.92', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Pendidikan'], - ['id' => 48, 'ID_Keg' => '02.02.01.', 'Nama_Kegiatan' => 'Penyelenggaraan Pos Kesehatan Desa/Polindes Milik Desa (obat, Insentif, KB, dsb)'], - ['id' => 49, 'ID_Keg' => '02.02.02.', 'Nama_Kegiatan' => 'Penyelenggaraan Posyandu (Mkn Tambahan, Kls Bumil, Lamsia, Insentif)'], - ['id' => 50, 'ID_Keg' => '02.02.03.', 'Nama_Kegiatan' => 'Penyuluhan dan Pelatihan Bidang Kesehatan (Untuk Masy, Tenaga dan Kader Kesehatan dll)'], - ['id' => 51, 'ID_Keg' => '02.02.04.', 'Nama_Kegiatan' => 'Penyelenggaraan Desa Siaga Kesehatan'], - ['id' => 52, 'ID_Keg' => '02.02.05.', 'Nama_Kegiatan' => 'Pembinaan Palang Merah Remaja (PMR) Tingkat Desa'], - ['id' => 53, 'ID_Keg' => '02.02.06.', 'Nama_Kegiatan' => 'Pengasuhan Bersama atau Bina Keluarga Balita (BKB)'], - ['id' => 54, 'ID_Keg' => '02.02.07.', 'Nama_Kegiatan' => 'Pembinaan dan Pengawasan Upaya Kesehatan Tradisional'], - ['id' => 55, 'ID_Keg' => '02.02.08.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana Prasarana Posyandu/Polindes/PKD'], - ['id' => 56, 'ID_Keg' => '02.03.01.', 'Nama_Kegiatan' => 'Pemeliharaan Jalan Desa'], - ['id' => 57, 'ID_Keg' => '02.03.02.', 'Nama_Kegiatan' => 'Pemeliharaan Jalan Lingkungan Pemukiman/Gang'], - ['id' => 58, 'ID_Keg' => '02.03.03.', 'Nama_Kegiatan' => 'Pemeliharaan Jalan Usaha Tani'], - ['id' => 59, 'ID_Keg' => '02.03.04.', 'Nama_Kegiatan' => 'Pemeliharaan Jembatan Desa'], - ['id' => 60, 'ID_Keg' => '02.03.05.', 'Nama_Kegiatan' => 'Pemeliharaan Prasarana Jalan Desa (Gorong-gorong/Selokan/Parit/Drainase dll)'], - ['id' => 61, 'ID_Keg' => '02.03.06.', 'Nama_Kegiatan' => 'Pemeliharaan Gedung/Prasarana Balai Desa/Balai Kemasyarakatan'], - ['id' => 62, 'ID_Keg' => '02.03.07.', 'Nama_Kegiatan' => 'Pemeliharaan Pemakaman /Situs Bersejarah/Petilasan Milik Desa'], - ['id' => 63, 'ID_Keg' => '02.03.08.', 'Nama_Kegiatan' => 'Pemeliharaan Embung Milik Desa'], - ['id' => 64, 'ID_Keg' => '02.03.09.', 'Nama_Kegiatan' => 'Pemelharaan Monumen/Gapura/Batas Desa'], - ['id' => 65, 'ID_Keg' => '02.03.10.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitas/Peningkatan/Pengerasan Jalan Desa **)'], - ['id' => 66, 'ID_Keg' => '02.03.12.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan/Pengerasan Jalan Usaha Tani **)'], - ['id' => 67, 'ID_Keg' => '02.03.13.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan/Pengerasan Jembatan Milik Desa **)'], - ['id' => 68, 'ID_Keg' => '02.03.14.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Prasarana Jalan Desa (Gorong, selokan dll)'], - ['id' => 69, 'ID_Keg' => '02.03.15.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Balai Desa/Balai Kemasyarakatan **)'], - ['id' => 70, 'ID_Keg' => '02.03.17.', 'Nama_Kegiatan' => 'Pembuatan/Pemutakhiran Peta Wilayah dan Sosial Desa **)'], - ['id' => 71, 'ID_Keg' => '02.03.18.', 'Nama_Kegiatan' => 'Penyusunan Dokumen Perencanaan Tata Ruang Desa'], - ['id' => 72, 'ID_Keg' => '02.03.19.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Embung Desa **)'], - ['id' => 73, 'ID_Keg' => '02.03.20.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Monumen/Gapura/Batas Desa **)'], - ['id' => 74, 'ID_Keg' => '02.04.01.', 'Nama_Kegiatan' => 'Dukungan Pelaksanaan Program Pembangunan/Rehab Rumah Tidak Layak Huni GAKIN'], - ['id' => 75, 'ID_Keg' => '02.04.90', 'Nama_Kegiatan' => 'Dukungan Pelaksanaan Program Jambanisasi untuk Keluarga Miskin'], - ['id' => 76, 'ID_Keg' => '02.04.02.', 'Nama_Kegiatan' => 'Pemeliharaan Sumur Resapan Milik Desa'], - ['id' => 77, 'ID_Keg' => '02.04.03.', 'Nama_Kegiatan' => 'Pemeliharaan Sumber Air Bersih Milik Desa (Mata Air, Penampung Air, Sumur Bor dll)'], - ['id' => 78, 'ID_Keg' => '02.04.04.', 'Nama_Kegiatan' => 'Pemeliharaan Sambungan Air Bersih ke Rumah Tangga (Pipanisasi dll)'], - ['id' => 79, 'ID_Keg' => '02.04.05.', 'Nama_Kegiatan' => 'Pemeliharaan Sanitasi Pemukiman (Gorong-gorong, Selokan, Parit diluar Prasarana Jalan))'], - ['id' => 80, 'ID_Keg' => '02.04.06.', 'Nama_Kegiatan' => 'Pemeliharaan Fasilitas Jamban Umum/MCK Umum dll'], - ['id' => 81, 'ID_Keg' => '02.04.08.', 'Nama_Kegiatan' => 'Pemeliharaan Sistem Pembuangan Air Limbah (Drainase, Air limbah Rumah Tangga)'], - ['id' => 82, 'ID_Keg' => '02.04.09.', 'Nama_Kegiatan' => 'Pemeliharaan Taman/Taman Bermain Anak Milik Desa'], - ['id' => 83, 'ID_Keg' => '02.04.10.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sumur Resapan **)'], - ['id' => 84, 'ID_Keg' => '02.04.11.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sumber Air Bersih Milik Desa **)'], - ['id' => 85, 'ID_Keg' => '02.04.12.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sambungan Air Bersih ke Rumah Tangga **)'], - ['id' => 86, 'ID_Keg' => '02.04.13.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sanitasi Permukiman **)'], - ['id' => 87, 'ID_Keg' => '02.04.14.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitas/Peningkatan Fasilitas Jamban Umum/MCK umum, dll **)'], - ['id' => 88, 'ID_Keg' => '02.04.15.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Fasilitas Pengelolaan Sampah **)'], - ['id' => 89, 'ID_Keg' => '02.04.16.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sistem Pembuangan Air Limbah **)'], - ['id' => 90, 'ID_Keg' => '02.04.17.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Taman/Taman Bermain Anak Milik Desa **)'], - ['id' => 91, 'ID_Keg' => '02.04.94', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Perumahan Rakyat dan Kawasan Pemukiman'], - ['id' => 92, 'ID_Keg' => '02.05.01.', 'Nama_Kegiatan' => 'Pengelolaan Hutan Milik Desa'], - ['id' => 93, 'ID_Keg' => '02.05.02.', 'Nama_Kegiatan' => 'Pengelolaan Lingkungan Hidup Milik Desa'], - ['id' => 94, 'ID_Keg' => '02.05.92', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Kehutanan dan Lingkungan Hidup'], - ['id' => 95, 'ID_Keg' => '02.06.01.', 'Nama_Kegiatan' => 'Pembuatan Rambu-rambu di Jalan Desa'], - ['id' => 96, 'ID_Keg' => '02.06.02.', 'Nama_Kegiatan' => 'Penyelenggaraan Informasi Publik Desa (Poster, Baliho Dll)'], - ['id' => 97, 'ID_Keg' => '02.06.03.', 'Nama_Kegiatan' => 'Pembuatan dan Pengelolaan Jaringan/Instalasi Komunikasi dan Informasi Lokal Desa'], - ['id' => 98, 'ID_Keg' => '02.06.92', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Perhubungan, Komunikasi dan Informatika'], - ['id' => 99, 'ID_Keg' => '02.07.01.', 'Nama_Kegiatan' => 'Pemeiliharaan Sarana dan Prasarana Energi Alternatif Desa'], - ['id' => 100, 'ID_Keg' => '02.07.02.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sarana & Prasarana Energi Alternatif Desa'], - ['id' => 101, 'ID_Keg' => '02.07.93', 'Nama_Kegiatan' => 'Pembangunan/pengadaan instalasi biogas/mesin pakan ternak/kandang ternak**'], - ['id' => 102, 'ID_Keg' => '02.08.01.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana dan Prasarana Pariwisata Milik Desa'], - ['id' => 103, 'ID_Keg' => '02.08.02.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sarana dan Prasarana Pariwisata Milik **)'], - ['id' => 104, 'ID_Keg' => '02.08.03.', 'Nama_Kegiatan' => 'Pengembangan Pariwisata Tingkat Desa'], - ['id' => 105, 'ID_Keg' => '02.08.91', 'Nama_Kegiatan' => 'Lain-Lain Kegiatan Sub Bidang Pariwisata'], - ['id' => 106, 'ID_Keg' => '03.01.01.', 'Nama_Kegiatan' => 'Pengadaan/Penyelenggaran Pos Keamanan Desa'], - ['id' => 107, 'ID_Keg' => '03.01.02.', 'Nama_Kegiatan' => 'Penguatan & Peningkatan Kapasitas Tenaga Keamanan/Ketertiban oleh Pemdes'], - ['id' => 108, 'ID_Keg' => '03.01.03.', 'Nama_Kegiatan' => 'Koordinasi Pembinaan Keamanan, Ketertiban & Perlindungan Masy. Skala Lokal Desa'], - ['id' => 109, 'ID_Keg' => '03.01.04.', 'Nama_Kegiatan' => 'Persiapan Kesiapsiagaan/Tanggap Bencana Skala Lokal Desa'], - ['id' => 110, 'ID_Keg' => '03.01.05.', 'Nama_Kegiatan' => 'Penyediaan Pos Kesiapsiagaan Bencana Skala Lokal Desa'], - ['id' => 111, 'ID_Keg' => '03.01.06.', 'Nama_Kegiatan' => 'Bantuan Hukum Untuk Aparatur Desa dan Masyarakat Miskin'], - ['id' => 112, 'ID_Keg' => '03.01.92', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Ketenteraman, Ketertiban Umum dan Perlindungan Masyarakat'], - ['id' => 113, 'ID_Keg' => '03.02.01.', 'Nama_Kegiatan' => 'Pembinaan Group Kesenian dan Kebudayaan Tingkat Desa'], - ['id' => 114, 'ID_Keg' => '03.02.02.', 'Nama_Kegiatan' => 'Pengiriman Kontingen Group Kesenian & Kebudayaan (Wakil Desa tkt. Kec/Kab/Kot)'], - ['id' => 115, 'ID_Keg' => '03.02.03.', 'Nama_Kegiatan' => 'Penyelenggaran Festival Kesenian, Adat/Kebudayaan, dan Kegamaan (HUT RI, Raya Keagamaan dll)'], - ['id' => 116, 'ID_Keg' => '03.02.04.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana Prasarana Kebudayaan, Rumah Adat dan Kegamaan Milik Desa'], - ['id' => 117, 'ID_Keg' => '03.02.05.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi Sarana Prasarana Kebudayaan/Rumah Adat/Kegamaan Milik Desa **)'], - ['id' => 118, 'ID_Keg' => '03.02.95', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Kebudayaan dan Keagamaan'], - ['id' => 119, 'ID_Keg' => '03.03.01.', 'Nama_Kegiatan' => 'Pengiriman Kontingen Kepemudaan & Olahraga Sebagai Wakil Desa tkt Kec/Kab/Kota'], - ['id' => 120, 'ID_Keg' => '03.03.02.', 'Nama_Kegiatan' => 'Penyelenggaraan Pelatihan Kepemudaan Tingkat Desa'], - ['id' => 121, 'ID_Keg' => '03.03.03.', 'Nama_Kegiatan' => 'Penyelenggaraan Festival/Lomba Kepemudaan dan Olaraga Tingkat Desa'], - ['id' => 122, 'ID_Keg' => '03.03.04.', 'Nama_Kegiatan' => 'Pemeliharaan Sarana dan Prasarana Kepemudaan dan Olahraga Milik Desa'], - ['id' => 123, 'ID_Keg' => '03.03.05.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Sarana dan Prasarana Kepemudaan & Olahraga Milik Desa'], - ['id' => 124, 'ID_Keg' => '03.03.06.', 'Nama_Kegiatan' => 'Pembinaan Karangtaruna/Klub Kepemudaan/Olahraga Tingkat Desa'], - ['id' => 125, 'ID_Keg' => '03.03.90', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Kepemudaan dan Olahraga'], - ['id' => 126, 'ID_Keg' => '03.04.01.', 'Nama_Kegiatan' => 'Pembinaan Lembaga Adat'], - ['id' => 127, 'ID_Keg' => '03.04.02.', 'Nama_Kegiatan' => 'Pembinaan LKMD/LPM/LPMD'], - ['id' => 128, 'ID_Keg' => '03.04.03.', 'Nama_Kegiatan' => 'Pembinaan PKK'], - ['id' => 129, 'ID_Keg' => '03.04.04.', 'Nama_Kegiatan' => 'Pelatihan Pembinaan Lembaga Kemasyarakatan'], - ['id' => 130, 'ID_Keg' => '03.04.92', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Kelembagaan Masyarakat'], - ['id' => 131, 'ID_Keg' => '04.01.01.', 'Nama_Kegiatan' => 'Pemeliharaan Karamba/Kolam Perikanan Darat Milik Desa'], - ['id' => 132, 'ID_Keg' => '04.01.02.', 'Nama_Kegiatan' => 'Pemeliharaan Pelabuhan Perikanan Sungai/Kecil Milik Desa'], - ['id' => 133, 'ID_Keg' => '04.01.03.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Karamba/Kolam Perikanan Darat Milik Desa'], - ['id' => 134, 'ID_Keg' => '04.01.04.', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Pelabuhan Perikanan Sungai/Kecil Milik Desa'], - ['id' => 135, 'ID_Keg' => '04.01.05.', 'Nama_Kegiatan' => 'Bantuan Perikanan (Bibit/Pakan/dll)'], - ['id' => 136, 'ID_Keg' => '04.01.06.', 'Nama_Kegiatan' => 'Bimtek/Pelatihan/Pengenalan TTG untuk Perikanan Darat/Nelayan **)'], - ['id' => 137, 'ID_Keg' => '04.01.94', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Kelautan dan Perikanan'], - ['id' => 138, 'ID_Keg' => '04.02.01.', 'Nama_Kegiatan' => 'Peningkatan Produksi Tanaman Pangan (alat produksi/pengelolaan/penggilingan)'], - ['id' => 139, 'ID_Keg' => '04.02.02.', 'Nama_Kegiatan' => 'Peningkatan Produksi Peternakan (alat produksi/pengelolaan/kandang)'], - ['id' => 140, 'ID_Keg' => '04.02.03.', 'Nama_Kegiatan' => 'Penguatan Ketahanan Pangan Tingkat Desa (Lumbung Desa dll)'], - ['id' => 141, 'ID_Keg' => '04.02.04.', 'Nama_Kegiatan' => 'Pemeliharaan Saluran Irigasi Tersier/Sederhana'], - ['id' => 142, 'ID_Keg' => '04.02.05.', 'Nama_Kegiatan' => 'Pelatihan/Bimtek/Pengenalan Tekonologi Tepat Guna untuk Pertanian/Peternakan'], - ['id' => 143, 'ID_Keg' => '04.02.06', 'Nama_Kegiatan' => 'Pembangunan Saluran Irigasi Tersier/Sederhana'], - ['id' => 144, 'ID_Keg' => '04.02.94', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Pertanian dan Peternakan'], - ['id' => 145, 'ID_Keg' => '04.03.01.', 'Nama_Kegiatan' => 'Peningkatan Kapasitas Kepala Desa'], - ['id' => 146, 'ID_Keg' => '04.03.02.', 'Nama_Kegiatan' => 'Peningkatan Kapatitas Perangkat Desa'], - ['id' => 147, 'ID_Keg' => '04.03.03.', 'Nama_Kegiatan' => 'Peningkatan Kapasitas BPD'], - ['id' => 148, 'ID_Keg' => '04.03.90', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Peningkatan Kapasitas Aparatur Desa'], - ['id' => 149, 'ID_Keg' => '04.04.01.', 'Nama_Kegiatan' => 'Pelatihan dan Penyuluhan Pemberdayaan Perempuan'], - ['id' => 150, 'ID_Keg' => '04.04.02.', 'Nama_Kegiatan' => 'Pelatihan dan Penyuluhan Perlindungan Anak'], - ['id' => 151, 'ID_Keg' => '04.04.03.', 'Nama_Kegiatan' => 'Pelatihan dan Penguatan Penyandang Difable (Penyandang Disabilitas)'], - ['id' => 152, 'ID_Keg' => '04.04.94', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Pemberdayaan Perempuan, Perlindungan Anak dan Keluarga'], - ['id' => 153, 'ID_Keg' => '04.05.01.', 'Nama_Kegiatan' => 'Pelatihan Manajemen Koperasi/KUD/UMKM'], - ['id' => 154, 'ID_Keg' => '04.05.02.', 'Nama_Kegiatan' => 'Pengembangan Sarana Prasarana Usaha Mikro, Kecil, Menengah dan Koperasi'], - ['id' => 155, 'ID_Keg' => '04.05.03.', 'Nama_Kegiatan' => 'Pengadaan Teknologi Tepat Guna Untuk Pengembangan Ekonomi Pedesaan Non Pertanian'], - ['id' => 156, 'ID_Keg' => '04.05.93', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Koperasi, Usaha Micro Kecil dan Menengah (UMKM)'], - ['id' => 157, 'ID_Keg' => '04.06.01.', 'Nama_Kegiatan' => 'Pembentukan BUM Desa (Persiapan dan Pembentukan Awal BUMDesa)'], - ['id' => 158, 'ID_Keg' => '04.06.02.', 'Nama_Kegiatan' => 'Pelatihan Pengelolaan BUM Desa (Pelatihan yg dilaksanakan oleh Pemdes)'], - ['id' => 159, 'ID_Keg' => '04.06.92', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Dukungan Penanaman Modal'], - ['id' => 160, 'ID_Keg' => '04.07.01.', 'Nama_Kegiatan' => 'Pemeliharaan Pasar Desa/Kios Milik Desa'], - ['id' => 161, 'ID_Keg' => '04.07.02.', 'Nama_Kegiatan' => 'Pembangunan/Rehab Pasar Desa/Kios Milik Desa'], - ['id' => 162, 'ID_Keg' => '04.07.03.', 'Nama_Kegiatan' => 'Pengembangan Industri Kecil Tingkat Desa'], - ['id' => 163, 'ID_Keg' => '04.07.04.', 'Nama_Kegiatan' => 'Pembentukan/Fasilitasi/Pelatihan/Pendampingan kelompok usaha ekonomi produktif'], - ['id' => 164, 'ID_Keg' => '04.07.92', 'Nama_Kegiatan' => 'Lain-lain Sub Bidang Perdagangan dan Perindustrian'], - ['id' => 165, 'ID_Keg' => '05.01.01.', 'Nama_Kegiatan' => 'Kegiatan Penanggulanan Bencana'], - ['id' => 166, 'ID_Keg' => '05.02.01.', 'Nama_Kegiatan' => 'Penanganan Keadaan Darurat'], - ['id' => 167, 'ID_Keg' => '05.03.01.', 'Nama_Kegiatan' => 'Penanganan Keadaan Mendesak'], - ['id' => 168, 'ID_Keg' => '01.01.90', 'Nama_Kegiatan' => 'Penyediaan Tali Asih Kepala Desa'], - ['id' => 169, 'ID_Keg' => '01.01.91', 'Nama_Kegiatan' => 'Penyediaan Tali Asih Perangkat Desa'], - ['id' => 170, 'ID_Keg' => '01.04.90', 'Nama_Kegiatan' => 'Penyusunan dan Penetapan Standar Satuan Harga Desa'], - ['id' => 171, 'ID_Keg' => '01.04.91', 'Nama_Kegiatan' => 'Pengisian/Penjaringan/Penyaringan Kepala Desa '], - ['id' => 172, 'ID_Keg' => '01.04.92', 'Nama_Kegiatan' => 'Pengisian/Penjaringan/Penyaringan BPD**'], - ['id' => 173, 'ID_Keg' => '01.04.93', 'Nama_Kegiatan' => 'Penyelenggaraan Pemilihan Kepala Desa Antar Waktu'], - ['id' => 174, 'ID_Keg' => '01.04.94', 'Nama_Kegiatan' => 'Penyelenggaraan Pengisian Perangkat Desa '], - ['id' => 175, 'ID_Keg' => '01.04.95', 'Nama_Kegiatan' => 'Penyelenggaraan Evaluasi Tingkat Perkembangan Desa '], - ['id' => 176, 'ID_Keg' => '01.04.96', 'Nama_Kegiatan' => 'Sosialisasi berbagai peraturan perundang-undangan di tingkat Desa'], - ['id' => 177, 'ID_Keg' => '01.05.90', 'Nama_Kegiatan' => 'Pengadaan/Pelepasan Tanah Kas Desa**'], - ['id' => 178, 'ID_Keg' => '01.05.91', 'Nama_Kegiatan' => 'Kompensasi/Ganti Rugi Lahan terdampak Pembangunan'], - ['id' => 179, 'ID_Keg' => '01.05.92', 'Nama_Kegiatan' => 'Penetapan dan penegasan batas Desa'], - ['id' => 180, 'ID_Keg' => '01.05.93', 'Nama_Kegiatan' => 'Penyusunan tata ruang Desa dan peta Desa'], - ['id' => 181, 'ID_Keg' => '02.01.90', 'Nama_Kegiatan' => 'Pengelolaan dan Pembinaan Anak Sekolah Melalui Pemberian Makanan Tambahan Anak Sekolah (PMTAS)'], - ['id' => 182, 'ID_Keg' => '02.01.91', 'Nama_Kegiatan' => 'Dukungan Sarana Prasana Pendidikan PAUD/TK/TPA/TKA/TPQ/Madrasah Non-Formal Bukan Milik Desa (dalam bentuk barang)'], - ['id' => 183, 'ID_Keg' => '02.02.90', 'Nama_Kegiatan' => 'Pengadaan/pembangunan/pengembangan/ pemeliharaan Sarana dan Prasarana Kesehatan/ Air Bersih /sanitasi/kebersihan lingkungan/jambanisasi/mandi, cuci, kakus (MCK) **'], - ['id' => 184, 'ID_Keg' => '02.02.91', 'Nama_Kegiatan' => 'Pemantauan dan Pencegahan Penyalahgunaan Narkoba dan Zat Adiktif Di Desa'], - ['id' => 185, 'ID_Keg' => '02.02.92', 'Nama_Kegiatan' => 'Fasilitasi Pelayanan Pencegahan dan Penanggulangan Penyakit Endemik, Menular dan Tidak Menular'], - ['id' => 186, 'ID_Keg' => '02.02.93', 'Nama_Kegiatan' => 'Pembangunan/Pengelolaan/Pemanfaatan Tanaman Obat Keluarga/Apotek Desa'], - ['id' => 187, 'ID_Keg' => '02.02.94', 'Nama_Kegiatan' => 'Fasilitasi Kegiatan Palang Merah Indonesia (PMI)'], - ['id' => 188, 'ID_Keg' => '02.02.95', 'Nama_Kegiatan' => 'Pengadaan/pembangunan/pengembangan/ pemeliharaan sarana prasarana alat bantu penyandang disabilitas/panti rehabilitasi penyandang disabilitas**'], - ['id' => 189, 'ID_Keg' => '02.02.96', 'Nama_Kegiatan' => 'Fasilitasi Pelayanan Kesehatan Bagi Masyarakat Miskin'], - ['id' => 190, 'ID_Keg' => '02.02.97', 'Nama_Kegiatan' => 'Penyelenggaraan Promosi Kesehatan dan Gerakan Hidup Bersih dan Sehat'], - ['id' => 191, 'ID_Keg' => '02.02.98', 'Nama_Kegiatan' => 'Pengadaan/pembangunan/pengembangan/pemeliharaan sarana prasarana mobil/kapal motor untuk ambulance Desa**'], - ['id' => 192, 'ID_Keg' => '02.02.99', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Kesehatan'], - ['id' => 193, 'ID_Keg' => '02.03.90', 'Nama_Kegiatan' => 'Pembangunan/pemeliharaan jalan/talud pengaman tebing/saluran irigasi/energi baru dan terbarukan/ pembangkit listrik tenaga mikrohidro/lapangan Desa / taman Desa/lingkungan permukiman masyarakat Desa**'], - ['id' => 194, 'ID_Keg' => '02.03.91', 'Nama_Kegiatan' => 'Pembangunan/Pengadaan/pengembangan/pemeliharaan sarana dan prasarana Jasa dan Industri Kecil/industri rumah tangga/mesin jahit/peralatan bengkel kendaraan bermotor/mesin bubut untuk mebeler; /pemasara'], - ['id' => 195, 'ID_Keg' => '02.03.92', 'Nama_Kegiatan' => 'Pembangunan kolam ikan dan pembenihan ikan/perahu penangkap ikan tempat pelelangan ikan/tempat pendaratan kapal penangkap ikan/cold storage (gudang pendingin)/gudang penyimpan sarana produksi (saprota'], - ['id' => 196, 'ID_Keg' => '02.03.93', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Pemeliharaan/Peningkatan Sarana Prasarana Olah Raga/ Gedung Serba Guna'], - ['id' => 197, 'ID_Keg' => '02.03.94', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Gedung/Prasarana Balai Desa/Balai Kemasyarakatan'], - ['id' => 198, 'ID_Keg' => '02.03.95', 'Nama_Kegiatan' => 'Pembangunan/pengembangan/pemeliharaan/pengelolaan sarana dan prasarana pasar Desa**'], - ['id' => 199, 'ID_Keg' => '02.03.96', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Pekerjaan Umum dan Tata Ruang'], - ['id' => 200, 'ID_Keg' => '02.04.91', 'Nama_Kegiatan' => 'Penyediaan Kendaraan Pengangkut Sampah, Gerobak Sampah, Tong Sampah, Mesin Pengolah Sampah'], - ['id' => 201, 'ID_Keg' => '02.04.92', 'Nama_Kegiatan' => 'Pemeliharaan Jaringan Listrik/ Penerangan Desa'], - ['id' => 202, 'ID_Keg' => '02.04.93', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Jaringan Listrik/ Penerangan Desa'], - ['id' => 203, 'ID_Keg' => '02.05.90', 'Nama_Kegiatan' => 'Pembuatan terasering/pembersihan daerah aliran sungai/plesengan sungai**'], - ['id' => 204, 'ID_Keg' => '02.05.91', 'Nama_Kegiatan' => 'Penanganan kebakaran hutan dan lahan/pencegahan abrasi pantai'], - ['id' => 205, 'ID_Keg' => '02.06.90', 'Nama_Kegiatan' => 'Pembangunan/Pengembangan/pemeliharaan sarana dan prasarana transportasi/informasi/ komunikasi/terminal Desa'], - ['id' => 206, 'ID_Keg' => '02.06.91', 'Nama_Kegiatan' => 'Pengadaan/pembangunan/pengembangan/pemeliharaan jaringan internet untuk warga Desa/website Desa/peralatan pengeras suara (loudspeaker)/telepon umum/ radio Single Side Band (SSB) '], - ['id' => 207, 'ID_Keg' => '02.07.90', 'Nama_Kegiatan' => 'Pengembangan dan Pengelolaan Sarana dan Prasarana Energi Alternatif tingkat Desa'], - ['id' => 208, 'ID_Keg' => '02.07.91', 'Nama_Kegiatan' => 'Pembangunan sarana dan prasarana Teknologi Tepat Guna'], - ['id' => 209, 'ID_Keg' => '02.07.92', 'Nama_Kegiatan' => 'Pengadaan/pemanfaatan/pemeliharaan penggilingan padi/peraut kelapa/ penepung biji-bijian/pencacah pakan terna/sangrai/ pemotong/pengiris buah dan sayuran/pompa air/traktor mini**'], - ['id' => 210, 'ID_Keg' => '02.07.94', 'Nama_Kegiatan' => 'Lain-lain Kegiatan Sub Bidang Energi dan Sumber Daya Mineral'], - ['id' => 211, 'ID_Keg' => '02.08.90', 'Nama_Kegiatan' => 'Pengadaan/pembangunan/pengembangan/pemeliharaan sarana dan prasarana Desa wisata/ pondok wisata/panggung hiburan/ kios cenderamata/kios warung makan/wahana permainan anak/wahana permainan outbound/ ta'], - ['id' => 212, 'ID_Keg' => '03.01.90', 'Nama_Kegiatan' => 'Dukungan Pembinaan Keamanan, Ketertiban, dan Ketentraman Wilayah dan Masyarakat Desa (Seragam dan Op Linmas, BABINSA, BABINKAMTIBMAS)'], - ['id' => 213, 'ID_Keg' => '03.01.91', 'Nama_Kegiatan' => 'Pembentukan tim keamanan Desa'], - ['id' => 214, 'ID_Keg' => '03.02.90', 'Nama_Kegiatan' => 'Melestarikan Dan Mengembangkan Gotong Royong Masyarakat Desa (BBGRM)'], - ['id' => 215, 'ID_Keg' => '03.02.91', 'Nama_Kegiatan' => 'Dukungan Pengelolaan Sarana dan Prasarana Kebudayaan/Rumah Adat/Keagamaan di Desa **'], - ['id' => 216, 'ID_Keg' => '03.02.92', 'Nama_Kegiatan' => 'Penyelenggaraan Sedekah Bumi/Sedekah Laut/Apitan'], - ['id' => 217, 'ID_Keg' => '03.02.93', 'Nama_Kegiatan' => 'Partisipasi Perayaan Hari Besar Nasional lainnya'], - ['id' => 218, 'ID_Keg' => '03.02.94', 'Nama_Kegiatan' => 'Pembinaan kerukunan umat beragama'], - ['id' => 219, 'ID_Keg' => '03.04.90', 'Nama_Kegiatan' => 'Pembentukan/Pembinaan Lembaga Kemasyarakatan'], - ['id' => 220, 'ID_Keg' => '03.04.91', 'Nama_Kegiatan' => 'Pembentukan dan Dukungan Fasilitasi Kader Pembangunan dan Pemberdayaan Masyarakat'], - ['id' => 221, 'ID_Keg' => '04.01.90', 'Nama_Kegiatan' => 'Pelaksanaan Penanggulangan Hama dan Penyakit Secara Terpadu'], - ['id' => 222, 'ID_Keg' => '04.01.91', 'Nama_Kegiatan' => 'Pengelolaan Balai Benih Ikan Milik Desa'], - ['id' => 223, 'ID_Keg' => '04.01.92', 'Nama_Kegiatan' => 'Pemeliharaan Tambatan Perahu/Tempat Pelelangan Ikan (TPI) Milik Desa**'], - ['id' => 224, 'ID_Keg' => '04.01.93', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Tambatan Perahu/Tempat Pelelangan Ikan (TPI) Milik Desa**'], - ['id' => 225, 'ID_Keg' => '04.02.90', 'Nama_Kegiatan' => 'Peningkatan Produksi Tanaman Perkebunan (Alat Produksi dan pengolahan perkebunan)'], - ['id' => 226, 'ID_Keg' => '04.02.91', 'Nama_Kegiatan' => 'Pembangunan/Rehabilitasi/Peningkatan Balai Pertemuan Kelompok Tani'], - ['id' => 227, 'ID_Keg' => '04.02.92', 'Nama_Kegiatan' => 'Pembangunan/Peningkatan Irigasi Tersier'], - ['id' => 228, 'ID_Keg' => '04.02.93', 'Nama_Kegiatan' => 'Pelatihan kelompok tani'], - ['id' => 229, 'ID_Keg' => '04.04.90', 'Nama_Kegiatan' => 'Fasiilitasi Penguatan Kelembagaan Pengarusutamaan Gender dan Anak'], - ['id' => 230, 'ID_Keg' => '04.04.92', 'Nama_Kegiatan' => 'Peningkatan Kapasitas Kelompok Pemerhati dan Perlindungan Anak'], - ['id' => 231, 'ID_Keg' => '04.04.93', 'Nama_Kegiatan' => 'Fasilitasi terhadap kelompok-kelompok rentan, kelompok masyarakat miskin, perempuan, anak dan difabel/ Pemberian bantuan sosial/pemberian santunan kepada keluarga fakir miskin/analisis kemiskinan seca'], - ['id' => 232, 'ID_Keg' => '04.04.91', 'Nama_Kegiatan' => 'Fasilitasi Upaya Perlindungan Perempuan dan Anak Terhadap Tindakan Kekerasan'], - ['id' => 233, 'ID_Keg' => '04.05.90', 'Nama_Kegiatan' => 'Pengembangan/ Promosi Produk Unggulan Desa'], - ['id' => 234, 'ID_Keg' => '04.05.91', 'Nama_Kegiatan' => 'Pembentukan dan pengembangan usaha ekonomi masyarakat dan/atau koperasi'], - ['id' => 235, 'ID_Keg' => '04.05.92', 'Nama_Kegiatan' => 'Bantuan sarana produksi, distribusi dan pemasaran untuk usaha ekonomi masyarakat**'], - ['id' => 236, 'ID_Keg' => '04.06.90', 'Nama_Kegiatan' => 'Pembangunan Kantor BUM Desa/Sarana Prasarana BUM Desa (menjadi aset desa)**'], - ['id' => 237, 'ID_Keg' => '04.06.91', 'Nama_Kegiatan' => 'Pelaksanaan Audit Keuangan BUM Desa, Evaluasi Perkembangan BUM Desa '], - ['id' => 238, 'ID_Keg' => '04.07.90', 'Nama_Kegiatan' => 'Pelatihan usaha ekonomi dan Perdagangan'], - ['id' => 239, 'ID_Keg' => '04.07.91', 'Nama_Kegiatan' => 'Sosialisasi Teknologi Tepat Guna/Posyantekdes dan/atau antar Desa/percontohan Teknologi Tepat Guna untuk produksi pertanian/pengembangan sumber energi perdesaan/pengemban'], - ]); - - DB::statement(" - CREATE TABLE `keuangan_manual_ref_rek1` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Akun` varchar(100) NOT NULL, - `Nama_Akun` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('keuangan_manual_ref_rek1')->insert([ - ['id' => 1, 'Akun' => '1.', 'Nama_Akun' => 'ASET'], - ['id' => 2, 'Akun' => '2.', 'Nama_Akun' => 'KEWAJIBAN'], - ['id' => 3, 'Akun' => '3.', 'Nama_Akun' => 'EKUITAS'], - ['id' => 4, 'Akun' => '4.', 'Nama_Akun' => 'PENDAPATAN'], - ['id' => 5, 'Akun' => '5.', 'Nama_Akun' => 'BELANJA'], - ['id' => 6, 'Akun' => '6.', 'Nama_Akun' => 'PEMBIAYAAN'], - ['id' => 7, 'Akun' => '7.', 'Nama_Akun' => 'NON ANGGARAN'], - ]); - - DB::statement(" - CREATE TABLE `keuangan_manual_ref_rek2` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Akun` varchar(100) NOT NULL, - `Kelompok` varchar(100) NOT NULL, - `Nama_Kelompok` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('keuangan_manual_ref_rek2')->insert([ - ['id' => 1, 'Akun' => '1.', 'Kelompok' => '1.1.', 'Nama_Kelompok' => 'Aset Lancar'], - ['id' => 2, 'Akun' => '1.', 'Kelompok' => '1.2.', 'Nama_Kelompok' => 'Investasi'], - ['id' => 3, 'Akun' => '1.', 'Kelompok' => '1.3.', 'Nama_Kelompok' => 'Aset Tetap'], - ['id' => 4, 'Akun' => '1.', 'Kelompok' => '1.4.', 'Nama_Kelompok' => 'Dana Cadangan'], - ['id' => 5, 'Akun' => '1.', 'Kelompok' => '1.5.', 'Nama_Kelompok' => 'Aset Tidak Lancar Lainnya'], - ['id' => 6, 'Akun' => '2.', 'Kelompok' => '2.1.', 'Nama_Kelompok' => 'Kewajiban Jangka Pendek'], - ['id' => 7, 'Akun' => '3.', 'Kelompok' => '3.1.', 'Nama_Kelompok' => 'Ekuitas'], - ['id' => 8, 'Akun' => '4.', 'Kelompok' => '4.1.', 'Nama_Kelompok' => 'Pendapatan Asli Desa'], - ['id' => 9, 'Akun' => '4.', 'Kelompok' => '4.2.', 'Nama_Kelompok' => 'Pendapatan Transfer'], - ['id' => 10, 'Akun' => '4.', 'Kelompok' => '4.3.', 'Nama_Kelompok' => 'Pendapatan Lain-lain'], - ['id' => 11, 'Akun' => '5.', 'Kelompok' => '5.1.', 'Nama_Kelompok' => 'Belanja Pegawai'], - ['id' => 12, 'Akun' => '5.', 'Kelompok' => '5.2.', 'Nama_Kelompok' => 'Belanja Barang dan Jasa'], - ['id' => 13, 'Akun' => '5.', 'Kelompok' => '5.3.', 'Nama_Kelompok' => 'Belanja Modal'], - ['id' => 14, 'Akun' => '5.', 'Kelompok' => '5.4.', 'Nama_Kelompok' => 'Belanja Tidak Terduga'], - ['id' => 15, 'Akun' => '6.', 'Kelompok' => '6.1.', 'Nama_Kelompok' => 'Penerimaan Pembiayaan'], - ['id' => 16, 'Akun' => '6.', 'Kelompok' => '6.2.', 'Nama_Kelompok' => 'Pengeluaran Pembiayaan'], - ['id' => 17, 'Akun' => '7.', 'Kelompok' => '7.1.', 'Nama_Kelompok' => 'Perhitungan Fihak Ketiga'], - ]); - - DB::statement(" - CREATE TABLE `keuangan_manual_ref_rek3` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Kelompok` varchar(100) NOT NULL, - `Jenis` varchar(100) NOT NULL, - `Nama_Jenis` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('keuangan_manual_ref_rek3')->insert([ - ['id' => 1, 'Kelompok' => '1.1.', 'Jenis' => '1.1.1.', 'Nama_Jenis' => 'Kas dan Bank'], - ['id' => 2, 'Kelompok' => '1.1.', 'Jenis' => '1.1.2.', 'Nama_Jenis' => 'Piutang'], - ['id' => 3, 'Kelompok' => '1.1.', 'Jenis' => '1.1.3.', 'Nama_Jenis' => 'Persediaan'], - ['id' => 4, 'Kelompok' => '1.2.', 'Jenis' => '1.2.1.', 'Nama_Jenis' => 'Penyertaan Modal Pemerintah Desa'], - ['id' => 5, 'Kelompok' => '1.3.', 'Jenis' => '1.3.1.', 'Nama_Jenis' => 'Tanah'], - ['id' => 6, 'Kelompok' => '1.3.', 'Jenis' => '1.3.2.', 'Nama_Jenis' => 'Peralatan dan Mesin'], - ['id' => 7, 'Kelompok' => '1.3.', 'Jenis' => '1.3.3.', 'Nama_Jenis' => 'Gedung dan Bangunan'], - ['id' => 8, 'Kelompok' => '1.3.', 'Jenis' => '1.3.4.', 'Nama_Jenis' => 'Jalan, Irigasi dan Jaringan'], - ['id' => 9, 'Kelompok' => '1.3.', 'Jenis' => '1.3.5.', 'Nama_Jenis' => 'Aset Tetap Lainnya'], - ['id' => 10, 'Kelompok' => '1.3.', 'Jenis' => '1.3.6.', 'Nama_Jenis' => 'Konstruksi Dalam Pengerjaan'], - ['id' => 11, 'Kelompok' => '1.3.', 'Jenis' => '1.3.7.', 'Nama_Jenis' => 'Aset Tak Berwujud'], - ['id' => 12, 'Kelompok' => '1.3.', 'Jenis' => '1.3.8.', 'Nama_Jenis' => 'Akumulasi Penyusutan Aktiva Tetap'], - ['id' => 13, 'Kelompok' => '1.4.', 'Jenis' => '1.4.1.', 'Nama_Jenis' => 'Dana Cadangan'], - ['id' => 14, 'Kelompok' => '1.5.', 'Jenis' => '1.5.1.', 'Nama_Jenis' => 'Tagihan Piutang Penjualan Angsuran'], - ['id' => 15, 'Kelompok' => '1.5.', 'Jenis' => '1.5.2.', 'Nama_Jenis' => 'Tagihan Tuntutan Ganti Kerugian Daerah'], - ['id' => 16, 'Kelompok' => '1.5.', 'Jenis' => '1.5.3.', 'Nama_Jenis' => 'Kemitraan dengan Pihak Ketiga'], - ['id' => 17, 'Kelompok' => '1.5.', 'Jenis' => '1.5.4.', 'Nama_Jenis' => 'Aktiva Tidak Berwujud'], - ['id' => 18, 'Kelompok' => '1.5.', 'Jenis' => '1.5.5.', 'Nama_Jenis' => 'Aset Lain-lain'], - ['id' => 19, 'Kelompok' => '2.1.', 'Jenis' => '2.1.1.', 'Nama_Jenis' => 'Hutang Perhitungan Pihak Ketiga'], - ['id' => 20, 'Kelompok' => '2.1.', 'Jenis' => '2.1.2.', 'Nama_Jenis' => 'Hutang Bunga'], - ['id' => 21, 'Kelompok' => '2.1.', 'Jenis' => '2.1.3.', 'Nama_Jenis' => 'Hutang Pajak'], - ['id' => 22, 'Kelompok' => '2.1.', 'Jenis' => '2.1.4.', 'Nama_Jenis' => 'Pendapatan Diterima Dimuka'], - ['id' => 23, 'Kelompok' => '2.1.', 'Jenis' => '2.1.5.', 'Nama_Jenis' => 'Bagian Lancar Hutang Jangka Panjang'], - ['id' => 24, 'Kelompok' => '2.1.', 'Jenis' => '2.1.6.', 'Nama_Jenis' => 'Hutang Jangka Pendek Lainnya'], - ['id' => 25, 'Kelompok' => '3.1.', 'Jenis' => '3.1.1.', 'Nama_Jenis' => 'Ekuitas'], - ['id' => 26, 'Kelompok' => '3.1.', 'Jenis' => '3.1.2.', 'Nama_Jenis' => 'Ekuitas SAL'], - ['id' => 27, 'Kelompok' => '4.1.', 'Jenis' => '4.1.1.', 'Nama_Jenis' => 'Hasil Usaha Desa'], - ['id' => 28, 'Kelompok' => '4.1.', 'Jenis' => '4.1.2.', 'Nama_Jenis' => 'Hasil Aset Desa'], - ['id' => 29, 'Kelompok' => '4.1.', 'Jenis' => '4.1.3.', 'Nama_Jenis' => 'Swadaya, Partisipasi dan Gotong Royong'], - ['id' => 30, 'Kelompok' => '4.1.', 'Jenis' => '4.1.4.', 'Nama_Jenis' => 'Lain-Lain Pendapatan Asli Desa'], - ['id' => 31, 'Kelompok' => '4.2.', 'Jenis' => '4.2.1.', 'Nama_Jenis' => 'Dana Desa'], - ['id' => 32, 'Kelompok' => '4.2.', 'Jenis' => '4.2.2.', 'Nama_Jenis' => 'Bagi Hasil Pajak dan Retribusi'], - ['id' => 33, 'Kelompok' => '4.2.', 'Jenis' => '4.2.3.', 'Nama_Jenis' => 'Alokasi Dana Desa'], - ['id' => 34, 'Kelompok' => '4.2.', 'Jenis' => '4.2.4.', 'Nama_Jenis' => 'Bantuan Keuangan Provinsi'], - ['id' => 35, 'Kelompok' => '4.2.', 'Jenis' => '4.2.5.', 'Nama_Jenis' => 'Bantuan Keuangan Kabupaten/Kota'], - ['id' => 36, 'Kelompok' => '4.3.', 'Jenis' => '4.3.1.', 'Nama_Jenis' => 'Penerimaan dari Hasil Kerjasama Antar Desa'], - ['id' => 37, 'Kelompok' => '4.3.', 'Jenis' => '4.3.2.', 'Nama_Jenis' => 'Penerimaan dari Hasil Kerjasama dengan Pihak Ketiga'], - ['id' => 38, 'Kelompok' => '4.3.', 'Jenis' => '4.3.3.', 'Nama_Jenis' => 'Penerimaan Bantuan dari Perusahaan yang Berlokasi di Desa'], - ['id' => 39, 'Kelompok' => '4.3.', 'Jenis' => '4.3.4.', 'Nama_Jenis' => 'Hibah dan Sumbangan dari Pihak Ketiga'], - ['id' => 40, 'Kelompok' => '4.3.', 'Jenis' => '4.3.5.', 'Nama_Jenis' => 'Koreksi Kesalahan Belanja Tahun-tahun Sebelumnya'], - ['id' => 41, 'Kelompok' => '4.3.', 'Jenis' => '4.3.6.', 'Nama_Jenis' => 'Bunga Bank'], - ['id' => 42, 'Kelompok' => '4.3.', 'Jenis' => '4.3.9.', 'Nama_Jenis' => 'Lain-lain Pendapatan Desa Yang Sah'], - ['id' => 43, 'Kelompok' => '5.1.', 'Jenis' => '5.1.1.', 'Nama_Jenis' => 'Penghasilan Tetap dan Tunjangan Kepala Desa'], - ['id' => 44, 'Kelompok' => '5.1.', 'Jenis' => '5.1.2.', 'Nama_Jenis' => 'Penghasilan Tetap dan Tunjangan Perangkat Desa'], - ['id' => 45, 'Kelompok' => '5.1.', 'Jenis' => '5.1.3.', 'Nama_Jenis' => 'Jaminan Sosial Kepala Desa dan Perangkat Desa'], - ['id' => 46, 'Kelompok' => '5.1.', 'Jenis' => '5.1.4.', 'Nama_Jenis' => 'Tunjangan BPD'], - ['id' => 47, 'Kelompok' => '5.2.', 'Jenis' => '5.2.1.', 'Nama_Jenis' => 'Belanja Barang Perlengkapan'], - ['id' => 48, 'Kelompok' => '5.2.', 'Jenis' => '5.2.2.', 'Nama_Jenis' => 'Belanja Jasa Honorarium'], - ['id' => 49, 'Kelompok' => '5.2.', 'Jenis' => '5.2.3.', 'Nama_Jenis' => 'Belanja Perjalanan Dinas'], - ['id' => 50, 'Kelompok' => '5.2.', 'Jenis' => '5.2.4.', 'Nama_Jenis' => 'Belanja Jasa Sewa'], - ['id' => 51, 'Kelompok' => '5.2.', 'Jenis' => '5.2.5.', 'Nama_Jenis' => 'Belanja Operasional Perkantoran'], - ['id' => 52, 'Kelompok' => '5.2.', 'Jenis' => '5.2.6.', 'Nama_Jenis' => 'Belanja Pemeliharaan'], - ['id' => 53, 'Kelompok' => '5.2.', 'Jenis' => '5.2.7.', 'Nama_Jenis' => 'Belanja Barang dan Jasa yang Diserahkan kepada Masyarakat'], - ['id' => 54, 'Kelompok' => '5.3.', 'Jenis' => '5.3.1.', 'Nama_Jenis' => 'Belanja Modal Pengadaan Tanah'], - ['id' => 55, 'Kelompok' => '5.3.', 'Jenis' => '5.3.2.', 'Nama_Jenis' => 'Belanja Modal Pengadaan Peralatan, Mesin dan Alat Berat'], - ['id' => 56, 'Kelompok' => '5.3.', 'Jenis' => '5.3.3.', 'Nama_Jenis' => 'Belanja Modal Kendaraan'], - ['id' => 57, 'Kelompok' => '5.3.', 'Jenis' => '5.3.4.', 'Nama_Jenis' => 'Belanja Modal Gedung, Bangunan dan Taman'], - ['id' => 58, 'Kelompok' => '5.3.', 'Jenis' => '5.3.5.', 'Nama_Jenis' => 'Belanja Modal Jalan/Prasarana Jalan'], - ['id' => 59, 'Kelompok' => '5.3.', 'Jenis' => '5.3.6.', 'Nama_Jenis' => 'Belanja Modal Jembatan'], - ['id' => 60, 'Kelompok' => '5.3.', 'Jenis' => '5.3.7.', 'Nama_Jenis' => 'Belanja Modal Irigasi/Embung/Drainase/Air Limbah/Persampahan'], - ['id' => 61, 'Kelompok' => '5.3.', 'Jenis' => '5.3.8.', 'Nama_Jenis' => 'Belanja Modal Jaringan/Instalasi'], - ['id' => 62, 'Kelompok' => '5.3.', 'Jenis' => '5.3.9.', 'Nama_Jenis' => 'Belanja Modal Lainnya'], - ['id' => 63, 'Kelompok' => '5.4.', 'Jenis' => '5.4.1.', 'Nama_Jenis' => 'Belanja Tidak Terduga'], - ['id' => 64, 'Kelompok' => '6.1.', 'Jenis' => '6.1.1.', 'Nama_Jenis' => 'SILPA Tahun Sebelumnya'], - ['id' => 65, 'Kelompok' => '6.1.', 'Jenis' => '6.1.2.', 'Nama_Jenis' => 'Pencairan Dana Cadangan'], - ['id' => 66, 'Kelompok' => '6.1.', 'Jenis' => '6.1.3.', 'Nama_Jenis' => 'Hasil Penjualan Kekayaan Desa Yang Dipisahkan'], - ['id' => 67, 'Kelompok' => '6.1.', 'Jenis' => '6.1.9.', 'Nama_Jenis' => 'Penerimaan Pembiayaan Lainnya'], - ['id' => 68, 'Kelompok' => '6.2.', 'Jenis' => '6.2.1.', 'Nama_Jenis' => 'Pembentukan Dana Cadangan'], - ['id' => 69, 'Kelompok' => '6.2.', 'Jenis' => '6.2.2.', 'Nama_Jenis' => 'Penyertaan Modal Desa'], - ['id' => 70, 'Kelompok' => '6.2.', 'Jenis' => '6.2.9.', 'Nama_Jenis' => 'Pengeluaran Pembiayaan Lainnya'], - ['id' => 71, 'Kelompok' => '7.1.', 'Jenis' => '7.1.1.', 'Nama_Jenis' => 'Perhitungan PFK - Potongan Pajak'], - ['id' => 72, 'Kelompok' => '7.1.', 'Jenis' => '7.1.2.', 'Nama_Jenis' => 'Perhitungan PFK - Potongan Pajak Daerah'], - ['id' => 73, 'Kelompok' => '7.1.', 'Jenis' => '7.1.3.', 'Nama_Jenis' => 'Perhitungan PFK - Uang Muka dan Jaminan'], - ]); - - DB::statement(" - CREATE TABLE `keuangan_manual_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Tahun` varchar(100) NOT NULL, - `Kd_Akun` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Nilai_Anggaran` varchar(100) NOT NULL, - `Nilai_Realisasi` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_manual_rinci_tpl` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `Tahun` varchar(100) NOT NULL, - `Kd_Akun` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Nilai_Anggaran` varchar(100) NOT NULL, - `Nilai_Realisasi` varchar(100) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_master` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `versi_database` varchar(50) NOT NULL, - `tahun_anggaran` varchar(250) NOT NULL, - `aktif` int(2) NOT NULL DEFAULT 1, - `tanggal_impor` date NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_surat() - { - DB::statement(" - CREATE TABLE `klasifikasi_surat` ( - `id` int(4) NOT NULL AUTO_INCREMENT, - `kode` varchar(50) NOT NULL, - `nama` varchar(250) NOT NULL, - `uraian` mediumtext NOT NULL, - `enabled` int(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - DB::table('klasifikasi_surat')->insert([ - - ['id' => 1, 'kode' => '000', 'nama' => 'UMUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 2, 'kode' => '001', 'nama' => 'Lambang', 'uraian' => '-', 'enabled' => 1], - ['id' => 3, 'kode' => '001.1', 'nama' => 'Garuda', 'uraian' => '-', 'enabled' => 1], - ['id' => 4, 'kode' => '001.2', 'nama' => 'Bendera Kebangsaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 5, 'kode' => '001.3', 'nama' => 'Lagu Kebangsaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 6, 'kode' => '001.4', 'nama' => 'Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 7, 'kode' => '001.31', 'nama' => 'Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 8, 'kode' => '001.32', 'nama' => 'Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 9, 'kode' => '002', 'nama' => 'Tanda Kehormatan/Penghargaan untuk pegawai ', 'uraian' => 'lihat 861.1', 'enabled' => 1], - ['id' => 10, 'kode' => '002.1', 'nama' => 'Bintang', 'uraian' => '-', 'enabled' => 1], - ['id' => 11, 'kode' => '002.2', 'nama' => 'Satyalencana', 'uraian' => '-', 'enabled' => 1], - ['id' => 12, 'kode' => '002.3', 'nama' => 'Samkarya Nugraha', 'uraian' => '-', 'enabled' => 1], - ['id' => 13, 'kode' => '002.4', 'nama' => 'Monumen', 'uraian' => '-', 'enabled' => 1], - ['id' => 14, 'kode' => '002.5', 'nama' => 'Penghargaan Secara Adat', 'uraian' => '-', 'enabled' => 1], - ['id' => 15, 'kode' => '002.6', 'nama' => 'Penghargaan lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 16, 'kode' => '003', 'nama' => 'Hari Raya/Besar', 'uraian' => '-', 'enabled' => 1], - ['id' => 17, 'kode' => '003.1', 'nama' => 'Nasional 17 Agustus, Hari Pahlawan, dan sebagainya', 'uraian' => '-', 'enabled' => 1], - ['id' => 18, 'kode' => '003.2', 'nama' => 'Hari Raya Keagamaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 19, 'kode' => '003.3', 'nama' => 'Hari Ulang Tahun', 'uraian' => '-', 'enabled' => 1], - ['id' => 20, 'kode' => '003.4', 'nama' => 'Hari-hari Besar Internasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 21, 'kode' => '004', 'nama' => 'Ucapan', 'uraian' => '-', 'enabled' => 1], - ['id' => 22, 'kode' => '004.1', 'nama' => 'Ucapan Terima Kasih', 'uraian' => '-', 'enabled' => 1], - ['id' => 23, 'kode' => '004.2', 'nama' => 'Ucapan Selamat', 'uraian' => '-', 'enabled' => 1], - ['id' => 24, 'kode' => '004.3', 'nama' => 'Ucapan Belasungkawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 25, 'kode' => '004.4', 'nama' => 'Ucapan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 26, 'kode' => '005', 'nama' => 'Undangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 27, 'kode' => '006', 'nama' => 'Tanda Jabatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 28, 'kode' => '006.1', 'nama' => 'Pamong Praja', 'uraian' => '-', 'enabled' => 1], - ['id' => 29, 'kode' => '006.2', 'nama' => 'Tanda Pengenal', 'uraian' => '-', 'enabled' => 1], - ['id' => 30, 'kode' => '006.3', 'nama' => 'Pejabat lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 31, 'kode' => '007', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 32, 'kode' => '008', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 33, 'kode' => '009', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 34, 'kode' => '010', 'nama' => 'URUSAN DALAM ', 'uraian' => 'Gedung Kantor/Termasuk Instalasi Prasarana Fisik Pamong', 'enabled' => 1], - ['id' => 35, 'kode' => '011', 'nama' => 'Kantor Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 36, 'kode' => '012', 'nama' => 'Rumah Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 37, 'kode' => '012.1', 'nama' => 'Tanah Untuk Rumah Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 38, 'kode' => '012.2', 'nama' => 'Perabot Rumah Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 39, 'kode' => '012.3', 'nama' => 'Rumah Dinas Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 40, 'kode' => '012.4', 'nama' => 'Rumah Dinas Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 41, 'kode' => '012.5', 'nama' => 'Rumah Dinas Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 42, 'kode' => '012.6', 'nama' => 'Rumah/Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 43, 'kode' => '012.7', 'nama' => 'Rumah Pejabat Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 44, 'kode' => '013', 'nama' => 'Mess/Guest House', 'uraian' => '-', 'enabled' => 1], - ['id' => 45, 'kode' => '014', 'nama' => 'Rumah Susun/Apartemen', 'uraian' => '-', 'enabled' => 1], - ['id' => 46, 'kode' => '015', 'nama' => 'Penerangan Listrik/Jasa Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 47, 'kode' => '016', 'nama' => 'Telepon/Faximile/Internet', 'uraian' => '-', 'enabled' => 1], - ['id' => 48, 'kode' => '017', 'nama' => 'Keamanan/Ketertiban Kantor', 'uraian' => '-', 'enabled' => 1], - ['id' => 49, 'kode' => '018', 'nama' => 'Kebersihan Kantor', 'uraian' => '-', 'enabled' => 1], - ['id' => 50, 'kode' => '019', 'nama' => 'Protokol', 'uraian' => '-', 'enabled' => 1], - ['id' => 51, 'kode' => '019.1', 'nama' => 'Upacara Bendera', 'uraian' => '-', 'enabled' => 1], - ['id' => 52, 'kode' => '019.2', 'nama' => 'Tata Tempat', 'uraian' => '-', 'enabled' => 1], - ['id' => 53, 'kode' => '019.21', 'nama' => 'Pemasangan Gambar Presiden/Wakil Presiden', 'uraian' => '-', 'enabled' => 1], - ['id' => 54, 'kode' => '019.3', 'nama' => 'Audiensi / Menghadap Pimpinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 55, 'kode' => '019.4', 'nama' => 'Alamat-Alamat Kantor Pejabat', 'uraian' => '-', 'enabled' => 1], - ['id' => 56, 'kode' => '019.5', 'nama' => 'Bandir/Umbul-Umbul/Spanduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 57, 'kode' => '020', 'nama' => 'PERALATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 58, 'kode' => '020.1', 'nama' => 'Penawaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 59, 'kode' => '021', 'nama' => 'Alat Tulis', 'uraian' => '-', 'enabled' => 1], - ['id' => 60, 'kode' => '022', 'nama' => 'Mesin Kantor', 'uraian' => '-', 'enabled' => 1], - ['id' => 61, 'kode' => '023', 'nama' => 'Perabot Kantor', 'uraian' => '-', 'enabled' => 1], - ['id' => 62, 'kode' => '024', 'nama' => 'Alat Angkutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 63, 'kode' => '025', 'nama' => 'Pakaian Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 64, 'kode' => '026', 'nama' => 'Senjata', 'uraian' => '-', 'enabled' => 1], - ['id' => 65, 'kode' => '027', 'nama' => 'Pengadaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 66, 'kode' => '028', 'nama' => 'Inventaris', 'uraian' => '-', 'enabled' => 1], - ['id' => 67, 'kode' => '029', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 68, 'kode' => '030', 'nama' => 'KEKAYAAN DAERAH', 'uraian' => '-', 'enabled' => 1], - ['id' => 69, 'kode' => '031', 'nama' => 'Sumber Daya Alam', 'uraian' => '-', 'enabled' => 1], - ['id' => 70, 'kode' => '032', 'nama' => 'Asset Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 71, 'kode' => '033', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 72, 'kode' => '034', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 73, 'kode' => '035', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 74, 'kode' => '036', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 75, 'kode' => '040', 'nama' => 'PERPUSTAKAAN DOKUMENTASI / KEARSIPAN / SANDI', 'uraian' => '-', 'enabled' => 1], - ['id' => 76, 'kode' => '041', 'nama' => 'Perpustakaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 77, 'kode' => '041.1', 'nama' => 'Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 78, 'kode' => '041.2', 'nama' => 'Khusus', 'uraian' => '-', 'enabled' => 1], - ['id' => 79, 'kode' => '041.3', 'nama' => 'Perguruan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 80, 'kode' => '041.4', 'nama' => 'Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 81, 'kode' => '041.5', 'nama' => 'Keliling', 'uraian' => '-', 'enabled' => 1], - ['id' => 82, 'kode' => '042', 'nama' => 'Dokumentasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 83, 'kode' => '043', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 84, 'kode' => '044', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 85, 'kode' => '045', 'nama' => 'Kearsipan', 'uraian' => '-', 'enabled' => 1], - ['id' => 86, 'kode' => '045.1', 'nama' => 'Pola Klasifikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 87, 'kode' => '045.2', 'nama' => 'Penataan Berkas', 'uraian' => '-', 'enabled' => 1], - ['id' => 88, 'kode' => '045.3', 'nama' => 'Penyusutan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 89, 'kode' => '045.31', 'nama' => 'Jadwal Retensi Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 90, 'kode' => '045.32', 'nama' => 'Pemindahan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 91, 'kode' => '045.33', 'nama' => 'Penilaian Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 92, 'kode' => '045.34', 'nama' => 'Pemusnahan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 93, 'kode' => '045.35', 'nama' => 'Penyerahan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 94, 'kode' => '045.36', 'nama' => 'Berita Acara Penyusutan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 95, 'kode' => '045.37', 'nama' => 'Daftar Pencarian Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 96, 'kode' => '045.4', 'nama' => 'Pembinaan Kearsipan', 'uraian' => '-', 'enabled' => 1], - ['id' => 97, 'kode' => '045.41', 'nama' => 'Bimbingan Teknis', 'uraian' => '-', 'enabled' => 1], - ['id' => 98, 'kode' => '045.5', 'nama' => 'Pemeliharaan /Perawatan Arsip', 'uraian' => '-', 'enabled' => 1], - ['id' => 99, 'kode' => '045.6', 'nama' => 'Pengawetan/Fumigasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 100, 'kode' => '046', 'nama' => 'Sandi', 'uraian' => '-', 'enabled' => 1], - ['id' => 101, 'kode' => '047', 'nama' => 'Website', 'uraian' => '-', 'enabled' => 1], - ['id' => 102, 'kode' => '048', 'nama' => 'Pengelolaan Data', 'uraian' => '-', 'enabled' => 1], - ['id' => 103, 'kode' => '049', 'nama' => 'Jaringan Komunikasi Data', 'uraian' => '-', 'enabled' => 1], - ['id' => 104, 'kode' => '050', 'nama' => 'PERENCANAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 105, 'kode' => '050.1', 'nama' => 'Repelita/8 Sukses', 'uraian' => '-', 'enabled' => 1], - ['id' => 106, 'kode' => '050.11', 'nama' => 'Pelita Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 107, 'kode' => '050.12', 'nama' => 'Bantuan Pembangunan Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 108, 'kode' => '050.13', 'nama' => 'Bappeda', 'uraian' => '-', 'enabled' => 1], - ['id' => 109, 'kode' => '051', 'nama' => 'Proyek Bidang Pemerintahan, ', 'uraian' => 'Klasifikasikan Disini : Proyek Prasaran Fisik Pemerintahan, Tambahkan Perincian 100 Pada 051 Contoh: Proyek Kepenjaraan 051.86', 'enabled' => 1], - ['id' => 110, 'kode' => '052', 'nama' => 'Bidang Politik', 'uraian' => '-', 'enabled' => 1], - ['id' => 111, 'kode' => '053', 'nama' => 'Bidang Keamanan Dan Ketertiban', 'uraian' => 'Tambahkan Perincian 300 Pada 053 Contoh: Proyek Ketataprajaan 053.311 ', 'enabled' => 1], - ['id' => 112, 'kode' => '054', 'nama' => 'Bidang Kesejahteraan Rakyat ', 'uraian' => 'Tambahkan Peincian 400 pada 054 Contoh: Proyek Resettlement Desa 054.671', 'enabled' => 1], - ['id' => 113, 'kode' => '055', 'nama' => 'Bidang Perekonomian ', 'uraian' => 'Tambahkan Perincian 500 Pada 055 Contoh: Proyek Pasar 055.112', 'enabled' => 1], - ['id' => 114, 'kode' => '056', 'nama' => 'Bidang Pekerjaan Umum ', 'uraian' => 'Tambahkan Perincian 600 pada 056 Contoh: Proyek Jembatan 056.3', 'enabled' => 1], - ['id' => 115, 'kode' => '057', 'nama' => 'Bidang Pengawasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 116, 'kode' => '058', 'nama' => 'Bidang Kepegawaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 117, 'kode' => '059', 'nama' => 'Bidang Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 118, 'kode' => '060', 'nama' => 'ORGANISASI / KETATALAKSANAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 119, 'kode' => '060.1', 'nama' => 'Program Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 120, 'kode' => '061', 'nama' => 'Organisasi Instansi Pemerintah (struktur organisasi)', 'uraian' => '-', 'enabled' => 1], - ['id' => 121, 'kode' => '061.1', 'nama' => 'Susunan dan Tata Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 122, 'kode' => '061.2', 'nama' => 'Tata Tertib Kantor, Jam Kerja di Bulan Puasa', 'uraian' => '-', 'enabled' => 1], - ['id' => 123, 'kode' => '062', 'nama' => 'Organisasi Badan Non Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 124, 'kode' => '063', 'nama' => 'Organisasi Badan Internasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 125, 'kode' => '064', 'nama' => 'Organisasi Semi Pemerintah, BKS-AKSI', 'uraian' => '-', 'enabled' => 1], - ['id' => 126, 'kode' => '065', 'nama' => 'Ketatalaksanaan / Tata Naskah / Sistem', 'uraian' => '-', 'enabled' => 1], - ['id' => 127, 'kode' => '066', 'nama' => 'Stempel Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 128, 'kode' => '067', 'nama' => 'Pelayanan Umum / Pelayanan Publik / Analisis', 'uraian' => '-', 'enabled' => 1], - ['id' => 129, 'kode' => '068', 'nama' => 'Komputerisasi / Siskomdagri', 'uraian' => '-', 'enabled' => 1], - ['id' => 130, 'kode' => '069', 'nama' => 'Standar Pelayanan Minimal', 'uraian' => '-', 'enabled' => 1], - ['id' => 131, 'kode' => '070', 'nama' => 'PENELITIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 132, 'kode' => '071', 'nama' => 'Riset', 'uraian' => '-', 'enabled' => 1], - ['id' => 133, 'kode' => '072', 'nama' => 'Survey', 'uraian' => '-', 'enabled' => 1], - ['id' => 134, 'kode' => '073', 'nama' => 'Kajian', 'uraian' => '-', 'enabled' => 1], - ['id' => 135, 'kode' => '074', 'nama' => 'Kerjasama Penelitian Dengan Perguruan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 136, 'kode' => '075', 'nama' => 'Kementerian Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 137, 'kode' => '076', 'nama' => 'Non Kementerian', 'uraian' => '-', 'enabled' => 1], - ['id' => 138, 'kode' => '077', 'nama' => 'Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 139, 'kode' => '078', 'nama' => 'Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 140, 'kode' => '079', 'nama' => 'Kecamatan /Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 141, 'kode' => '080', 'nama' => 'KONFERENSI / RAPAT / SEMINAR', 'uraian' => '-', 'enabled' => 1], - ['id' => 142, 'kode' => '081', 'nama' => 'Gubernur', 'uraian' => '-', 'enabled' => 1], - ['id' => 143, 'kode' => '082', 'nama' => 'Bupati / Walikota', 'uraian' => '-', 'enabled' => 1], - ['id' => 144, 'kode' => '083', 'nama' => 'Komponen, Eselon Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 145, 'kode' => '084', 'nama' => 'Instansi Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 146, 'kode' => '085', 'nama' => 'Internasional Di Dalam Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 147, 'kode' => '086', 'nama' => 'Internasional Di Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 148, 'kode' => '087', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 149, 'kode' => '088', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 150, 'kode' => '089', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 151, 'kode' => '090', 'nama' => 'PERJALANAN DINAS', 'uraian' => '-', 'enabled' => 1], - ['id' => 152, 'kode' => '091', 'nama' => 'Perjalanan Presiden/Wakil Presiden Ke Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 153, 'kode' => '092', 'nama' => 'Perjalanan Menteri Ke Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 154, 'kode' => '093', 'nama' => 'Perjalanan Pejabat Tinggi (Pejabat Eselon 1)', 'uraian' => '-', 'enabled' => 1], - ['id' => 155, 'kode' => '094', 'nama' => 'Perjalanan Pegawai Termasuk Pemanggilan Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 156, 'kode' => '095', 'nama' => 'Perjalanan Tamu Asing Ke Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 157, 'kode' => '096', 'nama' => 'Perjalanan Presiden/Wakil Presiden Ke Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 158, 'kode' => '097', 'nama' => 'Perjalanan Menteri Ke Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 159, 'kode' => '098', 'nama' => 'Perjalanan Pejabat Tinggi Ke Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 160, 'kode' => '099', 'nama' => 'Perjalanan Pegawai ke Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 161, 'kode' => '100', 'nama' => 'PEMERINTAHAN', 'uraian' => 'Meliputi: Tata Praja, Legislatif, Yudikatif, Hubungan luar', 'enabled' => 1], - ['id' => 162, 'kode' => '101', 'nama' => 'negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 163, 'kode' => '102', 'nama' => 'GDN', 'uraian' => '-', 'enabled' => 1], - ['id' => 164, 'kode' => '103', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 165, 'kode' => '104', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 166, 'kode' => '105', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 167, 'kode' => '110', 'nama' => 'PEMERINTAHAN PUSAT', 'uraian' => '-', 'enabled' => 1], - ['id' => 168, 'kode' => '111', 'nama' => 'Presiden', 'uraian' => 'Meliputi: pencalonan, pengangkatan, pelantikan, sumpah, dan serah jabatan', 'enabled' => 1], - ['id' => 169, 'kode' => '111.1', 'nama' => 'Pertanggung jawaban presiden kpd MPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 170, 'kode' => '111.2', 'nama' => 'Amanat Presiden/Amanat Kenegaraan/Pidato', 'uraian' => '-', 'enabled' => 1], - ['id' => 171, 'kode' => '112', 'nama' => 'Wakil Presiden', 'uraian' => 'Meliputi: pencalonan, pengangkatan, pelantikan, sumpah, dan serah jabatan', 'enabled' => 1], - ['id' => 172, 'kode' => '112.1', 'nama' => 'Pertanggung jawaban wakil presiden kepada MPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 173, 'kode' => '112.2', 'nama' => 'Amanat Wakil Presiden/Amanat Kenegaraan/Pidato', 'uraian' => '-', 'enabled' => 1], - ['id' => 174, 'kode' => '113', 'nama' => 'Susunan Kabinet', 'uraian' => '-', 'enabled' => 1], - ['id' => 175, 'kode' => '113.1', 'nama' => 'Reshuffle', 'uraian' => '-', 'enabled' => 1], - ['id' => 176, 'kode' => '113.2', 'nama' => 'Penunjukan Menteri ad interim', 'uraian' => '-', 'enabled' => 1], - ['id' => 177, 'kode' => '113.3', 'nama' => 'Sidang Kabinet', 'uraian' => '-', 'enabled' => 1], - ['id' => 178, 'kode' => '114', 'nama' => 'Kementerian Dalam Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 179, 'kode' => '114.1', 'nama' => 'Amanat Menteri Dalam Negeri/Sambutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 180, 'kode' => '115', 'nama' => 'Kementerian lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 181, 'kode' => '116', 'nama' => 'Lembaga Tinggi Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 182, 'kode' => '117', 'nama' => 'Lembaga Non Kementerian', 'uraian' => '-', 'enabled' => 1], - ['id' => 183, 'kode' => '118', 'nama' => 'Otonomi/Desentralisasi/Dekonsentrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 184, 'kode' => '119', 'nama' => 'Kerjasama Antar Kementerian', 'uraian' => '-', 'enabled' => 1], - ['id' => 185, 'kode' => '120', 'nama' => 'PEMERINTAH PROVINSI', 'uraian' => '-', 'enabled' => 1], - ['id' => 186, 'kode' => '120.04', 'nama' => 'Laporan daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 187, 'kode' => '120.42', 'nama' => 'Monografi tambahkan kode wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 188, 'kode' => '120.1', 'nama' => 'Koordinasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 189, 'kode' => '120.2', 'nama' => 'Instansi Tingkat Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 190, 'kode' => '120.21', 'nama' => 'Dinas Otonomi', 'uraian' => '-', 'enabled' => 1], - ['id' => 191, 'kode' => '120.22', 'nama' => 'Instansi Vertikal', 'uraian' => '-', 'enabled' => 1], - ['id' => 192, 'kode' => '120.23', 'nama' => 'Kerjasama antar Provinsi/Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 193, 'kode' => '121', 'nama' => 'Gubernur tambahkan kode wilayah, ', 'uraian' => 'Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.', 'enabled' => 1], - ['id' => 194, 'kode' => '122', 'nama' => 'Wakil Gubernur tambahkan kode wilayah, ', 'uraian' => 'Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.', 'enabled' => 1], - ['id' => 195, 'kode' => '123', 'nama' => 'Sekretaris Wilayah tambahkan kode wilayah, ', 'uraian' => 'Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.', 'enabled' => 1], - ['id' => 196, 'kode' => '124', 'nama' => 'Pembentukan/Pemekaran Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 197, 'kode' => '124.1', 'nama' => 'Pembinaan/Perubahan Nama kepada: Daerah, Kota,Benda, Geografis, Gunung, Sungai, Pulau, Selat, Batas laut, dan sebagainya', 'uraian' => '-', 'enabled' => 1], - ['id' => 198, 'kode' => '124.2', 'nama' => 'Pemekaran Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 199, 'kode' => '124.3', 'nama' => 'Forum Koordinasi lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 200, 'kode' => '125', 'nama' => 'Pembentukan Pemekaran Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 201, 'kode' => '125.1', 'nama' => 'Pembinaan/Perubahan Nama Kepada: Daerah, Kota, Benda, Geografis, Gunung, Sungai, Pulau, Selat, Batas Laut, dan sebagainya.', 'uraian' => '-', 'enabled' => 1], - ['id' => 202, 'kode' => '125.2', 'nama' => 'Pembentukan Wialayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 203, 'kode' => '125.3', 'nama' => 'Pemindahan Ibukota', 'uraian' => '-', 'enabled' => 1], - ['id' => 204, 'kode' => '125.4', 'nama' => 'Perubahan batas Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 205, 'kode' => '125.5', 'nama' => 'Pemekaran Wialayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 206, 'kode' => '126', 'nama' => 'Pembagian Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 207, 'kode' => '127', 'nama' => 'Penyerahan Urusan', 'uraian' => '-', 'enabled' => 1], - ['id' => 208, 'kode' => '128', 'nama' => 'Swaparaja/Penataan Wilayah/Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 209, 'kode' => '129', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 210, 'kode' => '130', 'nama' => 'PEMERINTAH KABUPATEN / KOTA', 'uraian' => 'Bupati /Walikota, Tambahkan Kode Wilayah, Meliputi: Pencalonan,Pengangkatan, Meninggal, Pelantikan,', 'enabled' => 1], - ['id' => 211, 'kode' => '131', 'nama' => 'Pemberhentian, Serah Terima Jabatan, dsb', 'uraian' => 'Sambutan / Pengarahan / Amanat Wakil Bupati /Walikota, Tambahkan Kode Wilayah, Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan,', 'enabled' => 1], - ['id' => 212, 'kode' => '132', 'nama' => 'Pemberhentian, Serah Terima Jabatan, Sekretaris Daerah Kabupaten/Kota, Tambahkan Kode Wilayah, ', 'uraian' => 'Meliputi: Pencalonan, Pengangkatan, Meninggal,', 'enabled' => 1], - ['id' => 213, 'kode' => '133', 'nama' => 'Pelantikan, Pemberhentian, Serah Terima Jabatan,.', 'uraian' => '-', 'enabled' => 1], - ['id' => 214, 'kode' => '134', 'nama' => 'Forum Koordinasi Pemerintah Di Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 215, 'kode' => '134.1', 'nama' => 'Muspida', 'uraian' => '-', 'enabled' => 1], - ['id' => 216, 'kode' => '134.2', 'nama' => 'Forum PAN (Panitian Anggaran Nasional)', 'uraian' => '-', 'enabled' => 1], - ['id' => 217, 'kode' => '134.3', 'nama' => 'Forum Koordinasi Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 218, 'kode' => '134.4', 'nama' => 'Kerjasama antar Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 219, 'kode' => '135', 'nama' => 'Pembentukan / Pemekaran Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 220, 'kode' => '135.1', 'nama' => 'Pemindahan Ibukota', 'uraian' => '-', 'enabled' => 1], - ['id' => 221, 'kode' => '135.2', 'nama' => 'Pembentukan Wilayah Pembantu Bupati/Walikota', 'uraian' => '-', 'enabled' => 1], - ['id' => 222, 'kode' => '135.3', 'nama' => 'Pemabagian Wilayah Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 223, 'kode' => '135.4', 'nama' => 'Perubahan Batas Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 224, 'kode' => '135.5', 'nama' => 'Pemekaran Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 225, 'kode' => '135.6', 'nama' => 'Permasalahan Batas Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 226, 'kode' => '135.7', 'nama' => 'Pembentukan Ibukota Kabupaten/Kota Pemberian dan Penggantian Nama Kabupaten/Kota, Daerah,', 'uraian' => '-', 'enabled' => 1], - ['id' => 227, 'kode' => '135.8', 'nama' => 'Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 228, 'kode' => '136', 'nama' => 'Pembagian Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 229, 'kode' => '137', 'nama' => 'Penyerahan Urusan', 'uraian' => '-', 'enabled' => 1], - ['id' => 230, 'kode' => '138', 'nama' => 'Pemerintah Wilayah Kecamatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 231, 'kode' => '138.1', 'nama' => 'Sambutan / Pengarahan / Amanat', 'uraian' => '-', 'enabled' => 1], - ['id' => 232, 'kode' => '138.2', 'nama' => 'Pembentukan Kecamatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 233, 'kode' => '138.3', 'nama' => 'Pemekaran Kecamatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 234, 'kode' => '138.4', 'nama' => 'Perluasan/Perubahan Batas Wilayah Kecamatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 235, 'kode' => '138.5', 'nama' => 'Pembentukan Perwakilan Kecamatan/Kemantren', 'uraian' => '-', 'enabled' => 1], - ['id' => 236, 'kode' => '138.6', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 237, 'kode' => '138.7', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 238, 'kode' => '139', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 239, 'kode' => '140', 'nama' => 'PEMERINTAHAN DESA / KELURAHAN', 'uraian' => 'Pamong Desa, Meliputi: Pencalonan, Pemilihan, Meninggal,', 'enabled' => 1], - ['id' => 240, 'kode' => '141', 'nama' => 'Pengangkatan, Pemberhenian, dan sebagainya', 'uraian' => '-', 'enabled' => 1], - ['id' => 241, 'kode' => '142', 'nama' => 'Penghasilan Pamong Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 242, 'kode' => '143', 'nama' => 'Kekayaan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 243, 'kode' => '144', 'nama' => 'Dewan Tingkat Desa, Dewan Marga, Rembug Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 244, 'kode' => '145', 'nama' => 'Administrasi Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 245, 'kode' => '146', 'nama' => 'Kewilayahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 246, 'kode' => '146.1', 'nama' => 'Pembentukan Desa/Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 247, 'kode' => '146.2', 'nama' => 'Pemekaran Desa/Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 248, 'kode' => '146.3', 'nama' => 'Perubahan Batas Wilayah / Perluasan Desa / Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 249, 'kode' => '146.4', 'nama' => 'Perubahan Nama Desa / Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 250, 'kode' => '146.5', 'nama' => 'Kerjasama Antar Desa / Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 251, 'kode' => '147', 'nama' => 'Lembaga-lembaga Tingkat Desa', 'uraian' => 'Jangan Klasifikasikan Disini, Lihat 410 Dengan Perinciannya', 'enabled' => 1], - ['id' => 252, 'kode' => '148', 'nama' => 'Perangkat Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 253, 'kode' => '148.1', 'nama' => 'Kepala Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 254, 'kode' => '148.2', 'nama' => 'Sekretaris Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 255, 'kode' => '148.3', 'nama' => 'Staf Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 256, 'kode' => '149.1', 'nama' => 'Dewan Kelurahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 257, 'kode' => '149.2', 'nama' => 'Rukun Tetangga', 'uraian' => '-', 'enabled' => 1], - ['id' => 258, 'kode' => '149.3', 'nama' => 'Rukun Warga', 'uraian' => '-', 'enabled' => 1], - ['id' => 259, 'kode' => '149.4', 'nama' => 'Rukun Kampung', 'uraian' => '-', 'enabled' => 1], - ['id' => 260, 'kode' => '150', 'nama' => 'LEGISLATIF MPR / DPR / DPD', 'uraian' => '-', 'enabled' => 1], - ['id' => 261, 'kode' => '151', 'nama' => 'Keanggotaan MPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 262, 'kode' => '151.1', 'nama' => 'Pencalonan', 'uraian' => '-', 'enabled' => 1], - ['id' => 263, 'kode' => '151.2', 'nama' => 'Pemberhentian', 'uraian' => '-', 'enabled' => 1], - ['id' => 264, 'kode' => '151.3', 'nama' => 'Recall', 'uraian' => '-', 'enabled' => 1], - ['id' => 265, 'kode' => '151.4', 'nama' => 'Pelanggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 266, 'kode' => '152', 'nama' => 'Persidangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 267, 'kode' => '153', 'nama' => 'Kesejahteraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 268, 'kode' => '153.1', 'nama' => 'Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 269, 'kode' => '153.2', 'nama' => 'Penghargaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 270, 'kode' => '154', 'nama' => 'Hak', 'uraian' => '-', 'enabled' => 1], - ['id' => 271, 'kode' => '155', 'nama' => 'Keanggotaan DPR ', 'uraian' => 'Pencalonan Pengangkatan Persidangan Sidang Pleno Dengar Pendapat/Rapat Komisi', 'enabled' => 1], - ['id' => 272, 'kode' => '156', 'nama' => 'Reses', 'uraian' => '-', 'enabled' => 1], - ['id' => 273, 'kode' => '157', 'nama' => 'Kesejahteraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 274, 'kode' => '157.1', 'nama' => 'Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 275, 'kode' => '157.2', 'nama' => 'Penghargaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 276, 'kode' => '158', 'nama' => 'Jawaban Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 277, 'kode' => '159', 'nama' => 'Hak', 'uraian' => '-', 'enabled' => 1], - ['id' => 278, 'kode' => '160', 'nama' => 'DPRD PROVINSI TAMBAHKAN KODE WILAYAH', 'uraian' => '-', 'enabled' => 1], - ['id' => 279, 'kode' => '161', 'nama' => 'Keanggotaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 280, 'kode' => '161.1', 'nama' => 'Pencalonan', 'uraian' => '-', 'enabled' => 1], - ['id' => 281, 'kode' => '161.2', 'nama' => 'Pengangkatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 282, 'kode' => '161.3', 'nama' => 'Pemberhentian', 'uraian' => '-', 'enabled' => 1], - ['id' => 283, 'kode' => '161.4', 'nama' => 'Recall', 'uraian' => '-', 'enabled' => 1], - ['id' => 284, 'kode' => '161.5', 'nama' => 'Meninggal', 'uraian' => '-', 'enabled' => 1], - ['id' => 285, 'kode' => '161.6', 'nama' => 'Pelanggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 286, 'kode' => '162', 'nama' => 'Persidangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 287, 'kode' => '162.1', 'nama' => 'Reses', 'uraian' => '-', 'enabled' => 1], - ['id' => 288, 'kode' => '163', 'nama' => 'Kesejahteraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 289, 'kode' => '163.1', 'nama' => 'Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 290, 'kode' => '163.2', 'nama' => 'Penghargaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 291, 'kode' => '164', 'nama' => 'Hak', 'uraian' => '-', 'enabled' => 1], - ['id' => 292, 'kode' => '165', 'nama' => 'Sekretaris DPRD Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 293, 'kode' => '166', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 294, 'kode' => '167', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 295, 'kode' => '168', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 296, 'kode' => '169', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 297, 'kode' => '170', 'nama' => 'DPRD KABUPATEN TAMBAHKAN KODE WILAYAH', 'uraian' => '-', 'enabled' => 1], - ['id' => 298, 'kode' => '171', 'nama' => 'Keanggotaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 299, 'kode' => '171.1', 'nama' => 'Pencalonan', 'uraian' => '-', 'enabled' => 1], - ['id' => 300, 'kode' => '171.2', 'nama' => 'Pengangkatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 301, 'kode' => '171.3', 'nama' => 'Pemberhentian', 'uraian' => '-', 'enabled' => 1], - ['id' => 302, 'kode' => '171.4', 'nama' => 'Recall', 'uraian' => '-', 'enabled' => 1], - ['id' => 303, 'kode' => '171.5', 'nama' => 'Pelanggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 304, 'kode' => '172', 'nama' => 'Persidangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 305, 'kode' => '173', 'nama' => 'Kesejahteraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 306, 'kode' => '173.1', 'nama' => 'Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 307, 'kode' => '173.2', 'nama' => 'Penghargaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 308, 'kode' => '174', 'nama' => 'Hak', 'uraian' => '-', 'enabled' => 1], - ['id' => 309, 'kode' => '175', 'nama' => 'Sekretaris DPRD Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 310, 'kode' => '176', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 311, 'kode' => '177', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 312, 'kode' => '178', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 313, 'kode' => '180', 'nama' => 'HUKUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 314, 'kode' => '180.1', 'nama' => 'Kontitusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 315, 'kode' => '180.11', 'nama' => 'Dasar Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 316, 'kode' => '180.12', 'nama' => 'Undang-Undang Dasar', 'uraian' => '-', 'enabled' => 1], - ['id' => 317, 'kode' => '180.2', 'nama' => 'GBHN', 'uraian' => '-', 'enabled' => 1], - ['id' => 318, 'kode' => '180.3', 'nama' => 'Amnesti, Abolisi dan Grasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 319, 'kode' => '181', 'nama' => 'Perdata', 'uraian' => '-', 'enabled' => 1], - ['id' => 320, 'kode' => '181.1', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 321, 'kode' => '181.2', 'nama' => 'Rumah', 'uraian' => '-', 'enabled' => 1], - ['id' => 322, 'kode' => '181.3', 'nama' => 'Utang/Piutang', 'uraian' => '-', 'enabled' => 1], - ['id' => 323, 'kode' => '181.31', 'nama' => 'Gadai', 'uraian' => '-', 'enabled' => 1], - ['id' => 324, 'kode' => '181.32', 'nama' => 'Hipotik', 'uraian' => '-', 'enabled' => 1], - ['id' => 325, 'kode' => '181.4', 'nama' => 'Notariat', 'uraian' => '-', 'enabled' => 1], - ['id' => 326, 'kode' => '182', 'nama' => 'Pidana', 'uraian' => '-', 'enabled' => 1], - ['id' => 327, 'kode' => '182.1', 'nama' => 'Penyidik Pegawai Negeri Sipil (PPNS)', 'uraian' => '-', 'enabled' => 1], - ['id' => 328, 'kode' => '183', 'nama' => 'Peradilan', 'uraian' => 'Peradilan Agama Islam 451.6, Peradilan Perkara Tanah 593.71', 'enabled' => 1], - ['id' => 329, 'kode' => '183.1', 'nama' => 'Bantuan Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 330, 'kode' => '184', 'nama' => 'Hukum Internasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 331, 'kode' => '185', 'nama' => 'Imigrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 332, 'kode' => '185.1', 'nama' => 'Visa', 'uraian' => '-', 'enabled' => 1], - ['id' => 333, 'kode' => '185.2', 'nama' => 'Pasport', 'uraian' => '-', 'enabled' => 1], - ['id' => 334, 'kode' => '185.3', 'nama' => 'Exit', 'uraian' => '-', 'enabled' => 1], - ['id' => 335, 'kode' => '185.4', 'nama' => 'Reentry', 'uraian' => '-', 'enabled' => 1], - ['id' => 336, 'kode' => '185.5', 'nama' => 'Lintas Batas/Batas Antar Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 337, 'kode' => '186', 'nama' => 'Kepenjaraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 338, 'kode' => '187', 'nama' => 'Kejaksaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 339, 'kode' => '188', 'nama' => 'Peraturan Perundang-Undangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 340, 'kode' => '188.1', 'nama' => 'TAP MPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 341, 'kode' => '188.2', 'nama' => 'Undang-Undang Dasar', 'uraian' => '-', 'enabled' => 1], - ['id' => 342, 'kode' => '188.3', 'nama' => 'Peraturan', 'uraian' => '-', 'enabled' => 1], - ['id' => 343, 'kode' => '188.31', 'nama' => 'Peraturan Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 344, 'kode' => '188.32', 'nama' => 'Peraturan Menteri', 'uraian' => '-', 'enabled' => 1], - ['id' => 345, 'kode' => '188.33', 'nama' => 'Peraturan Lembaga Non Departemen', 'uraian' => '-', 'enabled' => 1], - ['id' => 346, 'kode' => '188.34', 'nama' => 'Peraturan Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 347, 'kode' => '188.341', 'nama' => 'Peraturan Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 348, 'kode' => '188.342', 'nama' => 'Peraturan Kabupaten/Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 349, 'kode' => '188.4', 'nama' => 'Keputusan', 'uraian' => '-', 'enabled' => 1], - ['id' => 350, 'kode' => '188.41', 'nama' => 'Presiden', 'uraian' => '-', 'enabled' => 1], - ['id' => 351, 'kode' => '188.42', 'nama' => 'Menteri', 'uraian' => '-', 'enabled' => 1], - ['id' => 352, 'kode' => '188.43', 'nama' => 'Lembaga Non Departemen', 'uraian' => '-', 'enabled' => 1], - ['id' => 353, 'kode' => '188.44', 'nama' => 'Gubernur', 'uraian' => '-', 'enabled' => 1], - ['id' => 354, 'kode' => '188.45', 'nama' => 'Bupati/Walikota', 'uraian' => '-', 'enabled' => 1], - ['id' => 355, 'kode' => '188.5', 'nama' => 'Instruksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 356, 'kode' => '188.51', 'nama' => 'Presiden', 'uraian' => '-', 'enabled' => 1], - ['id' => 357, 'kode' => '188.52', 'nama' => 'Menteri', 'uraian' => '-', 'enabled' => 1], - ['id' => 358, 'kode' => '188.53', 'nama' => 'Lembaga Non Departemen', 'uraian' => '-', 'enabled' => 1], - ['id' => 359, 'kode' => '188.54', 'nama' => 'Gubernur', 'uraian' => '-', 'enabled' => 1], - ['id' => 360, 'kode' => '188.55', 'nama' => 'Bupati/Walikota', 'uraian' => '-', 'enabled' => 1], - ['id' => 361, 'kode' => '189', 'nama' => 'Hukum Adat', 'uraian' => '-', 'enabled' => 1], - ['id' => 362, 'kode' => '189.1', 'nama' => 'Tokoh Adat/Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 363, 'kode' => '190', 'nama' => 'HUBUNGAN LUAR NEGERI', 'uraian' => '-', 'enabled' => 1], - ['id' => 364, 'kode' => '191', 'nama' => 'Perwakilan Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 365, 'kode' => '192', 'nama' => 'Tamu Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 366, 'kode' => '193', 'nama' => 'Kerjasama Dengan Negara Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 367, 'kode' => '193.1', 'nama' => 'Asean', 'uraian' => '-', 'enabled' => 1], - ['id' => 368, 'kode' => '193.2', 'nama' => 'Bantuan Luar Negeri/Hibah', 'uraian' => '-', 'enabled' => 1], - ['id' => 369, 'kode' => '194', 'nama' => 'Perwakilan RI Di Luar Negeri/Hibah', 'uraian' => '-', 'enabled' => 1], - ['id' => 370, 'kode' => '195', 'nama' => 'PBB', 'uraian' => '-', 'enabled' => 1], - ['id' => 371, 'kode' => '196', 'nama' => 'Laporan Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 372, 'kode' => '197', 'nama' => 'Hutang Luar Negeri PHLN/LOAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 373, 'kode' => '198', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 374, 'kode' => '199', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 375, 'kode' => '200', 'nama' => 'POLITIK', 'uraian' => '-', 'enabled' => 1], - ['id' => 376, 'kode' => '201', 'nama' => 'Kebijaksanaan umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 377, 'kode' => '202', 'nama' => 'Orde baru', 'uraian' => '-', 'enabled' => 1], - ['id' => 378, 'kode' => '203', 'nama' => 'Reformasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 379, 'kode' => '204', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 380, 'kode' => '205', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 381, 'kode' => '206', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 382, 'kode' => '210', 'nama' => 'KEPARTAIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 383, 'kode' => '211', 'nama' => 'Lambang partai', 'uraian' => '-', 'enabled' => 1], - ['id' => 384, 'kode' => '212', 'nama' => 'Kartu tanda anggota', 'uraian' => '-', 'enabled' => 1], - ['id' => 385, 'kode' => '213', 'nama' => 'Bantuan keuangan parpol', 'uraian' => '-', 'enabled' => 1], - ['id' => 386, 'kode' => '214', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 387, 'kode' => '215', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 388, 'kode' => '216', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 389, 'kode' => '220', 'nama' => 'ORGANISASI KEMASYARAKATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 390, 'kode' => '221', 'nama' => 'Berdasarkan perjuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 391, 'kode' => '221.1', 'nama' => 'Perintis kemerdekaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 392, 'kode' => '221.2', 'nama' => 'angkatan 45', 'uraian' => '-', 'enabled' => 1], - ['id' => 393, 'kode' => '221.3', 'nama' => 'Veteran', 'uraian' => '-', 'enabled' => 1], - ['id' => 394, 'kode' => '222', 'nama' => 'Berdasarkan Kekaryaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 395, 'kode' => '222.1', 'nama' => 'PEPABRI', 'uraian' => '-', 'enabled' => 1], - ['id' => 396, 'kode' => '222.2', 'nama' => 'Wredatama', 'uraian' => '-', 'enabled' => 1], - ['id' => 397, 'kode' => '223', 'nama' => 'Berdasarkan kerohanian', 'uraian' => '-', 'enabled' => 1], - ['id' => 398, 'kode' => '224', 'nama' => 'Lembaga adat', 'uraian' => '-', 'enabled' => 1], - ['id' => 399, 'kode' => '225', 'nama' => 'Lembaga Swadaya Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 400, 'kode' => '226', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 401, 'kode' => '230', 'nama' => 'ORGANISASI PROFESI DAN FUNGSIONAL', 'uraian' => '-', 'enabled' => 1], - ['id' => 402, 'kode' => '231', 'nama' => 'Ikatan Dokter Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 403, 'kode' => '232', 'nama' => 'Persatuan Guru Republik Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 404, 'kode' => '233', 'nama' => 'PERSATUAN SARJANA HUKUM INDONESIA', 'uraian' => '-', 'enabled' => 1], - ['id' => 405, 'kode' => '234', 'nama' => 'Persatuan Advokat Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 406, 'kode' => '235', 'nama' => 'Lembaga Bantuan Hukum Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 407, 'kode' => '236', 'nama' => 'Korps Pegawai Republik Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 408, 'kode' => '237', 'nama' => 'Persatuan Wartawan Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 409, 'kode' => '238', 'nama' => 'Ikatan Cendikiawan Muslim Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 410, 'kode' => '239', 'nama' => 'Organisasi Profesi Dan Fungsional Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 411, 'kode' => '240', 'nama' => 'ORGANISASI PEMUDA', 'uraian' => '-', 'enabled' => 1], - ['id' => 412, 'kode' => '241', 'nama' => 'Komite Nasional Pemuda Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 413, 'kode' => '242', 'nama' => 'Organisasi Mahasiswa', 'uraian' => '-', 'enabled' => 1], - ['id' => 414, 'kode' => '243', 'nama' => 'Organisasi Pelajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 415, 'kode' => '244', 'nama' => 'Gerakan Pemuda Ansor', 'uraian' => '-', 'enabled' => 1], - ['id' => 416, 'kode' => '245', 'nama' => 'Gerakan Pemuda Islam Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 417, 'kode' => '246', 'nama' => 'Gerakan Pemuda Marhaenis', 'uraian' => '-', 'enabled' => 1], - ['id' => 418, 'kode' => '247', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 419, 'kode' => '248', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 420, 'kode' => '250', 'nama' => 'ORGANISASI BURUH, TANI, NELAYAN DAN ANGKUTAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 421, 'kode' => '251', 'nama' => 'Federasi Buruh Seluruh Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 422, 'kode' => '252', 'nama' => 'Organisasi Buruh Internasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 423, 'kode' => '253', 'nama' => 'Himpunan Kerukunan Tani', 'uraian' => '-', 'enabled' => 1], - ['id' => 424, 'kode' => '254', 'nama' => 'Himpunan Nelayan Seluruh Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 425, 'kode' => '255', 'nama' => 'Keluarga Sopir Proporsional Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 426, 'kode' => '256', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 427, 'kode' => '257', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 428, 'kode' => '258', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 429, 'kode' => '260', 'nama' => 'ORGANISASI WANITA', 'uraian' => '-', 'enabled' => 1], - ['id' => 430, 'kode' => '261', 'nama' => 'Dharma Wanita', 'uraian' => '-', 'enabled' => 1], - ['id' => 431, 'kode' => '262', 'nama' => 'Persatuan Wanita Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 432, 'kode' => '263', 'nama' => 'Pemberdayaan Perempuan (wanita)', 'uraian' => '-', 'enabled' => 1], - ['id' => 433, 'kode' => '264', 'nama' => 'Kongres Wanita', 'uraian' => '-', 'enabled' => 1], - ['id' => 434, 'kode' => '265', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 435, 'kode' => '266', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 436, 'kode' => '267', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 437, 'kode' => '268', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 438, 'kode' => '269', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 439, 'kode' => '270', 'nama' => 'PEMILIHAN UMUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 440, 'kode' => '271', 'nama' => 'Pencalonan', 'uraian' => '-', 'enabled' => 1], - ['id' => 441, 'kode' => '272', 'nama' => 'Nomor Urut Partai / Tanda Gambar', 'uraian' => '-', 'enabled' => 1], - ['id' => 442, 'kode' => '273', 'nama' => 'Kampanye', 'uraian' => '-', 'enabled' => 1], - ['id' => 443, 'kode' => '274', 'nama' => 'Petugas Pemilu', 'uraian' => '-', 'enabled' => 1], - ['id' => 444, 'kode' => '275', 'nama' => 'Pemilih / Daftar Pemilih', 'uraian' => '-', 'enabled' => 1], - ['id' => 445, 'kode' => '276', 'nama' => 'Sarana', 'uraian' => '-', 'enabled' => 1], - ['id' => 446, 'kode' => '276.1', 'nama' => 'TPS', 'uraian' => '-', 'enabled' => 1], - ['id' => 447, 'kode' => '276.2', 'nama' => 'Kendaraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 448, 'kode' => '276.3', 'nama' => 'Surat Suara', 'uraian' => '-', 'enabled' => 1], - ['id' => 449, 'kode' => '276.4', 'nama' => 'Kotak Suara', 'uraian' => '-', 'enabled' => 1], - ['id' => 450, 'kode' => '276.5', 'nama' => 'Dana', 'uraian' => '-', 'enabled' => 1], - ['id' => 451, 'kode' => '277', 'nama' => 'Pemungutan Suara / Perhitungan Suara', 'uraian' => '-', 'enabled' => 1], - ['id' => 452, 'kode' => '278', 'nama' => 'Penetapan Hasil Pemilu', 'uraian' => '-', 'enabled' => 1], - ['id' => 453, 'kode' => '279', 'nama' => 'Penetapan Perolehan Jumlah Kursi Dan Calon Terpilih', 'uraian' => '-', 'enabled' => 1], - ['id' => 454, 'kode' => '280', 'nama' => 'Pengucapan Sumpah Janji MPR,DPR,DPD', 'uraian' => '-', 'enabled' => 1], - ['id' => 455, 'kode' => '281', 'nama' => '', 'uraian' => '-', 'enabled' => 1], - ['id' => 456, 'kode' => '282', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 457, 'kode' => '283', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 458, 'kode' => '284', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 459, 'kode' => '300', 'nama' => 'KEAMANAN / KETERTIBAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 460, 'kode' => '301', 'nama' => 'Keamanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 461, 'kode' => '302', 'nama' => 'Ketertiban', 'uraian' => '-', 'enabled' => 1], - ['id' => 462, 'kode' => '303', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 463, 'kode' => '310', 'nama' => 'PERTAHANAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 464, 'kode' => '311', 'nama' => 'Darat', 'uraian' => '-', 'enabled' => 1], - ['id' => 465, 'kode' => '312', 'nama' => 'Laut', 'uraian' => '-', 'enabled' => 1], - ['id' => 466, 'kode' => '313', 'nama' => 'Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 467, 'kode' => '314', 'nama' => 'Perbatasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 468, 'kode' => '315', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 469, 'kode' => '316', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 470, 'kode' => '317', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 471, 'kode' => '320', 'nama' => 'KEMILITERAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 472, 'kode' => '321', 'nama' => 'Latihan Militer', 'uraian' => '-', 'enabled' => 1], - ['id' => 473, 'kode' => '322', 'nama' => 'Wajib Militer', 'uraian' => '-', 'enabled' => 1], - ['id' => 474, 'kode' => '323', 'nama' => 'Operasi Militer', 'uraian' => '-', 'enabled' => 1], - ['id' => 475, 'kode' => '324', 'nama' => 'Kekaryaan TNI Pejabat Sipil dari TNI', 'uraian' => '-', 'enabled' => 1], - ['id' => 476, 'kode' => '324.1', 'nama' => 'TMD', 'uraian' => '-', 'enabled' => 1], - ['id' => 477, 'kode' => '325', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 478, 'kode' => '326', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 479, 'kode' => '327', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 480, 'kode' => '328', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 481, 'kode' => '330', 'nama' => 'KEAMANAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 482, 'kode' => '331', 'nama' => 'Kepolisian', 'uraian' => '-', 'enabled' => 1], - ['id' => 483, 'kode' => '331.1', 'nama' => 'Polisi Pamong Praja', 'uraian' => '-', 'enabled' => 1], - ['id' => 484, 'kode' => '331.2', 'nama' => 'Kamra', 'uraian' => '-', 'enabled' => 1], - ['id' => 485, 'kode' => '331.3', 'nama' => 'Kamling', 'uraian' => '-', 'enabled' => 1], - ['id' => 486, 'kode' => '331.4', 'nama' => 'Jaga Wana', 'uraian' => '-', 'enabled' => 1], - ['id' => 487, 'kode' => '332', 'nama' => 'Huru-Hara / Demonstrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 488, 'kode' => '333', 'nama' => 'Senjata Api Tajam', 'uraian' => '-', 'enabled' => 1], - ['id' => 489, 'kode' => '334', 'nama' => 'Bahan Peledak', 'uraian' => '-', 'enabled' => 1], - ['id' => 490, 'kode' => '335', 'nama' => 'Perjudian', 'uraian' => '-', 'enabled' => 1], - ['id' => 491, 'kode' => '336', 'nama' => 'Surat-Surat Kaleng', 'uraian' => '-', 'enabled' => 1], - ['id' => 492, 'kode' => '337', 'nama' => 'Pengaduan', 'uraian' => '-', 'enabled' => 1], - ['id' => 493, 'kode' => '338', 'nama' => 'Himbauan / Larangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 494, 'kode' => '339', 'nama' => 'Teroris', 'uraian' => '-', 'enabled' => 1], - ['id' => 495, 'kode' => '340', 'nama' => 'PERTAHANAN SIPIL', 'uraian' => '-', 'enabled' => 1], - ['id' => 496, 'kode' => '341', 'nama' => 'Perlindungan Sipil', 'uraian' => '-', 'enabled' => 1], - ['id' => 497, 'kode' => '342', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 498, 'kode' => '343', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 499, 'kode' => '344', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 500, 'kode' => '350', 'nama' => 'KEJAHATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 501, 'kode' => '351', 'nama' => 'Makar / Pemberontak', 'uraian' => '-', 'enabled' => 1], - ['id' => 502, 'kode' => '352', 'nama' => 'Pembunuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 503, 'kode' => '353', 'nama' => 'Penganiayaan, Pencurian', 'uraian' => '-', 'enabled' => 1], - ['id' => 504, 'kode' => '354', 'nama' => 'Subversi / Penyelundupan / Narkotika', 'uraian' => '-', 'enabled' => 1], - ['id' => 505, 'kode' => '355', 'nama' => 'Pemalsuan', 'uraian' => '-', 'enabled' => 1], - ['id' => 506, 'kode' => '356', 'nama' => 'Korupsi / Penyelewengan / Penyalahgunaan Jabatan / KKN', 'uraian' => '-', 'enabled' => 1], - ['id' => 507, 'kode' => '357', 'nama' => 'Pemerkosaan / Perbuatan Cabul', 'uraian' => '-', 'enabled' => 1], - ['id' => 508, 'kode' => '358', 'nama' => 'Kenakalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 509, 'kode' => '359', 'nama' => 'Kejahatan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 510, 'kode' => '360', 'nama' => 'BENCANA', 'uraian' => '-', 'enabled' => 1], - ['id' => 511, 'kode' => '361', 'nama' => 'Gunung Berapi / Gempa', 'uraian' => '-', 'enabled' => 1], - ['id' => 512, 'kode' => '362', 'nama' => 'Banjir / Tanah Longsor', 'uraian' => '-', 'enabled' => 1], - ['id' => 513, 'kode' => '363', 'nama' => 'Angin Topan', 'uraian' => '-', 'enabled' => 1], - ['id' => 514, 'kode' => '364', 'nama' => 'Kebakaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 515, 'kode' => '364.1', 'nama' => 'Pemadam Kebakaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 516, 'kode' => '365', 'nama' => 'Kekeringan', 'uraian' => '-', 'enabled' => 1], - ['id' => 517, 'kode' => '366', 'nama' => 'Tsunami', 'uraian' => '-', 'enabled' => 1], - ['id' => 518, 'kode' => '367', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 519, 'kode' => '368', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 520, 'kode' => '370', 'nama' => 'KECELAKAAN / SAR', 'uraian' => '-', 'enabled' => 1], - ['id' => 521, 'kode' => '371', 'nama' => 'Darat', 'uraian' => '-', 'enabled' => 1], - ['id' => 522, 'kode' => '372', 'nama' => 'Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 523, 'kode' => '373', 'nama' => 'Laut', 'uraian' => '-', 'enabled' => 1], - ['id' => 524, 'kode' => '374', 'nama' => 'Sungai / Danau', 'uraian' => '-', 'enabled' => 1], - ['id' => 525, 'kode' => '375', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 526, 'kode' => '376', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 527, 'kode' => '377', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 528, 'kode' => '380', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 529, 'kode' => '381', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 530, 'kode' => '382', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 531, 'kode' => '383', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 532, 'kode' => '390', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 533, 'kode' => '391', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 534, 'kode' => '392', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 535, 'kode' => '393', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 536, 'kode' => '400', 'nama' => 'KESEJAHTERAAN RAKYAT', 'uraian' => '-', 'enabled' => 1], - ['id' => 537, 'kode' => '401', 'nama' => 'Keluarga Miskin', 'uraian' => '-', 'enabled' => 1], - ['id' => 538, 'kode' => '402', 'nama' => 'PNPM Mandiri Pedesaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 539, 'kode' => '403', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 540, 'kode' => '404', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 541, 'kode' => '410', 'nama' => 'PEMBANGUNAN DESA', 'uraian' => '-', 'enabled' => 1], - ['id' => 542, 'kode' => '411', 'nama' => 'Pembinaan Usaha Gotong Royong', 'uraian' => '-', 'enabled' => 1], - ['id' => 543, 'kode' => '411.1', 'nama' => 'Swadaya Gotong Royong', 'uraian' => '-', 'enabled' => 1], - ['id' => 544, 'kode' => '411.11', 'nama' => 'Penataan Gotong Royong', 'uraian' => '-', 'enabled' => 1], - ['id' => 545, 'kode' => '411.12', 'nama' => 'Gotong Royong Dinamis', 'uraian' => '-', 'enabled' => 1], - ['id' => 546, 'kode' => '411.13', 'nama' => 'Gotong Royong Statis', 'uraian' => '-', 'enabled' => 1], - ['id' => 547, 'kode' => '411.14', 'nama' => 'Pungutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 548, 'kode' => '411.2', 'nama' => 'Lembaga Sosial Desa (LSD)', 'uraian' => '-', 'enabled' => 1], - ['id' => 549, 'kode' => '411.21', 'nama' => 'Pembinaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 550, 'kode' => '411.22', 'nama' => 'Klasifikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 551, 'kode' => '411.23', 'nama' => 'Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 552, 'kode' => '411.24', 'nama' => 'Musyawarah', 'uraian' => '-', 'enabled' => 1], - ['id' => 553, 'kode' => '411.3', 'nama' => 'Latihan Kerja Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 554, 'kode' => '411.31', 'nama' => 'Kader Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 555, 'kode' => '411.32', 'nama' => 'Kuliah Kerja Nyata (KKN)', 'uraian' => '-', 'enabled' => 1], - ['id' => 556, 'kode' => '411.33', 'nama' => 'Pusat Latihan', 'uraian' => '-', 'enabled' => 1], - ['id' => 557, 'kode' => '411.34', 'nama' => 'Kursus-Kursus', 'uraian' => '-', 'enabled' => 1], - ['id' => 558, 'kode' => '411.35', 'nama' => 'Kurikulum / Sylabus', 'uraian' => '-', 'enabled' => 1], - ['id' => 559, 'kode' => '411.36', 'nama' => 'Ketrampilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 560, 'kode' => '411.37', 'nama' => 'Pramuka', 'uraian' => '-', 'enabled' => 1], - ['id' => 561, 'kode' => '411.4', 'nama' => 'Pembinaan Kesejahteraan Keluarga (PKK)', 'uraian' => '-', 'enabled' => 1], - ['id' => 562, 'kode' => '411.41', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 563, 'kode' => '411.42', 'nama' => 'Pembinaan Organisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 564, 'kode' => '411.43', 'nama' => 'Kegiatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 565, 'kode' => '411.5', 'nama' => 'Penyuluhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 566, 'kode' => '411.51', 'nama' => 'Publikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 567, 'kode' => '411.52', 'nama' => 'Peragaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 568, 'kode' => '411.53', 'nama' => 'Sosio Drama', 'uraian' => '-', 'enabled' => 1], - ['id' => 569, 'kode' => '411.54', 'nama' => 'Siaran Pedesaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 570, 'kode' => '411.55', 'nama' => 'Penyuluhan Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 571, 'kode' => '411.6', 'nama' => 'Kelembagaan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 572, 'kode' => '411.61', 'nama' => 'Kelompok Tani', 'uraian' => '-', 'enabled' => 1], - ['id' => 573, 'kode' => '411.62', 'nama' => 'Rukun Tani', 'uraian' => '-', 'enabled' => 1], - ['id' => 574, 'kode' => '411.63', 'nama' => 'Subak', 'uraian' => '-', 'enabled' => 1], - ['id' => 575, 'kode' => '411.64', 'nama' => 'Dharma Tirta', 'uraian' => '-', 'enabled' => 1], - ['id' => 576, 'kode' => '412', 'nama' => 'Perekonomian Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 577, 'kode' => '412.1', 'nama' => 'Produksi Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 578, 'kode' => '412.11', 'nama' => 'Pengolahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 579, 'kode' => '412.12', 'nama' => 'Pemasaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 580, 'kode' => '412.2', 'nama' => 'Keuangan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 581, 'kode' => '412.21', 'nama' => 'Perkreditan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 582, 'kode' => '412.22', 'nama' => 'Inventarisasi Data', 'uraian' => '-', 'enabled' => 1], - ['id' => 583, 'kode' => '412.23', 'nama' => 'Perkembangan / Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 584, 'kode' => '412.24', 'nama' => 'Bantuan / Stimulans', 'uraian' => '-', 'enabled' => 1], - ['id' => 585, 'kode' => '412.25', 'nama' => 'Petunjuk / Pembinaan Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 586, 'kode' => '412.3', 'nama' => 'Koperasi Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 587, 'kode' => '412.31', 'nama' => 'Badan Usaha Unit Desa (BUUD)', 'uraian' => '-', 'enabled' => 1], - ['id' => 588, 'kode' => '412.32', 'nama' => 'Koperasi Usaha Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 589, 'kode' => '412.4', 'nama' => 'Penataan Bantuan Pembangunan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 590, 'kode' => '412.41', 'nama' => 'Jumlah Desa Yang Diberi Bantuan', 'uraian' => '-', 'enabled' => 1], - ['id' => 591, 'kode' => '412.42', 'nama' => 'Pengarahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 592, 'kode' => '412.43', 'nama' => 'Pusat', 'uraian' => '-', 'enabled' => 1], - ['id' => 593, 'kode' => '412.44', 'nama' => 'Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 594, 'kode' => '412.5', 'nama' => 'Alokasi Bantuan Pembangunan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 595, 'kode' => '412.51', 'nama' => 'Pusat', 'uraian' => '-', 'enabled' => 1], - ['id' => 596, 'kode' => '412.52', 'nama' => 'Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 597, 'kode' => '412.6', 'nama' => 'Pelaksanaan Bantuan Pembangunan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 598, 'kode' => '412.61', 'nama' => 'Bantuan Langsung', 'uraian' => '-', 'enabled' => 1], - ['id' => 599, 'kode' => '412.62', 'nama' => 'Bantuan Keserasian', 'uraian' => '-', 'enabled' => 1], - ['id' => 600, 'kode' => '412.63', 'nama' => 'Bantuan Juara Lomba Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 601, 'kode' => '413', 'nama' => 'Prasarana Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 602, 'kode' => '413.1', 'nama' => 'Prasarana Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 603, 'kode' => '413.11', 'nama' => 'Pembinaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 604, 'kode' => '413.12', 'nama' => 'Bimbingan Teknis', 'uraian' => '-', 'enabled' => 1], - ['id' => 605, 'kode' => '413.2', 'nama' => 'Pemukiman Kembali Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 606, 'kode' => '413.21', 'nama' => 'Lokasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 607, 'kode' => '413.22', 'nama' => 'Diskusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 608, 'kode' => '413.23', 'nama' => 'Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 609, 'kode' => '413.3', 'nama' => 'Masyarakat Pradesa', 'uraian' => '-', 'enabled' => 1], - ['id' => 610, 'kode' => '413.31', 'nama' => 'Pembinaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 611, 'kode' => '413.32', 'nama' => 'Penyuluhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 612, 'kode' => '413.4', 'nama' => 'Pemugaran Perumahan Dan Lingkungan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 613, 'kode' => '413.41', 'nama' => 'Rumah Sehat', 'uraian' => '-', 'enabled' => 1], - ['id' => 614, 'kode' => '413.42', 'nama' => 'Proyek Perintis', 'uraian' => '-', 'enabled' => 1], - ['id' => 615, 'kode' => '413.43', 'nama' => 'Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 616, 'kode' => '413.44', 'nama' => 'Pengembangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 617, 'kode' => '413.45', 'nama' => 'Perbaikan Kampung', 'uraian' => '-', 'enabled' => 1], - ['id' => 618, 'kode' => '414', 'nama' => 'Pengembangan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 619, 'kode' => '414.1', 'nama' => 'Tingkat Perkembangan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 620, 'kode' => '414.11', 'nama' => 'Jumlah Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 621, 'kode' => '414.12', 'nama' => 'Pemekaran Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 622, 'kode' => '414.13', 'nama' => 'Pembentukan Desa Baru', 'uraian' => '-', 'enabled' => 1], - ['id' => 623, 'kode' => '414.14', 'nama' => 'Evaluasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 624, 'kode' => '414.15', 'nama' => 'Bagan', 'uraian' => '-', 'enabled' => 1], - ['id' => 625, 'kode' => '414.2', 'nama' => 'Unit Desa Kerja Pembangunan (UDKP)', 'uraian' => '-', 'enabled' => 1], - ['id' => 626, 'kode' => '414.21', 'nama' => 'Penyuluhan Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 627, 'kode' => '414.22', 'nama' => 'Lokasi UDKP', 'uraian' => '-', 'enabled' => 1], - ['id' => 628, 'kode' => '414.23', 'nama' => 'Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 629, 'kode' => '414.24', 'nama' => 'Bimbingan/Pembinaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 630, 'kode' => '414.25', 'nama' => 'Evaluasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 631, 'kode' => '414.3', 'nama' => 'Tata Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 632, 'kode' => '414.31', 'nama' => 'Inventarisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 633, 'kode' => '414.32', 'nama' => 'Penyusunan Pola Tata Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 634, 'kode' => '414.33', 'nama' => 'Aplikasi Tata Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 635, 'kode' => '414.34', 'nama' => 'Pemetaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 636, 'kode' => '414.35', 'nama' => 'Pedoman Pelaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 637, 'kode' => '414.36', 'nama' => 'Evaluasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 638, 'kode' => '414.4', 'nama' => 'Perlombaan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 639, 'kode' => '414.41', 'nama' => 'Pedoman', 'uraian' => '-', 'enabled' => 1], - ['id' => 640, 'kode' => '414.42', 'nama' => 'Penilaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 641, 'kode' => '414.43', 'nama' => 'Kejuaraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 642, 'kode' => '414.44', 'nama' => 'Piagam', 'uraian' => '-', 'enabled' => 1], - ['id' => 643, 'kode' => '415', 'nama' => 'Koordinasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 644, 'kode' => '415.1', 'nama' => 'Sektor Khusus', 'uraian' => '-', 'enabled' => 1], - ['id' => 645, 'kode' => '415.2', 'nama' => 'Rapat Koordinasi Horizontal (RKH)', 'uraian' => '-', 'enabled' => 1], - ['id' => 646, 'kode' => '415.3', 'nama' => 'Tim Koordinasi Pusat (TKP)', 'uraian' => '-', 'enabled' => 1], - ['id' => 647, 'kode' => '415.4', 'nama' => 'Kerjasama', 'uraian' => '-', 'enabled' => 1], - ['id' => 648, 'kode' => '415.41', 'nama' => 'Luar Negeri (UNICEF)', 'uraian' => '-', 'enabled' => 1], - ['id' => 649, 'kode' => '415.42', 'nama' => 'Perguruan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 650, 'kode' => '415.43', 'nama' => 'Kementerian / Lembaga Non Kementerian', 'uraian' => '-', 'enabled' => 1], - ['id' => 651, 'kode' => '416', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 652, 'kode' => '417', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 653, 'kode' => '418', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 654, 'kode' => '420', 'nama' => 'PENDIDIKAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 655, 'kode' => '420.1', 'nama' => 'Pendidikan Khusus Klasifikasi Disini Pendidikan Putra/I Irja', 'uraian' => '-', 'enabled' => 1], - ['id' => 656, 'kode' => '421', 'nama' => 'Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 657, 'kode' => '421.1', 'nama' => 'Pra Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 658, 'kode' => '421.2', 'nama' => 'Sekolah Dasar', 'uraian' => '-', 'enabled' => 1], - ['id' => 659, 'kode' => '421.3', 'nama' => 'Sekolah Menengah', 'uraian' => '-', 'enabled' => 1], - ['id' => 660, 'kode' => '421.4', 'nama' => 'Sekolah Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 661, 'kode' => '421.5', 'nama' => 'Sekolah Kejuruan', 'uraian' => '-', 'enabled' => 1], - ['id' => 662, 'kode' => '421.6', 'nama' => 'Kegiatan Sekolah, Dies Natalis Lustrum', 'uraian' => '-', 'enabled' => 1], - ['id' => 663, 'kode' => '421.7', 'nama' => 'Kegiatan Pelajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 664, 'kode' => '421.71', 'nama' => 'Reuni Darmawisata', 'uraian' => '-', 'enabled' => 1], - ['id' => 665, 'kode' => '421.72', 'nama' => 'Pelajar Teladan', 'uraian' => '-', 'enabled' => 1], - ['id' => 666, 'kode' => '421.73', 'nama' => 'Resimen Mahasiswa', 'uraian' => '-', 'enabled' => 1], - ['id' => 667, 'kode' => '421.8', 'nama' => 'Sekolah Pendidikan Luar Biasa', 'uraian' => '-', 'enabled' => 1], - ['id' => 668, 'kode' => '421.9', 'nama' => 'Pendidikan Luar Sekolah / Pemberantasan Buta Huruf', 'uraian' => '-', 'enabled' => 1], - ['id' => 669, 'kode' => '422', 'nama' => 'Administrasi Sekolah', 'uraian' => 'Persyaratan Masuk Sekolah, Testing, Ujian, Pendaftaran,', 'enabled' => 1], - ['id' => 670, 'kode' => '422.1', 'nama' => 'Mapras, Perpeloncoan', 'uraian' => '-', 'enabled' => 1], - ['id' => 671, 'kode' => '422.2', 'nama' => 'Tahun Pelajaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 672, 'kode' => '422.3', 'nama' => 'Hari Libur', 'uraian' => '-', 'enabled' => 1], - ['id' => 673, 'kode' => '422.4', 'nama' => 'Uang Sekolah, Klasifikasi Disini SPP', 'uraian' => '-', 'enabled' => 1], - ['id' => 674, 'kode' => '422.5', 'nama' => 'Beasiswa', 'uraian' => '-', 'enabled' => 1], - ['id' => 675, 'kode' => '423', 'nama' => 'Metode Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 676, 'kode' => '423.1', 'nama' => 'Kuliah', 'uraian' => '-', 'enabled' => 1], - ['id' => 677, 'kode' => '423.2', 'nama' => 'Ceramah, Simposium', 'uraian' => '-', 'enabled' => 1], - ['id' => 678, 'kode' => '423.3', 'nama' => 'Diskusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 679, 'kode' => '423.4', 'nama' => 'Kuliah Lapangan, Widyawisata, KKN, Studi Tur', 'uraian' => '-', 'enabled' => 1], - ['id' => 680, 'kode' => '423.5', 'nama' => 'Kurikulum', 'uraian' => '-', 'enabled' => 1], - ['id' => 681, 'kode' => '423.6', 'nama' => 'Karya Tulis', 'uraian' => '-', 'enabled' => 1], - ['id' => 682, 'kode' => '423.7', 'nama' => 'Ujian', 'uraian' => '-', 'enabled' => 1], - ['id' => 683, 'kode' => '424', 'nama' => 'Tenaga Pengajar, Guru, Dosen, Dekan, Rektor', 'uraian' => 'Klasifikasi Disini: Guru Teladan', 'enabled' => 1], - ['id' => 684, 'kode' => '425', 'nama' => 'Sarana Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 685, 'kode' => '425.1', 'nama' => 'Gedung', 'uraian' => '-', 'enabled' => 1], - ['id' => 686, 'kode' => '425.11', 'nama' => 'Gedung Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 687, 'kode' => '425.12', 'nama' => 'Kampus', 'uraian' => '-', 'enabled' => 1], - ['id' => 688, 'kode' => '425.13', 'nama' => 'Pusat Kegiatan Mahasiswa', 'uraian' => '-', 'enabled' => 1], - ['id' => 689, 'kode' => '425.2', 'nama' => 'Buku', 'uraian' => '-', 'enabled' => 1], - ['id' => 690, 'kode' => '425.3', 'nama' => 'Perlengkapan Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 691, 'kode' => '426', 'nama' => 'Keolahragaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 692, 'kode' => '426.1', 'nama' => 'Cabang Olah Raga', 'uraian' => '-', 'enabled' => 1], - ['id' => 693, 'kode' => '426.2', 'nama' => 'Sarana', 'uraian' => '-', 'enabled' => 1], - ['id' => 694, 'kode' => '426.21', 'nama' => 'Gedung Olah Raga', 'uraian' => '-', 'enabled' => 1], - ['id' => 695, 'kode' => '426.22', 'nama' => 'Stadion', 'uraian' => '-', 'enabled' => 1], - ['id' => 696, 'kode' => '426.23', 'nama' => 'Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 697, 'kode' => '426.24', 'nama' => 'Kolam renang', 'uraian' => '-', 'enabled' => 1], - ['id' => 698, 'kode' => '426.3', 'nama' => 'Pesta Olah Raga, ', 'uraian' => 'Klasifikasi Disini: PON, Porsade, Olimpiade, dsb', 'enabled' => 1], - ['id' => 699, 'kode' => '426.4', 'nama' => 'KONI', 'uraian' => '-', 'enabled' => 1], - ['id' => 700, 'kode' => '427', 'nama' => 'Kepramukaan Meliputi: Organisasi Dan Kegiatan Remaja', 'uraian' => 'Klasifikasi Disini: Gelanggang Remaja', 'enabled' => 1], - ['id' => 701, 'kode' => '428', 'nama' => 'Kepramukaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 702, 'kode' => '429', 'nama' => 'Pendidikan Kedinasan Untuk Depdagri, Lihat 890', 'uraian' => '-', 'enabled' => 1], - ['id' => 703, 'kode' => '430', 'nama' => 'KEBUDAYAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 704, 'kode' => '431', 'nama' => 'Kesenian', 'uraian' => '-', 'enabled' => 1], - ['id' => 705, 'kode' => '431.1', 'nama' => 'Cabang Kesenian', 'uraian' => '-', 'enabled' => 1], - ['id' => 706, 'kode' => '431.2', 'nama' => 'Sarana', 'uraian' => '-', 'enabled' => 1], - ['id' => 707, 'kode' => '431.21', 'nama' => 'Gedung Kesenian', 'uraian' => '-', 'enabled' => 1], - ['id' => 708, 'kode' => '432', 'nama' => 'Kepurbakalaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 709, 'kode' => '432.1', 'nama' => 'Museum', 'uraian' => '-', 'enabled' => 1], - ['id' => 710, 'kode' => '432.2', 'nama' => 'Peninggalan Kuno', 'uraian' => '-', 'enabled' => 1], - ['id' => 711, 'kode' => '432.21', 'nama' => 'Candi Termasuk Pemugaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 712, 'kode' => '432.22', 'nama' => 'Benda', 'uraian' => '-', 'enabled' => 1], - ['id' => 713, 'kode' => '433', 'nama' => 'Sejarah', 'uraian' => '-', 'enabled' => 1], - ['id' => 714, 'kode' => '434', 'nama' => 'Bahasa', 'uraian' => '-', 'enabled' => 1], - ['id' => 715, 'kode' => '435', 'nama' => 'Usaha Pertunjukan, Hiburan, Kesenangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 716, 'kode' => '436', 'nama' => 'Kepercayaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 717, 'kode' => '437', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 718, 'kode' => '438', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 719, 'kode' => '439', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 720, 'kode' => '440', 'nama' => 'KESEHATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 721, 'kode' => '441', 'nama' => 'Pembinaan Kesehatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 722, 'kode' => '441.1', 'nama' => 'Gizi', 'uraian' => '-', 'enabled' => 1], - ['id' => 723, 'kode' => '441.2', 'nama' => 'Mata', 'uraian' => '-', 'enabled' => 1], - ['id' => 724, 'kode' => '441.3', 'nama' => 'Jiwa', 'uraian' => '-', 'enabled' => 1], - ['id' => 725, 'kode' => '441.4', 'nama' => 'Kanker', 'uraian' => '-', 'enabled' => 1], - ['id' => 726, 'kode' => '441.5', 'nama' => 'Usaha Kegiatan Sekolah (UKS)', 'uraian' => '-', 'enabled' => 1], - ['id' => 727, 'kode' => '441.6', 'nama' => 'Perawatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 728, 'kode' => '441.7', 'nama' => 'Penyuluhan Kesehatan Masyarakat (PKM)', 'uraian' => '-', 'enabled' => 1], - ['id' => 729, 'kode' => '441.8', 'nama' => 'Pekan Imunisasi Nasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 730, 'kode' => '442', 'nama' => 'Obat-obatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 731, 'kode' => '442.1', 'nama' => 'Pengadaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 732, 'kode' => '442.2', 'nama' => 'Penyimpanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 733, 'kode' => '443', 'nama' => 'Penyakit Menular', 'uraian' => '-', 'enabled' => 1], - ['id' => 734, 'kode' => '443.1', 'nama' => 'Pencegahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 735, 'kode' => '443.2', 'nama' => 'Pemberantasan dan Pencegahan Penyakit Menular Langsung (P2ML)', 'uraian' => '-', 'enabled' => 1], - ['id' => 736, 'kode' => '443.21', 'nama' => 'Kusta', 'uraian' => '-', 'enabled' => 1], - ['id' => 737, 'kode' => '443.22', 'nama' => 'Kelamin', 'uraian' => '-', 'enabled' => 1], - ['id' => 738, 'kode' => '443.23', 'nama' => 'Frambosia', 'uraian' => '-', 'enabled' => 1], - ['id' => 739, 'kode' => '443.24', 'nama' => 'TBC / AIDS / HIV', 'uraian' => '-', 'enabled' => 1], - ['id' => 740, 'kode' => '443.3', 'nama' => 'Epidemiologi dan Karantina (Epidka)', 'uraian' => '-', 'enabled' => 1], - ['id' => 741, 'kode' => '443.31', 'nama' => 'Kholera', 'uraian' => '-', 'enabled' => 1], - ['id' => 742, 'kode' => '443.32', 'nama' => 'Imunisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 743, 'kode' => '443.33', 'nama' => 'Survailense', 'uraian' => '-', 'enabled' => 1], - ['id' => 744, 'kode' => '443.34', 'nama' => 'Rabies (Anjing Gila) Antraks', 'uraian' => '-', 'enabled' => 1], - ['id' => 745, 'kode' => '443.4', 'nama' => 'Pemberantasan & Pencegahan Penyakit Menular Sumber Binatang (P2B)', 'uraian' => '-', 'enabled' => 1], - ['id' => 746, 'kode' => '443.41', 'nama' => 'Malaria', 'uraian' => '-', 'enabled' => 1], - ['id' => 747, 'kode' => '443.42', 'nama' => 'Dengue Faemorrhagic Fever (Demam Berdarah HDF)', 'uraian' => '-', 'enabled' => 1], - ['id' => 748, 'kode' => '443.43', 'nama' => 'Filaria', 'uraian' => '-', 'enabled' => 1], - ['id' => 749, 'kode' => '443.44', 'nama' => 'Serangga', 'uraian' => '-', 'enabled' => 1], - ['id' => 750, 'kode' => '443.5', 'nama' => 'Hygiene Sanitasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 751, 'kode' => '443.51', 'nama' => 'Tempat-tempat Pembuatan Dan Penjualan Makanan dan Minuman (TPPMM)', 'uraian' => '-', 'enabled' => 1], - ['id' => 752, 'kode' => '443.52', 'nama' => 'Sarana Air Minum Dan Jamban Keluarga (Samijaga)', 'uraian' => '-', 'enabled' => 1], - ['id' => 753, 'kode' => '443.53', 'nama' => 'Pestisida', 'uraian' => '-', 'enabled' => 1], - ['id' => 754, 'kode' => '444', 'nama' => 'Gizi', 'uraian' => '-', 'enabled' => 1], - ['id' => 755, 'kode' => '444.1', 'nama' => ' Kekurangan Makanan Bahaya Kelaparan, Busung Lapar', 'uraian' => '-', 'enabled' => 1], - ['id' => 756, 'kode' => '444.2', 'nama' => 'Keracunan Makanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 757, 'kode' => '444.3', 'nama' => 'Menu Makanan Rakyat', 'uraian' => '-', 'enabled' => 1], - ['id' => 758, 'kode' => '444.4', 'nama' => 'Badan Perbaikan Gizi Daerah (BPGD)', 'uraian' => '-', 'enabled' => 1], - ['id' => 759, 'kode' => '444.5', 'nama' => 'Program Makanan Tambahn Anak Sekolah (PMT-AS)', 'uraian' => '-', 'enabled' => 1], - ['id' => 760, 'kode' => '445', 'nama' => 'Rumah Sakit, Balai Kesehatan, PUSKESMAS, PUSKESMAS, Keliling, Poliklinik', 'uraian' => '-', 'enabled' => 1], - ['id' => 761, 'kode' => '446', 'nama' => 'Tenaga Medis', 'uraian' => '-', 'enabled' => 1], - ['id' => 762, 'kode' => '448', 'nama' => 'Pengobatan Tadisional', 'uraian' => '-', 'enabled' => 1], - ['id' => 763, 'kode' => '448.1', 'nama' => 'Pijat', 'uraian' => '-', 'enabled' => 1], - ['id' => 764, 'kode' => '448.2', 'nama' => 'Tusuk Jarum', 'uraian' => '-', 'enabled' => 1], - ['id' => 765, 'kode' => '448.3', 'nama' => 'Jamu Tradisional', 'uraian' => '-', 'enabled' => 1], - ['id' => 766, 'kode' => '448.4', 'nama' => 'Dukun / Paranormal', 'uraian' => '-', 'enabled' => 1], - ['id' => 767, 'kode' => '450', 'nama' => 'AGAMA', 'uraian' => '-', 'enabled' => 1], - ['id' => 768, 'kode' => '451', 'nama' => 'Islam', 'uraian' => '-', 'enabled' => 1], - ['id' => 769, 'kode' => '451.1', 'nama' => 'Peribadatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 770, 'kode' => '451.11', 'nama' => 'Sholat', 'uraian' => '-', 'enabled' => 1], - ['id' => 771, 'kode' => '451.12', 'nama' => 'Zakat Fitrah', 'uraian' => '-', 'enabled' => 1], - ['id' => 772, 'kode' => '451.13', 'nama' => 'Puasa', 'uraian' => '-', 'enabled' => 1], - ['id' => 773, 'kode' => '451.14', 'nama' => 'MTQ', 'uraian' => '-', 'enabled' => 1], - ['id' => 774, 'kode' => '451.2', 'nama' => 'Rumah Ibadah', 'uraian' => '-', 'enabled' => 1], - ['id' => 775, 'kode' => '451.3', 'nama' => 'Tokoh Agama', 'uraian' => '-', 'enabled' => 1], - ['id' => 776, 'kode' => '451.4', 'nama' => 'Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 777, 'kode' => '451.41', 'nama' => 'Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 778, 'kode' => '451.42', 'nama' => 'Menengah', 'uraian' => '-', 'enabled' => 1], - ['id' => 779, 'kode' => '451.43', 'nama' => 'Dasar', 'uraian' => '-', 'enabled' => 1], - ['id' => 780, 'kode' => '451.44', 'nama' => 'Pondok Pesantren', 'uraian' => '-', 'enabled' => 1], - ['id' => 781, 'kode' => '451.45', 'nama' => 'Gedung Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 782, 'kode' => '451.46', 'nama' => 'Tenaga Pengajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 783, 'kode' => '451.47', 'nama' => 'Buku', 'uraian' => '-', 'enabled' => 1], - ['id' => 784, 'kode' => '451.48', 'nama' => 'Dakwah', 'uraian' => '-', 'enabled' => 1], - ['id' => 785, 'kode' => '451.49', 'nama' => 'Organisasi / Lembaga Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 786, 'kode' => '451.5', 'nama' => 'Harta Agama Wakaf, Baitulmal, dsb', 'uraian' => '-', 'enabled' => 1], - ['id' => 787, 'kode' => '451.6', 'nama' => 'Peradilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 788, 'kode' => '451.7', 'nama' => 'Organisasi Keagamaan Bukan Politik Majelis Ulama', 'uraian' => '-', 'enabled' => 1], - ['id' => 789, 'kode' => '451.8', 'nama' => 'Mazhab', 'uraian' => '-', 'enabled' => 1], - ['id' => 790, 'kode' => '452', 'nama' => 'Protestan', 'uraian' => '-', 'enabled' => 1], - ['id' => 791, 'kode' => '452.1', 'nama' => 'Peribadatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 792, 'kode' => '452.2', 'nama' => 'Rumah Ibadah', 'uraian' => '-', 'enabled' => 1], - ['id' => 793, 'kode' => '452.3', 'nama' => 'Tokoh Agama, Rohaniawan, Pendeta, Domine', 'uraian' => '-', 'enabled' => 1], - ['id' => 794, 'kode' => '452.4', 'nama' => 'Mazhab', 'uraian' => '-', 'enabled' => 1], - ['id' => 795, 'kode' => '452.5', 'nama' => 'Organisasi Gerejani', 'uraian' => '-', 'enabled' => 1], - ['id' => 796, 'kode' => '453', 'nama' => 'Katolik', 'uraian' => '-', 'enabled' => 1], - ['id' => 797, 'kode' => '453.1', 'nama' => 'Peribadatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 798, 'kode' => '453.2', 'nama' => 'Rumah Ibadah', 'uraian' => '-', 'enabled' => 1], - ['id' => 799, 'kode' => '453.3', 'nama' => 'Tokoh Agama, Rohaniawan, Pendeta, Pastor', 'uraian' => '-', 'enabled' => 1], - ['id' => 800, 'kode' => '453.4', 'nama' => 'Mazhab', 'uraian' => '-', 'enabled' => 1], - ['id' => 801, 'kode' => '453.5', 'nama' => 'Organisasi Gerejani', 'uraian' => '-', 'enabled' => 1], - ['id' => 802, 'kode' => '454', 'nama' => 'Hindu', 'uraian' => '-', 'enabled' => 1], - ['id' => 803, 'kode' => '454.1', 'nama' => 'Peribadatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 804, 'kode' => '454.2', 'nama' => 'Rumah Ibadah', 'uraian' => '-', 'enabled' => 1], - ['id' => 805, 'kode' => '454.3', 'nama' => 'Tokoh Agama, Rohaniawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 806, 'kode' => '454.4', 'nama' => 'Mazhab', 'uraian' => '-', 'enabled' => 1], - ['id' => 807, 'kode' => '454.5', 'nama' => 'Organisasi Keagamaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 808, 'kode' => '455', 'nama' => 'Budha', 'uraian' => '-', 'enabled' => 1], - ['id' => 809, 'kode' => '455.1', 'nama' => 'Peribadatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 810, 'kode' => '455.2', 'nama' => 'Rumah Ibadah', 'uraian' => '-', 'enabled' => 1], - ['id' => 811, 'kode' => '455.3', 'nama' => 'Tokoh Agama, Rohaniawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 812, 'kode' => '455.4', 'nama' => 'Mazhab', 'uraian' => '-', 'enabled' => 1], - ['id' => 813, 'kode' => '455.5', 'nama' => 'Organisasi Keagamaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 814, 'kode' => '456', 'nama' => 'Urusan Haji', 'uraian' => '-', 'enabled' => 1], - ['id' => 815, 'kode' => '456.1', 'nama' => 'ONH', 'uraian' => '-', 'enabled' => 1], - ['id' => 816, 'kode' => '456.2', 'nama' => 'Manasik', 'uraian' => '-', 'enabled' => 1], - ['id' => 817, 'kode' => '457', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 818, 'kode' => '458', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 819, 'kode' => '458', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 820, 'kode' => '460', 'nama' => 'SOSIAL', 'uraian' => '-', 'enabled' => 1], - ['id' => 821, 'kode' => '461', 'nama' => 'Rehabilitasi Penderita Cacat', 'uraian' => '-', 'enabled' => 1], - ['id' => 822, 'kode' => '461.1', 'nama' => 'Cacat Maat', 'uraian' => '-', 'enabled' => 1], - ['id' => 823, 'kode' => '461.2', 'nama' => 'Cacat Tubuh', 'uraian' => '-', 'enabled' => 1], - ['id' => 824, 'kode' => '461.3', 'nama' => 'Cacat Mental', 'uraian' => '-', 'enabled' => 1], - ['id' => 825, 'kode' => '461.4', 'nama' => 'Bisul/Tuli', 'uraian' => '-', 'enabled' => 1], - ['id' => 826, 'kode' => '462', 'nama' => 'Tuna Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 827, 'kode' => '462.1', 'nama' => 'Gelandangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 828, 'kode' => '462.2', 'nama' => 'Pengemis', 'uraian' => '-', 'enabled' => 1], - ['id' => 829, 'kode' => '462.3', 'nama' => 'Tuna Susila', 'uraian' => '-', 'enabled' => 1], - ['id' => 830, 'kode' => '462.4', 'nama' => 'Anak Nakal', 'uraian' => '-', 'enabled' => 1], - ['id' => 831, 'kode' => '463', 'nama' => 'Kesejahteraan Anak / Keluarga', 'uraian' => '-', 'enabled' => 1], - ['id' => 832, 'kode' => '463.1', 'nama' => 'Anak Putus Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 833, 'kode' => '463.2', 'nama' => 'Ibu Teladan', 'uraian' => '-', 'enabled' => 1], - ['id' => 834, 'kode' => '463.3', 'nama' => 'Anak Asuh', 'uraian' => '-', 'enabled' => 1], - ['id' => 835, 'kode' => '464', 'nama' => 'Pembinaan Pahlawan', 'uraian' => 'Pahlawan Meliputi: Penghargaan Kepada Pahlawan,', 'enabled' => 1], - ['id' => 836, 'kode' => '464.1', 'nama' => 'Tunjangan Kepada Pahlawan Dan Jandanya', 'uraian' => 'Perintis Kemerdekaan Meliputi: Pembinaan, Penghargaan', 'enabled' => 1], - ['id' => 837, 'kode' => '464.2', 'nama' => 'Dan Tunjangan Kepada Perintis', 'uraian' => '-', 'enabled' => 1], - ['id' => 838, 'kode' => '464.3', 'nama' => 'Cacat Veteran', 'uraian' => '-', 'enabled' => 1], - ['id' => 839, 'kode' => '465', 'nama' => 'Kesejahteraan Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 840, 'kode' => '465.1', 'nama' => 'Lanjut Usia', 'uraian' => '-', 'enabled' => 1], - ['id' => 841, 'kode' => '465.2', 'nama' => 'Korban Kekacauan, Pengungsi, Repatriasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 842, 'kode' => '466', 'nama' => 'Sumbangan Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 843, 'kode' => '466.1', 'nama' => 'Korban Bencana', 'uraian' => '-', 'enabled' => 1], - ['id' => 844, 'kode' => '466.2', 'nama' => 'Pencarian Dana Untuk Sumbangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 845, 'kode' => '466.3', 'nama' => 'Meliputi: Penyelenggaraan Undian, Ketangkasan, Bazar, dsb', 'uraian' => '-', 'enabled' => 1], - ['id' => 846, 'kode' => '466.4', 'nama' => 'Panti Asuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 847, 'kode' => '466.5', 'nama' => 'Panti Jompo', 'uraian' => '-', 'enabled' => 1], - ['id' => 848, 'kode' => '467', 'nama' => ' Bimbingan Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 849, 'kode' => '467.1', 'nama' => 'Masyarakat Suku Terasing Meliputi: Bimbingan, Pendidikan, Kesehatan, Pemukiman', 'uraian' => '-', 'enabled' => 1], - ['id' => 850, 'kode' => '468', 'nama' => 'PMI', 'uraian' => '-', 'enabled' => 1], - ['id' => 851, 'kode' => '469', 'nama' => 'Makam', 'uraian' => '-', 'enabled' => 1], - ['id' => 852, 'kode' => '469.1', 'nama' => 'Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 853, 'kode' => '469.2', 'nama' => 'Pahlawan Meliputi: Penghargaan Kepada Pahlawan, Tunjangan Kpd Pahlawan Dan Jandanya', 'uraian' => '-', 'enabled' => 1], - ['id' => 854, 'kode' => '469.3', 'nama' => 'Khusus Keluarga Raja', 'uraian' => '-', 'enabled' => 1], - ['id' => 855, 'kode' => '469.4', 'nama' => 'Krematorium', 'uraian' => '-', 'enabled' => 1], - ['id' => 856, 'kode' => '470', 'nama' => 'KEPENDUDUKAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 857, 'kode' => '471', 'nama' => 'Pendaftaran Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 858, 'kode' => '471.1', 'nama' => 'Identitas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 859, 'kode' => '471.11', 'nama' => 'Biodata', 'uraian' => '-', 'enabled' => 1], - ['id' => 860, 'kode' => '471.12', 'nama' => 'Nomor Induk Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 861, 'kode' => '471.13', 'nama' => 'Kartu Tanda Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 862, 'kode' => '471.14', 'nama' => 'Kartu Keluarga', 'uraian' => '-', 'enabled' => 1], - ['id' => 863, 'kode' => '471.15', 'nama' => 'Advokasi Indentitas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 864, 'kode' => '471.2', 'nama' => 'Perpindahan Penduduk Dalam Wilayah Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 865, 'kode' => '471.21', 'nama' => 'Perpindahan Penduduk WNI', 'uraian' => '-', 'enabled' => 1], - ['id' => 866, 'kode' => '471.22', 'nama' => 'Perpindahan Penduduk WNA Dalam Wilayah Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 867, 'kode' => '471.23', 'nama' => 'Perpindahan Penduduk WNA dan WNI Tinggal Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 868, 'kode' => '471.24', 'nama' => 'Daerah Terbelakan', 'uraian' => '-', 'enabled' => 1], - ['id' => 869, 'kode' => '471.25', 'nama' => 'Bedol Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 870, 'kode' => '471.3', 'nama' => 'Perpindahan Penduduk Antar Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 871, 'kode' => '471.31', 'nama' => 'Penduduk Indonesia Ke Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 872, 'kode' => '471.32', 'nama' => 'Orang Asing Tinggal Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 873, 'kode' => '471.33', 'nama' => 'Orang Asing Tinggal Tetap', 'uraian' => '-', 'enabled' => 1], - ['id' => 874, 'kode' => '471.34', 'nama' => 'Perpindahan Penduduk Antar Negara Di Wilayah Pembatasan Antar Negara (Pelintas Batas Tradisional)', 'uraian' => '-', 'enabled' => 1], - ['id' => 875, 'kode' => '471.4', 'nama' => 'Pendaftaran Pengungsi Dan Penduduk Rentan', 'uraian' => '-', 'enabled' => 1], - ['id' => 876, 'kode' => '471.41', 'nama' => 'Akibat Bencana Alam', 'uraian' => '-', 'enabled' => 1], - ['id' => 877, 'kode' => '471.42', 'nama' => 'Akibat Kerusuhan Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 878, 'kode' => '471.43', 'nama' => 'Pendaftaran Penduduk Daerah Terbelakang', 'uraian' => '-', 'enabled' => 1], - ['id' => 879, 'kode' => '471.44', 'nama' => 'Pendaftaran Penduduk Rentan', 'uraian' => '-', 'enabled' => 1], - ['id' => 880, 'kode' => '472', 'nama' => 'Pencatatan Sipil', 'uraian' => '-', 'enabled' => 1], - ['id' => 881, 'kode' => '472.1', 'nama' => 'Kelahiran, Kematian Dan Advokasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 882, 'kode' => '472.11', 'nama' => 'Kelahiran', 'uraian' => '-', 'enabled' => 1], - ['id' => 883, 'kode' => '472.12', 'nama' => 'Kematian', 'uraian' => '-', 'enabled' => 1], - ['id' => 884, 'kode' => '472.13', 'nama' => 'Advokasi Kelahiran Dan Kematian', 'uraian' => '-', 'enabled' => 1], - ['id' => 885, 'kode' => '472.2', 'nama' => 'Perkawinan, Peceraian Dan Advokasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 886, 'kode' => '472.3', 'nama' => 'Perkawinan Agama Islam', 'uraian' => '-', 'enabled' => 1], - ['id' => 887, 'kode' => '472.4', 'nama' => 'Perkawinan Agama Non Islam', 'uraian' => '-', 'enabled' => 1], - ['id' => 888, 'kode' => '472.5', 'nama' => 'Perceraian Agama Islam', 'uraian' => '-', 'enabled' => 1], - ['id' => 889, 'kode' => '472.6', 'nama' => 'Perceraian Agama Non Islam', 'uraian' => '-', 'enabled' => 1], - ['id' => 890, 'kode' => '472.7', 'nama' => 'Advokasi Perkawinan Dan Perceraian', 'uraian' => '-', 'enabled' => 1], - ['id' => 891, 'kode' => '472.3', 'nama' => 'Pengangkatan, Pengakuan, Dan Pengesahan Anak Serta Perubahan Dan Pembatalan Akta Dan Advokasi Pengangkatan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 892, 'kode' => '472.31', 'nama' => 'Pengangkatan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 893, 'kode' => '472.32', 'nama' => 'Pengakuan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 894, 'kode' => '472.33', 'nama' => 'Pengesahan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 895, 'kode' => '472.34', 'nama' => 'Perubahan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 896, 'kode' => '472.35', 'nama' => 'Pembatalan Anak', 'uraian' => '-', 'enabled' => 1], - ['id' => 897, 'kode' => '472.36', 'nama' => 'Advokasi Pengurusan Pengangkatan, Pengakuan Dan Pengesahan Anak Serta Perubahan Dan Pembatalan Akta', 'uraian' => '-', 'enabled' => 1], - ['id' => 898, 'kode' => '472.4', 'nama' => 'Pencatatan Kewarganegaraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 899, 'kode' => '472.41', 'nama' => 'Akibat Perkawinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 900, 'kode' => '472.42', 'nama' => 'Akibat Kelahiran', 'uraian' => '-', 'enabled' => 1], - ['id' => 901, 'kode' => '472.43', 'nama' => 'Non Perkawinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 902, 'kode' => '472.44', 'nama' => 'Non Kelahiran', 'uraian' => '-', 'enabled' => 1], - ['id' => 903, 'kode' => '472.45', 'nama' => 'Perubahan WNI ke WNA', 'uraian' => '-', 'enabled' => 1], - ['id' => 904, 'kode' => '473', 'nama' => 'Informasi Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 905, 'kode' => '473.1', 'nama' => 'Teknologi Informasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 906, 'kode' => '473.11', 'nama' => 'Perangkat Keras', 'uraian' => '-', 'enabled' => 1], - ['id' => 907, 'kode' => '473.12', 'nama' => 'Perangkat Lunak', 'uraian' => '-', 'enabled' => 1], - ['id' => 908, 'kode' => '473.13', 'nama' => 'Jaringan Komunikasi Data', 'uraian' => '-', 'enabled' => 1], - ['id' => 909, 'kode' => '473.2', 'nama' => 'Kelembagaan Dan Sumber Daya Informasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 910, 'kode' => '473.21', 'nama' => 'Daerah Maju', 'uraian' => '-', 'enabled' => 1], - ['id' => 911, 'kode' => '473.22', 'nama' => 'Daerah Berkembang', 'uraian' => '-', 'enabled' => 1], - ['id' => 912, 'kode' => '473.23', 'nama' => 'Daerah Terbelakang', 'uraian' => '-', 'enabled' => 1], - ['id' => 913, 'kode' => '473.3', 'nama' => 'Pengolahan Data Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 914, 'kode' => '473.31', 'nama' => 'Pendaftaran Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 915, 'kode' => '473.32', 'nama' => 'Kejadian Vital Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 916, 'kode' => '473.33', 'nama' => 'Penduduk Non Registrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 917, 'kode' => '473.4', 'nama' => 'Pelayanan Informasi Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 918, 'kode' => '473.41', 'nama' => 'Media Elektronik', 'uraian' => '-', 'enabled' => 1], - ['id' => 919, 'kode' => '473.42', 'nama' => 'Media Cetak', 'uraian' => '-', 'enabled' => 1], - ['id' => 920, 'kode' => '473.43', 'nama' => 'Outlet', 'uraian' => '-', 'enabled' => 1], - ['id' => 921, 'kode' => '474', 'nama' => 'Perkembangan Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 922, 'kode' => '474.1', 'nama' => 'Pengarahan Kuantitas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 923, 'kode' => '474.11', 'nama' => 'Struktur Jumlah', 'uraian' => '-', 'enabled' => 1], - ['id' => 924, 'kode' => '474.12', 'nama' => 'Komposisi', 'uraian' => '-', 'enabled' => 1], - ['id' => 925, 'kode' => '474.13', 'nama' => 'Fertilitas', 'uraian' => '-', 'enabled' => 1], - ['id' => 926, 'kode' => '474.14', 'nama' => 'Kesehatan Reproduksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 927, 'kode' => '474.15', 'nama' => 'Morbiditas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 928, 'kode' => '474.16', 'nama' => 'Mortalitas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 929, 'kode' => '474.2', 'nama' => 'Pengembangan Kuantitas Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 930, 'kode' => '474.21', 'nama' => 'Anak dan Remaja', 'uraian' => '-', 'enabled' => 1], - ['id' => 931, 'kode' => '474.22', 'nama' => 'Penduduk Usia Produktif', 'uraian' => '-', 'enabled' => 1], - ['id' => 932, 'kode' => '474.23', 'nama' => 'Penduduk Lanjut Usia', 'uraian' => '-', 'enabled' => 1], - ['id' => 933, 'kode' => '474.24', 'nama' => 'Gender', 'uraian' => '-', 'enabled' => 1], - ['id' => 934, 'kode' => '474.3', 'nama' => 'Penataan Persebaran Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 935, 'kode' => '474.31', 'nama' => 'Migrasi Antar Wilayah', 'uraian' => '-', 'enabled' => 1], - ['id' => 936, 'kode' => '474.32', 'nama' => 'Migrasi Internasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 937, 'kode' => '474.33', 'nama' => 'Urbanisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 938, 'kode' => '474.34', 'nama' => 'Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 939, 'kode' => '474.35', 'nama' => 'Migrasi Non Permanen', 'uraian' => '-', 'enabled' => 1], - ['id' => 940, 'kode' => '474.4', 'nama' => 'Perlindungan Pemberdayaan Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 941, 'kode' => '474.41', 'nama' => 'Pengembangan Sistem Pelindungan Penduduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 942, 'kode' => '474.42', 'nama' => 'Pelayanan Kelembagaan Ekonomi', 'uraian' => '-', 'enabled' => 1], - ['id' => 943, 'kode' => '474.43', 'nama' => 'Pelayanan Kelembagaan Sosial Budaya', 'uraian' => '-', 'enabled' => 1], - ['id' => 944, 'kode' => '474.44', 'nama' => 'Partisipasi Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 945, 'kode' => '474.5', 'nama' => 'Pengembangan Wawasan Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 946, 'kode' => '474.51', 'nama' => 'Pendidikan Jalur Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 947, 'kode' => '474.52', 'nama' => 'Pendidikan Jalur Luar Sekolah', 'uraian' => '-', 'enabled' => 1], - ['id' => 948, 'kode' => '474.53', 'nama' => 'Pendidikan Jalur Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 949, 'kode' => '474.54', 'nama' => 'Pembangunan Berwawasan Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 950, 'kode' => '475', 'nama' => 'Proyeksi Dan Penyerasian Kebijakan Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 951, 'kode' => '475.1', 'nama' => 'Indikator Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 952, 'kode' => '475.11', 'nama' => 'Perumusan Penetapan Dan Pengembangan Indikator Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 953, 'kode' => '475.12', 'nama' => 'Pemanfaatan Indikator Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 954, 'kode' => '475.13', 'nama' => 'Sosialisasi Indikator Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 955, 'kode' => '475.2', 'nama' => 'Proyeksi Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 956, 'kode' => '475.21', 'nama' => 'Penyusunan Dan Pengembangan Proyeksi Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 957, 'kode' => '475.22', 'nama' => 'Pemanfaatan Proyeksi Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 958, 'kode' => '475.3', 'nama' => 'Analisis Dampak Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 959, 'kode' => '475.31', 'nama' => 'Penyusunan Dan Pengembangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 960, 'kode' => '475.32', 'nama' => 'Pemanfaatan Analisis Dampak Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 961, 'kode' => '475.4', 'nama' => 'Penyerasian Kebijakan Lembaga Non Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 962, 'kode' => '475.41', 'nama' => 'Lembaga Internasioanal', 'uraian' => '-', 'enabled' => 1], - ['id' => 963, 'kode' => '475.42', 'nama' => 'Lembaga Masyarakat Dan Nirlaba', 'uraian' => '-', 'enabled' => 1], - ['id' => 964, 'kode' => '475.43', 'nama' => 'Lembaga Usaha Swasta', 'uraian' => '-', 'enabled' => 1], - ['id' => 965, 'kode' => '475.5', 'nama' => 'Penyerasian Kebijakan Lembaga Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 966, 'kode' => '475.51', 'nama' => 'Lembaga Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 967, 'kode' => '475.52', 'nama' => 'Pemerintah Provinsidan Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 968, 'kode' => '475.53', 'nama' => 'Pemerintah Kabupaten', 'uraian' => '-', 'enabled' => 1], - ['id' => 969, 'kode' => '475.6', 'nama' => 'Analisis', 'uraian' => '-', 'enabled' => 1], - ['id' => 970, 'kode' => '476', 'nama' => 'Monitoring', 'uraian' => '-', 'enabled' => 1], - ['id' => 971, 'kode' => '477', 'nama' => 'Evaluasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 972, 'kode' => '478', 'nama' => 'Dokumentasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 973, 'kode' => '479', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 974, 'kode' => '480', 'nama' => 'MEDIA MASSA', 'uraian' => '-', 'enabled' => 1], - ['id' => 975, 'kode' => '481', 'nama' => 'Penerbitan', 'uraian' => '-', 'enabled' => 1], - ['id' => 976, 'kode' => '481.1', 'nama' => 'Surat Kabar', 'uraian' => '-', 'enabled' => 1], - ['id' => 977, 'kode' => '481.2', 'nama' => 'Majalah', 'uraian' => '-', 'enabled' => 1], - ['id' => 978, 'kode' => '481.3', 'nama' => 'Buku', 'uraian' => '-', 'enabled' => 1], - ['id' => 979, 'kode' => '481.4', 'nama' => 'Penerjemahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 980, 'kode' => '482', 'nama' => 'Radio', 'uraian' => '-', 'enabled' => 1], - ['id' => 981, 'kode' => '482.1', 'nama' => 'RRI', 'uraian' => '-', 'enabled' => 1], - ['id' => 982, 'kode' => '482.11', 'nama' => 'Siaran Pedesaan Jgn Diklasifikasikan Disini', 'uraian' => '-', 'enabled' => 1], - ['id' => 983, 'kode' => '482.2', 'nama' => 'Non RRI', 'uraian' => '-', 'enabled' => 1], - ['id' => 984, 'kode' => '482.3', 'nama' => 'Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 985, 'kode' => '483', 'nama' => 'Televisi', 'uraian' => '-', 'enabled' => 1], - ['id' => 986, 'kode' => '484', 'nama' => 'Film', 'uraian' => '-', 'enabled' => 1], - ['id' => 987, 'kode' => '485', 'nama' => 'Pers', 'uraian' => '-', 'enabled' => 1], - ['id' => 988, 'kode' => '485.1', 'nama' => 'Kewartawanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 989, 'kode' => '485.2', 'nama' => 'Wawancara', 'uraian' => '-', 'enabled' => 1], - ['id' => 990, 'kode' => '485.3', 'nama' => 'Informasi Nasional', 'uraian' => '-', 'enabled' => 1], - ['id' => 991, 'kode' => '486', 'nama' => 'Grafika', 'uraian' => '-', 'enabled' => 1], - ['id' => 992, 'kode' => '487', 'nama' => 'Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 993, 'kode' => '487.1', 'nama' => 'Pameran Non Komersil', 'uraian' => '-', 'enabled' => 1], - ['id' => 994, 'kode' => '488', 'nama' => 'Operation Room', 'uraian' => '-', 'enabled' => 1], - ['id' => 995, 'kode' => '489', 'nama' => 'Hubungan Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 996, 'kode' => '490', 'nama' => 'Pengaduan Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 997, 'kode' => '491', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 998, 'kode' => '492', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 999, 'kode' => '500', 'nama' => 'PEREKONOMIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1000, 'kode' => '500.1', 'nama' => 'Dewan Stabilisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1001, 'kode' => '501', 'nama' => 'Pengadaan Pangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1002, 'kode' => '502', 'nama' => 'Pengadaan Sandang Perizinan Pada Umumnya Untuk Perizinan Suatu Bidang,', 'uraian' => '-', 'enabled' => 1], - ['id' => 1003, 'kode' => '503', 'nama' => 'Kalsifikasikan Masalahnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1004, 'kode' => '504', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1005, 'kode' => '505', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1006, 'kode' => '506', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1007, 'kode' => '510', 'nama' => 'PERDAGANGAN', 'uraian' => 'Klasifikasikan Disini: Tata Niaga', 'enabled' => 1], - ['id' => 1008, 'kode' => '510.1', 'nama' => 'Promosi Perdagangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1009, 'kode' => '510.11', 'nama' => 'Pekan Raya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1010, 'kode' => '510.12', 'nama' => 'Iklan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1011, 'kode' => '510.13', 'nama' => 'Pameran Non Komersil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1012, 'kode' => '510.2', 'nama' => 'Pelelangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1013, 'kode' => '510.3', 'nama' => 'Tera', 'uraian' => '-', 'enabled' => 1], - ['id' => 1014, 'kode' => '511', 'nama' => 'Pemasaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1015, 'kode' => '511.1', 'nama' => 'Sembilan Bahan Pokok, Tambahkan Kode Wilayah : Beras, Garam, Tanah, Minyak Goreng', 'uraian' => '-', 'enabled' => 1], - ['id' => 1016, 'kode' => '511.2', 'nama' => 'Pasar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1017, 'kode' => '511.3', 'nama' => 'Pertokoan, Kaki Lima, Kios', 'uraian' => '-', 'enabled' => 1], - ['id' => 1018, 'kode' => '512', 'nama' => 'Ekspor', 'uraian' => '-', 'enabled' => 1], - ['id' => 1019, 'kode' => '513', 'nama' => 'Impor', 'uraian' => '-', 'enabled' => 1], - ['id' => 1020, 'kode' => '514', 'nama' => 'Perdagangan Antar Pulau', 'uraian' => '-', 'enabled' => 1], - ['id' => 1021, 'kode' => '515', 'nama' => 'Perdagangan Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1022, 'kode' => '516', 'nama' => 'Pergudangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1023, 'kode' => '517', 'nama' => 'Aneka Usaha Perdagangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1024, 'kode' => '518', 'nama' => 'Koperasi untuk BUUD, KUD lihat ( 412.31-412.32)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1025, 'kode' => '519', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1026, 'kode' => '520', 'nama' => 'PERTANIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1027, 'kode' => '521', 'nama' => 'Tanaman Pangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1028, 'kode' => '521.1', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 1029, 'kode' => '521.11', 'nama' => 'Bimas / Inmas Termasuk Kredit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1030, 'kode' => '521.12', 'nama' => 'Penyuluhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1031, 'kode' => '521.2', 'nama' => 'Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1032, 'kode' => '521.21', 'nama' => 'Padi / Panen', 'uraian' => '-', 'enabled' => 1], - ['id' => 1033, 'kode' => '521.22', 'nama' => 'Palawija', 'uraian' => '-', 'enabled' => 1], - ['id' => 1034, 'kode' => '521.23', 'nama' => 'Jagung', 'uraian' => '-', 'enabled' => 1], - ['id' => 1035, 'kode' => '521.24', 'nama' => 'Ketela Pohon / Ubi-Ubian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1036, 'kode' => '521.25', 'nama' => 'Hortikultura', 'uraian' => '-', 'enabled' => 1], - ['id' => 1037, 'kode' => '521.26', 'nama' => 'Sayuran / Buah-Buahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1038, 'kode' => '521.27', 'nama' => 'Tanaman Hias', 'uraian' => '-', 'enabled' => 1], - ['id' => 1039, 'kode' => '521.28', 'nama' => 'Pembudidayaan Rumput Laut', 'uraian' => '-', 'enabled' => 1], - ['id' => 1040, 'kode' => '521.3', 'nama' => 'Saran Usaha Pertanian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1041, 'kode' => '521.31', 'nama' => 'Peralatan Meliputi: Traktor Dan Peralatan Lainya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1042, 'kode' => '521.32', 'nama' => 'Pembibitan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1043, 'kode' => '521.33', 'nama' => 'Pupuk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1044, 'kode' => '521.4', 'nama' => 'Perlindungan Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1045, 'kode' => '521.41', 'nama' => 'Penyakit, Penyakit Daun, Penyakit Batang Hama, Serangga, Wereng, Walang Sangit, Tungru, Tikus Dan Sejenisnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1046, 'kode' => '521.42', 'nama' => 'Pemberantasan Hama Meliputi: Penyemprotan, Penyiangan, Geropyokan, Sparayer,', 'uraian' => '-', 'enabled' => 1], - ['id' => 1047, 'kode' => '521.43', 'nama' => 'Pemberantasan Melalui Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1048, 'kode' => '521.44', 'nama' => 'Pestisida', 'uraian' => '-', 'enabled' => 1], - ['id' => 1049, 'kode' => '521.5', 'nama' => 'Tanah Pertanian Pangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1050, 'kode' => '521.51', 'nama' => 'Persawahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1051, 'kode' => '521.52', 'nama' => 'Perladangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1052, 'kode' => '521.53', 'nama' => 'Kebun', 'uraian' => '-', 'enabled' => 1], - ['id' => 1053, 'kode' => '521.54', 'nama' => 'Rumpun Ikan Laut', 'uraian' => '-', 'enabled' => 1], - ['id' => 1054, 'kode' => '521.55', 'nama' => 'KTA/Lahan Kritis', 'uraian' => '-', 'enabled' => 1], - ['id' => 1055, 'kode' => '521.6', 'nama' => 'Pengusaha Petani', 'uraian' => '-', 'enabled' => 1], - ['id' => 1056, 'kode' => '521.7', 'nama' => 'Bina Usaha', 'uraian' => '-', 'enabled' => 1], - ['id' => 1057, 'kode' => '521.71', 'nama' => 'Pasca Panen', 'uraian' => '-', 'enabled' => 1], - ['id' => 1058, 'kode' => '521.72', 'nama' => 'Pemasaran Hasil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1059, 'kode' => '522', 'nama' => 'Kehutanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1060, 'kode' => '522.1', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 1061, 'kode' => '522.11', 'nama' => 'Hak Pengusahaan Hutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1062, 'kode' => '522.12', 'nama' => 'Tata Guna Hutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1063, 'kode' => '522.13', 'nama' => 'Perpetaan Hutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1064, 'kode' => '522.14', 'nama' => 'Tumpangsari', 'uraian' => '-', 'enabled' => 1], - ['id' => 1065, 'kode' => '522.2', 'nama' => 'Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1066, 'kode' => '522.21', 'nama' => 'Kayu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1067, 'kode' => '522.22', 'nama' => 'Non Kayu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1068, 'kode' => '522.3', 'nama' => 'Sarana Usaha Kehutanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1069, 'kode' => '522.4', 'nama' => 'Penghijauan, Reboisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1070, 'kode' => '522.5', 'nama' => 'Kelestarian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1071, 'kode' => '522.51', 'nama' => 'Cagar Alam, Marga Satwa, Suaka Marga Satwa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1072, 'kode' => '522.52', 'nama' => 'Berburu Meliputi Larangan Dan Ijin Berburu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1073, 'kode' => '522.53', 'nama' => 'Kebun Binatang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1074, 'kode' => '522.54', 'nama' => 'Konservasi Lahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1075, 'kode' => '522.6', 'nama' => 'Penyakit/Hama', 'uraian' => '-', 'enabled' => 1], - ['id' => 1076, 'kode' => '522.7', 'nama' => 'Jenis-jenis Hutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1077, 'kode' => '522.71', 'nama' => 'Hutan Hidup', 'uraian' => '-', 'enabled' => 1], - ['id' => 1078, 'kode' => '522.72', 'nama' => 'Hutan Wisata', 'uraian' => '-', 'enabled' => 1], - ['id' => 1079, 'kode' => '522.73', 'nama' => 'Hutan Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1080, 'kode' => '522.74', 'nama' => 'Hutan Lindung', 'uraian' => '-', 'enabled' => 1], - ['id' => 1081, 'kode' => '523', 'nama' => 'Perikanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1082, 'kode' => '523.1', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 1083, 'kode' => '523.11', 'nama' => 'Penyuluhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1084, 'kode' => '523.12', 'nama' => 'Teknologi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1085, 'kode' => '523.2', 'nama' => 'Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1086, 'kode' => '523.21', 'nama' => 'Pelelangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1087, 'kode' => '523.3', 'nama' => 'Usaha Perikanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1088, 'kode' => '523.31', 'nama' => 'Pembibitan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1089, 'kode' => '523.32', 'nama' => 'Daerah Penagkapan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1090, 'kode' => '523.33', 'nama' => 'Pertambakan Meliputi: ( Tambak Ikan Air Deras, Tambak Udang dll )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1091, 'kode' => '523.34', 'nama' => 'Jaring Terapung', 'uraian' => '-', 'enabled' => 1], - ['id' => 1092, 'kode' => '523.4', 'nama' => 'Sarana', 'uraian' => '-', 'enabled' => 1], - ['id' => 1093, 'kode' => '523.41', 'nama' => 'Peralatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1094, 'kode' => '523.42', 'nama' => 'Kapal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1095, 'kode' => '523.43', 'nama' => 'Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1096, 'kode' => '523.5', 'nama' => 'Pengusaha', 'uraian' => '-', 'enabled' => 1], - ['id' => 1097, 'kode' => '523.6', 'nama' => 'Nelayan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1098, 'kode' => '524', 'nama' => 'Peternakan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1099, 'kode' => '524.1', 'nama' => 'Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1100, 'kode' => '524.11', 'nama' => 'Susu Ternak Rakyat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1101, 'kode' => '524.12', 'nama' => 'Telur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1102, 'kode' => '524.13', 'nama' => 'Daging', 'uraian' => '-', 'enabled' => 1], - ['id' => 1103, 'kode' => '524.14', 'nama' => 'Kulit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1104, 'kode' => '524.2', 'nama' => 'Sarana Usaha Ternak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1105, 'kode' => '524.21', 'nama' => 'Pembibitan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1106, 'kode' => '524.22', 'nama' => 'Kandang Ternak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1107, 'kode' => '524.3', 'nama' => 'Kesehatan Hewan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1108, 'kode' => '524.31', 'nama' => 'Penyakit Hewan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1109, 'kode' => '524.32', 'nama' => 'Pos Kesehatan Hewan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1110, 'kode' => '524.33', 'nama' => 'Tesi Pullorum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1111, 'kode' => '524.34', 'nama' => 'Karantina', 'uraian' => '-', 'enabled' => 1], - ['id' => 1112, 'kode' => '524.35', 'nama' => 'Pemberantasan Penyakit Hewan Termasuk Usaha Pencegahannya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1113, 'kode' => '524.4', 'nama' => 'Perunggasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1114, 'kode' => '524.5', 'nama' => 'Pengembangan Ternak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1115, 'kode' => '524.51', 'nama' => 'Inseminasi Buatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1116, 'kode' => '524.52', 'nama' => 'Pembibitan / Bibit Unggul', 'uraian' => '-', 'enabled' => 1], - ['id' => 1117, 'kode' => '524.53', 'nama' => 'Penyebaran Ternak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1118, 'kode' => '524.6', 'nama' => 'Makanan Ternak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1119, 'kode' => '524.7', 'nama' => 'Tempat Pemotongan Hewan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1120, 'kode' => '524.8', 'nama' => 'Data Peternakan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1121, 'kode' => '525', 'nama' => 'Perkebunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1122, 'kode' => '525.1', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 1123, 'kode' => '525.2', 'nama' => 'Produksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1124, 'kode' => '525.21', 'nama' => 'Karet', 'uraian' => '-', 'enabled' => 1], - ['id' => 1125, 'kode' => '525.22', 'nama' => 'The', 'uraian' => '-', 'enabled' => 1], - ['id' => 1126, 'kode' => '525.23', 'nama' => 'Tembakau', 'uraian' => '-', 'enabled' => 1], - ['id' => 1127, 'kode' => '525.24', 'nama' => 'Tebu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1128, 'kode' => '525.25', 'nama' => 'Cengkeh', 'uraian' => '-', 'enabled' => 1], - ['id' => 1129, 'kode' => '525.26', 'nama' => 'Kopra', 'uraian' => '-', 'enabled' => 1], - ['id' => 1130, 'kode' => '525.27', 'nama' => 'Kopi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1131, 'kode' => '525.28', 'nama' => 'Coklat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1132, 'kode' => '525.29', 'nama' => 'Aneka Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1133, 'kode' => '526', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1134, 'kode' => '527', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1135, 'kode' => '528', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1136, 'kode' => '530', 'nama' => 'PERINDUSTRIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1137, 'kode' => '530.08', 'nama' => 'Undang-Undang Gangguan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1138, 'kode' => '531', 'nama' => 'Industri Logam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1139, 'kode' => '532', 'nama' => 'Industri Mesin/Elektronik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1140, 'kode' => '533', 'nama' => 'Industri Kimia/Farmasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1141, 'kode' => '534', 'nama' => 'Industri Tekstil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1142, 'kode' => '535', 'nama' => 'Industri Makanan / Minuman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1143, 'kode' => '536', 'nama' => 'Aneka Industri / Perusahaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1144, 'kode' => '537', 'nama' => 'Aneka Kerajinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1145, 'kode' => '538', 'nama' => 'Usaha Negara / BUMN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1146, 'kode' => '538.1', 'nama' => 'Perjan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1147, 'kode' => '538.2', 'nama' => 'Perum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1148, 'kode' => '538.3', 'nama' => 'Persero / PT, CV', 'uraian' => '-', 'enabled' => 1], - ['id' => 1149, 'kode' => '539', 'nama' => 'Perusahaan Daerah / BUMD/BULD', 'uraian' => '-', 'enabled' => 1], - ['id' => 1150, 'kode' => '540', 'nama' => 'PERTAMBANGAN / KESAMUDRAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1151, 'kode' => '541', 'nama' => 'Minyak Bumi / Bensin', 'uraian' => '-', 'enabled' => 1], - ['id' => 1152, 'kode' => '541.1', 'nama' => 'Pengusahaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1153, 'kode' => '542', 'nama' => 'Gas bumi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1154, 'kode' => '542.1', 'nama' => 'Eksploitasi / Pengeboran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1155, 'kode' => '542.11', 'nama' => 'Kontrak Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1156, 'kode' => '542.2', 'nama' => 'Penogolahan,', 'uraian' => 'Meliputi :Tangki, Pompa, Tanker', 'enabled' => 1], - ['id' => 1157, 'kode' => '543', 'nama' => 'Aneka Tambang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1158, 'kode' => '543.1', 'nama' => 'Timah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1159, 'kode' => '543.2', 'nama' => 'Alumunium, Boxit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1160, 'kode' => '543.3', 'nama' => 'Besi Termasuk Besi Tua', 'uraian' => '-', 'enabled' => 1], - ['id' => 1161, 'kode' => '543.4', 'nama' => 'Tembaga', 'uraian' => '-', 'enabled' => 1], - ['id' => 1162, 'kode' => '543.5', 'nama' => 'Batu Bara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1163, 'kode' => '544', 'nama' => 'Logam Mulia,Emas,Intan,Perak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1164, 'kode' => '545', 'nama' => 'Logam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1165, 'kode' => '546', 'nama' => 'Geologi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1166, 'kode' => '546.1', 'nama' => 'Vulkanologi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1167, 'kode' => '546.11', 'nama' => 'Pengawasan Gunung Berapi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1168, 'kode' => '546.2', 'nama' => 'Sumur Artesis, Air Bawah Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1169, 'kode' => '547', 'nama' => 'Hidrologi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1170, 'kode' => '548', 'nama' => 'Kesamudraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1171, 'kode' => '549', 'nama' => 'Pesisir Pantai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1172, 'kode' => '550', 'nama' => 'PERHUBUNGAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1173, 'kode' => '551', 'nama' => 'Perhubungan Darat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1174, 'kode' => '551.1', 'nama' => 'Lalu Lintas Jalan Raya, Sungai, Danau', 'uraian' => '-', 'enabled' => 1], - ['id' => 1175, 'kode' => '551.11', 'nama' => 'Keamanan Lalu Lintas, Rambu-Rambu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1176, 'kode' => '551.2', 'nama' => 'Angkutan Jalan Raya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1177, 'kode' => '551.21', 'nama' => 'Perizinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1178, 'kode' => '551.22', 'nama' => 'Terminal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1179, 'kode' => '551.23', 'nama' => 'Alat Angkutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1180, 'kode' => '551.3', 'nama' => 'Angkutan Sungai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1181, 'kode' => '551.31', 'nama' => 'Perizinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1182, 'kode' => '551.32', 'nama' => 'Terminal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1183, 'kode' => '551.33', 'nama' => 'Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1184, 'kode' => '551.4', 'nama' => 'Angkutan Danau', 'uraian' => '-', 'enabled' => 1], - ['id' => 1185, 'kode' => '551.41', 'nama' => 'Perizinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1186, 'kode' => '551.42', 'nama' => 'Terminal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1187, 'kode' => '551.43', 'nama' => 'Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1188, 'kode' => '551.5', 'nama' => 'Feri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1189, 'kode' => '551.51', 'nama' => 'Perizinan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1190, 'kode' => '551.52', 'nama' => 'Terminal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1191, 'kode' => '551.53', 'nama' => 'Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1192, 'kode' => '551.6', 'nama' => 'Perkereta-Apian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1193, 'kode' => '552', 'nama' => 'Perhubungan Laut', 'uraian' => '-', 'enabled' => 1], - ['id' => 1194, 'kode' => '552.1', 'nama' => 'Lalu Lintas Angkutan Laut, Pelayanan Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1195, 'kode' => '552.11', 'nama' => 'Keamanan Lalu Lintas, Rambu-Rambu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1196, 'kode' => '552.12', 'nama' => 'Pelayaran Dalam Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1197, 'kode' => '552.13', 'nama' => 'Pelayaran Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1198, 'kode' => '552.2', 'nama' => 'Perkapalan Alat Angkutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1199, 'kode' => '552.3', 'nama' => 'Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1200, 'kode' => '552.4', 'nama' => 'Pengerukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1201, 'kode' => '552.5', 'nama' => 'Penjagaan Pantai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1202, 'kode' => '553', 'nama' => 'Perhubungan Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1203, 'kode' => '553.1', 'nama' => 'Lalu Lintas Udara / Keamanan Lalu Lintas Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1204, 'kode' => '553.2', 'nama' => 'Pelabuhan Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1205, 'kode' => '553.3', 'nama' => 'Alat Angkutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1206, 'kode' => '554', 'nama' => 'Pos', 'uraian' => '-', 'enabled' => 1], - ['id' => 1207, 'kode' => '555', 'nama' => 'Telekomunikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1208, 'kode' => '555.1', 'nama' => 'Telepon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1209, 'kode' => '555.2', 'nama' => 'Telegram', 'uraian' => '-', 'enabled' => 1], - ['id' => 1210, 'kode' => '555.3', 'nama' => 'Telex / SSB, Faximile', 'uraian' => '-', 'enabled' => 1], - ['id' => 1211, 'kode' => '555.4', 'nama' => 'Satelit, Internet', 'uraian' => '-', 'enabled' => 1], - ['id' => 1212, 'kode' => '555.5', 'nama' => 'Stasiun Bumi, Parabola', 'uraian' => '-', 'enabled' => 1], - ['id' => 1213, 'kode' => '556', 'nama' => 'Pariwisata dan Rekreasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1214, 'kode' => '556.1', 'nama' => 'Obyek Kepariwisataan Taman Mini Indonesia Indah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1215, 'kode' => '556.2', 'nama' => 'Perhotelan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1216, 'kode' => '556.3', 'nama' => 'Travel service', 'uraian' => '-', 'enabled' => 1], - ['id' => 1217, 'kode' => '556.4', 'nama' => 'Tempat Rekreasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1218, 'kode' => '557', 'nama' => 'Meteorologi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1219, 'kode' => '557.1', 'nama' => 'Ramalan Cuaca', 'uraian' => '-', 'enabled' => 1], - ['id' => 1220, 'kode' => '557.2', 'nama' => 'Curah Hujan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1221, 'kode' => '557.3', 'nama' => 'Kemarau Panjang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1222, 'kode' => '558', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1223, 'kode' => '559', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1224, 'kode' => '560', 'nama' => 'TENAGA KERJA', 'uraian' => '-', 'enabled' => 1], - ['id' => 1225, 'kode' => '560.1', 'nama' => 'Pengangguran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1226, 'kode' => '561', 'nama' => 'Upah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1227, 'kode' => '562', 'nama' => 'Penempatan Tenaga Kerja, TKI', 'uraian' => '-', 'enabled' => 1], - ['id' => 1228, 'kode' => '563', 'nama' => 'Latihan Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1229, 'kode' => '564', 'nama' => 'Tenaga Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1230, 'kode' => '564.1', 'nama' => 'Butsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1231, 'kode' => '564.2', 'nama' => 'Padat Karya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1232, 'kode' => '565', 'nama' => 'Perselisihan Perburuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1233, 'kode' => '566', 'nama' => 'Keselamatan Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1234, 'kode' => '567', 'nama' => 'Pemutusan Hubungan Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1235, 'kode' => '568', 'nama' => 'kesejahteraan Buruh', 'uraian' => '-', 'enabled' => 1], - ['id' => 1236, 'kode' => '569', 'nama' => 'Tenaga Orang Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 1237, 'kode' => '570', 'nama' => 'PERMODALAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1238, 'kode' => '571', 'nama' => 'Modal Domestik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1239, 'kode' => '572', 'nama' => 'Modal Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 1240, 'kode' => '573', 'nama' => 'Modal Patungan (Joint Venture) / Penyertaan Modal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1241, 'kode' => '574', 'nama' => 'Pasar Uang Dan Modal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1242, 'kode' => '575', 'nama' => 'Saham', 'uraian' => '-', 'enabled' => 1], - ['id' => 1243, 'kode' => '576', 'nama' => 'Belanja Modal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1244, 'kode' => '577', 'nama' => 'Modal Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1245, 'kode' => '580', 'nama' => 'PERBANKAN / MONETER', 'uraian' => '-', 'enabled' => 1], - ['id' => 1246, 'kode' => '581', 'nama' => 'Kredit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1247, 'kode' => '582', 'nama' => 'Investasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1248, 'kode' => '583', 'nama' => 'Pembukaan ,Perubahan,Penutupan Rekening, Deposito', 'uraian' => '-', 'enabled' => 1], - ['id' => 1249, 'kode' => '584', 'nama' => 'Bank Pembangunan Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1250, 'kode' => '585', 'nama' => 'Asuransi Dana Kecelakaan Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1251, 'kode' => '586', 'nama' => 'Alat Pembayaran, Cek, Giro, Wesel, Transfer', 'uraian' => '-', 'enabled' => 1], - ['id' => 1252, 'kode' => '587', 'nama' => 'Fiskal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1253, 'kode' => '588', 'nama' => 'Hutang Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1254, 'kode' => '589', 'nama' => 'Moneter', 'uraian' => '-', 'enabled' => 1], - ['id' => 1255, 'kode' => '590', 'nama' => 'AGRARIA', 'uraian' => '-', 'enabled' => 1], - ['id' => 1256, 'kode' => '591', 'nama' => 'Tataguna Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1257, 'kode' => '591.1', 'nama' => 'Pemetaan dan Pengukuran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1258, 'kode' => '591.2', 'nama' => 'Perpetaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1259, 'kode' => '591.3', 'nama' => 'penyediaan Data', 'uraian' => '-', 'enabled' => 1], - ['id' => 1260, 'kode' => '591.4', 'nama' => 'Fatwa Tata Guna Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1261, 'kode' => '591.5', 'nama' => 'Tanah Kritis', 'uraian' => '-', 'enabled' => 1], - ['id' => 1262, 'kode' => '592', 'nama' => 'Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1263, 'kode' => '592.1', 'nama' => 'Redistribusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1264, 'kode' => '592.11', 'nama' => 'Pendaftaran Pemilikan Dan Pengurusan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1265, 'kode' => '592.12', 'nama' => 'Penentuan Tanah Obyek Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1266, 'kode' => '592.13', 'nama' => 'Pembagian Tanah Obyek Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1267, 'kode' => '592.14', 'nama' => 'Sengketa Redistribusi Tanah Obyek Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1268, 'kode' => '592.2', 'nama' => 'Ganti Rugi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1269, 'kode' => '592.21', 'nama' => 'Ganti Rugi Tanah Kelebihan', 'uraian' => 'Meliputi : Sengketa Ganti Rugi Tanah Kelebihan Tanah', 'enabled' => 1], - ['id' => 1270, 'kode' => '592.22', 'nama' => 'Ganti Rugi Tanah Absentee', 'uraian' => 'Meliputi : Sengketa Ganti Rugi Tanah Absentee', 'enabled' => 1], - ['id' => 1271, 'kode' => '592.23', 'nama' => 'Ganti Rugi Tanah Partikelir', 'uraian' => 'Meliputi : Sengketa Ganti Rugi Tanah Partikelir', 'enabled' => 1], - ['id' => 1272, 'kode' => '592.3', 'nama' => 'Bagi Hasil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1273, 'kode' => '592.31', 'nama' => 'Penetapan Imbangan Bagi Hasil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1274, 'kode' => '592.32', 'nama' => 'Pelaksanaan Perjanjian Bagi Hasil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1275, 'kode' => '592.33', 'nama' => 'Sengketa Perjanjian Bagi Hasil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1276, 'kode' => '592.4', 'nama' => 'Gadai Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1277, 'kode' => '592.41', 'nama' => 'Pendaftaran Pemilikan Dan Pengurusan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1278, 'kode' => '592.42', 'nama' => 'Pelaksanaan Gadai Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1279, 'kode' => '592.43', 'nama' => 'Sengketa Gadai Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1280, 'kode' => '592.5', 'nama' => 'Bimbingan dan Penyuluhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1281, 'kode' => '592.6', 'nama' => 'Pengembangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1282, 'kode' => '592.7', 'nama' => 'Yayasan Dana Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1283, 'kode' => '593', 'nama' => 'Pengurusan Hak-Hak Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1284, 'kode' => '593.01', 'nama' => 'Penyusunan Program Dan Bimbingan Teknis', 'uraian' => '-', 'enabled' => 1], - ['id' => 1285, 'kode' => '593.1', 'nama' => 'Sewa Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1286, 'kode' => '593.11', 'nama' => 'Sewa Tanah Untuk Tanaman Tertentu, Tebu, Tembakau, Rosela, Chorcorus', 'uraian' => '-', 'enabled' => 1], - ['id' => 1287, 'kode' => '593.2', 'nama' => 'Hak Milik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1288, 'kode' => '593.21', 'nama' => 'Perorangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1289, 'kode' => '593.22', 'nama' => 'Badan Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1290, 'kode' => '593.3', 'nama' => 'Hak Pakai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1291, 'kode' => '593.31', 'nama' => 'Perorangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1292, 'kode' => '593.311', 'nama' => 'Warga Negara Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 1293, 'kode' => '593.312', 'nama' => 'Warga Negara Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 1294, 'kode' => '593.32', 'nama' => 'Badan Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1295, 'kode' => '593.321', 'nama' => 'Badan Hukum Indonesia', 'uraian' => '-', 'enabled' => 1], - ['id' => 1296, 'kode' => '593.322', 'nama' => 'Badan Hukum Asing, Kedutaan, Konsulat Kantor Dagang Asing', 'uraian' => '-', 'enabled' => 1], - ['id' => 1297, 'kode' => '593.33', 'nama' => 'Tanah Gedung-Gedung Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1298, 'kode' => '593.4', 'nama' => 'Guna Usaha', 'uraian' => '-', 'enabled' => 1], - ['id' => 1299, 'kode' => '593.41', 'nama' => 'Perkebunan Besar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1300, 'kode' => '593.42', 'nama' => 'Perkebunan Rakyat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1301, 'kode' => '593.43', 'nama' => 'Peternakan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1302, 'kode' => '593.44', 'nama' => 'Perikanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1303, 'kode' => '593.45', 'nama' => 'Kehutanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1304, 'kode' => '593.5', 'nama' => 'Hak Guna Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1305, 'kode' => '593.51', 'nama' => 'Perorangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1306, 'kode' => '593.52', 'nama' => 'Badan Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1307, 'kode' => '593.53', 'nama' => 'P3MB (Panitia Pelaksana Penguasaan Milik Belanda)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1308, 'kode' => '593.54', 'nama' => 'Badan Hukum Asing Belanda-Prrk No 5165', 'uraian' => '-', 'enabled' => 1], - ['id' => 1309, 'kode' => '593.55', 'nama' => 'Pemulihan Hak (Pen Pres 4/1960)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1310, 'kode' => '593.6', 'nama' => 'Hak Pengelolaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1311, 'kode' => '593.61', 'nama' => 'PN Perumnas, Bonded Ware House, Industrial Estate, Real Estate', 'uraian' => '-', 'enabled' => 1], - ['id' => 1312, 'kode' => '593.62', 'nama' => 'Perusahaan Daerah Pembangunan Perumahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1313, 'kode' => '593.7', 'nama' => 'Sengketa Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1314, 'kode' => '593.71', 'nama' => 'Peradilan Perkara Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1315, 'kode' => '593.8', 'nama' => 'Pencabutan dan Pembebasan Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1316, 'kode' => '593.81', 'nama' => 'Pencabutan Hak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1317, 'kode' => '593.82', 'nama' => 'Pembebasan Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1318, 'kode' => '593.83', 'nama' => 'Ganti Rugi Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1319, 'kode' => '594', 'nama' => 'Pendaftaran Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1320, 'kode' => '594.1', 'nama' => 'Pengukuran / Pemetaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1321, 'kode' => '594.11', 'nama' => 'Fotogrametri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1322, 'kode' => '594.12', 'nama' => 'Terristris', 'uraian' => '-', 'enabled' => 1], - ['id' => 1323, 'kode' => '594.13', 'nama' => 'Triangulasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1324, 'kode' => '594.14', 'nama' => 'Peralatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1325, 'kode' => '594.2', 'nama' => 'Dana Pengukuran (Permen Agraria No. 61/1965)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1326, 'kode' => '594.3', 'nama' => 'Sertifikat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1327, 'kode' => '594.4', 'nama' => 'Pejabat Pembuat Akta Tanah (PPAT)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1328, 'kode' => '595', 'nama' => 'Lahan Transmigrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1329, 'kode' => '595.1', 'nama' => 'Tataguna Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1330, 'kode' => '595.2', 'nama' => 'Landreform', 'uraian' => '-', 'enabled' => 1], - ['id' => 1331, 'kode' => '595.3', 'nama' => 'Pengurusan Hak-Hak Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1332, 'kode' => '595.4', 'nama' => 'Pendaftaran Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1333, 'kode' => '596', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1334, 'kode' => '597', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1335, 'kode' => '598', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1336, 'kode' => '599', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1337, 'kode' => '600', 'nama' => 'PEKERJAAN UMUM DAN KETENAGAKERJAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1338, 'kode' => '601', 'nama' => 'Tata Bangunan Konstruksi Dan Industri Konstruksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1339, 'kode' => '602', 'nama' => 'Kontraktor Pemborong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1340, 'kode' => '602.1', 'nama' => 'Tender', 'uraian' => '-', 'enabled' => 1], - ['id' => 1341, 'kode' => '602.2', 'nama' => 'Pennunjukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1342, 'kode' => '602.3', 'nama' => 'Prakualifikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1343, 'kode' => '602.31', 'nama' => 'Daftar Rekanan Mampu (DRM)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1344, 'kode' => '602.32', 'nama' => 'Tanda Daftar Rekanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1345, 'kode' => '603', 'nama' => 'Arsitektur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1346, 'kode' => '604', 'nama' => 'Bahan Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1347, 'kode' => '604.1', 'nama' => 'Tanah Dan Batu Seperti: Batu Belah, Steen Slaag, Split dsb', 'uraian' => '-', 'enabled' => 1], - ['id' => 1348, 'kode' => '604.2', 'nama' => 'Aspal, Aspal Buatan, Aspal Alam (butas)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1349, 'kode' => '604.3', 'nama' => 'Besi Dan Logam Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1350, 'kode' => '604.31', 'nama' => 'Besi Beton', 'uraian' => '-', 'enabled' => 1], - ['id' => 1351, 'kode' => '604.32', 'nama' => 'Besi Profil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1352, 'kode' => '604.33', 'nama' => 'Paku', 'uraian' => '-', 'enabled' => 1], - ['id' => 1353, 'kode' => '604.34', 'nama' => 'Alumunium, Profil', 'uraian' => '-', 'enabled' => 1], - ['id' => 1354, 'kode' => '604.4', 'nama' => 'Bahan-Bahan Pelindung Dan Pengawet ', 'uraian' => '(Cat, Tech Til, Pengawet Kayu)', 'enabled' => 1], - ['id' => 1355, 'kode' => '604.5', 'nama' => 'Semen', 'uraian' => '-', 'enabled' => 1], - ['id' => 1356, 'kode' => '604.6', 'nama' => 'Kayu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1357, 'kode' => '604.7', 'nama' => 'Bahan Penutup Atap ', 'uraian' => '(Genting, Asbes Gelombang, Seng Dan Sebagainya)', 'enabled' => 1], - ['id' => 1358, 'kode' => '604.8', 'nama' => 'Alat-Alat Penggantung Dan Pengunci', 'uraian' => '-', 'enabled' => 1], - ['id' => 1359, 'kode' => '604.9', 'nama' => 'Bahan-Bahan Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1360, 'kode' => '605', 'nama' => 'Instalasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1361, 'kode' => '605.1', 'nama' => 'Instalasi Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1362, 'kode' => '605.2', 'nama' => 'Instalasi Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1363, 'kode' => '605.3', 'nama' => 'Instalasi Air Sanitasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1364, 'kode' => '605.4', 'nama' => 'Instalasi Pengatur Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1365, 'kode' => '605.5', 'nama' => 'Instalasi Akustik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1366, 'kode' => '605.6', 'nama' => 'Instalasi Cahaya / Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1367, 'kode' => '606', 'nama' => 'Konstruksi Pencegahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1368, 'kode' => '606.1', 'nama' => 'Konstruksi Pencegahan Terhadap Kebakaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1369, 'kode' => '606.2', 'nama' => 'Konstruksi Pencegahan Terhadap Gempa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1370, 'kode' => '606.3', 'nama' => 'Konstruksi Penegahan Terhadap Angin Udara/Panas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1371, 'kode' => '606.4', 'nama' => 'Konstruksi Pencegahan Terhadap Kegaduhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1372, 'kode' => '606.5', 'nama' => 'Konstruksi Pencegahan Terhadap Gas/Explosive', 'uraian' => '-', 'enabled' => 1], - ['id' => 1373, 'kode' => '606.6', 'nama' => 'Konstruksi Pencegahan Terhadap Serangga', 'uraian' => '-', 'enabled' => 1], - ['id' => 1374, 'kode' => '606.7', 'nama' => 'Konstruksi Pencegahan Terhadap Radiasi Atom', 'uraian' => '-', 'enabled' => 1], - ['id' => 1375, 'kode' => '607', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1376, 'kode' => '608', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1377, 'kode' => '609', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1378, 'kode' => '610', 'nama' => 'PENGAIRAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1379, 'kode' => '611', 'nama' => 'Irigasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1380, 'kode' => '611.1', 'nama' => 'Bangunan Waduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1381, 'kode' => '611.11', 'nama' => 'Bendungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1382, 'kode' => '611.12', 'nama' => 'Tanggul', 'uraian' => '-', 'enabled' => 1], - ['id' => 1383, 'kode' => '611.13', 'nama' => 'Pelimpahan Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1384, 'kode' => '611.14', 'nama' => 'Menara Pengambilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1385, 'kode' => '611.2', 'nama' => 'Bangunan Pengambilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1386, 'kode' => '611.21', 'nama' => 'Bendungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1387, 'kode' => '611.22', 'nama' => 'Bendungan Dengan Pintu Bilas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1388, 'kode' => '611.23', 'nama' => 'Bendungan Dengan Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1389, 'kode' => '611.24', 'nama' => 'Pengambilan Bebas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1390, 'kode' => '611.25', 'nama' => 'Pengambilan Bebas Dengan Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1391, 'kode' => '611.26', 'nama' => 'Sumur Dengan Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1392, 'kode' => '611.27', 'nama' => 'Kantung Lumpur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1393, 'kode' => '611.28', 'nama' => 'Slit Ekstrator', 'uraian' => '-', 'enabled' => 1], - ['id' => 1394, 'kode' => '611.29', 'nama' => 'Escope Channel', 'uraian' => '-', 'enabled' => 1], - ['id' => 1395, 'kode' => '611.3', 'nama' => 'Bangunan Pembawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1396, 'kode' => '611.31', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1397, 'kode' => '611.311', 'nama' => 'Saluran Induk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1398, 'kode' => '611.312', 'nama' => 'Saluran Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1399, 'kode' => '611.313', 'nama' => 'Suplesi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1400, 'kode' => '611.314', 'nama' => 'Tersier', 'uraian' => '-', 'enabled' => 1], - ['id' => 1401, 'kode' => '611.315', 'nama' => 'Saluran Kwarter', 'uraian' => '-', 'enabled' => 1], - ['id' => 1402, 'kode' => '611.316', 'nama' => 'Saluran Pasangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1403, 'kode' => '611.317', 'nama' => 'Saluran Tertutup / Terowongan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1404, 'kode' => '611.32', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1405, 'kode' => '611.321', 'nama' => 'Bangunan Bagi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1406, 'kode' => '611.322', 'nama' => 'Bangunan Bagi Dan Sadap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1407, 'kode' => '611.323', 'nama' => 'Bangunan Sadap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1408, 'kode' => '611.324', 'nama' => 'Bangunan Check', 'uraian' => '-', 'enabled' => 1], - ['id' => 1409, 'kode' => '611.325', 'nama' => 'Bangunan Terjun', 'uraian' => '-', 'enabled' => 1], - ['id' => 1410, 'kode' => '611.33', 'nama' => 'Box Tersier', 'uraian' => '-', 'enabled' => 1], - ['id' => 1411, 'kode' => '611.34', 'nama' => 'Got Miring', 'uraian' => '-', 'enabled' => 1], - ['id' => 1412, 'kode' => '611.35', 'nama' => 'Talang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1413, 'kode' => '611.36', 'nama' => 'Syphon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1414, 'kode' => '611.37', 'nama' => 'Gorong-Gorong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1415, 'kode' => '611.38', 'nama' => 'Pelimpah Samping', 'uraian' => '-', 'enabled' => 1], - ['id' => 1416, 'kode' => '611.4', 'nama' => 'Bangunan Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1417, 'kode' => '611.41', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1418, 'kode' => '611.411', 'nama' => 'Saluran Pembuang Induk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1419, 'kode' => '611.412', 'nama' => 'Saluran Pembuang Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1420, 'kode' => '611.413', 'nama' => 'Saluran Tersier', 'uraian' => '-', 'enabled' => 1], - ['id' => 1421, 'kode' => '611.42', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1422, 'kode' => '611.421', 'nama' => 'Bangunan Outlet', 'uraian' => '-', 'enabled' => 1], - ['id' => 1423, 'kode' => '611.422', 'nama' => 'Bangunan Terjun', 'uraian' => '-', 'enabled' => 1], - ['id' => 1424, 'kode' => '611.423', 'nama' => 'Bangunan Penahan Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1425, 'kode' => '611.43', 'nama' => 'Gorong-Gorong Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1426, 'kode' => '611.44', 'nama' => 'Talang Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1427, 'kode' => '611.45', 'nama' => 'Syphon Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1428, 'kode' => '611.5', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1429, 'kode' => '611.51', 'nama' => 'Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1430, 'kode' => '611.511', 'nama' => 'Jalan Inspeksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1431, 'kode' => '611.512', 'nama' => 'Jalan Logistik Waduk Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1432, 'kode' => '611.52', 'nama' => 'Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1433, 'kode' => '611.521', 'nama' => 'Jembatan Inspeksi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1434, 'kode' => '611.522', 'nama' => 'Jembatan Hewan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1435, 'kode' => '611.53', 'nama' => 'Tangga Cuci', 'uraian' => '-', 'enabled' => 1], - ['id' => 1436, 'kode' => '611.54', 'nama' => 'Kubangan Kerbau', 'uraian' => '-', 'enabled' => 1], - ['id' => 1437, 'kode' => '611.55', 'nama' => 'Waduk Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1438, 'kode' => '611.56', 'nama' => 'Bangunan Penunjang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1439, 'kode' => '611.57', 'nama' => 'Jaringan Telepon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1440, 'kode' => '611.58', 'nama' => 'Stasiun Agro', 'uraian' => '-', 'enabled' => 1], - ['id' => 1441, 'kode' => '612', 'nama' => 'Folder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1442, 'kode' => '612.1', 'nama' => 'Tanggul Keliling', 'uraian' => '-', 'enabled' => 1], - ['id' => 1443, 'kode' => '612.11', 'nama' => 'Tanggul', 'uraian' => '-', 'enabled' => 1], - ['id' => 1444, 'kode' => '612.12', 'nama' => 'Bangunan Penutup Sungai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1445, 'kode' => '612.13', 'nama' => 'Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1446, 'kode' => '612.2', 'nama' => 'Bangunan Pembawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1447, 'kode' => '612.21', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1448, 'kode' => '612.211', 'nama' => 'Saluran Muka', 'uraian' => '-', 'enabled' => 1], - ['id' => 1449, 'kode' => '612.212', 'nama' => 'Saluran Pembawa Waduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1450, 'kode' => '612.213', 'nama' => 'Saluran Pembawa Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1451, 'kode' => '612.22', 'nama' => 'Stasiun Pompa Pemasukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1452, 'kode' => '612.23', 'nama' => 'Bangunan Bagi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1453, 'kode' => '612.24', 'nama' => 'Gorong-Gorong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1454, 'kode' => '612.25', 'nama' => 'Syphon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1455, 'kode' => '612.3', 'nama' => 'Bangunan Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1456, 'kode' => '612.31', 'nama' => 'Stasiun Pompa Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1457, 'kode' => '612.32', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1458, 'kode' => '612.321', 'nama' => 'Saluran Pembuang Induk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1459, 'kode' => '612.322', 'nama' => 'Saluran Pembuang Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1460, 'kode' => '612.33', 'nama' => 'Pintu Air Pembuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1461, 'kode' => '612.34', 'nama' => 'Gorong-Gorong Pembuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1462, 'kode' => '612.35', 'nama' => 'Syphon Pembuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1463, 'kode' => '612.4', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1464, 'kode' => '612.41', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1465, 'kode' => '612.411', 'nama' => 'Bangunan Pengukur Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1466, 'kode' => '612.412', 'nama' => 'Bangunan Pengukur Curah Hujan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1467, 'kode' => '612.413', 'nama' => 'Bangunan Gudang Stasiun Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1468, 'kode' => '612.414', 'nama' => 'Bangunan Listrik Stasiun Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1469, 'kode' => '612.42', 'nama' => 'Rumah Petugas Aksploitasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1470, 'kode' => '613', 'nama' => 'Pasang Surut', 'uraian' => '-', 'enabled' => 1], - ['id' => 1471, 'kode' => '613.1', 'nama' => 'Bangunan Pembawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1472, 'kode' => '613.11', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1473, 'kode' => '613.111', 'nama' => 'Saluran Pembawa Induk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1474, 'kode' => '613.112', 'nama' => 'Saluran Pembawa Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1475, 'kode' => '613.113', 'nama' => 'Saluran Pembawa Tersier', 'uraian' => '-', 'enabled' => 1], - ['id' => 1476, 'kode' => '613.114', 'nama' => 'Saluran penyimpanan air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1477, 'kode' => '613.12', 'nama' => 'Bangunan Pintu Pemasukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1478, 'kode' => '613.2', 'nama' => 'Bangunan Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1479, 'kode' => '613.21', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1480, 'kode' => '613.211', 'nama' => 'Saluran Pembuang Induk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1481, 'kode' => '613.212', 'nama' => 'Saluran Pembuang Sekunder', 'uraian' => '-', 'enabled' => 1], - ['id' => 1482, 'kode' => '613.213', 'nama' => 'Saluran Pembuang Tersier', 'uraian' => '-', 'enabled' => 1], - ['id' => 1483, 'kode' => '613.214', 'nama' => 'Saluran Pengumpul Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1484, 'kode' => '613.22', 'nama' => 'Bangunan Pintu Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1485, 'kode' => '613.3', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1486, 'kode' => '613.31', 'nama' => 'Kolam Pasang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1487, 'kode' => '613.32', 'nama' => 'Saluran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1488, 'kode' => '613.321', 'nama' => 'Saluran Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1489, 'kode' => '613.322', 'nama' => 'Saluran Muka', 'uraian' => '-', 'enabled' => 1], - ['id' => 1490, 'kode' => '613.33', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1491, 'kode' => '613.331', 'nama' => 'Bangunan Penangkis Kotoran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1492, 'kode' => '613.332', 'nama' => 'Bangunan Pengukur Muka Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1493, 'kode' => '613.333', 'nama' => 'Bangunan Pengukur Curah Hujan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1494, 'kode' => '613.34', 'nama' => 'Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1495, 'kode' => '613.35', 'nama' => 'Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1496, 'kode' => '614', 'nama' => 'Pengendalian Sungai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1497, 'kode' => '614.1', 'nama' => 'Bangunan Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1498, 'kode' => '614.11', 'nama' => 'Tanggul Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1499, 'kode' => '614.12', 'nama' => 'Pintu Pengatur Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1500, 'kode' => '614.13', 'nama' => 'Klep Pengatur Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1501, 'kode' => '614.14', 'nama' => 'Tembok Pengaman Talud', 'uraian' => '-', 'enabled' => 1], - ['id' => 1502, 'kode' => '614.15', 'nama' => 'Krib', 'uraian' => '-', 'enabled' => 1], - ['id' => 1503, 'kode' => '614.16', 'nama' => 'Kantung Lumpur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1504, 'kode' => '614.17', 'nama' => 'Check-Dam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1505, 'kode' => '614.18', 'nama' => 'Syphon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1506, 'kode' => '614.2', 'nama' => 'Saluran Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1507, 'kode' => '614.21', 'nama' => 'Saluran Banjir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1508, 'kode' => '614.22', 'nama' => 'Saluran Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1509, 'kode' => '614.23', 'nama' => 'Corepure', 'uraian' => '-', 'enabled' => 1], - ['id' => 1510, 'kode' => '614.3', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1511, 'kode' => '614.31', 'nama' => 'Warning System', 'uraian' => '-', 'enabled' => 1], - ['id' => 1512, 'kode' => '614.32', 'nama' => 'Stasiun', 'uraian' => '-', 'enabled' => 1], - ['id' => 1513, 'kode' => '614.321', 'nama' => 'Stasiun Pengukur Curah Hujan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1514, 'kode' => '614.322', 'nama' => 'Stasiun Pengukur Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1515, 'kode' => '614.323', 'nama' => 'Stasiun Pengukur Cuaca', 'uraian' => '-', 'enabled' => 1], - ['id' => 1516, 'kode' => '614.324', 'nama' => 'Stasiun Pos Penjagaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1517, 'kode' => '615', 'nama' => 'Pengamanan Pantai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1518, 'kode' => '615.1', 'nama' => 'Tanggul', 'uraian' => '-', 'enabled' => 1], - ['id' => 1519, 'kode' => '615.2', 'nama' => 'Krib', 'uraian' => '-', 'enabled' => 1], - ['id' => 1520, 'kode' => '615.3', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1521, 'kode' => '616', 'nama' => 'Air Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1522, 'kode' => '616.1', 'nama' => 'Stasiun Pompa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1523, 'kode' => '616.2', 'nama' => 'Bangunan Pembawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1524, 'kode' => '616.3', 'nama' => 'Bangunan Pembuang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1525, 'kode' => '616.4', 'nama' => 'Bangunan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1526, 'kode' => '617', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1527, 'kode' => '618', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1528, 'kode' => '619', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1529, 'kode' => '620', 'nama' => 'JALAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1530, 'kode' => '621', 'nama' => 'Jalan Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1531, 'kode' => '621.1', 'nama' => 'Daerah Penguasaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1532, 'kode' => '621.11', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1533, 'kode' => '621.12', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1534, 'kode' => '621.13', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1535, 'kode' => '621.2', 'nama' => 'Bangunan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1536, 'kode' => '621.21', 'nama' => 'Jalan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1537, 'kode' => '621.22', 'nama' => 'Jembatan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1538, 'kode' => '621.23', 'nama' => 'Kantor Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1539, 'kode' => '621.24', 'nama' => 'Gedung Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1540, 'kode' => '621.25', 'nama' => 'Barak Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1541, 'kode' => '621.26', 'nama' => 'Laboratorium Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1542, 'kode' => '621.27', 'nama' => 'Rumah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1543, 'kode' => '621.3', 'nama' => 'Badan Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1544, 'kode' => '621.31', 'nama' => 'Pekerjaan Tanah (Earth Work)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1545, 'kode' => '621.32', 'nama' => 'Stabilisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1546, 'kode' => '621.4', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1547, 'kode' => '621.41', 'nama' => 'Lapis Pondasi Bawah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1548, 'kode' => '621.42', 'nama' => 'Lapis Pondasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1549, 'kode' => '621.43', 'nama' => 'Lapis Permukaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1550, 'kode' => '621.5', 'nama' => 'Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1551, 'kode' => '621.51', 'nama' => 'Parit Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1552, 'kode' => '621.52', 'nama' => 'Gorong-Gorong (Culvert)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1553, 'kode' => '621.6', 'nama' => 'Buku Trotuir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1554, 'kode' => '621.61', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1555, 'kode' => '621.62', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1556, 'kode' => '621.63', 'nama' => 'Pasangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1557, 'kode' => '621.7', 'nama' => 'Median', 'uraian' => '-', 'enabled' => 1], - ['id' => 1558, 'kode' => '621.71', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1559, 'kode' => '621.72', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1560, 'kode' => '621.73', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1561, 'kode' => '621.74', 'nama' => 'Pasangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1562, 'kode' => '621.8', 'nama' => 'Daerah Samping', 'uraian' => '-', 'enabled' => 1], - ['id' => 1563, 'kode' => '621.81', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1564, 'kode' => '621.82', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1565, 'kode' => '621.9', 'nama' => 'Bangunan Pelengkap Dan Pengamanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1566, 'kode' => '621.91', 'nama' => 'Rambu-Rambu/Tanda-Tanda Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1567, 'kode' => '621.92', 'nama' => 'Lampu Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1568, 'kode' => '621.93', 'nama' => 'Lampu Pengatur Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1569, 'kode' => '621.94', 'nama' => 'Patok-Patok KM', 'uraian' => '-', 'enabled' => 1], - ['id' => 1570, 'kode' => '621.95', 'nama' => 'Patok-Patok ROW (Sempadan)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1571, 'kode' => '621.96', 'nama' => 'Rel Pengamanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1572, 'kode' => '621.97', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1573, 'kode' => '621.98', 'nama' => 'Turap Penahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1574, 'kode' => '621.99', 'nama' => 'Bronjong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1575, 'kode' => '622', 'nama' => 'Jalan Luar Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1576, 'kode' => '622.1', 'nama' => 'Daerah Penguasaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1577, 'kode' => '622.11', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1578, 'kode' => '622.12', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1579, 'kode' => '622.13', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1580, 'kode' => '622.2', 'nama' => 'Bangunan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1581, 'kode' => '622.21', 'nama' => 'Jalan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1582, 'kode' => '622.22', 'nama' => 'Jembatan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1583, 'kode' => '622.23', 'nama' => 'Kantor Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1584, 'kode' => '622.24', 'nama' => 'Gudang Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1585, 'kode' => '622.25', 'nama' => 'Barak Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1586, 'kode' => '622.26', 'nama' => 'Laboratorium Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1587, 'kode' => '622.27', 'nama' => 'Rumah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1588, 'kode' => '622.3', 'nama' => 'Badan Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1589, 'kode' => '622.31', 'nama' => 'Pekerjaan Tanah (Earth Work)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1590, 'kode' => '622.32', 'nama' => 'Stabilisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1591, 'kode' => '622.4', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1592, 'kode' => '622.41', 'nama' => 'Lapis Pondasi Bawah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1593, 'kode' => '622.42', 'nama' => 'Lapis Pondasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1594, 'kode' => '622.43', 'nama' => 'Lapis Permukaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1595, 'kode' => '622.5', 'nama' => 'Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1596, 'kode' => '622.51', 'nama' => 'Parit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1597, 'kode' => '622.52', 'nama' => 'Gorong-Gorong (Culvert)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1598, 'kode' => '622.53', 'nama' => 'Sub Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1599, 'kode' => '622.6', 'nama' => 'Trotoar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1600, 'kode' => '622.61', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1601, 'kode' => '622.62', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1602, 'kode' => '622.7', 'nama' => 'Median', 'uraian' => '-', 'enabled' => 1], - ['id' => 1603, 'kode' => '622.71', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1604, 'kode' => '622.72', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1605, 'kode' => '622.73', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1606, 'kode' => '622.74', 'nama' => 'Pasangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1607, 'kode' => '622.8', 'nama' => 'Daerah Samping', 'uraian' => '-', 'enabled' => 1], - ['id' => 1608, 'kode' => '622.81', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1609, 'kode' => '622.82', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1610, 'kode' => '622.9', 'nama' => 'Bangunan Pelengkap Dan Pengamanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1611, 'kode' => '622.91', 'nama' => 'Rambu-Rambu/Tanda-Tanda Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1612, 'kode' => '622.92', 'nama' => 'Lampu Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1613, 'kode' => '622.93', 'nama' => 'Lampu Pengatur Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1614, 'kode' => '622.94', 'nama' => 'Patok-Patok KM', 'uraian' => '-', 'enabled' => 1], - ['id' => 1615, 'kode' => '622.95', 'nama' => 'Patok-Patok ROW (Sempadan)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1616, 'kode' => '622.96', 'nama' => 'Rel Pengamanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1617, 'kode' => '622.97', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1618, 'kode' => '622.98', 'nama' => 'Turap Penahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1619, 'kode' => '622.99', 'nama' => 'Bronjong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1620, 'kode' => '623', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1621, 'kode' => '623', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1622, 'kode' => '623', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1623, 'kode' => '630', 'nama' => 'JEMBATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1624, 'kode' => '631', 'nama' => 'Jembatan Pada Jalan Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1625, 'kode' => '631.1', 'nama' => 'Daerah Penguasaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1626, 'kode' => '631.11', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1627, 'kode' => '631.12', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1628, 'kode' => '631.13', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1629, 'kode' => '631.2', 'nama' => 'Bangunan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1630, 'kode' => '631.21', 'nama' => 'Jalan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1631, 'kode' => '631.22', 'nama' => 'Jembatan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1632, 'kode' => '631.23', 'nama' => 'Kantor Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1633, 'kode' => '631.24', 'nama' => 'Gudang Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1634, 'kode' => '631.25', 'nama' => 'Barak Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1635, 'kode' => '631.26', 'nama' => 'Laboratorium Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1636, 'kode' => '631.27', 'nama' => 'Rumah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1637, 'kode' => '631.3', 'nama' => 'Pekerjaan Tanah (Earth Work)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1638, 'kode' => '631.31', 'nama' => 'Galian Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1639, 'kode' => '631.32', 'nama' => 'Timbunan Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1640, 'kode' => '631.4', 'nama' => 'Pondasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1641, 'kode' => '631.41', 'nama' => 'Pondasi Kepala Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1642, 'kode' => '631.42', 'nama' => 'Pondasi Pilar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1643, 'kode' => '631.43', 'nama' => 'Angker', 'uraian' => '-', 'enabled' => 1], - ['id' => 1644, 'kode' => '631.5', 'nama' => 'Bangunan Bawah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1645, 'kode' => '631.51', 'nama' => 'Kepala Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1646, 'kode' => '631.52', 'nama' => 'Pilar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1647, 'kode' => '631.53', 'nama' => 'Piloon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1648, 'kode' => '631.54', 'nama' => 'Landasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1649, 'kode' => '631.6', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1650, 'kode' => '631.61', 'nama' => 'Gelagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1651, 'kode' => '631.62', 'nama' => 'Lantai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1652, 'kode' => '631.63', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1653, 'kode' => '631.64', 'nama' => 'Jalan Orang / Trotoar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1654, 'kode' => '631.65', 'nama' => 'Sandaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1655, 'kode' => '631.66', 'nama' => 'Talang air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1656, 'kode' => '631.7', 'nama' => 'Bangunan / Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1657, 'kode' => '631.71', 'nama' => 'Turap Penahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1658, 'kode' => '631.72', 'nama' => 'Bronjong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1659, 'kode' => '631.73', 'nama' => '', 'uraian' => '-', 'enabled' => 1], - ['id' => 1660, 'kode' => '631.74', 'nama' => 'Kist Dam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1661, 'kode' => '631.75', 'nama' => 'Corepure', 'uraian' => '-', 'enabled' => 1], - ['id' => 1662, 'kode' => '631.76', 'nama' => 'Krib', 'uraian' => '-', 'enabled' => 1], - ['id' => 1663, 'kode' => '631.8', 'nama' => 'Bangunan Pelengkap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1664, 'kode' => '631.81', 'nama' => 'Rambu-Rambu/Tanda-Tanda Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1665, 'kode' => '631.82', 'nama' => 'Lampu Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1666, 'kode' => '631.83', 'nama' => 'Lampu Pengatur Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1667, 'kode' => '631.84', 'nama' => 'Patok Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1668, 'kode' => '631.85', 'nama' => 'Patok ROW (Sempadan)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1669, 'kode' => '631.86', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1670, 'kode' => '631.9', 'nama' => 'Oprit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1671, 'kode' => '631.91', 'nama' => 'Badan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1672, 'kode' => '631.92', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1673, 'kode' => '631.93', 'nama' => 'Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1674, 'kode' => '631.94', 'nama' => 'Baku', 'uraian' => '-', 'enabled' => 1], - ['id' => 1675, 'kode' => '631.95', 'nama' => 'Median', 'uraian' => '-', 'enabled' => 1], - ['id' => 1676, 'kode' => '632', 'nama' => 'Jembatan Pada Jalan Luar Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1677, 'kode' => '632.1', 'nama' => 'Daerah Penguasaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1678, 'kode' => '632.11', 'nama' => 'Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1679, 'kode' => '632.12', 'nama' => 'Tanaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1680, 'kode' => '632.13', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1681, 'kode' => '632.2', 'nama' => 'Bangunan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1682, 'kode' => '632.21', 'nama' => 'Jalan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1683, 'kode' => '632.22', 'nama' => 'Jembatan Sementara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1684, 'kode' => '632.23', 'nama' => 'Kantor Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1685, 'kode' => '632.24', 'nama' => 'Gudang Proyek', 'uraian' => '-', 'enabled' => 1], - ['id' => 1686, 'kode' => '632.25', 'nama' => 'Barak Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1687, 'kode' => '632.26', 'nama' => 'Laboratorium Lapangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1688, 'kode' => '632.27', 'nama' => 'Rumah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1689, 'kode' => '632.3', 'nama' => 'Pekerjaan Tanah (Earth Work)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1690, 'kode' => '632.31', 'nama' => 'Galian Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1691, 'kode' => '632.32', 'nama' => 'Timnunan Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1692, 'kode' => '632.4', 'nama' => 'Pondasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1693, 'kode' => '632.41', 'nama' => 'Pondasi Kepala Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1694, 'kode' => '632.42', 'nama' => 'Pondasi Pilar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1695, 'kode' => '632.43', 'nama' => 'Pondasi Angker', 'uraian' => '-', 'enabled' => 1], - ['id' => 1696, 'kode' => '632.5', 'nama' => 'Bangunan Bawah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1697, 'kode' => '632.51', 'nama' => 'Kepala Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1698, 'kode' => '632.52', 'nama' => 'Pilar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1699, 'kode' => '632.53', 'nama' => 'Piloon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1700, 'kode' => '632.54', 'nama' => 'Landasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1701, 'kode' => '632.6', 'nama' => 'Bangunan Atas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1702, 'kode' => '632.61', 'nama' => 'Gelagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1703, 'kode' => '632.62', 'nama' => 'Lantai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1704, 'kode' => '632.63', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1705, 'kode' => '632.64', 'nama' => 'Jalan Orang / Trotoar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1706, 'kode' => '632.65', 'nama' => 'Sandaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1707, 'kode' => '632.66', 'nama' => 'Talang Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1708, 'kode' => '632.7', 'nama' => 'Bangunan Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1709, 'kode' => '632.71', 'nama' => 'Turap / Penahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1710, 'kode' => '632.72', 'nama' => 'Bronjong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1711, 'kode' => '632.73', 'nama' => 'Stek Dam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1712, 'kode' => '632.74', 'nama' => 'Kist Dam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1713, 'kode' => '632.75', 'nama' => 'Corepure', 'uraian' => '-', 'enabled' => 1], - ['id' => 1714, 'kode' => '632.76', 'nama' => 'Krib', 'uraian' => '-', 'enabled' => 1], - ['id' => 1715, 'kode' => '632.8', 'nama' => 'Bangunan Pelengkap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1716, 'kode' => '632.81', 'nama' => 'Rambu-Rambu/Tanda-Tanda Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1717, 'kode' => '632.82', 'nama' => 'Lampu Penerangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1718, 'kode' => '632.83', 'nama' => 'Lampu Pengatur Lalu Lintas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1719, 'kode' => '632.84', 'nama' => 'Patok Pengaman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1720, 'kode' => '632.85', 'nama' => 'Patok ROW (Sempadan)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1721, 'kode' => '632.86', 'nama' => 'Pagar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1722, 'kode' => '632.9', 'nama' => 'Oprit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1723, 'kode' => '632.91', 'nama' => 'Badan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1724, 'kode' => '632.92', 'nama' => 'Perkerasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1725, 'kode' => '632.93', 'nama' => 'Drainage', 'uraian' => '-', 'enabled' => 1], - ['id' => 1726, 'kode' => '632.94', 'nama' => 'Baku', 'uraian' => '-', 'enabled' => 1], - ['id' => 1727, 'kode' => '632.95', 'nama' => 'Median', 'uraian' => '-', 'enabled' => 1], - ['id' => 1728, 'kode' => '633', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1729, 'kode' => '634', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1730, 'kode' => '635', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1731, 'kode' => '640', 'nama' => 'BANGUNAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1732, 'kode' => '640.1', 'nama' => 'Gedung Pengadilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1733, 'kode' => '640.2', 'nama' => 'Rumah Pejabat Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1734, 'kode' => '640.3', 'nama' => 'Gedung DPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 1735, 'kode' => '640.4', 'nama' => 'Gedung Balai Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1736, 'kode' => '640.5', 'nama' => 'Penjara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1737, 'kode' => '640.6', 'nama' => 'Perkantoran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1738, 'kode' => '642', 'nama' => 'Bangunan Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1739, 'kode' => '642.1', 'nama' => 'Taman Kanak-Kanak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1740, 'kode' => '642.2', 'nama' => 'SD & SEKOLAH MENENGAH', 'uraian' => '-', 'enabled' => 1], - ['id' => 1741, 'kode' => '642.3', 'nama' => 'Perguruan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1742, 'kode' => '643', 'nama' => 'Bangunan Rekreasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1743, 'kode' => '643.1', 'nama' => 'BANGUNAN OLAH RAGA', 'uraian' => '-', 'enabled' => 1], - ['id' => 1744, 'kode' => '643.2', 'nama' => 'Gedung Kesenian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1745, 'kode' => '643.3', 'nama' => 'Gedung Pemancar', 'uraian' => '-', 'enabled' => 1], - ['id' => 1746, 'kode' => '644', 'nama' => 'Bangunan Perdagangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1747, 'kode' => '644.1', 'nama' => 'Pusat Perbelanjaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1748, 'kode' => '644.2', 'nama' => 'Gedung Perdagangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1749, 'kode' => '644.3', 'nama' => 'Bank', 'uraian' => '-', 'enabled' => 1], - ['id' => 1750, 'kode' => '644.4', 'nama' => 'Pekantoran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1751, 'kode' => '645', 'nama' => 'Bangunan Pelayanan Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1752, 'kode' => '645.1', 'nama' => 'MCK', 'uraian' => '-', 'enabled' => 1], - ['id' => 1753, 'kode' => '645.2', 'nama' => 'Gedung Parkir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1754, 'kode' => '645.3', 'nama' => 'Rumah Sakit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1755, 'kode' => '645.4', 'nama' => 'Gedung Telkom', 'uraian' => '-', 'enabled' => 1], - ['id' => 1756, 'kode' => '645.5', 'nama' => 'Terminal Angkutan udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1757, 'kode' => '645.6', 'nama' => 'Terminal Angkutan udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1758, 'kode' => '645.7', 'nama' => 'Terminal Angkutan Darat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1759, 'kode' => '645.8', 'nama' => 'Bangunan Keagamaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1760, 'kode' => '646', 'nama' => 'Bangunan Peninggalan Sejarah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1761, 'kode' => '646.1', 'nama' => 'Monumen', 'uraian' => '-', 'enabled' => 1], - ['id' => 1762, 'kode' => '646.2', 'nama' => 'Candi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1763, 'kode' => '646.3', 'nama' => 'Keraton', 'uraian' => '-', 'enabled' => 1], - ['id' => 1764, 'kode' => '646.4', 'nama' => 'Rumah Tradisional', 'uraian' => '-', 'enabled' => 1], - ['id' => 1765, 'kode' => '647', 'nama' => 'Bangunan Industri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1766, 'kode' => '648', 'nama' => 'Bangunan Tempat Tinggal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1767, 'kode' => '648.1', 'nama' => 'Rumah Perkotaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1768, 'kode' => '648.11', 'nama' => 'Inti / Sederhana', 'uraian' => '-', 'enabled' => 1], - ['id' => 1769, 'kode' => '648.12', 'nama' => 'Sedang / Mewah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1770, 'kode' => '648.2', 'nama' => 'Rumah Pedesaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1771, 'kode' => '648.21', 'nama' => 'Rumah Contoh', 'uraian' => '-', 'enabled' => 1], - ['id' => 1772, 'kode' => '648.3', 'nama' => 'Real Estate', 'uraian' => '-', 'enabled' => 1], - ['id' => 1773, 'kode' => '648.4', 'nama' => 'Bapetarum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1774, 'kode' => '649', 'nama' => 'Elemen Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1775, 'kode' => '649.1', 'nama' => 'Pondasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1776, 'kode' => '649.11', 'nama' => 'Di Atas Tiang', 'uraian' => '-', 'enabled' => 1], - ['id' => 1777, 'kode' => '649.2', 'nama' => 'Dinding', 'uraian' => '-', 'enabled' => 1], - ['id' => 1778, 'kode' => '649.21', 'nama' => 'Penahan Beban', 'uraian' => '-', 'enabled' => 1], - ['id' => 1779, 'kode' => '649.22', 'nama' => 'Tidak Menahan Beban', 'uraian' => '-', 'enabled' => 1], - ['id' => 1780, 'kode' => '649.3', 'nama' => 'Atap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1781, 'kode' => '649.4', 'nama' => 'Lantai / Langit-Langit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1782, 'kode' => '649.41', 'nama' => 'Supended', 'uraian' => '-', 'enabled' => 1], - ['id' => 1783, 'kode' => '649.42', 'nama' => 'Solit', 'uraian' => '-', 'enabled' => 1], - ['id' => 1784, 'kode' => '649.5', 'nama' => 'Pintu / Jendela', 'uraian' => '-', 'enabled' => 1], - ['id' => 1785, 'kode' => '649.51', 'nama' => 'Pintu Harmonik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1786, 'kode' => '649.52', 'nama' => 'Pintu Biasa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1787, 'kode' => '649.53', 'nama' => 'Pintu Sorong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1788, 'kode' => '649.54', 'nama' => 'Pintu Kayu', 'uraian' => '-', 'enabled' => 1], - ['id' => 1789, 'kode' => '649.55', 'nama' => 'Jendela Sorong', 'uraian' => '-', 'enabled' => 1], - ['id' => 1790, 'kode' => '649.56', 'nama' => 'Jendela Vertikal', 'uraian' => '-', 'enabled' => 1], - ['id' => 1791, 'kode' => '650', 'nama' => 'TATA KOTA', 'uraian' => '-', 'enabled' => 1], - ['id' => 1792, 'kode' => '651', 'nama' => 'Daerah Perdagangan / Pelabuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1793, 'kode' => '651.1', 'nama' => 'Daerah Pusat Perbelanjaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1794, 'kode' => '651.2', 'nama' => 'Daerah Perkotaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1795, 'kode' => '652', 'nama' => 'Daerah Pemerintah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1796, 'kode' => '653', 'nama' => 'Daerah Perumahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1797, 'kode' => '653.1', 'nama' => 'Kepadatan Rendah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1798, 'kode' => '653.2', 'nama' => 'Kepadatan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1799, 'kode' => '654', 'nama' => 'Daerah Industri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1800, 'kode' => '654.1', 'nama' => 'Industri Berat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1801, 'kode' => '654.2', 'nama' => 'Industri Ringan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1802, 'kode' => '654.3', 'nama' => 'Industri Ringan (Home Industry)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1803, 'kode' => '655', 'nama' => 'Daerah Rekreasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1804, 'kode' => '655.1', 'nama' => 'Public Garden', 'uraian' => '-', 'enabled' => 1], - ['id' => 1805, 'kode' => '655.2', 'nama' => 'Sport & Playing Fields', 'uraian' => '-', 'enabled' => 1], - ['id' => 1806, 'kode' => '655.3', 'nama' => 'Open Space', 'uraian' => '-', 'enabled' => 1], - ['id' => 1807, 'kode' => '656', 'nama' => 'Transportasi (Tata Letak)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1808, 'kode' => '656.1', 'nama' => 'Jaringan Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1809, 'kode' => '656.11', 'nama' => 'Penerangan Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1810, 'kode' => '656.2', 'nama' => 'Jaringan Kereta Api', 'uraian' => '-', 'enabled' => 1], - ['id' => 1811, 'kode' => '656.3', 'nama' => 'Jaringan Sungai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1812, 'kode' => '657', 'nama' => 'Assaineering', 'uraian' => '-', 'enabled' => 1], - ['id' => 1813, 'kode' => '657.1', 'nama' => 'Saluran Pengumpulan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1814, 'kode' => '657.2', 'nama' => 'Instalasi Pengolahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1815, 'kode' => '657.21', 'nama' => 'Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1816, 'kode' => '657.211', 'nama' => 'Bangunan Penyaringan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1817, 'kode' => '657.212', 'nama' => 'Bangunan Penghancur Kotoran / Sampah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1818, 'kode' => '657.213', 'nama' => 'Bangunan Pengendap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1819, 'kode' => '657.214', 'nama' => 'Bangunan Pengering Lumpur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1820, 'kode' => '657.22', 'nama' => 'Unit Densifektan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1821, 'kode' => '657.23', 'nama' => 'Unit Perpompaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1822, 'kode' => '658', 'nama' => 'Kesehatan Lingkungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1823, 'kode' => '658.1', 'nama' => 'Persampahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1824, 'kode' => '658.11', 'nama' => 'Bangunan Pengumpul', 'uraian' => '-', 'enabled' => 1], - ['id' => 1825, 'kode' => '658.12', 'nama' => 'Bangunan Pemusnahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1826, 'kode' => '658.2', 'nama' => 'Pengotoran Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1827, 'kode' => '658.3', 'nama' => 'pengotoran Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1828, 'kode' => '658.31', 'nama' => 'Air Buangan Industri Limbah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1829, 'kode' => '658.4', 'nama' => 'Kegaduhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1830, 'kode' => '658.5', 'nama' => 'Kebersihan Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1831, 'kode' => '659', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1832, 'kode' => '660', 'nama' => 'TATA LINGKUNGAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1833, 'kode' => '660.1', 'nama' => 'Persampahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1834, 'kode' => '660.2', 'nama' => 'Kebersihan Lingkungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1835, 'kode' => '660.3', 'nama' => 'Pencemaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1836, 'kode' => '660.31', 'nama' => 'Pecemaran Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1837, 'kode' => '660.32', 'nama' => 'Pencemaran Udara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1838, 'kode' => '661', 'nama' => 'Daerah Hutan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1839, 'kode' => '662', 'nama' => 'Daerah Pertanian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1840, 'kode' => '663', 'nama' => 'Daerah Pemikiman', 'uraian' => '-', 'enabled' => 1], - ['id' => 1841, 'kode' => '664', 'nama' => 'Pusat Pertumbuhan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1842, 'kode' => '665', 'nama' => 'Transportasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1843, 'kode' => '665.1', 'nama' => 'Jaringan Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1844, 'kode' => '665.2', 'nama' => 'Jaringan Kereta Api', 'uraian' => '-', 'enabled' => 1], - ['id' => 1845, 'kode' => '665.3', 'nama' => 'Jaringan Sungai', 'uraian' => '-', 'enabled' => 1], - ['id' => 1846, 'kode' => '666', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1847, 'kode' => '667', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1848, 'kode' => '668', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1849, 'kode' => '670', 'nama' => 'KETENAGAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1850, 'kode' => '671', 'nama' => 'Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1851, 'kode' => '671.1', 'nama' => 'Kelistrikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1852, 'kode' => '671.11', 'nama' => 'Kelisrikan PLN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1853, 'kode' => '671.12', 'nama' => 'Kelistrikan Non PLN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1854, 'kode' => '671.2', 'nama' => 'Pembangkit Tenaga Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1855, 'kode' => '671.21', 'nama' => 'PLTA ( Pembangkit Listrik Tenaga Air )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1856, 'kode' => '671.22', 'nama' => 'PLTD ( Pembangkit Listrik Tenaga Diesel )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1857, 'kode' => '671.23', 'nama' => 'PLTG P ( Pembangkit Listrik Tenaga Gas )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1858, 'kode' => '671.24', 'nama' => 'PLTM ( Pembangkit Listrik Tenaga Matahari )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1859, 'kode' => '671.25', 'nama' => 'PLTN ( Pembangkit Listrik Tenaga Nuklir )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1860, 'kode' => '671.26', 'nama' => 'PLTPB ( Pembangkit Listrik Tenaga Uap )', 'uraian' => '-', 'enabled' => 1], - ['id' => 1861, 'kode' => '671.3', 'nama' => 'Transmisi Tenaga Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1862, 'kode' => '671.31', 'nama' => 'Gardu Induk/Gardu Penghubung/Gardu Trafo', 'uraian' => '-', 'enabled' => 1], - ['id' => 1863, 'kode' => '671.32', 'nama' => 'Saluran Udara Tegangan Tinggi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1864, 'kode' => '671.33', 'nama' => 'Kabel Bawah Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1865, 'kode' => '671.4', 'nama' => 'Distribusi Tenaga Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1866, 'kode' => '671.41', 'nama' => 'Gardu Distribusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1867, 'kode' => '671.42', 'nama' => 'Tegangan Rendah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1868, 'kode' => '671.43', 'nama' => 'Tegangan Menengah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1869, 'kode' => '671.44', 'nama' => 'Jaringan Bawah Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1870, 'kode' => '671.5', 'nama' => 'Pengusahaan Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1871, 'kode' => '671.51', 'nama' => 'Sambungan Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1872, 'kode' => '671.52', 'nama' => 'Penjualan Tenaga Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1873, 'kode' => '671.53', 'nama' => 'Tarif Listrik', 'uraian' => '-', 'enabled' => 1], - ['id' => 1874, 'kode' => '672', 'nama' => 'Tenaga Air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1875, 'kode' => '673', 'nama' => 'Tenaga Minyak', 'uraian' => '-', 'enabled' => 1], - ['id' => 1876, 'kode' => '674', 'nama' => 'Tenaga Gas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1877, 'kode' => '675', 'nama' => 'Tenaga Matahari', 'uraian' => '-', 'enabled' => 1], - ['id' => 1878, 'kode' => '676', 'nama' => 'Tenaga Nuklir', 'uraian' => '-', 'enabled' => 1], - ['id' => 1879, 'kode' => '677', 'nama' => 'Tenaga Panas Bumi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1880, 'kode' => '678', 'nama' => 'Tenaga Uap', 'uraian' => '-', 'enabled' => 1], - ['id' => 1881, 'kode' => '679', 'nama' => 'Tenaga Lainya', 'uraian' => '-', 'enabled' => 1], - ['id' => 1882, 'kode' => '680', 'nama' => 'PERALATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1883, 'kode' => '681', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1884, 'kode' => '682', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1885, 'kode' => '683', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1886, 'kode' => '690', 'nama' => 'AIR MINUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 1887, 'kode' => '691', 'nama' => 'Intake', 'uraian' => '-', 'enabled' => 1], - ['id' => 1888, 'kode' => '691.1', 'nama' => 'Broncaptering', 'uraian' => '-', 'enabled' => 1], - ['id' => 1889, 'kode' => '691.2', 'nama' => 'Sumur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1890, 'kode' => '691.3', 'nama' => 'Bendungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1891, 'kode' => '691.4', 'nama' => 'Saringan (screen)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1892, 'kode' => '691.5', 'nama' => 'Pintu air', 'uraian' => '-', 'enabled' => 1], - ['id' => 1893, 'kode' => '691.6', 'nama' => 'Saluran Pembawa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1894, 'kode' => '691.7', 'nama' => 'Alat Ukur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1895, 'kode' => '691.8', 'nama' => 'Perpompaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1896, 'kode' => '692', 'nama' => 'Transmisi Air Baku', 'uraian' => '-', 'enabled' => 1], - ['id' => 1897, 'kode' => '692.1', 'nama' => 'Perpipaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1898, 'kode' => '692.2', 'nama' => 'Katup Udara (Air Relief)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1899, 'kode' => '692.3', 'nama' => 'Katup Penguras (Blow Off)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1900, 'kode' => '692.4', 'nama' => 'Bak Pelepas Tekanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1901, 'kode' => '692.5', 'nama' => 'Jembatan Pipa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1902, 'kode' => '692.6', 'nama' => 'Syphon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1903, 'kode' => '693', 'nama' => 'Instalasi Pengelolaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1904, 'kode' => '693.1', 'nama' => 'Bangunan Ukur', 'uraian' => '-', 'enabled' => 1], - ['id' => 1905, 'kode' => '693.2', 'nama' => 'Bangunan Aerasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1906, 'kode' => '693.3', 'nama' => 'Bangunan Pengendapan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1907, 'kode' => '693.4', 'nama' => 'Bangunan Pembubuh Bahan Kimia', 'uraian' => '-', 'enabled' => 1], - ['id' => 1908, 'kode' => '693.5', 'nama' => 'Bangunan Pengaduk', 'uraian' => '-', 'enabled' => 1], - ['id' => 1909, 'kode' => '693.6', 'nama' => 'Bangunan Saringan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1910, 'kode' => '693.7', 'nama' => 'Perpompaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1911, 'kode' => '693.8', 'nama' => 'Clear Hell', 'uraian' => '-', 'enabled' => 1], - ['id' => 1912, 'kode' => '694', 'nama' => 'Distribusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1913, 'kode' => '694.1', 'nama' => 'Reservoir Menara Bawah Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1914, 'kode' => '694.11', 'nama' => 'Menara', 'uraian' => '-', 'enabled' => 1], - ['id' => 1915, 'kode' => '694.12', 'nama' => 'reservoir di Bawah Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1916, 'kode' => '694.2', 'nama' => 'Perpipaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1917, 'kode' => '694.3', 'nama' => 'Perpompaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1918, 'kode' => '694.4', 'nama' => 'Jembatan Pipa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1919, 'kode' => '694.5', 'nama' => 'Syphon', 'uraian' => '-', 'enabled' => 1], - ['id' => 1920, 'kode' => '694.6', 'nama' => 'Hydran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1921, 'kode' => '694.61', 'nama' => 'Hydran Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1922, 'kode' => '694.62', 'nama' => 'Hydran Kebakaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1923, 'kode' => '694.7', 'nama' => 'Katup', 'uraian' => '-', 'enabled' => 1], - ['id' => 1924, 'kode' => '694.71', 'nama' => 'Katup Udara (Air Relief)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1925, 'kode' => '694.72', 'nama' => 'Katup Pelepas (Blow Off)', 'uraian' => '-', 'enabled' => 1], - ['id' => 1926, 'kode' => '694.8', 'nama' => 'Bak Pelepas Tekanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1927, 'kode' => '695', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1928, 'kode' => '696', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1929, 'kode' => '697', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1930, 'kode' => '698', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1931, 'kode' => '699', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1932, 'kode' => '700', 'nama' => 'PENGAWASAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1933, 'kode' => '701', 'nama' => 'Bidang Urusan Dalam', 'uraian' => '-', 'enabled' => 1], - ['id' => 1934, 'kode' => '702', 'nama' => 'Bidang Peralatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1935, 'kode' => '703', 'nama' => 'Bidang Kekayaan Daerah', 'uraian' => '-', 'enabled' => 1], - ['id' => 1936, 'kode' => '704', 'nama' => 'Bidang Perpustakaan / Dokumentasi / Kearsipan Sandi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1937, 'kode' => '705', 'nama' => 'Bidang Perencanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1938, 'kode' => '706', 'nama' => 'Bidang Organisasi / Ketatalaksanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1939, 'kode' => '707', 'nama' => 'Bidang Penelitian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1940, 'kode' => '708', 'nama' => 'Bidang Konferensi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1941, 'kode' => '709', 'nama' => 'Bidang Perjalanan Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 1942, 'kode' => '710', 'nama' => 'BIDANG PEMERINTAHAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1943, 'kode' => '711', 'nama' => 'Bidang Pemerintahan Pusat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1944, 'kode' => '712', 'nama' => 'Bidang Pemerintahan Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1945, 'kode' => '713', 'nama' => 'Bidang Pemerintahan Kabupaten / Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1946, 'kode' => '714', 'nama' => 'Bidang Pemerintahan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1947, 'kode' => '715', 'nama' => 'Bidang MPR / DPR', 'uraian' => '-', 'enabled' => 1], - ['id' => 1948, 'kode' => '716', 'nama' => 'Bidang DPRD Provinsi', 'uraian' => '-', 'enabled' => 1], - ['id' => 1949, 'kode' => '717', 'nama' => 'Bidang DPRD Kabupaten / Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1950, 'kode' => '718', 'nama' => 'Bidang Hukum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1951, 'kode' => '719', 'nama' => 'Bidang Hubungan Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 1952, 'kode' => '720', 'nama' => 'BIDANG POLITIK', 'uraian' => '-', 'enabled' => 1], - ['id' => 1953, 'kode' => '721', 'nama' => 'Bidang Kepartaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1954, 'kode' => '722', 'nama' => 'Bidang Organisasi Kemasyarakatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1955, 'kode' => '723', 'nama' => 'Bidang Organisasi Profesi Dan Fungsional', 'uraian' => '-', 'enabled' => 1], - ['id' => 1956, 'kode' => '724', 'nama' => 'Bidang Organisasi Pemuda', 'uraian' => '-', 'enabled' => 1], - ['id' => 1957, 'kode' => '725', 'nama' => 'Bidang Organisasi Buruh, Tani, Dan Nelayan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1958, 'kode' => '726', 'nama' => 'Bidang Organisasi Wanita', 'uraian' => '-', 'enabled' => 1], - ['id' => 1959, 'kode' => '727', 'nama' => 'Bidang Pemilihan Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 1960, 'kode' => '730', 'nama' => 'BIDANG KEAMANAN/KETERTIBAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1961, 'kode' => '731', 'nama' => 'Bidang Pertahanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1962, 'kode' => '732', 'nama' => 'Bidang Kemiliteran', 'uraian' => '-', 'enabled' => 1], - ['id' => 1963, 'kode' => '733', 'nama' => 'Bidang Perlindungan Masyarakat', 'uraian' => '-', 'enabled' => 1], - ['id' => 1964, 'kode' => '734', 'nama' => 'Bidang Kemanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1965, 'kode' => '735', 'nama' => 'bidang Kejahatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1966, 'kode' => '736', 'nama' => 'Bidang Bencana', 'uraian' => '-', 'enabled' => 1], - ['id' => 1967, 'kode' => '737', 'nama' => 'Bidang Kecelakaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1968, 'kode' => '738', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1969, 'kode' => '739', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1970, 'kode' => '740', 'nama' => 'BIDANG KESEJAHTERAAN RAKYAT', 'uraian' => '-', 'enabled' => 1], - ['id' => 1971, 'kode' => '741', 'nama' => 'Bidang Pembagunan Desa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1972, 'kode' => '742', 'nama' => 'Bidang Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1973, 'kode' => '743', 'nama' => 'Bidang Kebudayaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1974, 'kode' => '744', 'nama' => 'Bidang Kesehatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1975, 'kode' => '745', 'nama' => 'Bidang Agama', 'uraian' => '-', 'enabled' => 1], - ['id' => 1976, 'kode' => '746', 'nama' => 'Bidang Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 1977, 'kode' => '747', 'nama' => 'Bidang Kependudukan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1978, 'kode' => '748', 'nama' => 'Bidang Media Massa', 'uraian' => '-', 'enabled' => 1], - ['id' => 1979, 'kode' => '749', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 1980, 'kode' => '750', 'nama' => 'BIDANG PEREKONOMIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 1981, 'kode' => '751', 'nama' => 'Bidang Perdagangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1982, 'kode' => '752', 'nama' => 'Bidang Pertanian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1983, 'kode' => '753', 'nama' => 'Bidang Perindustrian', 'uraian' => '-', 'enabled' => 1], - ['id' => 1984, 'kode' => '754', 'nama' => 'Bidang Pertambangan / Kesamudraan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1985, 'kode' => '755', 'nama' => 'Bidang Perhubungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1986, 'kode' => '756', 'nama' => 'Bidang Tenaga Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 1987, 'kode' => '757', 'nama' => 'Bidang Permodalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1988, 'kode' => '758', 'nama' => 'Bidang Perbankan / Moneter', 'uraian' => '-', 'enabled' => 1], - ['id' => 1989, 'kode' => '759', 'nama' => 'Bidang Agraria', 'uraian' => '-', 'enabled' => 1], - ['id' => 1990, 'kode' => '760', 'nama' => 'BIDANG PEKERJAAN UMUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 1991, 'kode' => '761', 'nama' => 'Bidang Pengairan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1992, 'kode' => '762', 'nama' => 'Bidang Jalan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1993, 'kode' => '763', 'nama' => 'Bidang Jembatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1994, 'kode' => '764', 'nama' => 'Bidang Bangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1995, 'kode' => '765', 'nama' => 'Bidang Tata Kota', 'uraian' => '-', 'enabled' => 1], - ['id' => 1996, 'kode' => '766', 'nama' => 'Bidang Lingkungan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1997, 'kode' => '767', 'nama' => 'Bidang Ketenagaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1998, 'kode' => '768', 'nama' => 'Bidang Peralatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 1999, 'kode' => '769', 'nama' => 'Bidang Air Minum', 'uraian' => '-', 'enabled' => 1], - ['id' => 2000, 'kode' => '770', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2001, 'kode' => '771', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2002, 'kode' => '772', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2003, 'kode' => '780', 'nama' => 'BIDANG KEPEGAWAIAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2004, 'kode' => '781', 'nama' => 'Bidang Pengadaan Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2005, 'kode' => '782', 'nama' => 'Bidang Mutasi Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2006, 'kode' => '783', 'nama' => 'Bidang Kedudukan Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2007, 'kode' => '784', 'nama' => 'Bidang Kesejahteran Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2008, 'kode' => '785', 'nama' => 'Bidang Cuti', 'uraian' => '-', 'enabled' => 1], - ['id' => 2009, 'kode' => '786', 'nama' => 'Bidang Penilaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2010, 'kode' => '787', 'nama' => 'Bidang Tata Usaha Kepegawaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2011, 'kode' => '788', 'nama' => 'Bidang Pemberhentian Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2012, 'kode' => '789', 'nama' => 'Bidang Pendidikan Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2013, 'kode' => '790', 'nama' => 'BIDANG KEUANGAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2014, 'kode' => '791', 'nama' => 'Bidang Anggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2015, 'kode' => '792', 'nama' => 'Bidang Otorisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2016, 'kode' => '793', 'nama' => 'Bidang Verifikasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2017, 'kode' => '794', 'nama' => 'Bidang Pembukuan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2018, 'kode' => '795', 'nama' => 'Bidang Perbendaharaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2019, 'kode' => '796', 'nama' => 'Bidang Pembina Kebendaharaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2020, 'kode' => '797', 'nama' => 'Bidang Pendapatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2021, 'kode' => '798', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2022, 'kode' => '799', 'nama' => 'Bidang Bendaharaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2023, 'kode' => '800', 'nama' => 'KEPEGAWAIAN', 'uraian' => 'Klasifikasi Disini: Kebijaksanaan Kepegawaian', 'enabled' => 1], - ['id' => 2024, 'kode' => '800.1', 'nama' => 'Perencanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2025, 'kode' => '800.2', 'nama' => 'Penelitian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2026, 'kode' => '800.043', 'nama' => 'Pengaduan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2027, 'kode' => '800.05', 'nama' => 'Tim', 'uraian' => '-', 'enabled' => 1], - ['id' => 2028, 'kode' => '800.07', 'nama' => 'Statistik', 'uraian' => '-', 'enabled' => 1], - ['id' => 2029, 'kode' => '800.08', 'nama' => 'Peraturan Perundang-Undangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2030, 'kode' => '810', 'nama' => 'PENGADAAN', 'uraian' => 'Meliputi: Lamaran, Pengujian Kesehatan, Dan Pengangkatan Calon Pegawai', 'enabled' => 1], - ['id' => 2031, 'kode' => '811', 'nama' => 'Lamaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2032, 'kode' => '811.1', 'nama' => 'Testing', 'uraian' => '-', 'enabled' => 1], - ['id' => 2033, 'kode' => '811.2', 'nama' => 'Screening', 'uraian' => '-', 'enabled' => 1], - ['id' => 2034, 'kode' => '811.3', 'nama' => 'Panggilan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2035, 'kode' => '812', 'nama' => 'Pengujian Kesehatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2036, 'kode' => '813', 'nama' => 'Pengangkatan Calon Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2037, 'kode' => '813.1', 'nama' => 'Pengangkatan Calon Pegawai Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2038, 'kode' => '813.2', 'nama' => 'Pengangkatan Calon Pegawai Golongan II', 'uraian' => '-', 'enabled' => 1], - ['id' => 2039, 'kode' => '813.3', 'nama' => 'Pengangkatan Calon Pegawai Golongan III', 'uraian' => '-', 'enabled' => 1], - ['id' => 2040, 'kode' => '813.4', 'nama' => 'Pengangkatan Calon Pegawai Golongan IV', 'uraian' => '-', 'enabled' => 1], - ['id' => 2041, 'kode' => '813.5', 'nama' => 'Pengangkatan Calon Guru Inpres', 'uraian' => '-', 'enabled' => 1], - ['id' => 2042, 'kode' => '814', 'nama' => 'Pengangkatan Tenaga Lepas', 'uraian' => '-', 'enabled' => 1], - ['id' => 2043, 'kode' => '814.1', 'nama' => 'Pengangkatan Tenaga Bulanan / Tenaga Kontrak', 'uraian' => '-', 'enabled' => 1], - ['id' => 2044, 'kode' => '814.2', 'nama' => 'Pengangkatan Tenaga Harian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2045, 'kode' => '814.3', 'nama' => 'Pengangkatan Tenaga Pensiunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2046, 'kode' => '815', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2047, 'kode' => '816', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2048, 'kode' => '817', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2049, 'kode' => '820', 'nama' => 'MUTASI', 'uraian' => 'Meliputi: Pengangkatan, Kenaikan Gaji Berkala, Kenaikan Pangkat, Pemindahan, Pelimpahan Datasering, Tugas Belajar Dan Wajib Militer', 'enabled' => 1], - ['id' => 2050, 'kode' => '821', 'nama' => 'Pengangkatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2051, 'kode' => '821.1', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Tetap', 'uraian' => '-', 'enabled' => 1], - ['id' => 2052, 'kode' => '821.11', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2053, 'kode' => '821.12', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2054, 'kode' => '821.13', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2055, 'kode' => '821.14', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2056, 'kode' => '821.15', 'nama' => 'Pengangkatan Menjadi Pegawai Negeri Sipil Yang Cuti Di Luar Tanggungan Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 2057, 'kode' => '821.2', 'nama' => 'Pengangkatan Dalam Jabatan, Pembebasan Dari Jabatan, Berita Acara Serah Terima Jabatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2058, 'kode' => '821.21', 'nama' => 'Sekjen/Dirjen/Irjen/Kabag', 'uraian' => '-', 'enabled' => 1], - ['id' => 2059, 'kode' => '821.22', 'nama' => 'Kepala Biro/Direktur/Inspektur/Kepala Pusat/Sekretaris/Kepala Dinas/Asisten Sekwilda', 'uraian' => '-', 'enabled' => 1], - ['id' => 2060, 'kode' => '821.23', 'nama' => 'Kepala Bagian/Kepala Sub Direktorat/Kepala Bidang/Inspektur Pembantu', 'uraian' => '-', 'enabled' => 1], - ['id' => 2061, 'kode' => '821.24', 'nama' => 'Kepala Subbagian/Kepala Seksi/Kepala Sub Bidang/Pemeriksa', 'uraian' => '-', 'enabled' => 1], - ['id' => 2062, 'kode' => '821.25', 'nama' => 'Residen/Pembantu Gubernur', 'uraian' => '-', 'enabled' => 1], - ['id' => 2063, 'kode' => '821.26', 'nama' => 'Wedana/Pembantu Bupati', 'uraian' => '-', 'enabled' => 1], - ['id' => 2064, 'kode' => '821.27', 'nama' => 'Camat', 'uraian' => '-', 'enabled' => 1], - ['id' => 2065, 'kode' => '821.28', 'nama' => 'Lurah Administratif (Lurah Desa)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2066, 'kode' => '821.29', 'nama' => 'Jabatan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 2067, 'kode' => '822', 'nama' => 'Kenaikan Gaji Berkala', 'uraian' => '-', 'enabled' => 1], - ['id' => 2068, 'kode' => '822.1', 'nama' => 'Pegawai Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2069, 'kode' => '822.2', 'nama' => 'Pegawai Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2070, 'kode' => '822.3', 'nama' => 'Pegawai Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2071, 'kode' => '822.4', 'nama' => 'Pegawai Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2072, 'kode' => '823', 'nama' => 'Kenaikan Pangkat / Pengangkatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2073, 'kode' => '823.1', 'nama' => 'Pegawai Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2074, 'kode' => '823.2', 'nama' => 'Pegawai Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2075, 'kode' => '823.3', 'nama' => 'Pegawai Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2076, 'kode' => '823.4', 'nama' => 'Pegawai Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2077, 'kode' => '824', 'nama' => 'Pemindahan / Pelimpahan / Perbantuan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2078, 'kode' => '824.1', 'nama' => 'Pegawai Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2079, 'kode' => '824.2', 'nama' => 'Pegawai Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2080, 'kode' => '824.3', 'nama' => 'Pegawai Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2081, 'kode' => '824.4', 'nama' => 'Pegawai Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2082, 'kode' => '824.5', 'nama' => 'Lolos Butuh', 'uraian' => '-', 'enabled' => 1], - ['id' => 2083, 'kode' => '824.6', 'nama' => 'Kurikulum dan Silabi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2084, 'kode' => '824.7', 'nama' => 'Proposal (TOR)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2085, 'kode' => '825', 'nama' => 'Datasering dan Penempatan Kembali', 'uraian' => '-', 'enabled' => 1], - ['id' => 2086, 'kode' => '826', 'nama' => 'Penunjukan Tugas Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2087, 'kode' => '826.1', 'nama' => 'Dalam Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 2088, 'kode' => '826.2', 'nama' => 'Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 2089, 'kode' => '826.3', 'nama' => 'Tunjangan Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2090, 'kode' => '826.4', 'nama' => 'Penempatan Kembali', 'uraian' => '-', 'enabled' => 1], - ['id' => 2091, 'kode' => '827', 'nama' => 'Wajib Militer', 'uraian' => '-', 'enabled' => 1], - ['id' => 2092, 'kode' => '828', 'nama' => 'Mutasi Dengan Instansi Lain', 'uraian' => '-', 'enabled' => 1], - ['id' => 2093, 'kode' => '829', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2094, 'kode' => '830', 'nama' => 'KEDUDUKAN', 'uraian' => 'Meliputi: Perhitungan Masa Kerja, Penyesuaian Pangkat/Gaji, Penghargaan Ijasah, Dan Jenjang Pangkat', 'enabled' => 1], - ['id' => 2095, 'kode' => '831', 'nama' => 'Perhitungan Masa Kerja', 'uraian' => '-', 'enabled' => 1], - ['id' => 2096, 'kode' => '832', 'nama' => 'Penyesuaian Pangkat / Gaji', 'uraian' => '-', 'enabled' => 1], - ['id' => 2097, 'kode' => '832.1', 'nama' => 'Pegawai Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2098, 'kode' => '832.2', 'nama' => 'Pegawai Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2099, 'kode' => '832.3', 'nama' => 'Pegawai Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2100, 'kode' => '832.4', 'nama' => 'Pegawai Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2101, 'kode' => '833', 'nama' => 'Penghargaan Ijazah / Penyesuaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2102, 'kode' => '834', 'nama' => 'Jenjang Pangkat / Eselonering', 'uraian' => '-', 'enabled' => 1], - ['id' => 2103, 'kode' => '835', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2104, 'kode' => '836', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2105, 'kode' => '837', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2106, 'kode' => '840', 'nama' => 'KESEJAHTERAAN PEGAWAI', 'uraian' => 'Meliputi: Tunjangan, Dana, Perawatan Kesehatan, Koperasi, Distribusi, Permahan/Tanah, Bantuan Sosial, Rekreasi Dan Dispensasi.', 'enabled' => 1], - ['id' => 2107, 'kode' => '841', 'nama' => 'Tunjangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2108, 'kode' => '841.1', 'nama' => 'Jabatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2109, 'kode' => '841.2', 'nama' => 'Kehormatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2110, 'kode' => '841.3', 'nama' => 'Kematian/Uang Duka', 'uraian' => '-', 'enabled' => 1], - ['id' => 2111, 'kode' => '841.4', 'nama' => 'Tunjangan Hari Raya', 'uraian' => '-', 'enabled' => 1], - ['id' => 2112, 'kode' => '841.5', 'nama' => 'Perjalanan Dinas Tetap/Cuti/Pindah', 'uraian' => '-', 'enabled' => 1], - ['id' => 2113, 'kode' => '841.6', 'nama' => 'Keluarga', 'uraian' => '-', 'enabled' => 1], - ['id' => 2114, 'kode' => '841.7', 'nama' => 'Sandang, Pangan, Papan (Bapertarum)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2115, 'kode' => '842', 'nama' => 'Dana', 'uraian' => '-', 'enabled' => 1], - ['id' => 2116, 'kode' => '842.1', 'nama' => 'Taspen', 'uraian' => '-', 'enabled' => 1], - ['id' => 2117, 'kode' => '842.2', 'nama' => 'Kesehatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2118, 'kode' => '842.3', 'nama' => 'Asuransi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2119, 'kode' => '843', 'nama' => 'Perawatan Kesehatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2120, 'kode' => '843.1', 'nama' => 'Poliklinik', 'uraian' => '-', 'enabled' => 1], - ['id' => 2121, 'kode' => '843.2', 'nama' => 'Perawatan Dokter', 'uraian' => '-', 'enabled' => 1], - ['id' => 2122, 'kode' => '843.3', 'nama' => 'Obat-Obatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2123, 'kode' => '843.4', 'nama' => 'Keluarga Berencana', 'uraian' => '-', 'enabled' => 1], - ['id' => 2124, 'kode' => '844', 'nama' => 'Koperasi / Distribusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2125, 'kode' => '844.1', 'nama' => 'Distribusi Pangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2126, 'kode' => '844.2', 'nama' => 'Distribusi Sandang', 'uraian' => '-', 'enabled' => 1], - ['id' => 2127, 'kode' => '844.3', 'nama' => 'Distribusi Papan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2128, 'kode' => '845', 'nama' => 'Perumahan/Tanah', 'uraian' => '-', 'enabled' => 1], - ['id' => 2129, 'kode' => '845.1', 'nama' => 'Perumahan Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2130, 'kode' => '845.2', 'nama' => 'Tanah Kapling', 'uraian' => '-', 'enabled' => 1], - ['id' => 2131, 'kode' => '845.3', 'nama' => 'Losmen/Hotel', 'uraian' => '-', 'enabled' => 1], - ['id' => 2132, 'kode' => '846', 'nama' => 'Bantuan Sosial', 'uraian' => '-', 'enabled' => 1], - ['id' => 2133, 'kode' => '846.1', 'nama' => 'Bantuan Kebakaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2134, 'kode' => '846.2', 'nama' => 'Bantuan Kebanjiran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2135, 'kode' => '847', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2136, 'kode' => '848', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2137, 'kode' => '849', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2138, 'kode' => '850', 'nama' => 'CUTI ', 'uraian' => 'Meliputi Cuti Tahunan, Cuti Besar, Cuti Sakit, Cuti Hamil, Cuti Naik Haji, Cuti Diluar Tanggungan Negara Dan Cuti Alasan Lain', 'enabled' => 1], - ['id' => 2139, 'kode' => '851', 'nama' => 'Cuti Tahunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2140, 'kode' => '852', 'nama' => 'Cuti Besar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2141, 'kode' => '853', 'nama' => 'Cuti Sakit', 'uraian' => '-', 'enabled' => 1], - ['id' => 2142, 'kode' => '854', 'nama' => 'Cuti Hamil', 'uraian' => '-', 'enabled' => 1], - ['id' => 2143, 'kode' => '855', 'nama' => 'Cuti Naik Haji/Umroh', 'uraian' => '-', 'enabled' => 1], - ['id' => 2144, 'kode' => '856', 'nama' => 'Cuti Di Luar Tangungan Neagara', 'uraian' => '-', 'enabled' => 1], - ['id' => 2145, 'kode' => '857', 'nama' => 'Cuti Alasan Lain/Alasan Penting', 'uraian' => '-', 'enabled' => 1], - ['id' => 2146, 'kode' => '858', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2147, 'kode' => '859', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2148, 'kode' => '860', 'nama' => 'PENILAIAN', 'uraian' => 'Meliputi: Penghargaan, Hukuman, Konduite, Ujian Dinas,Penilaian Kakayaan Pribadi Dan Rehabilitasi', 'enabled' => 1], - ['id' => 2149, 'kode' => '861', 'nama' => 'Penghargaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2150, 'kode' => '861.1', 'nama' => 'Bintang/Satyalencana', 'uraian' => '-', 'enabled' => 1], - ['id' => 2151, 'kode' => '861.2', 'nama' => 'Kenaikan Pangkat Anumerta', 'uraian' => '-', 'enabled' => 1], - ['id' => 2152, 'kode' => '861.3', 'nama' => 'Kenaikan Gaji Istimewa', 'uraian' => '-', 'enabled' => 1], - ['id' => 2153, 'kode' => '861.4', 'nama' => 'Hadiah Berupa Uang', 'uraian' => '-', 'enabled' => 1], - ['id' => 2154, 'kode' => '861.5', 'nama' => 'Pegawai Teladan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2155, 'kode' => '862', 'nama' => 'Hukuman', 'uraian' => '-', 'enabled' => 1], - ['id' => 2156, 'kode' => '862.1', 'nama' => 'Teguran Peringatan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2157, 'kode' => '862.2', 'nama' => 'Penundaan Kenaikan Gaji', 'uraian' => '-', 'enabled' => 1], - ['id' => 2158, 'kode' => '862.3', 'nama' => 'Penurunan Pangkat', 'uraian' => '-', 'enabled' => 1], - ['id' => 2159, 'kode' => '862.4', 'nama' => 'Pemindahan', 'uraian' => 'Catatan: Pemberhentian Untuk Sementara Waktu Dan Pemberhentian Tidak Dengan Hormat Lihat 887 Dan 888', 'enabled' => 1], - ['id' => 2160, 'kode' => '863', 'nama' => 'Konduite, DP3, Disiplin Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2161, 'kode' => '864', 'nama' => 'Ujian Dinas', 'uraian' => '-', 'enabled' => 1], - ['id' => 2162, 'kode' => '864.1', 'nama' => 'Tingkat 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2163, 'kode' => '864.2', 'nama' => 'Tingkat 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2164, 'kode' => '864.3', 'nama' => 'Tingkat 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2165, 'kode' => '865', 'nama' => 'Penilaian Kehidupan Pegawai Negeri', 'uraian' => 'Meliputi: Petunjuk Pelaksanaan Hidup Sederhana, Penilaian Kekayaan Pribadi ( LP2P )', 'enabled' => 1], - ['id' => 2166, 'kode' => '866', 'nama' => 'Rehabilitasi / Pengaktifan Kembali', 'uraian' => '-', 'enabled' => 1], - ['id' => 2167, 'kode' => '867', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2168, 'kode' => '868', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2169, 'kode' => '869', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2170, 'kode' => '870', 'nama' => 'TATA USAHA KEPEGAWAIAN', 'uraian' => 'Meliputi: Formasi, Bezetting, Registrasi,Daftar, Riwayat Hidup, Hak, Penggajian, Sumpah,/Janji Dan Korps Pegawai', 'enabled' => 1], - ['id' => 2171, 'kode' => '871', 'nama' => 'Formasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2172, 'kode' => '872', 'nama' => 'Bezetting/Daftar Urut Kepegawaian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2173, 'kode' => '873', 'nama' => 'Registrasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2174, 'kode' => '873.1', 'nama' => 'NIP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2175, 'kode' => '873.2', 'nama' => 'KARPEG', 'uraian' => '-', 'enabled' => 1], - ['id' => 2176, 'kode' => '873.3', 'nama' => 'Legitiminasi/Tanda Pengenal', 'uraian' => '-', 'enabled' => 1], - ['id' => 2177, 'kode' => '873.4', 'nama' => 'Daftar Keluarga, Perkawinan, Perceraian, Karis, Karsu', 'uraian' => '-', 'enabled' => 1], - ['id' => 2178, 'kode' => '874', 'nama' => 'Daftar Riwayat Pekerjaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2179, 'kode' => '874.1', 'nama' => 'Tanggal Lahir', 'uraian' => '-', 'enabled' => 1], - ['id' => 2180, 'kode' => '874.2', 'nama' => 'Penggantian Nama', 'uraian' => '-', 'enabled' => 1], - ['id' => 2181, 'kode' => '874.3', 'nama' => 'Izin kepartaian Organisasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2182, 'kode' => '875', 'nama' => 'Kewenangan Mutasi Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2183, 'kode' => '875.1', 'nama' => 'Pelimpahan Wewenang', 'uraian' => '-', 'enabled' => 1], - ['id' => 2184, 'kode' => '875.2', 'nama' => 'Specimen Tanda Tangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2185, 'kode' => '876', 'nama' => 'Penggajian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2186, 'kode' => '876.1', 'nama' => 'SKPP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2187, 'kode' => '877', 'nama' => 'Sumpah/Janji', 'uraian' => '-', 'enabled' => 1], - ['id' => 2188, 'kode' => '878', 'nama' => 'Korps Pegawai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2189, 'kode' => '879', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2190, 'kode' => '880', 'nama' => 'PEMBERHENTIAN PEGAWAI', 'uraian' => 'Meliputi Atas Pemberhentian,Permintaan Sendiri, Dengan Hak Pensiun, Karena Meninggal Dunia, Alasan Lain, Dengan Diberi Uang Pesangon, Uang Tnggu Untuk Sementara Waktu Dan Pemberhentian Tidak Dengan Hormat', 'enabled' => 1], - ['id' => 2191, 'kode' => '881', 'nama' => 'Permintaan Sendiri', 'uraian' => '-', 'enabled' => 1], - ['id' => 2192, 'kode' => '882', 'nama' => 'Dengan Hak Pensiun', 'uraian' => '-', 'enabled' => 1], - ['id' => 2193, 'kode' => '882.1', 'nama' => 'Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 1', 'uraian' => '-', 'enabled' => 1], - ['id' => 2194, 'kode' => '882.2', 'nama' => 'Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 2', 'uraian' => '-', 'enabled' => 1], - ['id' => 2195, 'kode' => '882.3', 'nama' => 'Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 3', 'uraian' => '-', 'enabled' => 1], - ['id' => 2196, 'kode' => '882.4', 'nama' => 'Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 4', 'uraian' => '-', 'enabled' => 1], - ['id' => 2197, 'kode' => '882.5', 'nama' => 'Pensiun Janda / Duda', 'uraian' => '-', 'enabled' => 1], - ['id' => 2198, 'kode' => '882.6', 'nama' => 'Pensiun Yatim Piatu', 'uraian' => '-', 'enabled' => 1], - ['id' => 2199, 'kode' => '882.7', 'nama' => 'Uang Muka Pensiun', 'uraian' => '-', 'enabled' => 1], - ['id' => 2200, 'kode' => '883', 'nama' => 'Karena Meninggal', 'uraian' => '-', 'enabled' => 1], - ['id' => 2201, 'kode' => '883.1', 'nama' => 'Karena Meninggal Dalam Tugas', 'uraian' => '-', 'enabled' => 1], - ['id' => 2202, 'kode' => '884', 'nama' => 'Alasan Lain', 'uraian' => '-', 'enabled' => 1], - ['id' => 2203, 'kode' => '885', 'nama' => 'Uang Pesangon', 'uraian' => '-', 'enabled' => 1], - ['id' => 2204, 'kode' => '886', 'nama' => 'Uang Tunggu', 'uraian' => '-', 'enabled' => 1], - ['id' => 2205, 'kode' => '887', 'nama' => 'Untuk Sementara Waktu', 'uraian' => '-', 'enabled' => 1], - ['id' => 2206, 'kode' => '888', 'nama' => 'Tidak Dengan Hormat', 'uraian' => '-', 'enabled' => 1], - ['id' => 2207, 'kode' => '889', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2208, 'kode' => '890', 'nama' => 'PENDIDIKAN PEGAWAI', 'uraian' => 'Meliputi: Perencanaan, Pendidikan Reguler, Pendidikan Non-Reguler, Pendidikan Ke Luar Negeri, Metode, Tenaga Pengajar, Administrasi Pendidikan, Fasilitas Sarana Pendidikan', 'enabled' => 1], - ['id' => 2209, 'kode' => '891', 'nama' => 'Perencanaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2210, 'kode' => '891.1', 'nama' => 'Program', 'uraian' => '-', 'enabled' => 1], - ['id' => 2211, 'kode' => '891.2', 'nama' => 'Kurikulum dan Silabi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2212, 'kode' => '891.3', 'nama' => 'Proposal ( TOR )', 'uraian' => '-', 'enabled' => 1], - ['id' => 2213, 'kode' => '892', 'nama' => 'Pendidikan _Egular / Kader', 'uraian' => '-', 'enabled' => 1], - ['id' => 2214, 'kode' => '892.1', 'nama' => 'IPDN / APDN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2215, 'kode' => '892.2', 'nama' => 'Kursus-Kursus Reguler', 'uraian' => '-', 'enabled' => 1], - ['id' => 2216, 'kode' => '893', 'nama' => 'Pendidikan dan Pelatihan / Non Reguler', 'uraian' => '-', 'enabled' => 1], - ['id' => 2217, 'kode' => '893.1', 'nama' => 'LEMHANAS', 'uraian' => '-', 'enabled' => 1], - ['id' => 2218, 'kode' => '893.2', 'nama' => 'Pendidikan dan Pelatihan Struktural, SPATI, SPAMEN, SPAMA, ADUMLA, ADUM', 'uraian' => '-', 'enabled' => 1], - ['id' => 2219, 'kode' => '893.3', 'nama' => 'Kursus-Kursus / Penataran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2220, 'kode' => '893.4', 'nama' => 'Diklat Tehnik, Fungsional Dan Manajemen Pemerintahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2221, 'kode' => '893.5', 'nama' => 'Diklat Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 2222, 'kode' => '894', 'nama' => 'Pendidikan Luar Negeri', 'uraian' => '-', 'enabled' => 1], - ['id' => 2223, 'kode' => '894.1', 'nama' => 'Berkesinambungan / Berkala / Bergelar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2224, 'kode' => '894.2', 'nama' => 'Non Gelar / Diploma', 'uraian' => '-', 'enabled' => 1], - ['id' => 2225, 'kode' => '895', 'nama' => 'Metode', 'uraian' => '-', 'enabled' => 1], - ['id' => 2226, 'kode' => '895.1', 'nama' => 'Kuliah', 'uraian' => '-', 'enabled' => 1], - ['id' => 2227, 'kode' => '895.2', 'nama' => 'Ceramah, Simposium', 'uraian' => '-', 'enabled' => 1], - ['id' => 2228, 'kode' => '895.3', 'nama' => 'Diskusi, Raker, Seminar, Lokakarya, Orientasi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2229, 'kode' => '895.4', 'nama' => 'Studi Lapangan, Kkn, Widyawisata', 'uraian' => '-', 'enabled' => 1], - ['id' => 2230, 'kode' => '895.5', 'nama' => 'Tanya Jawab / Sylabi / Modul / Kursil', 'uraian' => '-', 'enabled' => 1], - ['id' => 2231, 'kode' => '895.7', 'nama' => 'Penugasan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2232, 'kode' => '895.8', 'nama' => 'Gladi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2233, 'kode' => '896', 'nama' => 'Tenaga Pengajar / Widyaiswara/Narasumber', 'uraian' => '-', 'enabled' => 1], - ['id' => 2234, 'kode' => '896.1', 'nama' => 'Moderator', 'uraian' => '-', 'enabled' => 1], - ['id' => 2235, 'kode' => '897', 'nama' => 'Administrasi Pendidikan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2236, 'kode' => '897.1', 'nama' => 'Tahun Pelajaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2237, 'kode' => '897.2', 'nama' => 'Persyaratan, Pendaftaran, Testing, Ujian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2238, 'kode' => '897.3', 'nama' => 'STTP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2239, 'kode' => '897.4', 'nama' => 'Penilaian Angka Kredit', 'uraian' => '-', 'enabled' => 1], - ['id' => 2240, 'kode' => '897.5', 'nama' => 'Laporan Pendidikan Dan Pelatihan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2241, 'kode' => '898', 'nama' => 'Fasilitas Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2242, 'kode' => '898.1', 'nama' => 'Tunjangan Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2243, 'kode' => '898.2', 'nama' => 'Asrama', 'uraian' => '-', 'enabled' => 1], - ['id' => 2244, 'kode' => '898.3', 'nama' => 'Uang Makan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2245, 'kode' => '898.4', 'nama' => 'Uang Transport', 'uraian' => '-', 'enabled' => 1], - ['id' => 2246, 'kode' => '898.5', 'nama' => 'Uang Buku', 'uraian' => '-', 'enabled' => 1], - ['id' => 2247, 'kode' => '898.6', 'nama' => 'Uang Ujian', 'uraian' => '-', 'enabled' => 1], - ['id' => 2248, 'kode' => '898.7', 'nama' => 'Uang Semester / Uang Kuliah', 'uraian' => '-', 'enabled' => 1], - ['id' => 2249, 'kode' => '898.8', 'nama' => 'Uang Saku', 'uraian' => '-', 'enabled' => 1], - ['id' => 2250, 'kode' => '899', 'nama' => 'Sarana', 'uraian' => '-', 'enabled' => 1], - ['id' => 2251, 'kode' => '899.1', 'nama' => 'Bantuan Sarana Belajar', 'uraian' => '-', 'enabled' => 1], - ['id' => 2252, 'kode' => '899.2', 'nama' => 'Bantuan Alat-Alat Tulis', 'uraian' => '-', 'enabled' => 1], - ['id' => 2253, 'kode' => '899.3', 'nama' => 'Bantuan Sarana Belajar Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 2254, 'kode' => '900', 'nama' => 'KEUANGAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2255, 'kode' => '901', 'nama' => 'Nota Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2256, 'kode' => '902', 'nama' => 'APBN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2257, 'kode' => '903', 'nama' => 'APBD', 'uraian' => '-', 'enabled' => 1], - ['id' => 2258, 'kode' => '904', 'nama' => 'APBN-P', 'uraian' => '-', 'enabled' => 1], - ['id' => 2259, 'kode' => '905', 'nama' => 'Dana Alokasi Umum', 'uraian' => '-', 'enabled' => 1], - ['id' => 2260, 'kode' => '906', 'nama' => 'Dana Alokasi Khusus', 'uraian' => '-', 'enabled' => 1], - ['id' => 2261, 'kode' => '907', 'nama' => 'Dekonsentrasi (Pelimpahan Dana Dari Pusat Ke Daerah)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2262, 'kode' => '907', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2263, 'kode' => '908', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2264, 'kode' => '910', 'nama' => 'ANGGARAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2265, 'kode' => '911', 'nama' => 'Rutin', 'uraian' => '-', 'enabled' => 1], - ['id' => 2266, 'kode' => '912', 'nama' => 'Pembangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2267, 'kode' => '913', 'nama' => 'Anggaran Belanja Tambahan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2268, 'kode' => '914', 'nama' => 'Daftar Isian Kegiatan (DIK)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2269, 'kode' => '914.1', 'nama' => 'Daftar Usulan Kegiatan (DUK)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2270, 'kode' => '915', 'nama' => 'Daftar Isian Poyek (DIP)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2271, 'kode' => '915.1', 'nama' => 'Daftar Usulan Proyek (DUP)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2272, 'kode' => '915.2', 'nama' => 'Daftar Isian Pengguna Anggaran (DIPA)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2273, 'kode' => '916', 'nama' => 'Revisi Anggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2274, 'kode' => '917', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2275, 'kode' => '918', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2276, 'kode' => '920', 'nama' => 'OTORISASI / SKO', 'uraian' => '-', 'enabled' => 1], - ['id' => 2277, 'kode' => '921', 'nama' => 'Rutin', 'uraian' => '-', 'enabled' => 1], - ['id' => 2278, 'kode' => '922', 'nama' => 'Pembangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2279, 'kode' => '923', 'nama' => 'SIAP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2280, 'kode' => '924', 'nama' => 'Ralat SKO', 'uraian' => '-', 'enabled' => 1], - ['id' => 2281, 'kode' => '925', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2282, 'kode' => '926', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2283, 'kode' => '927', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2284, 'kode' => '930', 'nama' => 'VERIFIKASI', 'uraian' => '-', 'enabled' => 1], - ['id' => 2285, 'kode' => '931', 'nama' => 'SPM Rutin (daftar p8)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2286, 'kode' => '932', 'nama' => 'SPM Pembangunan (daftar p8)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2287, 'kode' => '933', 'nama' => 'Penerimaan (daftar p6. p7)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2288, 'kode' => '934', 'nama' => 'SPJ Rutin', 'uraian' => '-', 'enabled' => 1], - ['id' => 2289, 'kode' => '935', 'nama' => 'SPJ Pembangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2290, 'kode' => '936', 'nama' => 'Nota Pemeriksaan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2291, 'kode' => '937', 'nama' => 'SP Pemindahan Pembukuan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2292, 'kode' => '938', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2293, 'kode' => '939', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2294, 'kode' => '940', 'nama' => 'PEMBUKUAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2295, 'kode' => '941', 'nama' => 'Penyusunan Perhitungan Anggaran', 'uraian' => '-', 'enabled' => 1], - ['id' => 2296, 'kode' => '942', 'nama' => 'Permintaan Data Anggaran Laporan Fisik Pembangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2297, 'kode' => '943', 'nama' => 'Laporan Fisik Pembangunan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2298, 'kode' => '944', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2299, 'kode' => '945', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2300, 'kode' => '950', 'nama' => 'PERBENDAHARAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2301, 'kode' => '951', 'nama' => 'Tuntutan Ganti Rugi (ICW Pasal 74)', 'uraian' => '-', 'enabled' => 1], - ['id' => 2302, 'kode' => '952', 'nama' => 'Tuntutan Bendaharawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2303, 'kode' => '953', 'nama' => 'Penghapusan Kekayaan Negara', 'uraian' => '-', 'enabled' => 1], - ['id' => 2304, 'kode' => '954', 'nama' => 'Pengangkatan/Penggantian Pemimpin Proyak Dan Pengangkatan/Pemberhentian Bendaharawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2305, 'kode' => '955', 'nama' => 'Spesimen Tanda Tangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2306, 'kode' => '956', 'nama' => 'Surat Tagihan Piutang, Ikhtisar Bulanan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2307, 'kode' => '957', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2308, 'kode' => '958', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2309, 'kode' => '959', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2310, 'kode' => '960', 'nama' => 'PEMBINAAN KEBENDAHARAAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2311, 'kode' => '961', 'nama' => 'Pemeriksaan Kas Dan Hasil Pemeriksaan Kas', 'uraian' => '-', 'enabled' => 1], - ['id' => 2312, 'kode' => '962', 'nama' => 'Pemeriksaan Administrasi Bendaharawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2313, 'kode' => '963', 'nama' => 'Laporan Keuangan Bendaharawan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2314, 'kode' => '964', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2315, 'kode' => '965', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2316, 'kode' => '966', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2317, 'kode' => '970', 'nama' => 'PENDAPATAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2318, 'kode' => '971', 'nama' => 'Perimbangan Keuangan', 'uraian' => '-', 'enabled' => 1], - ['id' => 2319, 'kode' => '972', 'nama' => 'Subsidi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2320, 'kode' => '973', 'nama' => 'Pajak,Ipeda, IHH,IHPH', 'uraian' => '-', 'enabled' => 1], - ['id' => 2321, 'kode' => '974', 'nama' => 'Retribusi', 'uraian' => '-', 'enabled' => 1], - ['id' => 2322, 'kode' => '975', 'nama' => 'Bea', 'uraian' => '-', 'enabled' => 1], - ['id' => 2323, 'kode' => '976', 'nama' => 'Cukai', 'uraian' => '-', 'enabled' => 1], - ['id' => 2324, 'kode' => '977', 'nama' => 'Pungutan / PNBP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2325, 'kode' => '978', 'nama' => 'Bantuan Presiden, Menteri Dan Bantuan Lainnya', 'uraian' => '-', 'enabled' => 1], - ['id' => 2326, 'kode' => '979', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2327, 'kode' => '980', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2328, 'kode' => '981', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2329, 'kode' => '990', 'nama' => 'BENDAHARAWAN', 'uraian' => '-', 'enabled' => 1], - ['id' => 2330, 'kode' => '991', 'nama' => 'SKPP / SPP', 'uraian' => '-', 'enabled' => 1], - ['id' => 2331, 'kode' => '992', 'nama' => 'Teguran SPJ', 'uraian' => '-', 'enabled' => 1], - ['id' => 2332, 'kode' => '993', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2333, 'kode' => '994', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - ['id' => 2334, 'kode' => '995', 'nama' => '-', 'uraian' => '-', 'enabled' => 1], - - ]); - - DB::statement(" - CREATE TABLE `log_surat` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_format_surat` int(3) NOT NULL, - `id_pend` int(11) DEFAULT NULL, - `id_pamong` int(4) NOT NULL, - `id_user` int(4) NOT NULL, - `tanggal` timestamp NOT NULL DEFAULT current_timestamp(), - `bulan` varchar(2) DEFAULT NULL, - `tahun` varchar(4) DEFAULT NULL, - `no_surat` varchar(20) DEFAULT NULL, - `nama_surat` varchar(100) DEFAULT NULL, - `lampiran` varchar(100) DEFAULT NULL, - `nik_non_warga` decimal(16,0) DEFAULT NULL, - `nama_non_warga` varchar(100) DEFAULT NULL, - `keterangan` varchar(200) DEFAULT NULL, - `lokasi_arsip` varchar(150) DEFAULT '', - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `permohonan_surat` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pemohon` int(11) NOT NULL, - `id_surat` int(11) NOT NULL, - `isian_form` text NOT NULL, - `status` tinyint(1) NOT NULL DEFAULT 0, - `keterangan` text DEFAULT NULL, - `no_hp_aktif` varchar(50) NOT NULL, - `syarat` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `no_antrian` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_syarat_surat` ( - `ref_syarat_id` int(1) unsigned NOT NULL AUTO_INCREMENT, - `ref_syarat_nama` varchar(255) NOT NULL, - PRIMARY KEY (`ref_syarat_id`) - ); - "); - - DB::table('ref_syarat_surat')->insert([ - ['ref_syarat_id' => 1, 'ref_syarat_nama' => 'Surat Pengantar RT/RW'], - ['ref_syarat_id' => 2, 'ref_syarat_nama' => 'Fotokopi KK'], - ['ref_syarat_id' => 3, 'ref_syarat_nama' => 'Fotokopi KTP'], - ['ref_syarat_id' => 4, 'ref_syarat_nama' => 'Fotokopi Surat Nikah/Akta Nikah/Kutipan Akta Perkawinan'], - ['ref_syarat_id' => 5, 'ref_syarat_nama' => 'Fotokopi Akta Kelahiran/Surat Kelahiran bagi keluarga yang mempunyai anak'], - ['ref_syarat_id' => 6, 'ref_syarat_nama' => 'Surat Pindah Datang dari tempat asal'], - ['ref_syarat_id' => 7, 'ref_syarat_nama' => 'Surat Keterangan Kematian dari Rumah Sakit, Rumah Bersalin Puskesmas, atau visum Dokter'], - ['ref_syarat_id' => 8, 'ref_syarat_nama' => 'Surat Keterangan Cerai'], - ['ref_syarat_id' => 9, 'ref_syarat_nama' => 'Fotokopi Ijasah Terakhir'], - ['ref_syarat_id' => 10, 'ref_syarat_nama' => 'SK. PNS/KARIP/SK. TNI – POLRI'], - ['ref_syarat_id' => 11, 'ref_syarat_nama' => 'Surat Keterangan Kematian dari Kepala Desa/Kelurahan'], - ['ref_syarat_id' => 12, 'ref_syarat_nama' => 'Surat imigrasi / STMD (Surat Tanda Melapor Diri)'], - ]); - - DB::statement(" - CREATE TABLE `statistics` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `url_id` int(11) NOT NULL, - `created` datetime NOT NULL, - PRIMARY KEY (`id`), - KEY `url_id` (`url_id`) - ); - "); - - DB::statement(" - CREATE TABLE `surat_keluar` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nomor_urut` smallint(5) DEFAULT NULL, - `nomor_surat` varchar(35) DEFAULT NULL, - `kode_surat` varchar(10) DEFAULT NULL, - `tanggal_surat` date NOT NULL, - `tanggal_catat` timestamp NOT NULL DEFAULT current_timestamp(), - `tujuan` varchar(100) DEFAULT NULL, - `isi_singkat` varchar(200) DEFAULT NULL, - `berkas_scan` varchar(100) DEFAULT NULL, - `ekspedisi` tinyint(1) DEFAULT 0, - `tanggal_pengiriman` date DEFAULT NULL, - `tanda_terima` varchar(200) DEFAULT NULL, - `keterangan` varchar(500) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `lokasi_arsip` varchar(150) DEFAULT '', - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `surat_masuk` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nomor_urut` smallint(5) DEFAULT NULL, - `tanggal_penerimaan` date NOT NULL, - `nomor_surat` varchar(35) DEFAULT NULL, - `kode_surat` varchar(10) DEFAULT NULL, - `tanggal_surat` date NOT NULL, - `pengirim` varchar(100) DEFAULT NULL, - `isi_singkat` varchar(200) DEFAULT NULL, - `isi_disposisi` varchar(200) DEFAULT NULL, - `berkas_scan` varchar(100) DEFAULT NULL, - `lokasi_arsip` varchar(150) DEFAULT '', - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_surat_format` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - `url_surat` varchar(100) NOT NULL, - `kode_surat` varchar(10) DEFAULT NULL, - `lampiran` varchar(100) DEFAULT NULL, - `kunci` tinyint(1) NOT NULL DEFAULT 0, - `favorit` tinyint(1) NOT NULL DEFAULT 0, - `jenis` tinyint(2) NOT NULL DEFAULT 2, - `mandiri` tinyint(1) DEFAULT 0, - `masa_berlaku` int(3) DEFAULT 1, - `satuan_masa_berlaku` varchar(15) DEFAULT 'M', - `qr_code` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `url_surat` (`url_surat`) - ); - "); - DB::table('tweb_surat_format')->insert([ - ['id' => 1, 'nama' => 'Keterangan Pengantar', 'url_surat' => 'surat_ket_pengantar', 'kode_surat' => 'S-01', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 2, 'nama' => 'Keterangan Penduduk', 'url_surat' => 'surat_ket_penduduk', 'kode_surat' => 'S-02', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 3, 'nama' => 'Biodata Penduduk', 'url_surat' => 'surat_bio_penduduk', 'kode_surat' => 'S-03', 'lampiran' => 'f-1.01.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 5, 'nama' => 'Keterangan Pindah Penduduk', 'url_surat' => 'surat_ket_pindah_penduduk', 'kode_surat' => 'S-04', 'lampiran' => 'f-1.03.php,f-1.08.php,f-1.25.php,f-1.27.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 6, 'nama' => 'Keterangan Jual Beli', 'url_surat' => 'surat_ket_jual_beli', 'kode_surat' => 'S-05', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 8, 'nama' => 'Pengantar Surat Keterangan Catatan Kepolisian', 'url_surat' => 'surat_ket_catatan_kriminal', 'kode_surat' => 'S-07', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 9, 'nama' => 'Keterangan KTP dalam Proses', 'url_surat' => 'surat_ket_ktp_dalam_proses', 'kode_surat' => 'S-08', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 10, 'nama' => 'Keterangan Beda Identitas', 'url_surat' => 'surat_ket_beda_nama', 'kode_surat' => 'S-09', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 11, 'nama' => 'Keterangan Bepergian / Jalan', 'url_surat' => 'surat_jalan', 'kode_surat' => 'S-10', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 12, 'nama' => 'Keterangan Kurang Mampu', 'url_surat' => 'surat_ket_kurang_mampu', 'kode_surat' => 'S-11', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 13, 'nama' => 'Pengantar Izin Keramaian', 'url_surat' => 'surat_izin_keramaian', 'kode_surat' => 'S-12', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 14, 'nama' => 'Pengantar Laporan Kehilangan', 'url_surat' => 'surat_ket_kehilangan', 'kode_surat' => 'S-13', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 15, 'nama' => 'Keterangan Usaha', 'url_surat' => 'surat_ket_usaha', 'kode_surat' => 'S-14', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 1, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 16, 'nama' => 'Keterangan JAMKESOS', 'url_surat' => 'surat_ket_jamkesos', 'kode_surat' => 'S-15', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 17, 'nama' => 'Keterangan Domisili Usaha', 'url_surat' => 'surat_ket_domisili_usaha', 'kode_surat' => 'S-16', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 18, 'nama' => 'Keterangan Kelahiran', 'url_surat' => 'surat_ket_kelahiran', 'kode_surat' => 'S-17', 'lampiran' => 'f-2.01.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 20, 'nama' => 'Permohonan Akta Lahir', 'url_surat' => 'surat_permohonan_akta', 'kode_surat' => 'S-18', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 21, 'nama' => 'Pernyataan Belum Memiliki Akta Lahir', 'url_surat' => 'surat_pernyataan_akta', 'kode_surat' => 'S-19', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 22, 'nama' => 'Permohonan Duplikat Kelahiran', 'url_surat' => 'surat_permohonan_duplikat_kelahiran', 'kode_surat' => 'S-20', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 24, 'nama' => 'Keterangan Kematian', 'url_surat' => 'surat_ket_kematian', 'kode_surat' => 'S-21', 'lampiran' => 'f-2.29.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 25, 'nama' => 'Keterangan Lahir Mati', 'url_surat' => 'surat_ket_lahir_mati', 'kode_surat' => 'S-22', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 26, 'nama' => 'Keterangan Untuk Nikah (N-1 s/d N-7)', 'url_surat' => 'surat_ket_nikah', 'kode_surat' => 'S-23', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 33, 'nama' => 'Keterangan Pergi Kawin', 'url_surat' => 'surat_ket_pergi_kawin', 'kode_surat' => 'S-30', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 35, 'nama' => 'Keterangan Wali Hakim', 'url_surat' => 'surat_ket_wali_hakim', 'kode_surat' => 'S-32', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 36, 'nama' => 'Permohonan Duplikat Surat Nikah', 'url_surat' => 'surat_permohonan_duplikat_surat_nikah', 'kode_surat' => 'S-33', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 37, 'nama' => 'Permohonan Cerai', 'url_surat' => 'surat_permohonan_cerai', 'kode_surat' => 'S-34', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 38, 'nama' => 'Keterangan Pengantar Rujuk/Cerai', 'url_surat' => 'surat_ket_rujuk_cerai', 'kode_surat' => 'S-35', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 45, 'nama' => 'Permohonan Kartu Keluarga', 'url_surat' => 'surat_permohonan_kartu_keluarga', 'kode_surat' => 'S-36', 'lampiran' => 'f-1.15.php,f-1.01.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 51, 'nama' => 'Domisili Usaha Non-Warga', 'url_surat' => 'surat_domisili_usaha_non_warga', 'kode_surat' => 'S-37', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 76, 'nama' => 'Keterangan Beda Identitas KIS', 'url_surat' => 'surat_ket_beda_identitas_kis', 'kode_surat' => 'S-38', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 85, 'nama' => 'Keterangan Izin Orang Tua/Suami/Istri', 'url_surat' => 'surat_izin_orangtua_suami_istri', 'kode_surat' => 'S-39', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 86, 'nama' => 'Pernyataan Penguasaan Fisik Bidang Tanah (SPORADIK)', 'url_surat' => 'surat_sporadik', 'kode_surat' => 'S-40', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 89, 'nama' => 'Permohonan Perubahan Kartu Keluarga', 'url_surat' => 'surat_permohonan_perubahan_kartu_keluarga', 'kode_surat' => 'S-41', 'lampiran' => 'f-1.16.php,f-1.01.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 110, 'nama' => 'Non Warga', 'url_surat' => 'surat_non_warga', 'kode_surat' => '', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 2, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 156, 'nama' => 'Keterangan Domisili', 'url_surat' => 'surat_ket_domisili', 'kode_surat' => 'S-41', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 160, 'nama' => 'Keterangan Penghasilan Orangtua', 'url_surat' => 'surat_ket_penghasilan_orangtua', 'kode_surat' => 'S-42', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 161, 'nama' => 'Pengantar Permohonan Penerbitan Buku Pas Lintas', 'url_surat' => 'surat_permohonan_penerbitan_buku_pas_lintas', 'kode_surat' => 'S-43', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 162, 'nama' => 'Keterangan Penghasilan Ayah', 'url_surat' => 'surat_ket_penghasilan_ayah', 'kode_surat' => 'S-44', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 163, 'nama' => 'Keterangan Penghasilan Ibu', 'url_surat' => 'surat_ket_penghasilan_ibu', 'kode_surat' => 'S-45', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 167, 'nama' => 'Perintah Perjalanan Dinas', 'url_surat' => 'surat_perintah_perjalanan_dinas', 'kode_surat' => 'S-46', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 168, 'nama' => 'Kuasa', 'url_surat' => 'surat_kuasa', 'kode_surat' => 'S-47', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 172, 'nama' => 'Keterangan Kepemilikan Kendaraan', 'url_surat' => 'surat_ket_kepemilikan_kendaraan', 'kode_surat' => 'S-48', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 173, 'nama' => 'Keterangan Kepemilikan Tanah', 'url_surat' => 'surat_ket_kepemilikan_tanah', 'kode_surat' => 'S-49', 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 178, 'nama' => 'Raw', 'url_surat' => 'raw', 'kode_surat' => NULL, 'lampiran' => NULL, 'kunci' => 0, 'favorit' => 0, 'jenis' => 2, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ['id' => 181, 'nama' => 'Keterangan Untuk Nikah Warga Non Muslim', 'url_surat' => 'surat_ket_nikah_non_muslim', 'kode_surat' => 'S-50', 'lampiran' => 'f-2.12.php', 'kunci' => 0, 'favorit' => 0, 'jenis' => 1, 'mandiri' => 0, 'masa_berlaku' => 1, 'satuan_masa_berlaku' => 'M', 'qr_code' => 0], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_sinkronisasi() - { - DB::statement(" - CREATE TABLE `laporan_sinkronisasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `tipe` varchar(50) DEFAULT NULL, - `judul` varchar(100) NOT NULL, - `tahun` int(11) NOT NULL, - `semester` int(11) NOT NULL, - `nama_file` varchar(100) NOT NULL, - `kirim` datetime DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `log_ekspor` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `tgl_ekspor` timestamp NOT NULL DEFAULT current_timestamp(), - `kode_ekspor` varchar(100) NOT NULL, - `semua` int(1) NOT NULL DEFAULT 1, - `dari_tgl` date DEFAULT NULL, - `total` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `migrasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `versi_database` varchar(10) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `password_resets` ( - `email` varchar(255) NOT NULL, - `token` varchar(255) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`email`) - ); - "); - - DB::statement(" - CREATE TABLE `ref_sinkronisasi` ( - `tabel` varchar(100) NOT NULL, - `server` varchar(255) DEFAULT NULL, - `jenis_update` tinyint(4) DEFAULT NULL, - `tabel_hapus` varchar(100) DEFAULT NULL, - PRIMARY KEY (`tabel`) - ); - "); - DB::table('ref_sinkronisasi')->insert([ - ['tabel' => 'tweb_keluarga', 'server' => '6', 'jenis_update' => 1, 'tabel_hapus' => 'log_keluarga'], - ['tabel' => 'tweb_penduduk', 'server' => '6', 'jenis_update' => 1, 'tabel_hapus' => 'log_hapus_penduduk'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_dashboard() - { - DB::statement(" - CREATE TABLE `notifikasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `kode` varchar(100) NOT NULL, - `judul` varchar(100) NOT NULL, - `jenis` varchar(50) NOT NULL, - `isi` text NOT NULL, - `server` varchar(20) NOT NULL, - `tgl_berikutnya` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `frekuensi` smallint(6) NOT NULL, - `aksi` varchar(100) NOT NULL, - `aktif` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `kode` (`kode`) - ); - "); - - DB::table('notifikasi')->insert([ - ['id' => 1, - 'kode' => 'persetujuan_penggunaan', - 'judul' => '  Persetujuan Penggunaan OpenSID', - 'jenis' => 'persetujuan', - 'isi' => '

      Untuk menggunakan OpenSID, anda dan desa anda perlu menyetujui ketentuan berikut:\n

        \n
      1. Pengguna telah membaca dan menyetujui Lisensi GPL V3.
      2. \n
      3. OpenSID gratis dan disediakan \"SEBAGAIMANA ADANYA\", di mana segala tanggung jawab termasuk keamanan data desa ada pada pengguna.
      4. \n
      5. Pengguna paham bahwa setiap ubahan OpenSID juga berlisensi GPL V3 yang tidak dapat dimusnahkan, dan aplikasi ubahan itu juga sumber terbuka yang bebas disebarkan oleh pihak yang menerima.
      6. \n
      7. Pengguna mengetahui, paham dan menyetujui bahwa OpenSID akan mengirim data penggunaan ke server OpenDesa secara berkala untuk tujuan menyempurnakan OpenSID, dengan pengertian bahwa data yang dikirim sama sekali tidak berisi data identitas penduduk atau data sensitif desa lainnya.
      8. \n

      \n Apakah anda dan desa anda setuju dengan ketentuan di atas?', - 'server' => 'client', - 'tgl_berikutnya' => '2022-03-01 04:16:23', - 'updated_at' => '2021-12-01 04:16:23', - 'updated_by' => 1, - 'frekuensi' => 90, - 'aksi' => 'notif/update_pengumuman,siteman', - 'aktif' => 1], - ['id' => 2, - 'kode' => 'tracking_off', - 'judul' => '  Peringatan Tracking Off', - 'jenis' => 'peringatan', - 'isi' => '

      Kami mendeteksi bahwa anda telah mematikan fitur tracking. Bila dimatikan, penggunaan website desa anda tidak akan tercatat di server OpenDesa dan tidak akan menerima informasi penting yang sesekali dikirim OpenDesa.

      \n
      Hidupkan kembali tracking untuk mendapatkan informasi dari OpenDesa?', - 'server' => 'client', - 'tgl_berikutnya' => '2020-07-30 03:37:42', - 'updated_at' => '2020-07-30 10:37:03', - 'updated_by' => 1, - 'frekuensi' => 90, - 'aksi' => 'setting/aktifkan_tracking,notif/update_pengumuman', - 'aktif' => 0], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_pembangunan() - { - DB::statement(" - CREATE TABLE `pembangunan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_lokasi` int(11) DEFAULT NULL, - `sumber_dana` varchar(255) DEFAULT NULL, - `judul` varchar(255) DEFAULT NULL, - `slug` varchar(255) DEFAULT NULL, - `keterangan` varchar(255) DEFAULT NULL, - `lokasi` varchar(225) DEFAULT NULL, - `lat` varchar(225) DEFAULT NULL, - `lng` varchar(255) DEFAULT NULL, - `volume` varchar(100) DEFAULT NULL, - `tahun_anggaran` year(4) DEFAULT NULL, - `pelaksana_kegiatan` varchar(255) DEFAULT NULL, - `status` tinyint(3) NOT NULL DEFAULT 1, - `created_at` datetime DEFAULT NULL, - `updated_at` datetime DEFAULT NULL, - `foto` varchar(255) DEFAULT NULL, - `anggaran` bigint(20) DEFAULT 0, - `perubahan_anggaran` int(11) DEFAULT 0, - `sumber_biaya_pemerintah` bigint(20) DEFAULT 0, - `sumber_biaya_provinsi` bigint(20) DEFAULT 0, - `sumber_biaya_kab_kota` bigint(20) DEFAULT 0, - `sumber_biaya_swadaya` bigint(20) DEFAULT 0, - `sumber_biaya_jumlah` bigint(20) DEFAULT 0, - `manfaat` varchar(100) DEFAULT NULL, - `waktu` int(11) DEFAULT 0, - `sifat_proyek` varchar(100) DEFAULT 'BARU', - PRIMARY KEY (`id`), - UNIQUE KEY `slug` (`slug`), - KEY `id_lokasi` (`id_lokasi`) - ); - "); - - DB::statement(" - CREATE TABLE `pembangunan_ref_dokumentasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pembangunan` int(11) NOT NULL, - `gambar` varchar(255) DEFAULT NULL, - `persentase` varchar(255) DEFAULT NULL, - `keterangan` varchar(255) DEFAULT NULL, - `created_at` datetime DEFAULT NULL, - `updated_at` datetime DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_pembangunan` (`id_pembangunan`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_lapak() - { - DB::statement(" - CREATE TABLE `produk_kategori` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `kategori` varchar(50) DEFAULT NULL, - `slug` varchar(100) DEFAULT NULL, - `status` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_bantuan() - { - DB::statement(" - CREATE TABLE `program` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `nama` varchar(100) NOT NULL, - `sasaran` tinyint(4) DEFAULT NULL, - `ndesc` varchar(500) DEFAULT NULL, - `sdate` date NOT NULL, - `edate` date NOT NULL, - `userid` mediumint(9) NOT NULL, - `status` tinyint(1) NOT NULL DEFAULT 0, - `asaldana` char(30) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `program_peserta` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `peserta` varchar(30) NOT NULL, - `program_id` int(11) NOT NULL, - `no_id_kartu` varchar(30) DEFAULT NULL, - `kartu_nik` varchar(30) NOT NULL, - `kartu_nama` varchar(100) NOT NULL, - `kartu_tempat_lahir` varchar(100) NOT NULL DEFAULT '', - `kartu_tanggal_lahir` date NOT NULL, - `kartu_alamat` varchar(200) NOT NULL DEFAULT '', - `kartu_peserta` varchar(100) DEFAULT NULL, - `kartu_id_pend` int(11) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_sistem() - { - DB::statement(" - CREATE TABLE `setting_aplikasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `key` varchar(50) DEFAULT NULL, - `value` text DEFAULT NULL, - `keterangan` varchar(200) DEFAULT NULL, - `jenis` varchar(30) DEFAULT NULL, - `kategori` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `key` (`key`) - ); - "); - - DB::table('setting_aplikasi')->insert([ - ['id' => 1, 'key' => 'sebutan_kabupaten', 'value' => 'kabupaten', 'keterangan' => 'Pengganti sebutan wilayah kabupaten', 'jenis' => '', 'kategori' => ''], - ['id' => 2, 'key' => 'sebutan_kabupaten_singkat', 'value' => 'kab.', 'keterangan' => 'Pengganti sebutan singkatan wilayah kabupaten', 'jenis' => '', 'kategori' => ''], - ['id' => 3, 'key' => 'sebutan_kecamatan', 'value' => 'kecamatan', 'keterangan' => 'Pengganti sebutan wilayah kecamatan', 'jenis' => '', 'kategori' => ''], - ['id' => 4, 'key' => 'sebutan_kecamatan_singkat', 'value' => 'kec.', 'keterangan' => 'Pengganti sebutan singkatan wilayah kecamatan', 'jenis' => '', 'kategori' => ''], - ['id' => 5, 'key' => 'sebutan_desa', 'value' => 'desa', 'keterangan' => 'Pengganti sebutan wilayah desa', 'jenis' => '', 'kategori' => ''], - ['id' => 6, 'key' => 'sebutan_dusun', 'value' => 'dusun', 'keterangan' => 'Pengganti sebutan wilayah dusun', 'jenis' => '', 'kategori' => ''], - ['id' => 7, 'key' => 'sebutan_camat', 'value' => 'camat', 'keterangan' => 'Pengganti sebutan jabatan camat', 'jenis' => '', 'kategori' => ''], - ['id' => 8, 'key' => 'website_title', 'value' => 'Website Resmi', 'keterangan' => 'Judul tab browser modul web', 'jenis' => '', 'kategori' => 'web'], - ['id' => 9, 'key' => 'login_title', 'value' => 'OpenSID', 'keterangan' => 'Judul tab browser halaman login modul administrasi', 'jenis' => '', 'kategori' => ''], - ['id' => 10, 'key' => 'admin_title', 'value' => 'Sistem Informasi', 'keterangan' => 'Judul tab browser modul administrasi', 'jenis' => '', 'kategori' => ''], - ['id' => 11, 'key' => 'web_theme', 'value' => 'esensi', 'keterangan' => 'Tema penampilan modul web', 'jenis' => '', 'kategori' => 'web'], - ['id' => 12, 'key' => 'offline_mode', 'value' => '0', 'keterangan' => 'Apakah modul web akan ditampilkan atau tidak', 'jenis' => 'option-kode', 'kategori' => ''], - ['id' => 13, 'key' => 'enable_track', 'value' => '1', 'keterangan' => 'Apakah akan mengirimkan data statistik ke tracker', 'jenis' => 'boolean', 'kategori' => ''], - ['id' => 16, 'key' => 'mapbox_key', 'value' => '', 'keterangan' => 'Mapbox API Key untuk peta', 'jenis' => '', 'kategori' => 'web'], - ['id' => 17, 'key' => 'libreoffice_path', 'value' => '', 'keterangan' => 'Path tempat instal libreoffice di server SID', 'jenis' => '', 'kategori' => ''], - ['id' => 18, 'key' => 'sumber_gambar_slider', 'value' => '2', 'keterangan' => 'Sumber gambar slider besar', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 19, 'key' => 'sebutan_singkatan_kadus', 'value' => 'kawil', 'keterangan' => 'Sebutan singkatan jabatan kepala dusun', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 20, 'key' => 'current_version', 'value' => '22.03', 'keterangan' => 'Versi sekarang untuk migrasi', 'jenis' => NULL, 'kategori' => 'readonly'], - ['id' => 21, 'key' => 'timezone', 'value' => 'Asia/Jakarta', 'keterangan' => 'Zona waktu perekaman waktu dan tanggal', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 23, 'key' => 'web_artikel_per_page', 'value' => '8', 'keterangan' => 'Jumlah artikel dalam satu halaman', 'jenis' => 'int', 'kategori' => 'web_theme'], - ['id' => 24, 'key' => 'penomoran_surat', 'value' => '2', 'keterangan' => 'Penomoran surat mulai dari satu (1) setiap tahun', 'jenis' => 'option', 'kategori' => NULL], - ['id' => 25, 'key' => 'dashboard_program_bantuan', 'value' => '1', 'keterangan' => 'ID program bantuan yang ditampilkan di dashboard', 'jenis' => 'int', 'kategori' => 'dashboard'], - ['id' => 26, 'key' => 'panjang_nomor_surat', 'value' => '', 'keterangan' => 'Nomor akan diisi \'0\' di sebelah kiri, kalau perlu', 'jenis' =>'int', 'kategori' => 'surat'], - ['id' => 27, 'key' => 'warna_tema_admin', 'value' => 'skin-purple', 'keterangan' => 'Warna dasar tema komponen Admin', 'jenis' => 'option-value', 'kategori' => NULL], - ['id' => 28, 'key' => 'format_nomor_surat', 'value' => '[kode_surat]/[nomor_surat, 3]/[kode_desa]/[bulan_romawi]/[tahun]', 'keterangan' => 'Fomat penomoran surat', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 30, 'key' => 'penggunaan_server', 'value' => '1 ', 'keterangan' => 'Setting penggunaan server', 'jenis' => 'int', 'kategori' => 'sistem'], - ['id' => 31, 'key' => 'daftar_penerima_bantuan', 'value' => '1', 'keterangan' => 'Apakah akan tampilkan daftar penerima bantuan di statistik halaman muka', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 32, 'key' => 'apbdes_footer', 'value' => '1', 'keterangan' => 'Apakah akan tampilkan grafik APBDes di halaman muka', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 33, 'key' => 'apbdes_footer_all', 'value' => '1', 'keterangan' => 'Apakah akan tampilkan grafik APBDes di semua halaman', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 34, 'key' => 'apbdes_manual_input', 'value' => '0', 'keterangan' => 'Apakah akan tampilkan grafik APBDes yang diinput secara manual', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 35, 'key' => 'covid_data', 'value' => '0', 'keterangan' => 'Apakah akan tampilkan status Covid-19 Provinsi di halaman muka', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 36, 'key' => 'covid_desa', 'value' => '0', 'keterangan' => 'Apakah akan tampilkan status Covid-19 Desa di halaman muka', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 37, 'key' => 'covid_rss', 'value' => '0', 'keterangan' => 'Apakah akan tampilkan RSS Covid-19 di halaman muka', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 38, 'key' => 'provinsi_covid', 'value' => '52', 'keterangan' => 'Kode provinsi status Covid-19 ', 'jenis' => 'int', 'kategori' => 'conf_web'], - ['id' => 39, 'key' => 'statistik_chart_3d', 'value' => '1', 'keterangan' => 'Apakah akan tampilkan Statistik Chart 3D', 'jenis' => 'boolean', 'kategori' => 'conf_web'], - ['id' => 40, 'key' => 'sebutan_nip_desa', 'value' => 'NIPD', 'keterangan' => 'Pengganti sebutan label niap/nipd', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 43, 'key' => 'token_opensid', 'value' => '', 'keterangan' => 'Token OpenSID', 'jenis' => '', 'kategori' => 'sistem'], - ['id' => 44, 'key' => 'layanan_mandiri', 'value' => '1', 'keterangan' => 'Apakah layanan mandiri ditampilkan atau tidak', 'jenis' => 'boolean', 'kategori' => 'setting_mandiri'], - ['id' => 45, 'key' => 'ukuran_lebar_bagan', 'value' => '800', 'keterangan' => 'Ukuran Lebar Bagan (800 / 1200 / 1400)', 'jenis' => 'int', 'kategori' => 'conf_bagan'], - ['id' => 48, 'key' => 'api_opendk_server', 'value' => '', 'keterangan' => 'Alamat Server OpenDK (contoh: https://demo.opendk.my.id)', 'jenis' => NULL, 'kategori' => 'opendk'], - ['id' => 49, 'key' => 'api_opendk_key', 'value' => '', 'keterangan' => 'OpenDK API Key untuk Sinkronisasi Data', 'jenis' => NULL, 'kategori' => 'opendk'], - ['id' => 50, 'key' => 'api_opendk_user', 'value' => '', 'keterangan' => 'Email Login Pengguna OpenDK', 'jenis' => NULL, 'kategori' => 'opendk'], - ['id' => 51, 'key' => 'api_opendk_password', 'value' => '', 'keterangan' => 'Password Login Pengguna OpenDK', 'jenis' => NULL, 'kategori' => 'opendk'], - ['id' => 52, 'key' => 'sebutan_kepala_desa', 'value' => 'Kepala', 'keterangan' => 'Pengganti sebutan jabatan Kepala Desa', 'jenis' => NULL, 'kategori' => NULL], - ['id' => 53, 'key' => 'tgl_data_lengkap', 'value' => NULL, 'keterangan' => 'Atur data tanggal sudah lengkap', 'jenis' => 'datetime', 'kategori' => NULL], - ['id' => 54, 'key' => 'tgl_data_lengkap_aktif', 'value' => '0', 'keterangan' => 'Aktif / Non-aktif data tanggal sudah lengkap', 'jenis' => 'boolean', 'kategori' => NULL], - ['id' => 113, 'key' => 'api_gform_id_script', 'value' => '', 'keterangan' => 'Script ID untuk Google API', 'jenis' => NULL, 'kategori' => 'setting_analisis'], - ['id' => 114, 'key' => 'api_gform_credential', 'value' => '', 'keterangan' => 'Credential untuk Google API', 'jenis' => 'textarea', 'kategori' => 'setting_analisis'], - ['id' => 115, 'key' => 'api_gform_redirect_uri', 'value' => 'https://berputar.opensid.or.id/index.php/first/get_form_info', 'keterangan' => 'Redirecet URI untuk Google API', 'jenis' => NULL, 'kategori' => 'setting_analisis'], - ['id' => 170, 'key' => 'tampilkan_lapak_web', 'value' => '1', 'keterangan' => 'Aktif / Non-aktif Lapak di Halaman Website Url Terpisah', 'jenis' => 'boolean', 'kategori' => 'lapak'], - ['id' => 171, 'key' => 'pesan_singkat_wa', 'value' => 'Saya ingin membeli [nama_produk] yang anda tawarkan di Lapak Desa [link_web]', 'keterangan' => 'Pesan Singkat WhatsApp', 'jenis' => 'textarea', 'kategori' => 'lapak'], - ['id' => 172, 'key' => 'banyak_foto_tiap_produk', 'value' => '3', 'keterangan' => 'Banyaknya foto tiap produk yang bisa di unggah', 'jenis' => 'int', 'kategori' => 'lapak'], - ['id' => 173, 'key' => 'jumlah_produk_perhalaman', 'value' => '10', 'keterangan' => 'Jumlah produk yang ditampilkan dalam satu halaman', 'jenis' => 'int', 'kategori' => 'lapak'], - ['id' => 176, 'key' => 'layanan_opendesa_token', 'value' => '', 'keterangan' => 'Token pelanggan Layanan OpenDESA', 'jenis' => 'textarea', 'kategori' => 'pelanggan'], - ['id' => 465, 'key' => 'telegram_token', 'value' => '', 'keterangan' => 'Telgram token', 'jenis' => NULL, 'kategori' => 'sistem'], - ['id' => 466, 'key' => 'telegram_user_id', 'value' => '', 'keterangan' => 'Telgram user id untuk notifikasi ke pengguna', 'jenis' => NULL, 'kategori' => 'sistem'], - ['id' => 605, 'key' => 'tampilan_anjungan', 'value' => '0', 'keterangan' => 'Pilih tampilan di anjungan pada saat tidak ada aktifitas pada halaman login.', 'jenis' => 'option-kode', 'kategori' => 'setting_mandiri'], - ['id' => 606, 'key' => 'tampilan_anjungan_waktu', 'value' => '30', 'keterangan' => 'Atur waktu (detik) kapan tampilan di anjungan akan muncul pada saat tidak ada aktifitas di halaman login.', 'jenis' => 'int', 'kategori' => 'setting_mandiri'], - ['id' => 607, 'key' => 'tampilan_anjungan_slider', 'value' => NULL, 'keterangan' => 'Pilih album yang akan ditampilkan pada anjungan.', 'jenis' => 'option', 'kategori' => 'setting_mandiri'], - ['id' => 608, 'key' => 'tampilan_anjungan_video', 'value' => NULL, 'keterangan' => 'Masukan link video dengan format .mp4 yang akan ditampilkan pada anjungan', 'jenis' => NULL, 'kategori' => 'setting_mandiri'], - ['id' => 787, 'key' => 'tampilkan_pendaftaran', 'value' => '0', 'keterangan' => 'Aktifkan / Non Aktifkan Pendaftaran Layanan Mandiri', 'jenis' => 'boolean', 'kategori' => 'setting_mandiri'], - ['id' => 788, 'key' => 'tampilan_anjungan_audio', 'value' => '0', 'keterangan' => 'Apakah audio diaktifkan atau tidak saat video diputar', 'jenis' => 'boolean', 'kategori' => 'setting_mandiri'], - ['id' => 873, 'key' => 'branding_desa', 'value' => 'LAYANAN MANDIRI', 'keterangan' => 'Nama Branding Aplikasi Layanan Mandiri Android', 'jenis' => NULL, 'kategori' => 'mobile'], - ]); - - DB::statement(" - CREATE TABLE `setting_modul` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `modul` varchar(50) NOT NULL, - `url` varchar(50) NOT NULL, - `aktif` tinyint(1) NOT NULL DEFAULT 0, - `ikon` varchar(50) DEFAULT '', - `urut` int(4) DEFAULT NULL, - `level` tinyint(1) NOT NULL DEFAULT 2, - `hidden` tinyint(1) NOT NULL DEFAULT 0, - `ikon_kecil` varchar(50) DEFAULT '', - `parent` int(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) - ); - "); - - DB::table('setting_modul')->insert([ - ['id' => 1, 'modul' => 'Home', 'url' => 'hom_sid', 'aktif' => 1, 'ikon' => 'fa-home', 'urut' => 10, 'level' => 2, 'hidden' => 1, 'ikon_kecil' => 'fa fa-home', 'parent' => 0], - ['id' => 2, 'modul' => 'Kependudukan', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-users', 'urut' => 30, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-users', 'parent' => 0], - ['id' => 3, 'modul' => 'Statistik', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-line-chart', 'urut' => 40, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-line-chart', 'parent' => 0], - ['id' => 4, 'modul' => 'Layanan Surat', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-book', 'urut' => 50, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-book', 'parent' => 0], - ['id' => 5, 'modul' => 'Analisis', 'url' => '', 'aktif' => 1, 'ikon' => ' fa-check-square-o', 'urut' => 90, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-check-square-o', 'parent' => 0], - ['id' => 6, 'modul' => 'Bantuan', 'url' => 'program_bantuan/clear', 'aktif' => 1, 'ikon' => 'fa-heart', 'urut' => 100, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-heart', 'parent' => 0], - ['id' => 7, 'modul' => 'Pertanahan', 'url' => 'cdesa/clear', 'aktif' => 1, 'ikon' => 'fa-map-signs', 'urut' => 110, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-map-signs', 'parent' => 0], - ['id' => 8, 'modul' => 'Pengaturan Peta', 'url' => 'plan', 'aktif' => 1, 'ikon' => 'fa-location-arrow', 'urut' => 9, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-location-arrow', 'parent' => 9], - ['id' => 9, 'modul' => 'Pemetaan', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-globe', 'urut' => 130, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-globe', 'parent' => 0], - ['id' => 10, 'modul' => 'SMS', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-envelope', 'urut' => 140, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-envelope', 'parent' => 0], - ['id' => 11, 'modul' => 'Pengaturan', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-users', 'urut' => 150, 'level' => 1, 'hidden' => 1, 'ikon_kecil' => 'fa-users', 'parent' => 0], - ['id' => 13, 'modul' => 'Admin Web', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-desktop', 'urut' => 160, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => 'fa fa-desktop', 'parent' => 0], - ['id' => 14, 'modul' => 'Layanan Mandiri', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-inbox', 'urut' => 170, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-inbox', 'parent' => 0], - ['id' => 15, 'modul' => 'Sekretariat', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-archive', 'urut' => 60, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-archive', 'parent' => 0], - ['id' => 17, 'modul' => 'Identitas [Desa]', 'url' => 'identitas_desa', 'aktif' => 1, 'ikon' => 'fa-id-card', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 200], - ['id' => 18, 'modul' => 'Pemerintahan [Desa]', 'url' => 'pengurus/clear', 'aktif' => 1, 'ikon' => 'fa-sitemap', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 200], - ['id' => 20, 'modul' => 'Wilayah Administratif', 'url' => 'sid_core/clear', 'aktif' => 1, 'ikon' => 'fa-map', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 200], - ['id' => 21, 'modul' => 'Penduduk', 'url' => 'penduduk/clear', 'aktif' => 1, 'ikon' => 'fa-user', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 22, 'modul' => 'Keluarga', 'url' => 'keluarga/clear', 'aktif' => 1, 'ikon' => 'fa-users', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 23, 'modul' => 'Rumah Tangga', 'url' => 'rtm/clear', 'aktif' => 1, 'ikon' => 'fa-venus-mars', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 24, 'modul' => 'Kelompok', 'url' => 'kelompok/clear', 'aktif' => 1, 'ikon' => 'fa-sitemap', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 25, 'modul' => 'Data Suplemen', 'url' => 'suplemen/clear', 'aktif' => 1, 'ikon' => 'fa-slideshare', 'urut' => 6, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 26, 'modul' => 'Calon Pemilih', 'url' => 'dpt/clear', 'aktif' => 1, 'ikon' => 'fa-podcast', 'urut' => 7, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 2], - ['id' => 27, 'modul' => 'Statistik Kependudukan', 'url' => 'statistik/clear', 'aktif' => 1, 'ikon' => 'fa-bar-chart', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 3], - ['id' => 28, 'modul' => 'Laporan Bulanan', 'url' => 'laporan/clear', 'aktif' => 1, 'ikon' => 'fa-file-text', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 3], - ['id' => 29, 'modul' => 'Laporan Kelompok Rentan', 'url' => 'laporan_rentan/clear', 'aktif' => 1, 'ikon' => 'fa-wheelchair', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 3], - ['id' => 30, 'modul' => 'Pengaturan Surat', 'url' => 'surat_master/clear', 'aktif' => 1, 'ikon' => 'fa-cog', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 4], - ['id' => 31, 'modul' => 'Cetak Surat', 'url' => 'surat', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 4], - ['id' => 32, 'modul' => 'Arsip Layanan', 'url' => 'keluar/clear', 'aktif' => 1, 'ikon' => 'fa-folder-open', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 4], - ['id' => 33, 'modul' => 'Panduan', 'url' => 'surat/panduan', 'aktif' => 1, 'ikon' => 'fa fa-book', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 4], - ['id' => 39, 'modul' => 'SMS', 'url' => 'sms', 'aktif' => 1, 'ikon' => 'fa-envelope-open-o', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 10], - ['id' => 40, 'modul' => 'Daftar Kontak', 'url' => 'sms/kontak', 'aktif' => 1, 'ikon' => 'fa-id-card-o', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 10], - ['id' => 41, 'modul' => 'Pengaturan SMS', 'url' => 'sms/setting', 'aktif' => 1, 'ikon' => 'fa-gear', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 10], - ['id' => 42, 'modul' => 'Modul', 'url' => 'modul/clear', 'aktif' => 1, 'ikon' => 'fa-tags', 'urut' => 1, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 11], - ['id' => 43, 'modul' => 'Aplikasi', 'url' => 'setting', 'aktif' => 1, 'ikon' => 'fa-codepen', 'urut' => 2, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 11], - ['id' => 44, 'modul' => 'Pengguna', 'url' => 'man_user/clear', 'aktif' => 1, 'ikon' => 'fa-users', 'urut' => 3, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 11], - ['id' => 45, 'modul' => 'Database', 'url' => 'database', 'aktif' => 1, 'ikon' => 'fa-database', 'urut' => 4, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 11], - ['id' => 46, 'modul' => 'Info Sistem', 'url' => 'info_sistem', 'aktif' => 1, 'ikon' => 'fa-server', 'urut' => 5, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 11], - ['id' => 47, 'modul' => 'Artikel', 'url' => 'web/clear', 'aktif' => 1, 'ikon' => 'fa-file-movie-o', 'urut' => 1, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 48, 'modul' => 'Widget', 'url' => 'web_widget/clear', 'aktif' => 1, 'ikon' => 'fa-windows', 'urut' => 2, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 49, 'modul' => 'Menu', 'url' => 'menu/clear', 'aktif' => 1, 'ikon' => 'fa-bars', 'urut' => 3, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 50, 'modul' => 'Komentar', 'url' => 'komentar/clear', 'aktif' => 1, 'ikon' => 'fa-comments', 'urut' => 4, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 51, 'modul' => 'Galeri', 'url' => 'gallery/clear', 'aktif' => 1, 'ikon' => 'fa-image', 'urut' => 5, 'level' => 5, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 52, 'modul' => 'Informasi Publik', 'url' => 'dokumen/clear', 'aktif' => 1, 'ikon' => 'fa-file-text', 'urut' => 4, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 15], - ['id' => 53, 'modul' => 'Media Sosial', 'url' => 'sosmed', 'aktif' => 1, 'ikon' => 'fa-facebook', 'urut' => 7, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 54, 'modul' => 'Slider', 'url' => 'web/slider', 'aktif' => 1, 'ikon' => 'fa-film', 'urut' => 8, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 55, 'modul' => 'Kotak Pesan', 'url' => 'mailbox/clear', 'aktif' => 1, 'ikon' => 'fa-wechat', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 14], - ['id' => 56, 'modul' => 'Pendaftar Layanan Mandiri', 'url' => 'mandiri/clear', 'aktif' => 1, 'ikon' => 'fa-500px', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 14], - ['id' => 57, 'modul' => 'Surat Masuk', 'url' => 'surat_masuk/clear', 'aktif' => 1, 'ikon' => 'fa-sign-in', 'urut' => 1, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 15], - ['id' => 58, 'modul' => 'Surat Keluar', 'url' => 'surat_keluar/clear', 'aktif' => 1, 'ikon' => 'fa-sign-out', 'urut' => 2, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 15], - ['id' => 61, 'modul' => 'Inventaris', 'url' => 'inventaris_tanah', 'aktif' => 1, 'ikon' => 'fa-cubes', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 15], - ['id' => 62, 'modul' => 'Peta', 'url' => 'gis/clear', 'aktif' => 1, 'ikon' => 'fa-globe', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-globe', 'parent' => 9], - ['id' => 63, 'modul' => 'Klasfikasi Surat', 'url' => 'klasifikasi/clear', 'aktif' => 1, 'ikon' => 'fa-code', 'urut' => 10, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-code', 'parent' => 15], - ['id' => 64, 'modul' => 'Teks Berjalan', 'url' => 'teks_berjalan', 'aktif' => 1, 'ikon' => 'fa-ellipsis-h', 'urut' => 9, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-ellipsis-h', 'parent' => 13], - ['id' => 65, 'modul' => 'Kategori', 'url' => 'kategori', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 49], - ['id' => 66, 'modul' => 'Log Penduduk', 'url' => 'penduduk_log', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 21], - ['id' => 67, 'modul' => 'analisis_kategori', 'url' => 'analisis_kategori', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 68, 'modul' => 'analisis_indikator', 'url' => 'analisis_indikator', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 69, 'modul' => 'analisis_klasifikasi', 'url' => 'analisis_klasifikasi', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 70, 'modul' => 'analisis_periode', 'url' => 'analisis_periode', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 71, 'modul' => 'analisis_respon', 'url' => 'analisis_respon', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 72, 'modul' => 'analisis_laporan', 'url' => 'analisis_laporan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 73, 'modul' => 'analisis_statistik_jawaban', 'url' => 'analisis_statistik_jawaban', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 5], - ['id' => 75, 'modul' => 'api_inventaris_asset', 'url' => 'api_inventaris_asset', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 76, 'modul' => 'api_inventaris_gedung', 'url' => 'api_inventaris_gedung', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 77, 'modul' => 'api_inventaris_gedung', 'url' => 'api_inventaris_gedung', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 78, 'modul' => 'api_inventaris_jalan', 'url' => 'api_inventaris_jalan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 79, 'modul' => 'api_inventaris_konstruksi', 'url' => 'api_inventaris_kontruksi', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 80, 'modul' => 'api_inventaris_peralatan', 'url' => 'api_inventaris_peralatan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 81, 'modul' => 'api_inventaris_tanah', 'url' => 'api_inventaris_tanah', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 82, 'modul' => 'inventaris_asset', 'url' => 'inventaris_asset', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 83, 'modul' => 'inventaris_gedung', 'url' => 'inventaris_gedung', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 84, 'modul' => 'inventaris_jalan', 'url' => 'inventaris_jalan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 85, 'modul' => 'inventaris_kontruksi', 'url' => 'inventaris_kontruksi', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 86, 'modul' => 'inventaris_peralatan', 'url' => 'inventaris_peralatan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 87, 'modul' => 'laporan_inventaris', 'url' => 'laporan_inventaris', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 61], - ['id' => 88, 'modul' => 'plan', 'url' => 'plan', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 89, 'modul' => 'point', 'url' => 'point', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 90, 'modul' => 'garis', 'url' => 'garis', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 91, 'modul' => 'line', 'url' => 'line', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 92, 'modul' => 'area', 'url' => 'area', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 93, 'modul' => 'polygon', 'url' => 'polygon', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 8], - ['id' => 94, 'modul' => 'Kategori Kelompok', 'url' => 'kelompok_master', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 24], - ['id' => 95, 'modul' => 'Produk Hukum', 'url' => 'dokumen_sekretariat/peraturan_desa', 'aktif' => 1, 'ikon' => 'fa-book', 'urut' => 3, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 15], - ['id' => 96, 'modul' => 'Informasi Publik', 'url' => 'informasi_publik', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 52], - ['id' => 97, 'modul' => 'Daftar Persyaratan', 'url' => 'surat_mohon', 'aktif' => 1, 'ikon' => 'fa fa-book', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 4], - ['id' => 98, 'modul' => 'Permohonan Surat', 'url' => 'permohonan_surat_admin/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 14], - ['id' => 101, 'modul' => 'Status [Desa]', 'url' => 'status_desa', 'aktif' => 1, 'ikon' => 'fa-dot-circle-o', 'urut' => 4, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 200], - ['id' => 102, 'modul' => 'Pengaturan Grup', 'url' => 'grup/clear', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 44], - ['id' => 110, 'modul' => 'Master Analisis', 'url' => 'analisis_master/clear', 'aktif' => 1, 'ikon' => 'fa-check-square-o', 'urut' => 1, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => 'fa-check-square-o', 'parent' => 5], - ['id' => 111, 'modul' => 'Pengaturan', 'url' => 'setting/analisis', 'aktif' => 1, 'ikon' => 'fa-gear', 'urut' => 2, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => 'fa-gear', 'parent' => 5], - ['id' => 200, 'modul' => 'Info [Desa]', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-dashboard', 'urut' => 20, 'level' => 2, 'hidden' => 1, 'ikon_kecil' => 'fa fa-home', 'parent' => 0], - ['id' => 201, 'modul' => 'Keuangan', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-balance-scale', 'urut' => 80, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-balance-scale', 'parent' => 0], - ['id' => 202, 'modul' => 'Impor Data', 'url' => 'keuangan/impor_data', 'aktif' => 1, 'ikon' => 'fa-cloud-upload', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-cloud-upload', 'parent' => 201], - ['id' => 203, 'modul' => 'Laporan', 'url' => 'keuangan/laporan', 'aktif' => 1, 'ikon' => 'fa-bar-chart', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-bar-chart', 'parent' => 201], - ['id' => 205, 'modul' => 'Pengunjung', 'url' => 'pengunjung/clear', 'aktif' => 1, 'ikon' => 'fa-bar-chart', 'urut' => 10, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 13], - ['id' => 206, 'modul' => 'Siaga Covid-19', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-heartbeat', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-heartbeat', 'parent' => 0], - ['id' => 207, 'modul' => 'Pendataan', 'url' => 'covid19', 'aktif' => 1, 'ikon' => 'fa-list', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-list', 'parent' => 206], - ['id' => 208, 'modul' => 'Pemantauan', 'url' => 'covid19/pantau', 'aktif' => 1, 'ikon' => 'fa-check', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-check', 'parent' => 206], - ['id' => 209, 'modul' => 'Input Data', 'url' => 'keuangan_manual/manual_apbdes', 'aktif' => 1, 'ikon' => 'fa-keyboard-o', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-keyboard-o', 'parent' => 201], - ['id' => 210, 'modul' => 'Laporan Manual', 'url' => 'keuangan_manual/laporan_manual', 'aktif' => 1, 'ikon' => 'fa-bar-chart', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-bar-chart', 'parent' => 201], - ['id' => 211, 'modul' => 'Pengaturan', 'url' => 'setting/web', 'aktif' => 1, 'ikon' => 'fa-gear', 'urut' => 11, 'level' => 4, 'hidden' => 0, 'ikon_kecil' => 'fa-gear', 'parent' => 13], - ['id' => 212, 'modul' => 'QR Code', 'url' => 'setting/qrcode/clear', 'aktif' => 1, 'ikon' => 'fa-qrcode', 'urut' => 6, 'level' => 1, 'hidden' => 0, 'ikon_kecil' => 'fa-qrcode', 'parent' => 11], - ['id' => 213, 'modul' => 'data_persil', 'url' => 'data_persil', 'aktif' => 1, 'ikon' => '', 'urut' => 0, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 7], - ['id' => 214, 'modul' => 'C-Desa', 'url' => 'cdesa', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 7], - ['id' => 220, 'modul' => 'Pembangunan', 'url' => 'admin_pembangunan', 'aktif' => 1, 'ikon' => 'fa-institution', 'urut' => 120, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-institution', 'parent' => 0], - ['id' => 301, 'modul' => 'Buku Administrasi [Desa]', 'url' => '', 'aktif' => 1, 'ikon' => 'fa-paste', 'urut' => 70, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-paste', 'parent' => 0], - ['id' => 302, 'modul' => 'Administrasi Umum', 'url' => 'bumindes_umum', 'aktif' => 1, 'ikon' => 'fa-bookmark', 'urut' => 1, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-bookmark', 'parent' => 301], - ['id' => 303, 'modul' => 'Administrasi Penduduk', 'url' => 'bumindes_penduduk_induk/clear', 'aktif' => 1, 'ikon' => 'fa-users', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-users', 'parent' => 301], - ['id' => 304, 'modul' => 'Administrasi Keuangan', 'url' => 'bumindes_keuangan', 'aktif' => 1, 'ikon' => 'fa-money', 'urut' => 3, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-money', 'parent' => 301], - ['id' => 305, 'modul' => 'Administrasi Pembangunan', 'url' => 'bumindes_rencana_pembangunan', 'aktif' => 1, 'ikon' => 'fa-university', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-university', 'parent' => 301], - ['id' => 310, 'modul' => 'Buku Eskpedisi', 'url' => 'ekspedisi/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 302], - ['id' => 311, 'modul' => 'Buku Lembaran Dan Berita [Desa]', 'url' => 'lembaran_desa/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 302], - ['id' => 312, 'modul' => 'Anjungan', 'url' => 'anjungan', 'aktif' => 1, 'ikon' => 'fa-desktop', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 14], - ['id' => 313, 'modul' => 'Layanan Pelanggan', 'url' => 'pelanggan', 'aktif' => 1, 'ikon' => 'fa-credit-card', 'urut' => 5, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => 'fa-credit-card', 'parent' => 200], - ['id' => 314, 'modul' => 'Pengaturan', 'url' => 'setting/mandiri', 'aktif' => 1, 'ikon' => 'fa-gear', 'urut' => 6, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-gear', 'parent' => 14], - ['id' => 315, 'modul' => 'Buku Mutasi Penduduk', 'url' => 'bumindes_penduduk_mutasi/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 303], - ['id' => 316, 'modul' => 'Buku Rekapitulasi Jumlah Penduduk', 'url' => 'bumindes_penduduk_rekapitulasi/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 303], - ['id' => 317, 'modul' => 'Buku Penduduk Sementara', 'url' => 'bumindes_penduduk_sementara/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 303], - ['id' => 318, 'modul' => 'Buku KTP dan KK', 'url' => 'bumindes_penduduk_ktpkk/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 303], - ['id' => 319, 'modul' => 'Buku Tanah Kas [Desa]', 'url' => 'bumindes_tanah_kas_desa/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 302], - ['id' => 320, 'modul' => 'Buku Tanah di [Desa]', 'url' => 'bumindes_tanah_desa/clear', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 302], - ['id' => 321, 'modul' => 'Pendapat', 'url' => 'pendapat', 'aktif' => 1, 'ikon' => 'fa-thumbs-o-up', 'urut' => 5, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => 'fa-thumbs-o-up', 'parent' => 14], - ['id' => 322, 'modul' => 'Buku Inventaris dan Kekayaan [Desa]', 'url' => 'bumindes_inventaris_kekayaan', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 302], - ['id' => 323, 'modul' => 'Buku Rencana Kerja Pembangunan', 'url' => 'bumindes_rencana_pembangunan', 'aktif' => 1, 'ikon' => 'fa-files-o', 'urut' => 0, 'level' => 0, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 305], - ['id' => 324, 'modul' => 'Lapak', 'url' => 'lapak_admin', 'aktif' => 1, 'ikon' => 'fa-cart-plus', 'urut' => 122, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-cart-plus', 'parent' => 0], - ['id' => 325, 'modul' => 'Laporan APBDes', 'url' => 'laporan_apbdes', 'aktif' => 1, 'ikon' => 'fa-file-text-o', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-file-text-o', 'parent' => 201], - ['id' => 326, 'modul' => 'Sinkronisasi', 'url' => 'sinkronisasi', 'aktif' => 1, 'ikon' => ' fa-random', 'urut' => 7, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-random', 'parent' => 11], - ['id' => 327, 'modul' => 'Lembaga [Desa]', 'url' => 'lembaga/clear', 'aktif' => 1, 'ikon' => 'fa-list', 'urut' => 4, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 200], - ['id' => 328, 'modul' => 'Kategori Lembaga', 'url' => 'lembaga_master', 'aktif' => 1, 'ikon' => '', 'urut' => NULL, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 327], - ['id' => 329, 'modul' => 'Bumindes Kegiatan Pembangunan', 'url' => 'bumindes_kegiatan_pembangunan', 'aktif' => 1, 'ikon' => '', 'urut' => NULL, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 301], - ['id' => 330, 'modul' => 'Laporan penduduk', 'url' => 'laporan_penduduk', 'aktif' => 1, 'ikon' => 'fa-file-text-o', 'urut' => 5, 'level' => 2, 'hidden' => 1, 'ikon_kecil' => 'fa-file-text-o', 'parent' => 3], - ['id' => 331, 'modul' => 'Pendaftaran Kerjasama', 'url' => 'pendaftaran_kerjasama', 'aktif' => 1, 'ikon' => 'fa-list', 'urut' => 6, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-list', 'parent' => 200], - ['id' => 332, 'modul' => 'Kader Pemberdayaan Masyarakat', 'url' => 'bumindes_kader', 'aktif' => 1, 'ikon' => '', 'urut' => NULL, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 301], - ['id' => 333, 'modul' => 'Buku Inventaris Hasil - Hasil Pembangunan', 'url' => 'bumindes_hasil_pembangunan', 'aktif' => 1, 'ikon' => '', 'urut' => NULL, 'level' => 2, 'hidden' => 2, 'ikon_kecil' => '', 'parent' => 301], - ['id' => 334, 'modul' => 'Pengaduan', 'url' => 'pengaduan_admin', 'aktif' => 1, 'ikon' => 'fa-info', 'urut' => 124, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa-info', 'parent' => 0], - ['id' => 335, 'modul' => 'Vaksin', 'url' => 'vaksin_covid/clear', 'aktif' => 1, 'ikon' => 'fa fa-medkit', 'urut' => 2, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => '', 'parent' => 206], - ['id' => 336, 'modul' => 'Arsip [Desa]', 'url' => 'bumindes_arsip', 'aktif' => 1, 'ikon' => 'fa-archive', 'urut' => 5, 'level' => 2, 'hidden' => 0, 'ikon_kecil' => 'fa fa-archive', 'parent' => 301], - ]); - - DB::statement(" - CREATE TABLE `sys_traffic` ( - `Tanggal` date NOT NULL, - `ipAddress` text NOT NULL, - `Jumlah` int(10) NOT NULL, - PRIMARY KEY (`Tanggal`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_pamong() - { - DB::statement(" - CREATE TABLE `tweb_desa_pamong` ( - `pamong_id` int(5) NOT NULL AUTO_INCREMENT, - `pamong_nama` varchar(100) DEFAULT NULL, - `pamong_nip` varchar(20) DEFAULT NULL, - `pamong_nik` varchar(20) DEFAULT NULL, - `jabatan` varchar(50) DEFAULT '0', - `pamong_status` tinyint(1) DEFAULT 1, - `pamong_tgl_terdaftar` date DEFAULT NULL, - `pamong_ttd` tinyint(1) DEFAULT NULL, - `foto` text DEFAULT NULL, - `id_pend` int(11) DEFAULT NULL, - `pamong_tempatlahir` varchar(100) DEFAULT NULL, - `pamong_tanggallahir` date DEFAULT NULL, - `pamong_sex` tinyint(4) DEFAULT NULL, - `pamong_pendidikan` int(10) DEFAULT NULL, - `pamong_agama` int(10) DEFAULT NULL, - `pamong_nosk` varchar(30) DEFAULT NULL, - `pamong_tglsk` date DEFAULT NULL, - `pamong_masajab` varchar(120) DEFAULT NULL, - `urut` int(5) DEFAULT NULL, - `pamong_niap` varchar(25) DEFAULT '0', - `pamong_pangkat` varchar(20) DEFAULT NULL, - `pamong_nohenti` varchar(20) DEFAULT NULL, - `pamong_tglhenti` date DEFAULT NULL, - `pamong_ub` tinyint(1) NOT NULL DEFAULT 0, - `atasan` int(11) DEFAULT NULL, - `bagan_tingkat` tinyint(2) DEFAULT NULL, - `bagan_offset` int(3) DEFAULT NULL, - `bagan_layout` varchar(20) DEFAULT NULL, - `bagan_warna` varchar(25) DEFAULT NULL, - PRIMARY KEY (`pamong_id`) - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_keluarga() - { - DB::statement(" - CREATE TABLE `tweb_keluarga` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `no_kk` varchar(16) DEFAULT NULL, - `nik_kepala` varchar(200) DEFAULT NULL, - `tgl_daftar` timestamp NULL DEFAULT current_timestamp(), - `kelas_sosial` int(4) DEFAULT NULL, - `tgl_cetak_kk` datetime DEFAULT NULL, - `alamat` varchar(200) DEFAULT NULL, - `id_cluster` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `no_kk` (`no_kk`), - KEY `nik_kepala` (`nik_kepala`) - ); - "); - - DB::statement(" - CREATE TABLE `tweb_keluarga_sejahtera` ( - `id` int(10) NOT NULL DEFAULT 0, - `nama` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('tweb_keluarga_sejahtera')->insert([ - ['id' => 1, 'nama' => 'Keluarga Pra Sejahtera'], - ['id' => 2, 'nama' => 'Keluarga Sejahtera I'], - ['id' => 3, 'nama' => 'Keluarga Sejahtera II'], - ['id' => 4, 'nama' => 'Keluarga Sejahtera III'], - ['id' => 5, 'nama' => 'Keluarga Sejahtera III Plus'], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function tabel_pengguna() - { - DB::statement(" - CREATE TABLE `user` ( - `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, - `username` varchar(100) DEFAULT NULL, - `password` varchar(100) NOT NULL, - `id_grup` int(5) NOT NULL, - `email` varchar(100) DEFAULT NULL, - `last_login` datetime DEFAULT NULL, - `email_verified_at` datetime DEFAULT NULL, - `active` tinyint(1) unsigned DEFAULT 0, - `nama` varchar(50) DEFAULT NULL, - `company` varchar(100) DEFAULT NULL, - `phone` varchar(20) DEFAULT NULL, - `foto` varchar(100) DEFAULT 'kuser.png', - `session` varchar(40) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `username` (`username`), - UNIQUE KEY `email` (`email`) - ); - "); - - DB::table('user')->insert([ - ['id' => 1, 'username' => 'admin', 'password' => '$2y$10$CfFhuvLXa3RNotqOPYyW2.JujLbAbZ4YO0PtxIRBz4QDLP0/pfH6.', 'id_grup' => 1, 'email' => 'info@opendesa.id', 'last_login' => '2022-02-28 19:55:01', 'email_verified_at' => NULL, 'active' => 1, 'nama' => 'Administrator', 'company' => 'OpenDesa', 'phone' => '321', 'foto' => 'kuser.png', 'session' => 'a8d4080245664ed2049c1b2ded7cac30'], - ]); - - DB::statement(" - CREATE TABLE `user_grup` ( - `id` int(5) NOT NULL AUTO_INCREMENT, - `nama` varchar(20) NOT NULL, - `jenis` tinyint(2) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) DEFAULT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - PRIMARY KEY (`id`) - ); - "); - - DB::table('user_grup')->insert([ - ['id' => 1, 'nama' => 'Administrator', 'jenis' => 1, 'created_at' => '2021-05-01 01:45:38', 'created_by' => NULL, 'updated_at' => '2021-05-01 01:45:38', 'updated_by' => 0], - ['id' => 2, 'nama' => 'Operator', 'jenis' => 1, 'created_at' => '2021-05-01 01:45:38', 'created_by' => NULL, 'updated_at' => '2021-05-01 01:45:38', 'updated_by' => 0], - ['id' => 3, 'nama' => 'Redaksi', 'jenis' => 1, 'created_at' => '2021-05-01 01:45:38', 'created_by' => NULL, 'updated_at' => '2021-05-01 01:45:38', 'updated_by' => 0], - ['id' => 4, 'nama' => 'Kontributor', 'jenis' => 1, 'created_at' => '2021-05-01 01:45:38', 'created_by' => NULL, 'updated_at' => '2021-05-01 01:45:38', 'updated_by' => 0], - ['id' => 5, 'nama' => 'Satgas Covid-19', 'jenis' => 2, 'created_at' => '2021-05-01 01:45:38', 'created_by' => NULL, 'updated_at' => '2021-05-01 01:45:38', 'updated_by' => 0], - ]); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - // TODO: Pisahkan pembuatan tabel dengan pembuatan foreign key constraint - // supaya pembuatan tabel bisa dilakukan di masing2 modul - private function tabel_ada_foreign_key() - { - DB::statement(" - CREATE TABLE `suplemen_terdata` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_suplemen` int(10) DEFAULT NULL, - `id_terdata` varchar(20) DEFAULT NULL, - `sasaran` tinyint(4) DEFAULT NULL, - `keterangan` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_suplemen` (`id_suplemen`), - CONSTRAINT `suplemen_terdata_ibfk_1` FOREIGN KEY (`id_suplemen`) REFERENCES `suplemen` (`id`) ON DELETE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `kontak` ( - `id_kontak` int(11) NOT NULL AUTO_INCREMENT, - `id_pend` int(11) DEFAULT NULL, - `no_hp` varchar(15) DEFAULT NULL, - PRIMARY KEY (`id_kontak`), - KEY `kontak_ke_tweb_penduduk` (`id_pend`), - CONSTRAINT `kontak_ke_tweb_penduduk` FOREIGN KEY (`id_pend`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `anggota_grup_kontak` ( - `id_grup_kontak` int(11) NOT NULL AUTO_INCREMENT, - `id_grup` int(11) NOT NULL, - `id_kontak` int(11) NOT NULL, - PRIMARY KEY (`id_grup_kontak`), - KEY `anggota_grup_kontak_ke_kontak` (`id_kontak`), - KEY `anggota_grup_kontak_ke_kontak_grup` (`id_grup`), - CONSTRAINT `anggota_grup_kontak_ke_kontak` FOREIGN KEY (`id_kontak`) REFERENCES `kontak` (`id_kontak`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `anggota_grup_kontak_ke_kontak_grup` FOREIGN KEY (`id_grup`) REFERENCES `kontak_grup` (`id_grup`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_inventaris_asset` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_inventaris_asset` int(11) DEFAULT NULL, - `jenis_mutasi` varchar(100) DEFAULT NULL, - `tahun_mutasi` date NOT NULL, - `harga_jual` double DEFAULT NULL, - `sumbangkan` varchar(255) DEFAULT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `visible` int(1) NOT NULL DEFAULT 1, - `status_mutasi` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `FK_mutasi_inventaris_asset` (`id_inventaris_asset`), - CONSTRAINT `FK_mutasi_inventaris_asset` FOREIGN KEY (`id_inventaris_asset`) REFERENCES `inventaris_asset` (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_inventaris_gedung` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_inventaris_gedung` int(11) DEFAULT NULL, - `jenis_mutasi` varchar(100) DEFAULT NULL, - `tahun_mutasi` date NOT NULL, - `harga_jual` double DEFAULT NULL, - `sumbangkan` varchar(255) DEFAULT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `visible` int(1) NOT NULL DEFAULT 1, - `status_mutasi` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `FK_mutasi_inventaris_gedung` (`id_inventaris_gedung`), - CONSTRAINT `FK_mutasi_inventaris_gedung` FOREIGN KEY (`id_inventaris_gedung`) REFERENCES `inventaris_gedung` (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_inventaris_jalan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_inventaris_jalan` int(11) DEFAULT NULL, - `jenis_mutasi` varchar(100) DEFAULT NULL, - `tahun_mutasi` date NOT NULL, - `harga_jual` double DEFAULT NULL, - `sumbangkan` varchar(255) DEFAULT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `visible` int(1) NOT NULL DEFAULT 1, - `status_mutasi` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `FK_mutasi_inventaris_jalan` (`id_inventaris_jalan`), - CONSTRAINT `FK_mutasi_inventaris_jalan` FOREIGN KEY (`id_inventaris_jalan`) REFERENCES `inventaris_jalan` (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_inventaris_peralatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_inventaris_peralatan` int(11) DEFAULT NULL, - `jenis_mutasi` varchar(100) DEFAULT NULL, - `tahun_mutasi` date NOT NULL, - `harga_jual` double DEFAULT NULL, - `sumbangkan` varchar(255) DEFAULT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `visible` int(1) NOT NULL DEFAULT 1, - `status_mutasi` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `FK_mutasi_inventaris_peralatan` (`id_inventaris_peralatan`), - CONSTRAINT `FK_mutasi_inventaris_peralatan` FOREIGN KEY (`id_inventaris_peralatan`) REFERENCES `inventaris_peralatan` (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_inventaris_tanah` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_inventaris_tanah` int(11) DEFAULT NULL, - `jenis_mutasi` varchar(100) DEFAULT NULL, - `tahun_mutasi` date NOT NULL, - `harga_jual` double DEFAULT NULL, - `sumbangkan` varchar(255) DEFAULT NULL, - `keterangan` text NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `created_by` int(11) NOT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_by` int(11) NOT NULL, - `visible` int(1) NOT NULL DEFAULT 1, - `status_mutasi` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `FK_mutasi_inventaris_tanah` (`id_inventaris_tanah`), - CONSTRAINT `FK_mutasi_inventaris_tanah` FOREIGN KEY (`id_inventaris_tanah`) REFERENCES `inventaris_tanah` (`id`) - ); - "); - - DB::statement(" - CREATE TABLE `disposisi_surat_masuk` ( - `id_disposisi` int(11) NOT NULL AUTO_INCREMENT, - `id_surat_masuk` int(11) NOT NULL, - `id_desa_pamong` int(11) DEFAULT NULL, - `disposisi_ke` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id_disposisi`), - KEY `id_surat_fk` (`id_surat_masuk`), - KEY `desa_pamong_fk` (`id_desa_pamong`), - CONSTRAINT `desa_pamong_fk` FOREIGN KEY (`id_desa_pamong`) REFERENCES `tweb_desa_pamong` (`pamong_id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `id_surat_fk` FOREIGN KEY (`id_surat_masuk`) REFERENCES `surat_masuk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `tweb_penduduk_mandiri` ( - `pin` char(32) NOT NULL, - `last_login` datetime DEFAULT NULL, - `tanggal_buat` datetime DEFAULT NULL, - `id_pend` int(9) NOT NULL, - `aktif` int(1) DEFAULT 1, - `scan_ktp` varchar(100) DEFAULT NULL, - `scan_kk` varchar(100) DEFAULT NULL, - `foto_selfie` varchar(100) DEFAULT NULL, - `ganti_pin` tinyint(1) NOT NULL DEFAULT 1, - `email_verified_at` timestamp NULL DEFAULT NULL, - `remember_token` varchar(100) DEFAULT NULL, - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id_pend`), - CONSTRAINT `id_pend_fk` FOREIGN KEY (`id_pend`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `setting_aplikasi_options` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_setting` int(11) NOT NULL, - `value` varchar(512) NOT NULL, - `kode` tinyint(4) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_setting_fk` (`id_setting`), - CONSTRAINT `id_setting_fk` FOREIGN KEY (`id_setting`) REFERENCES `setting_aplikasi` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::table('setting_aplikasi_options')->insert([ - ['id' => 1, 'id_setting' => 24, 'value' => 'Nomor berurutan untuk masing-masing surat masuk dan keluar; dan untuk semua surat layanan', 'kode' => NULL], - ['id' => 2, 'id_setting' => 24, 'value' => 'Nomor berurutan untuk masing-masing surat masuk dan keluar; dan untuk setiap surat layanan dengan jenis yang sama', 'kode' => NULL], - ['id' => 3, 'id_setting' => 24, 'value' => 'Nomor berurutan untuk keseluruhan surat layanan, masuk dan keluar', 'kode' => NULL], - ['id' => 4, 'id_setting' => 27, 'value' => 'skin-blue', 'kode' => NULL], - ['id' => 5, 'id_setting' => 27, 'value' => 'skin-blue-light', 'kode' => NULL], - ['id' => 6, 'id_setting' => 27, 'value' => 'skin-yellow', 'kode' => NULL], - ['id' => 7, 'id_setting' => 27, 'value' => 'skin-yellow-light', 'kode' => NULL], - ['id' => 8, 'id_setting' => 27, 'value' => 'skin-green', 'kode' => NULL], - ['id' => 9, 'id_setting' => 27, 'value' => 'skin-green-light', 'kode' => NULL], - ['id' => 10, 'id_setting' => 27, 'value' => 'skin-purple', 'kode' => NULL], - ['id' => 11, 'id_setting' => 27, 'value' => 'skin-purple-light', 'kode' => NULL], - ['id' => 12, 'id_setting' => 27, 'value' => 'skin-red', 'kode' => NULL], - ['id' => 13, 'id_setting' => 27, 'value' => 'skin-red-light', 'kode' => NULL], - ['id' => 14, 'id_setting' => 27, 'value' => 'skin-black', 'kode' => NULL], - ['id' => 15, 'id_setting' => 27, 'value' => 'skin-black-light', 'kode' => NULL], - ['id' => 16, 'id_setting' => 12, 'value' => 'Web bisa diakses publik', 'kode' => 0], - ['id' => 17, 'id_setting' => 12, 'value' => 'Web hanya bisa diakses petugas web', 'kode' => 1], - ['id' => 18, 'id_setting' => 12, 'value' => 'Web non-aktif sama sekali', 'kode' => 2], - ['id' => 52, 'id_setting' => 605, 'value' => 'Tidak Aktif', 'kode' => 0], - ['id' => 53, 'id_setting' => 605, 'value' => 'Slider', 'kode' => 1], - ['id' => 54, 'id_setting' => 605, 'value' => 'Video', 'kode' => 2], - ]); - - DB::statement(" - CREATE TABLE `log_penduduk` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `id_pend` int(11) NOT NULL, - `kode_peristiwa` int(11) DEFAULT NULL, - `meninggal_di` varchar(50) DEFAULT NULL, - `jam_mati` varchar(10) DEFAULT NULL, - `sebab` varchar(50) DEFAULT NULL, - `penolong_mati` varchar(50) DEFAULT NULL, - `akta_mati` varchar(50) DEFAULT NULL, - `alamat_tujuan` tinytext DEFAULT NULL, - `tgl_lapor` timestamp NOT NULL DEFAULT current_timestamp(), - `tgl_peristiwa` datetime DEFAULT current_timestamp(), - `catatan` text DEFAULT NULL, - `no_kk` varchar(16) DEFAULT NULL, - `nama_kk` varchar(100) DEFAULT NULL, - `ref_pindah` tinyint(4) DEFAULT 1, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `created_by` int(11) DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `updated_by` int(11) DEFAULT NULL, - `maksud_tujuan_kedatangan` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `id_pend` (`id_pend`,`kode_peristiwa`,`tgl_peristiwa`), - KEY `id_ref_pindah` (`ref_pindah`), - CONSTRAINT `id_ref_pindah` FOREIGN KEY (`ref_pindah`) REFERENCES `ref_pindah` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `agenda` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_artikel` int(11) NOT NULL, - `tgl_agenda` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `koordinator_kegiatan` varchar(50) NOT NULL, - `lokasi_kegiatan` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_artikel_fk` (`id_artikel`), - CONSTRAINT `id_artikel_fk` FOREIGN KEY (`id_artikel`) REFERENCES `artikel` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `syarat_surat` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `surat_format_id` int(10) NOT NULL, - `ref_syarat_id` int(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_surat_format` (`surat_format_id`), - CONSTRAINT `id_surat_format` FOREIGN KEY (`surat_format_id`) REFERENCES `tweb_surat_format` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::table('syarat_surat')->insert([ - ['id' => 1, 'surat_format_id' => 1, 'ref_syarat_id' => 1], - ['id' => 2, 'surat_format_id' => 1, 'ref_syarat_id' => 2], - ['id' => 3, 'surat_format_id' => 1, 'ref_syarat_id' => 3], - ['id' => 4, 'surat_format_id' => 2, 'ref_syarat_id' => 2], - ['id' => 5, 'surat_format_id' => 2, 'ref_syarat_id' => 3], - ['id' => 6, 'surat_format_id' => 3, 'ref_syarat_id' => 2], - ['id' => 7, 'surat_format_id' => 3, 'ref_syarat_id' => 3], - ['id' => 8, 'surat_format_id' => 5, 'ref_syarat_id' => 1], - ['id' => 9, 'surat_format_id' => 5, 'ref_syarat_id' => 2], - ['id' => 10, 'surat_format_id' => 5, 'ref_syarat_id' => 3], - ['id' => 11, 'surat_format_id' => 6, 'ref_syarat_id' => 1], - ['id' => 12, 'surat_format_id' => 6, 'ref_syarat_id' => 2], - ['id' => 13, 'surat_format_id' => 6, 'ref_syarat_id' => 3], - ['id' => 14, 'surat_format_id' => 8, 'ref_syarat_id' => 1], - ['id' => 15, 'surat_format_id' => 8, 'ref_syarat_id' => 2], - ['id' => 16, 'surat_format_id' => 8, 'ref_syarat_id' => 3], - ['id' => 17, 'surat_format_id' => 9, 'ref_syarat_id' => 2], - ['id' => 18, 'surat_format_id' => 9, 'ref_syarat_id' => 3], - ['id' => 19, 'surat_format_id' => 10, 'ref_syarat_id' => 1], - ['id' => 20, 'surat_format_id' => 10, 'ref_syarat_id' => 2], - ['id' => 21, 'surat_format_id' => 10, 'ref_syarat_id' => 3], - ['id' => 22, 'surat_format_id' => 11, 'ref_syarat_id' => 1], - ['id' => 23, 'surat_format_id' => 11, 'ref_syarat_id' => 2], - ['id' => 24, 'surat_format_id' => 11, 'ref_syarat_id' => 3], - ['id' => 25, 'surat_format_id' => 12, 'ref_syarat_id' => 1], - ['id' => 26, 'surat_format_id' => 12, 'ref_syarat_id' => 2], - ['id' => 27, 'surat_format_id' => 12, 'ref_syarat_id' => 3], - ['id' => 28, 'surat_format_id' => 13, 'ref_syarat_id' => 1], - ['id' => 29, 'surat_format_id' => 13, 'ref_syarat_id' => 2], - ['id' => 30, 'surat_format_id' => 13, 'ref_syarat_id' => 3], - ['id' => 31, 'surat_format_id' => 14, 'ref_syarat_id' => 1], - ['id' => 32, 'surat_format_id' => 14, 'ref_syarat_id' => 2], - ['id' => 33, 'surat_format_id' => 14, 'ref_syarat_id' => 3], - ['id' => 34, 'surat_format_id' => 15, 'ref_syarat_id' => 1], - ['id' => 35, 'surat_format_id' => 15, 'ref_syarat_id' => 2], - ['id' => 36, 'surat_format_id' => 15, 'ref_syarat_id' => 3], - ]); - - DB::statement(" - CREATE TABLE `covid19_pemudik` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_terdata` int(11) DEFAULT NULL, - `tanggal_datang` date DEFAULT NULL, - `asal_mudik` varchar(255) DEFAULT NULL, - `durasi_mudik` varchar(50) DEFAULT NULL, - `tujuan_mudik` varchar(255) DEFAULT NULL, - `keluhan_kesehatan` varchar(255) DEFAULT NULL, - `status_covid` varchar(50) DEFAULT NULL, - `no_hp` varchar(20) DEFAULT NULL, - `email` varchar(255) DEFAULT NULL, - `keterangan` varchar(255) DEFAULT NULL, - `is_wajib_pantau` varchar(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `fk_pemudik_penduduk` (`id_terdata`), - CONSTRAINT `fk_pemudik_penduduk` FOREIGN KEY (`id_terdata`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `covid19_pantau` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pemudik` int(11) DEFAULT NULL, - `tanggal_jam` datetime DEFAULT NULL, - `suhu_tubuh` decimal(4,2) DEFAULT NULL, - `batuk` varchar(20) DEFAULT NULL, - `flu` varchar(20) DEFAULT NULL, - `sesak_nafas` varchar(20) DEFAULT NULL, - `keluhan_lain` varchar(255) DEFAULT NULL, - `status_covid` varchar(50) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `fk_pantau_pemudik` (`id_pemudik`), - CONSTRAINT `fk_pantau_pemudik` FOREIGN KEY (`id_pemudik`) REFERENCES `covid19_pemudik` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `kelompok_anggota` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_kelompok` int(11) NOT NULL, - `id_penduduk` int(11) NOT NULL, - `no_anggota` varchar(20) DEFAULT NULL, - `keterangan` text DEFAULT NULL, - `jabatan` varchar(50) DEFAULT '90', - `no_sk_jabatan` varchar(50) DEFAULT NULL, - `tipe` varchar(100) DEFAULT 'kelompok', - `periode` varchar(255) DEFAULT NULL, - `nmr_sk_pengangkatan` varchar(255) DEFAULT NULL, - `tgl_sk_pengangkatan` date DEFAULT NULL, - `nmr_sk_pemberhentian` varchar(255) DEFAULT NULL, - `tgl_sk_pemberhentian` date DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `id_kelompok` (`id_kelompok`,`id_penduduk`), - CONSTRAINT `kelompok_anggota_fk` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `log_keluarga` ( - `id` int(10) NOT NULL AUTO_INCREMENT, - `id_kk` int(11) NOT NULL, - `kk_sex` tinyint(2) DEFAULT NULL, - `id_peristiwa` int(4) NOT NULL, - `tgl_peristiwa` timestamp NOT NULL DEFAULT current_timestamp(), - `id_pend` int(11) DEFAULT NULL, - `updated_by` int(11) NOT NULL, - `id_log_penduduk` int(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `id_kk` (`id_kk`,`id_peristiwa`,`tgl_peristiwa`,`id_pend`), - KEY `log_penduduk_fk` (`id_log_penduduk`), - CONSTRAINT `log_penduduk_fk` FOREIGN KEY (`id_log_penduduk`) REFERENCES `log_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `grup_akses` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_grup` int(11) NOT NULL, - `id_modul` int(11) NOT NULL, - `akses` tinyint(4) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_grup` (`id_grup`), - KEY `id_modul` (`id_modul`), - CONSTRAINT `fk_id_grup` FOREIGN KEY (`id_grup`) REFERENCES `user_grup` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `fk_id_modul` FOREIGN KEY (`id_modul`) REFERENCES `setting_modul` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::table('grup_akses')->insert([ - ['id' => 1, 'id_grup' => 5, 'id_modul' => 3, 'akses' => 0], - ['id' => 2, 'id_grup' => 5, 'id_modul' => 27, 'akses' => 3], - ['id' => 3, 'id_grup' => 5, 'id_modul' => 206, 'akses' => 0], - ['id' => 4, 'id_grup' => 5, 'id_modul' => 207, 'akses' => 7], - ['id' => 5, 'id_grup' => 5, 'id_modul' => 208, 'akses' => 7], - ['id' => 6, 'id_grup' => 2, 'id_modul' => 1, 'akses' => 3], - ['id' => 7, 'id_grup' => 2, 'id_modul' => 2, 'akses' => 0], - ['id' => 8, 'id_grup' => 2, 'id_modul' => 3, 'akses' => 0], - ['id' => 9, 'id_grup' => 2, 'id_modul' => 4, 'akses' => 0], - ['id' => 10, 'id_grup' => 2, 'id_modul' => 5, 'akses' => 0], - ['id' => 11, 'id_grup' => 2, 'id_modul' => 6, 'akses' => 3], - ['id' => 12, 'id_grup' => 2, 'id_modul' => 7, 'akses' => 0], - ['id' => 13, 'id_grup' => 2, 'id_modul' => 8, 'akses' => 3], - ['id' => 14, 'id_grup' => 2, 'id_modul' => 9, 'akses' => 0], - ['id' => 15, 'id_grup' => 2, 'id_modul' => 10, 'akses' => 0], - ['id' => 16, 'id_grup' => 2, 'id_modul' => 11, 'akses' => 0], - ['id' => 17, 'id_grup' => 2, 'id_modul' => 13, 'akses' => 0], - ['id' => 18, 'id_grup' => 2, 'id_modul' => 14, 'akses' => 0], - ['id' => 19, 'id_grup' => 2, 'id_modul' => 15, 'akses' => 0], - ['id' => 20, 'id_grup' => 2, 'id_modul' => 17, 'akses' => 3], - ['id' => 21, 'id_grup' => 2, 'id_modul' => 18, 'akses' => 3], - ['id' => 22, 'id_grup' => 2, 'id_modul' => 20, 'akses' => 3], - ['id' => 23, 'id_grup' => 2, 'id_modul' => 21, 'akses' => 3], - ['id' => 24, 'id_grup' => 2, 'id_modul' => 22, 'akses' => 3], - ['id' => 25, 'id_grup' => 2, 'id_modul' => 23, 'akses' => 3], - ['id' => 26, 'id_grup' => 2, 'id_modul' => 24, 'akses' => 3], - ['id' => 27, 'id_grup' => 2, 'id_modul' => 25, 'akses' => 3], - ['id' => 28, 'id_grup' => 2, 'id_modul' => 26, 'akses' => 3], - ['id' => 29, 'id_grup' => 2, 'id_modul' => 27, 'akses' => 3], - ['id' => 30, 'id_grup' => 2, 'id_modul' => 28, 'akses' => 3], - ['id' => 31, 'id_grup' => 2, 'id_modul' => 29, 'akses' => 3], - ['id' => 32, 'id_grup' => 2, 'id_modul' => 30, 'akses' => 3], - ['id' => 33, 'id_grup' => 2, 'id_modul' => 31, 'akses' => 3], - ['id' => 34, 'id_grup' => 2, 'id_modul' => 32, 'akses' => 3], - ['id' => 35, 'id_grup' => 2, 'id_modul' => 33, 'akses' => 3], - ['id' => 36, 'id_grup' => 2, 'id_modul' => 39, 'akses' => 3], - ['id' => 37, 'id_grup' => 2, 'id_modul' => 40, 'akses' => 3], - ['id' => 38, 'id_grup' => 2, 'id_modul' => 41, 'akses' => 3], - ['id' => 39, 'id_grup' => 2, 'id_modul' => 42, 'akses' => 3], - ['id' => 40, 'id_grup' => 2, 'id_modul' => 47, 'akses' => 3], - ['id' => 41, 'id_grup' => 2, 'id_modul' => 48, 'akses' => 3], - ['id' => 42, 'id_grup' => 2, 'id_modul' => 49, 'akses' => 3], - ['id' => 43, 'id_grup' => 2, 'id_modul' => 50, 'akses' => 3], - ['id' => 44, 'id_grup' => 2, 'id_modul' => 51, 'akses' => 3], - ['id' => 45, 'id_grup' => 2, 'id_modul' => 52, 'akses' => 3], - ['id' => 46, 'id_grup' => 2, 'id_modul' => 53, 'akses' => 3], - ['id' => 47, 'id_grup' => 2, 'id_modul' => 54, 'akses' => 3], - ['id' => 48, 'id_grup' => 2, 'id_modul' => 55, 'akses' => 3], - ['id' => 49, 'id_grup' => 2, 'id_modul' => 56, 'akses' => 3], - ['id' => 50, 'id_grup' => 2, 'id_modul' => 57, 'akses' => 3], - ['id' => 51, 'id_grup' => 2, 'id_modul' => 58, 'akses' => 3], - ['id' => 52, 'id_grup' => 2, 'id_modul' => 61, 'akses' => 3], - ['id' => 53, 'id_grup' => 2, 'id_modul' => 62, 'akses' => 3], - ['id' => 54, 'id_grup' => 2, 'id_modul' => 63, 'akses' => 3], - ['id' => 55, 'id_grup' => 2, 'id_modul' => 64, 'akses' => 3], - ['id' => 56, 'id_grup' => 2, 'id_modul' => 65, 'akses' => 3], - ['id' => 57, 'id_grup' => 2, 'id_modul' => 66, 'akses' => 3], - ['id' => 58, 'id_grup' => 2, 'id_modul' => 67, 'akses' => 3], - ['id' => 59, 'id_grup' => 2, 'id_modul' => 68, 'akses' => 3], - ['id' => 60, 'id_grup' => 2, 'id_modul' => 69, 'akses' => 3], - ['id' => 61, 'id_grup' => 2, 'id_modul' => 70, 'akses' => 3], - ['id' => 62, 'id_grup' => 2, 'id_modul' => 71, 'akses' => 3], - ['id' => 63, 'id_grup' => 2, 'id_modul' => 72, 'akses' => 3], - ['id' => 64, 'id_grup' => 2, 'id_modul' => 73, 'akses' => 3], - ['id' => 65, 'id_grup' => 2, 'id_modul' => 75, 'akses' => 3], - ['id' => 66, 'id_grup' => 2, 'id_modul' => 76, 'akses' => 3], - ['id' => 67, 'id_grup' => 2, 'id_modul' => 77, 'akses' => 3], - ['id' => 68, 'id_grup' => 2, 'id_modul' => 78, 'akses' => 3], - ['id' => 69, 'id_grup' => 2, 'id_modul' => 79, 'akses' => 3], - ['id' => 70, 'id_grup' => 2, 'id_modul' => 80, 'akses' => 3], - ['id' => 71, 'id_grup' => 2, 'id_modul' => 81, 'akses' => 3], - ['id' => 72, 'id_grup' => 2, 'id_modul' => 82, 'akses' => 3], - ['id' => 73, 'id_grup' => 2, 'id_modul' => 83, 'akses' => 3], - ['id' => 74, 'id_grup' => 2, 'id_modul' => 84, 'akses' => 3], - ['id' => 75, 'id_grup' => 2, 'id_modul' => 85, 'akses' => 3], - ['id' => 76, 'id_grup' => 2, 'id_modul' => 86, 'akses' => 3], - ['id' => 77, 'id_grup' => 2, 'id_modul' => 87, 'akses' => 3], - ['id' => 78, 'id_grup' => 2, 'id_modul' => 88, 'akses' => 3], - ['id' => 79, 'id_grup' => 2, 'id_modul' => 89, 'akses' => 3], - ['id' => 80, 'id_grup' => 2, 'id_modul' => 90, 'akses' => 3], - ['id' => 81, 'id_grup' => 2, 'id_modul' => 91, 'akses' => 3], - ['id' => 82, 'id_grup' => 2, 'id_modul' => 92, 'akses' => 3], - ['id' => 83, 'id_grup' => 2, 'id_modul' => 93, 'akses' => 3], - ['id' => 84, 'id_grup' => 2, 'id_modul' => 94, 'akses' => 3], - ['id' => 85, 'id_grup' => 2, 'id_modul' => 95, 'akses' => 3], - ['id' => 86, 'id_grup' => 2, 'id_modul' => 96, 'akses' => 3], - ['id' => 87, 'id_grup' => 2, 'id_modul' => 97, 'akses' => 3], - ['id' => 88, 'id_grup' => 2, 'id_modul' => 98, 'akses' => 3], - ['id' => 89, 'id_grup' => 2, 'id_modul' => 101, 'akses' => 3], - ['id' => 90, 'id_grup' => 2, 'id_modul' => 200, 'akses' => 0], - ['id' => 91, 'id_grup' => 2, 'id_modul' => 201, 'akses' => 0], - ['id' => 92, 'id_grup' => 2, 'id_modul' => 202, 'akses' => 3], - ['id' => 93, 'id_grup' => 2, 'id_modul' => 203, 'akses' => 3], - ['id' => 94, 'id_grup' => 2, 'id_modul' => 205, 'akses' => 3], - ['id' => 95, 'id_grup' => 2, 'id_modul' => 206, 'akses' => 0], - ['id' => 96, 'id_grup' => 2, 'id_modul' => 207, 'akses' => 7], - ['id' => 97, 'id_grup' => 2, 'id_modul' => 208, 'akses' => 7], - ['id' => 98, 'id_grup' => 2, 'id_modul' => 209, 'akses' => 3], - ['id' => 99, 'id_grup' => 2, 'id_modul' => 210, 'akses' => 3], - ['id' => 100, 'id_grup' => 2, 'id_modul' => 211, 'akses' => 3], - ['id' => 101, 'id_grup' => 2, 'id_modul' => 212, 'akses' => 3], - ['id' => 102, 'id_grup' => 2, 'id_modul' => 213, 'akses' => 3], - ['id' => 105, 'id_grup' => 2, 'id_modul' => 301, 'akses' => 0], - ['id' => 106, 'id_grup' => 2, 'id_modul' => 302, 'akses' => 3], - ['id' => 107, 'id_grup' => 2, 'id_modul' => 303, 'akses' => 3], - ['id' => 108, 'id_grup' => 2, 'id_modul' => 304, 'akses' => 3], - ['id' => 109, 'id_grup' => 2, 'id_modul' => 305, 'akses' => 3], - ['id' => 110, 'id_grup' => 2, 'id_modul' => 310, 'akses' => 3], - ['id' => 111, 'id_grup' => 2, 'id_modul' => 311, 'akses' => 3], - ['id' => 112, 'id_grup' => 2, 'id_modul' => 312, 'akses' => 3], - ['id' => 113, 'id_grup' => 2, 'id_modul' => 314, 'akses' => 3], - ['id' => 114, 'id_grup' => 2, 'id_modul' => 315, 'akses' => 3], - ['id' => 115, 'id_grup' => 2, 'id_modul' => 316, 'akses' => 3], - ['id' => 116, 'id_grup' => 2, 'id_modul' => 317, 'akses' => 3], - ['id' => 117, 'id_grup' => 2, 'id_modul' => 318, 'akses' => 3], - ['id' => 118, 'id_grup' => 3, 'id_modul' => 13, 'akses' => 0], - ['id' => 119, 'id_grup' => 3, 'id_modul' => 47, 'akses' => 7], - ['id' => 120, 'id_grup' => 3, 'id_modul' => 48, 'akses' => 7], - ['id' => 121, 'id_grup' => 3, 'id_modul' => 49, 'akses' => 7], - ['id' => 122, 'id_grup' => 3, 'id_modul' => 50, 'akses' => 7], - ['id' => 123, 'id_grup' => 3, 'id_modul' => 51, 'akses' => 7], - ['id' => 124, 'id_grup' => 3, 'id_modul' => 53, 'akses' => 7], - ['id' => 125, 'id_grup' => 3, 'id_modul' => 54, 'akses' => 7], - ['id' => 126, 'id_grup' => 3, 'id_modul' => 64, 'akses' => 7], - ['id' => 127, 'id_grup' => 3, 'id_modul' => 205, 'akses' => 7], - ['id' => 128, 'id_grup' => 3, 'id_modul' => 211, 'akses' => 7], - ['id' => 129, 'id_grup' => 4, 'id_modul' => 13, 'akses' => 0], - ['id' => 130, 'id_grup' => 4, 'id_modul' => 47, 'akses' => 3], - ['id' => 131, 'id_grup' => 4, 'id_modul' => 50, 'akses' => 3], - ['id' => 132, 'id_grup' => 4, 'id_modul' => 51, 'akses' => 3], - ['id' => 133, 'id_grup' => 4, 'id_modul' => 54, 'akses' => 3], - ['id' => 134, 'id_grup' => 2, 'id_modul' => 319, 'akses' => 3], - ['id' => 135, 'id_grup' => 2, 'id_modul' => 110, 'akses' => 3], - ['id' => 136, 'id_grup' => 2, 'id_modul' => 111, 'akses' => 3], - ['id' => 137, 'id_grup' => 2, 'id_modul' => 320, 'akses' => 3], - ['id' => 138, 'id_grup' => 2, 'id_modul' => 321, 'akses' => 3], - ['id' => 139, 'id_grup' => 2, 'id_modul' => 322, 'akses' => 3], - ['id' => 140, 'id_grup' => 2, 'id_modul' => 323, 'akses' => 3], - ['id' => 141, 'id_grup' => 2, 'id_modul' => 305, 'akses' => 3], - ['id' => 142, 'id_grup' => 2, 'id_modul' => 214, 'akses' => 3], - ['id' => 143, 'id_grup' => 2, 'id_modul' => 324, 'akses' => 3], - ['id' => 144, 'id_grup' => 2, 'id_modul' => 43, 'akses' => 3], - ['id' => 145, 'id_grup' => 2, 'id_modul' => 44, 'akses' => 1], - ['id' => 146, 'id_grup' => 2, 'id_modul' => 45, 'akses' => 3], - ['id' => 147, 'id_grup' => 2, 'id_modul' => 46, 'akses' => 3], - ['id' => 148, 'id_grup' => 3, 'id_modul' => 65, 'akses' => 7], - ['id' => 149, 'id_grup' => 3, 'id_modul' => 324, 'akses' => 7], - ['id' => 150, 'id_grup' => 2, 'id_modul' => 325, 'akses' => 3], - ['id' => 151, 'id_grup' => 2, 'id_modul' => 326, 'akses' => 3], - ['id' => 152, 'id_grup' => 2, 'id_modul' => 327, 'akses' => 3], - ['id' => 153, 'id_grup' => 2, 'id_modul' => 328, 'akses' => 3], - ['id' => 154, 'id_grup' => 2, 'id_modul' => 329, 'akses' => 3], - ['id' => 155, 'id_grup' => 2, 'id_modul' => 330, 'akses' => 3], - ['id' => 156, 'id_grup' => 2, 'id_modul' => 332, 'akses' => 3], - ['id' => 157, 'id_grup' => 2, 'id_modul' => 334, 'akses' => 3], - ['id' => 158, 'id_grup' => 2, 'id_modul' => 333, 'akses' => 3], - ['id' => 159, 'id_grup' => 2, 'id_modul' => 335, 'akses' => 3], - ['id' => 160, 'id_grup' => 2, 'id_modul' => 220, 'akses' => 3], - ['id' => 161, 'id_grup' => 2, 'id_modul' => 336, 'akses' => 3], - ['id' => 162, 'id_grup' => 2, 'id_modul' => 313, 'akses' => 3], - ['id' => 163, 'id_grup' => 2, 'id_modul' => 331, 'akses' => 3], - ]); - - DB::statement(" - CREATE TABLE `produk` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_pelapak` int(11) DEFAULT NULL, - `id_produk_kategori` int(11) DEFAULT NULL, - `nama` varchar(255) DEFAULT NULL, - `harga` int(11) DEFAULT NULL, - `satuan` varchar(20) DEFAULT NULL, - `tipe_potongan` tinyint(1) DEFAULT 1, - `potongan` int(11) DEFAULT 0, - `deskripsi` text DEFAULT NULL, - `foto` varchar(225) DEFAULT NULL, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - PRIMARY KEY (`id`), - KEY `lapak_fk` (`id_pelapak`), - KEY `produk_kategori_fk` (`id_produk_kategori`), - CONSTRAINT `lapak_fk` FOREIGN KEY (`id_pelapak`) REFERENCES `pelapak` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, - CONSTRAINT `produk_kategori_fk` FOREIGN KEY (`id_produk_kategori`) REFERENCES `produk_kategori` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_bank_desa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(50) NOT NULL, - `Kd_Desa` varchar(50) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `NoRek_Bank` varchar(100) NOT NULL, - `Nama_Bank` varchar(250) NOT NULL, - `Kantor_Cabang` varchar(100) DEFAULT NULL, - `Nama_Pemilik` varchar(100) DEFAULT NULL, - `Alamat_Pemilik` varchar(100) DEFAULT NULL, - `No_Identitas` varchar(20) DEFAULT NULL, - `No_Telepon` varchar(20) DEFAULT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_bank_desa_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_bank_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_bel_operasional` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `ID_Keg` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_bel_operasional_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_bel_operasional_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_bidang` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Bid` varchar(50) NOT NULL, - `Nama_Bidang` varchar(250) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_bidang_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_bunga` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Bunga` varchar(50) NOT NULL, - `Kd_Admin` varchar(50) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_bunga_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_bunga_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_desa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Kec` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Nama_Desa` varchar(250) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_desa_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_kecamatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Kec` varchar(100) NOT NULL, - `Nama_Kecamatan` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_kecamatan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_kecamatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_kegiatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Bid` varchar(100) DEFAULT NULL, - `ID_Keg` varchar(100) NOT NULL, - `Nama_Kegiatan` varchar(250) NOT NULL, - `Jns_Kegiatan` tinyint(5) DEFAULT NULL, - `Kd_Sub` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_kegiatan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_korolari` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_RekDB` varchar(100) NOT NULL, - `Kd_RekKD` varchar(250) NOT NULL, - `Jenis` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_korolari_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_korolari_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_neraca_close` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kelompok` varchar(250) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_neraca_close_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_neraca_close_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_perangkat` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kode` varchar(100) NOT NULL, - `Nama_Perangkat` varchar(250) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_perangkat_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_perangkat_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_potongan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_Potongan` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_potongan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_potongan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_rek1` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Akun` varchar(100) NOT NULL, - `Nama_Akun` varchar(100) NOT NULL, - `NoLap` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_rek1_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_rek1_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_rek2` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Akun` varchar(100) NOT NULL, - `Kelompok` varchar(100) NOT NULL, - `Nama_Kelompok` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_rek2_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_rek2_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_rek3` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kelompok` varchar(100) NOT NULL, - `Jenis` varchar(100) NOT NULL, - `Nama_Jenis` varchar(100) NOT NULL, - `Formula` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_rek3_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_rek3_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_rek4` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Jenis` varchar(100) NOT NULL, - `Obyek` varchar(100) NOT NULL, - `Nama_Obyek` varchar(100) NOT NULL, - `Peraturan` varchar(250) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_rek4_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_rek4_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_sbu` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kode_SBU` varchar(100) NOT NULL, - `NoUrut_SBU` varchar(100) NOT NULL, - `Nama_SBU` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `Satuan` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_sbu_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_sbu_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ref_sumber` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kode` varchar(100) NOT NULL, - `Nama_Sumber` varchar(100) NOT NULL, - `Urut` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ref_sumber_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ref_sumber_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_anggaran` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `KdPosting` varchar(100) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `KURincianSD` varchar(100) NOT NULL, - `KD_Rincian` varchar(100) NOT NULL, - `RincianSD` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `AnggaranStlhPAK` varchar(100) NOT NULL, - `Belanja` varchar(100) NOT NULL, - `Kd_keg` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `TglPosting` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_anggaran_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_anggaran_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_anggaran_log` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `KdPosting` varchar(100) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_Perdes` varchar(100) NOT NULL, - `TglPosting` varchar(100) NOT NULL, - `UserID` varchar(50) NOT NULL, - `Kunci` varchar(100) NOT NULL, - `No_Perkades` varchar(100) DEFAULT NULL, - `Petugas` varchar(80) DEFAULT NULL, - `Tanggal` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_anggaran_log_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_anggaran_log_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_anggaran_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `KdPosting` varchar(100) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(100) NOT NULL, - `No_Urut` varchar(100) NOT NULL, - `Uraian` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `JmlSatuan` varchar(100) NOT NULL, - `HrgSatuan` varchar(100) NOT NULL, - `Satuan` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `JmlSatuanPAK` varchar(100) NOT NULL, - `HrgSatuanPAK` varchar(100) NOT NULL, - `AnggaranStlhPAK` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_anggaran_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_anggaran_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_bidang` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Bid` varchar(100) NOT NULL, - `Nama_Bidang` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_bidang_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_desa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Nm_Kades` varchar(100) NOT NULL, - `Jbt_Kades` varchar(100) NOT NULL, - `Nm_Sekdes` varchar(100) NOT NULL, - `NIP_Sekdes` varchar(100) NOT NULL, - `Jbt_Sekdes` varchar(100) NOT NULL, - `Nm_Kaur_Keu` varchar(100) NOT NULL, - `Jbt_Kaur_Keu` varchar(100) NOT NULL, - `Nm_Bendahara` varchar(100) NOT NULL, - `Jbt_Bendahara` varchar(100) NOT NULL, - `No_Perdes` varchar(100) NOT NULL, - `Tgl_Perdes` varchar(100) NOT NULL, - `No_Perdes_PB` varchar(100) NOT NULL, - `Tgl_Perdes_PB` varchar(100) NOT NULL, - `No_Perdes_PJ` varchar(100) NOT NULL, - `Tgl_Perdes_PJ` varchar(100) NOT NULL, - `Alamat` varchar(250) NOT NULL, - `Ibukota` varchar(100) NOT NULL, - `Status` varchar(100) NOT NULL, - `NPWP` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_desa_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_jurnal_umum` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `KdBuku` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Tanggal` varchar(100) NOT NULL, - `JnsBukti` varchar(100) NOT NULL, - `NoBukti` varchar(100) NOT NULL, - `Keterangan` varchar(100) NOT NULL, - `DK` varchar(100) NOT NULL, - `Debet` varchar(100) NOT NULL, - `Kredit` varchar(100) NOT NULL, - `Jenis` varchar(100) NOT NULL, - `Posted` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_jurnal_umum_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_jurnal_umum_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_jurnal_umum_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `NoBukti` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `RincianSD` varchar(100) NOT NULL, - `NoID` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Akun` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `DK` varchar(100) NOT NULL, - `Debet` varchar(100) NOT NULL, - `Kredit` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_jurnal_umum_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_jurnal_umum_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_kegiatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Bid` varchar(100) DEFAULT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `ID_Keg` varchar(100) NOT NULL, - `Nama_Kegiatan` varchar(100) NOT NULL, - `Pagu` varchar(100) NOT NULL, - `Pagu_PAK` varchar(100) NOT NULL, - `Nm_PPTKD` varchar(100) NOT NULL, - `NIP_PPTKD` varchar(100) NOT NULL, - `Lokasi` varchar(100) NOT NULL, - `Waktu` varchar(100) NOT NULL, - `Keluaran` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Jbt_PPTKD` varchar(100) DEFAULT NULL, - `Kd_Sub` varchar(30) DEFAULT NULL, - `Nilai` varchar(100) DEFAULT NULL, - `NilaiPAK` varchar(100) DEFAULT NULL, - `Satuan` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_kegiatan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_mutasi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `Keterangan` varchar(200) DEFAULT NULL, - `Kd_Bank` varchar(100) DEFAULT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Kd_Mutasi` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_mutasi_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_mutasi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_pajak` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SSP` varchar(100) NOT NULL, - `Tgl_SSP` varchar(100) NOT NULL, - `Keterangan` varchar(250) DEFAULT NULL, - `Nama_WP` varchar(100) NOT NULL, - `Alamat_WP` varchar(100) NOT NULL, - `NPWP` varchar(100) NOT NULL, - `Kd_MAP` varchar(100) NOT NULL, - `Nm_Penyetor` varchar(100) NOT NULL, - `Jn_Transaksi` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Jumlah` varchar(100) NOT NULL, - `KdBayar` varchar(100) NOT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - `NTPN` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_pajak_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_pajak_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_pajak_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SSP` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_pajak_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_pajak_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_pemda` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Prov` varchar(100) NOT NULL, - `Kd_Kab` varchar(100) NOT NULL, - `Nama_Pemda` varchar(100) NOT NULL, - `Nama_Provinsi` varchar(100) NOT NULL, - `Ibukota` varchar(100) NOT NULL, - `Alamat` varchar(100) NOT NULL, - `Nm_Bupati` varchar(100) NOT NULL, - `Jbt_Bupati` varchar(100) NOT NULL, - `Logo` mediumblob DEFAULT NULL, - `C_Kode` varchar(100) NOT NULL, - `C_Pemda` varchar(100) NOT NULL, - `C_Data` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_pemda_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_pemda_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_pencairan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_Cek` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Tgl_Cek` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Keterangan` varchar(250) DEFAULT NULL, - `Jumlah` varchar(100) NOT NULL, - `Potongan` varchar(100) NOT NULL, - `KdBayar` varchar(100) NOT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - `Kunci` varchar(10) DEFAULT NULL, - `No_Ref` varchar(100) DEFAULT NULL, - `Tgl_Bayar` varchar(100) DEFAULT NULL, - `Validasi` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_pencairan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_pencairan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_perangkat` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Jabatan` varchar(100) NOT NULL, - `No_ID` varchar(100) NOT NULL, - `Nama_Perangkat` varchar(100) NOT NULL, - `Alamat_Perangkat` varchar(100) NOT NULL, - `Nomor_HP` varchar(100) NOT NULL, - `Rek_Bank` varchar(100) NOT NULL, - `Nama_Bank` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_perangkat_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_perangkat_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rab` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `AnggaranStlhPAK` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rab_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rab_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rab_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(100) NOT NULL, - `No_Urut` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `Uraian` varchar(100) NOT NULL, - `Satuan` varchar(100) NOT NULL, - `JmlSatuan` varchar(100) NOT NULL, - `HrgSatuan` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `JmlSatuanPAK` varchar(100) NOT NULL, - `HrgSatuanPAK` varchar(100) NOT NULL, - `AnggaranStlhPAK` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `Kode_SBU` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rab_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rab_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rab_sub` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(100) NOT NULL, - `Nama_SubRinci` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `AnggaranStlhPAK` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rab_sub_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rab_sub_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_bidang` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Bid` varchar(100) NOT NULL, - `Nama_Bidang` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_bidang_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_kegiatan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Bid` varchar(100) DEFAULT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `ID_Keg` varchar(100) NOT NULL, - `Nama_Kegiatan` varchar(100) NOT NULL, - `Lokasi` varchar(100) NOT NULL, - `Keluaran` varchar(100) NOT NULL, - `Kd_Sas` varchar(100) NOT NULL, - `Sasaran` varchar(100) NOT NULL, - `Tahun1` varchar(100) NOT NULL, - `Tahun2` varchar(100) NOT NULL, - `Tahun3` varchar(100) NOT NULL, - `Tahun4` varchar(100) NOT NULL, - `Tahun5` varchar(100) NOT NULL, - `Tahun6` varchar(100) NOT NULL, - `Swakelola` varchar(100) NOT NULL, - `Kerjasama` varchar(100) NOT NULL, - `Pihak_Ketiga` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Kd_Sub` varchar(30) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_kegiatan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_misi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `ID_Misi` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `ID_Visi` varchar(100) NOT NULL, - `No_Misi` varchar(100) NOT NULL, - `Uraian_Misi` varchar(250) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_misi_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_misi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_pagu_indikatif` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Sumber` varchar(100) NOT NULL, - `Tahun1` varchar(100) NOT NULL, - `Tahun2` varchar(100) NOT NULL, - `Tahun3` varchar(100) NOT NULL, - `Tahun4` varchar(100) NOT NULL, - `Tahun5` varchar(100) NOT NULL, - `Tahun6` varchar(100) NOT NULL, - `Pola` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_pagu_indikatif_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_pagu_indikatif_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_pagu_tahunan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Tahun` varchar(100) NOT NULL, - `Kd_Sumber` varchar(100) NOT NULL, - `Biaya` varchar(100) NOT NULL, - `Volume` varchar(100) NOT NULL, - `Satuan` varchar(100) NOT NULL, - `Lokasi_Spesifik` varchar(100) NOT NULL, - `Jml_Sas_Pria` varchar(100) NOT NULL, - `Jml_Sas_Wanita` varchar(100) NOT NULL, - `Jml_Sas_ARTM` varchar(100) NOT NULL, - `Waktu` varchar(100) NOT NULL, - `Mulai` varchar(100) NOT NULL, - `Selesai` varchar(100) NOT NULL, - `Pola_Kegiatan` varchar(100) NOT NULL, - `Pelaksana` varchar(100) NOT NULL, - `No_ID` varchar(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_pagu_tahunan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_pagu_tahunan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_sasaran` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `ID_Sasaran` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `ID_Tujuan` varchar(100) NOT NULL, - `No_Sasaran` varchar(100) NOT NULL, - `Uraian_Sasaran` varchar(250) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_sasaran_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_sasaran_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_tujuan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `ID_Tujuan` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `ID_Misi` varchar(100) NOT NULL, - `No_Tujuan` varchar(100) NOT NULL, - `Uraian_Tujuan` varchar(250) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_tujuan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_tujuan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_rpjm_visi` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `ID_Visi` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_Visi` varchar(100) NOT NULL, - `Uraian_Visi` varchar(250) DEFAULT NULL, - `TahunA` varchar(100) NOT NULL, - `TahunN` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_rpjm_visi_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_rpjm_visi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_saldo_awal` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Jenis` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `Debet` varchar(100) NOT NULL, - `Kredit` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_saldo_awal_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_saldo_awal_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spj` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_SPJ` varchar(100) NOT NULL, - `Tgl_SPJ` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Keterangan` varchar(255) DEFAULT NULL, - `Jumlah` varchar(100) NOT NULL, - `Potongan` varchar(100) NOT NULL, - `Status` varchar(100) NOT NULL, - `Kunci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spj_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spj_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spj_bukti` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_SPJ` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Nm_Penerima` varchar(100) NOT NULL, - `Alamat` varchar(100) NOT NULL, - `Rek_Bank` varchar(100) NOT NULL, - `Nm_Bank` varchar(100) NOT NULL, - `NPWP` varchar(100) NOT NULL, - `Keterangan` varchar(250) DEFAULT NULL, - `Nilai` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - `Kd_Bank` varchar(100) DEFAULT NULL, - `Ref_Bayar` varchar(100) DEFAULT NULL, - `Tgl_Bayar` varchar(100) DEFAULT NULL, - `Validasi` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spj_bukti_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spj_bukti_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spj_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_SPJ` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `JmlCair` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `Alamat` varchar(100) DEFAULT NULL, - `Sisa` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spj_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spj_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spj_sisa` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `No_SPJ` varchar(100) NOT NULL, - `Tgl_SPJ` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Tgl_SPP` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Keterangan` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spj_sisa_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spj_sisa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spjpot` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPJ` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `Billing_Pajak` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spjpot_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spjpot_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spp` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Tgl_SPP` varchar(100) NOT NULL, - `Jn_SPP` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Keterangan` varchar(250) DEFAULT NULL, - `Jumlah` varchar(100) NOT NULL, - `Potongan` varchar(100) NOT NULL, - `Status` varchar(100) NOT NULL, - `F10` varchar(10) DEFAULT NULL, - `F11` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spp_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spp_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spp_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spp_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spp_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_sppbukti` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Sumberdana` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `Nm_Penerima` varchar(100) NOT NULL, - `Alamat` varchar(100) NOT NULL, - `Rek_Bank` varchar(100) NOT NULL, - `Nm_Bank` varchar(100) NOT NULL, - `NPWP` varchar(100) NOT NULL, - `Keterangan` varchar(200) DEFAULT NULL, - `Nilai` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - `Kd_Bank` varchar(100) DEFAULT NULL, - `Ref_Bayar` varchar(100) DEFAULT NULL, - `Tgl_Bayar` varchar(100) DEFAULT NULL, - `Validasi` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_sppbukti_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_sppbukti_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_spppot` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_SPP` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - `Billing_Pajak` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_spppot_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_spppot_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_sts` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Uraian` varchar(100) NOT NULL, - `NoRek_Bank` varchar(100) NOT NULL, - `Nama_Bank` varchar(100) NOT NULL, - `Jumlah` varchar(100) NOT NULL, - `Nm_Bendahara` varchar(100) NOT NULL, - `Jbt_Bendahara` varchar(100) NOT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_sts_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_sts_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_sts_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `No_TBP` varchar(100) NOT NULL, - `Uraian` varchar(100) NOT NULL, - `Nilai` varchar(100) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_sts_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_sts_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_tbp` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Tgl_Bukti` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Uraian` varchar(250) DEFAULT NULL, - `Nm_Penyetor` varchar(100) NOT NULL, - `Alamat_Penyetor` varchar(100) NOT NULL, - `TTD_Penyetor` varchar(100) NOT NULL, - `NoRek_Bank` varchar(100) NOT NULL, - `Nama_Bank` varchar(100) NOT NULL, - `Jumlah` varchar(100) NOT NULL, - `Nm_Bendahara` varchar(100) NOT NULL, - `Jbt_Bendahara` varchar(100) NOT NULL, - `Status` varchar(100) NOT NULL, - `KdBayar` varchar(100) NOT NULL, - `Ref_Bayar` varchar(100) NOT NULL, - `ID_Bank` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_tbp_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_tbp_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_tbp_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `No_Bukti` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `RincianSD` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `nilai` varchar(100) NOT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_tbp_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_tbp_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_triwulan` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `KURincianSD` varchar(100) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Sifat` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `Tw1Rinci` varchar(100) DEFAULT NULL, - `Tw2Rinci` varchar(100) DEFAULT NULL, - `Tw3Rinci` varchar(100) DEFAULT NULL, - `Tw4Rinci` varchar(100) DEFAULT NULL, - `KunciData` varchar(100) NOT NULL, - `Jan` varchar(100) DEFAULT NULL, - `Peb` varchar(100) DEFAULT NULL, - `Mar` varchar(100) DEFAULT NULL, - `Apr` varchar(100) DEFAULT NULL, - `Mei` varchar(100) DEFAULT NULL, - `Jun` varchar(100) DEFAULT NULL, - `Jul` varchar(100) DEFAULT NULL, - `Agt` varchar(100) DEFAULT NULL, - `Sep` varchar(100) DEFAULT NULL, - `Okt` varchar(100) DEFAULT NULL, - `Nop` varchar(100) DEFAULT NULL, - `Des` varchar(100) DEFAULT NULL, - `Kd_SubRinci` varchar(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_triwulan_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_triwulan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `keuangan_ta_triwulan_rinci` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `id_keuangan_master` int(11) NOT NULL, - `KdPosting` varchar(100) NOT NULL, - `KURincianSD` varchar(100) NOT NULL, - `Tahun` varchar(100) NOT NULL, - `Sifat` varchar(100) NOT NULL, - `SumberDana` varchar(100) NOT NULL, - `Kd_Desa` varchar(100) NOT NULL, - `Kd_Keg` varchar(100) NOT NULL, - `Kd_Rincian` varchar(100) NOT NULL, - `Anggaran` varchar(100) NOT NULL, - `AnggaranPAK` varchar(100) NOT NULL, - `Tw1Rinci` varchar(100) DEFAULT NULL, - `Tw2Rinci` varchar(100) DEFAULT NULL, - `Tw3Rinci` varchar(100) DEFAULT NULL, - `Tw4Rinci` varchar(100) DEFAULT NULL, - `KunciData` varchar(100) NOT NULL, - `Jan` varchar(100) DEFAULT NULL, - `Peb` varchar(100) DEFAULT NULL, - `Mar` varchar(100) DEFAULT NULL, - `Apr` varchar(100) DEFAULT NULL, - `Mei` varchar(100) DEFAULT NULL, - `Jun` varchar(100) DEFAULT NULL, - `Jul` varchar(100) DEFAULT NULL, - `Agt` varchar(100) DEFAULT NULL, - `Sep` varchar(100) DEFAULT NULL, - `Okt` varchar(100) DEFAULT NULL, - `Nop` varchar(100) DEFAULT NULL, - `Des` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `id_keuangan_ta_triwulan_rinci_master_fk` (`id_keuangan_master`), - CONSTRAINT `id_keuangan_ta_triwulan_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `cdesa_penduduk` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `id_cdesa` int(5) unsigned NOT NULL, - `id_pend` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `id_cdesa` (`id_cdesa`), - CONSTRAINT `cdesa_penduduk_fk` FOREIGN KEY (`id_cdesa`) REFERENCES `cdesa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - DB::statement(" - CREATE TABLE `mutasi_cdesa` ( - `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `id_cdesa_masuk` int(5) unsigned DEFAULT NULL, - `cdesa_keluar` int(5) unsigned DEFAULT NULL, - `jenis_mutasi` tinyint(2) DEFAULT NULL, - `tanggal_mutasi` date DEFAULT NULL, - `keterangan` text DEFAULT NULL, - `id_persil` int(11) NOT NULL, - `no_bidang_persil` tinyint(3) DEFAULT NULL, - `luas` decimal(7,0) DEFAULT NULL, - `no_objek_pajak` varchar(30) DEFAULT NULL, - `path` text DEFAULT NULL, - `id_peta` int(60) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `cdesa_mutasi_fk` (`id_cdesa_masuk`), - CONSTRAINT `cdesa_mutasi_fk` FOREIGN KEY (`id_cdesa_masuk`) REFERENCES `cdesa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE - ); - "); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } - - private function buat_view() - { - DB::statement('CREATE VIEW `daftar_grup` AS - select `a`.*, - (select count(`anggota_grup_kontak`.`id_kontak`) from `anggota_grup_kontak` where (`a`.`id_grup` = `anggota_grup_kontak`.`id_grup`)) AS `jumlah_anggota` - from `kontak_grup` `a`'); - - DB::statement("CREATE VIEW dokumen_hidup AS SELECT * FROM dokumen WHERE deleted <> 1"); - - DB::statement("CREATE VIEW keluarga_aktif AS SELECT k.* - FROM tweb_keluarga k - LEFT JOIN tweb_penduduk p ON k.nik_kepala = p.id - WHERE p.status_dasar = 1"); - - DB::statement("CREATE VIEW `master_inventaris` AS - SELECT 'inventaris_asset' AS asset, inventaris_asset.id, inventaris_asset.nama_barang, inventaris_asset.kode_barang, 'Baik' AS kondisi, inventaris_asset.keterangan, inventaris_asset.asal, inventaris_asset.tahun_pengadaan FROM inventaris_asset WHERE visible = 1 - UNION ALL SELECT 'inventaris_gedung' AS asset, inventaris_gedung.id, inventaris_gedung.nama_barang, inventaris_gedung.kode_barang, inventaris_gedung.kondisi_bangunan, inventaris_gedung.keterangan, inventaris_gedung.asal, YEAR( inventaris_gedung.tanggal_dokument) AS tahun_pengadaan FROM inventaris_gedung WHERE visible = 1 - UNION ALL SELECT 'inventaris_jalan' AS asset, inventaris_jalan.id, inventaris_jalan.nama_barang, inventaris_jalan.kode_barang, inventaris_jalan.kondisi, inventaris_jalan.keterangan, inventaris_jalan.asal, YEAR ( inventaris_jalan.tanggal_dokument ) AS tahun_pengadaan FROM inventaris_jalan WHERE visible = 1 - UNION ALL SELECT 'inventaris_peralatan' AS asset, inventaris_peralatan.id, inventaris_peralatan.nama_barang, inventaris_peralatan.kode_barang, 'Baik', inventaris_peralatan.keterangan, inventaris_peralatan.asal, inventaris_peralatan.tahun_pengadaan FROM inventaris_peralatan WHERE visible = 1"); - - DB::statement("CREATE VIEW penduduk_hidup AS SELECT * FROM tweb_penduduk WHERE status_dasar = 1"); - - DB::statement("CREATE VIEW `rekap_mutasi_inventaris` AS - SELECT 'inventaris_asset' AS asset, id_inventaris_asset, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_asset WHERE visible = 1 - UNION ALL SELECT 'inventaris_gedung', id_inventaris_gedung, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_gedung WHERE visible = 1 - UNION ALL SELECT 'inventaris_jalan', id_inventaris_jalan, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_jalan WHERE visible = 1 - UNION ALL SELECT 'inventaris_peralatan', id_inventaris_peralatan, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_peralatan WHERE visible = 1"); - - DB::statement("CREATE VIEW `daftar_kontak` AS - select `a`.`id_kontak` AS `id_kontak`,`a`.`id_pend` AS `id_pend`,`b`.`nama` AS `nama`,`a`.`no_hp` AS `no_hp`,(case when (`b`.`sex` = '1') then 'Laki-laki' else 'Perempuan' end) AS `sex`,`b`.`alamat_sekarang` AS `alamat_sekarang` - from (`kontak` `a` left join `tweb_penduduk` `b` on((`a`.`id_pend` = `b`.`id`)))"); - - DB::statement('CREATE VIEW `daftar_anggota_grup` AS select `a`.`id_grup_kontak` AS `id_grup_kontak`,`a`.`id_grup` AS `id_grup`,`c`.`nama_grup` AS `nama_grup`,`b`.`id_kontak` AS `id_kontak`,`b`.`nama` AS `nama`,`b`.`no_hp` AS `no_hp`,`b`.`sex` AS `sex`,`b`.`alamat_sekarang` AS `alamat_sekarang` from ((`anggota_grup_kontak` `a` left join `daftar_kontak` `b` on((`a`.`id_kontak` = `b`.`id_kontak`))) left join `kontak_grup` `c` on((`a`.`id_grup` = `c`.`id_grup`)))'); - - log_message('error', 'Jalankan ' . __FUNCTION__); - } -} \ No newline at end of file +db->query( + "ALTER DATABASE `{$db}` CHARACTER SET utf8 COLLATE utf8_general_ci;" + ); + + $this->tabel_analisis(); + $this->tabel_mandiri(); + $this->tabel_peta(); + $this->tabel_web(); + $this->tabel_pertanahan(); + $this->tabel_desa(); + $this->tabel_covid19(); + $this->tabel_penduduk(); + $this->tabel_dokumen(); + $this->tabel_hubung_warga(); + $this->tabel_inventaris(); + $this->tabel_buku_admin(); + $this->tabel_keuangan(); + $this->tabel_surat(); + $this->tabel_sinkronisasi(); + $this->tabel_dashboard(); + $this->tabel_pembangunan(); + $this->tabel_lapak(); + $this->tabel_bantuan(); + $this->tabel_sistem(); + $this->tabel_pamong(); + $this->tabel_keluarga(); + $this->tabel_pengguna(); + $this->tabel_ada_foreign_key(); + $this->buat_view(); + } + + private function tabel_analisis() + { + Schema::create("analisis_indikator", function (Blueprint $table) { + $table->increments("id"); + $table->integer("id_master"); + $table + ->string("nomor", 10) + ->nullable() + ->default(null); + $table->string("pertanyaan", 400); + $table->tinyInteger("id_tipe")->default(1); + $table->tinyInteger("bobot")->default(0); + $table->tinyInteger("act_analisis")->default(2); + $table->integer("id_kategori"); + $table->boolean("is_publik")->default(0); + $table->boolean("is_teks")->default(0); + $table + ->string("referensi", 50) + ->nullable() + ->default(null); + + $table->index(["id_master", "id_tipe"]); + $table->index("id_tipe"); + $table->index("id_kategori"); + }); + + DB::statement(" + CREATE TABLE `analisis_kategori_indikator` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_master` tinyint(4) NOT NULL, + `kategori` varchar(50) NOT NULL, + `kategori_kode` varchar(3) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_master` (`id_master`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_klasifikasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_master` int(11) NOT NULL, + `nama` varchar(20) NOT NULL, + `minval` double(7,2) NOT NULL, + `maxval` double(7,2) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_master` (`id_master`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_master` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(40) NOT NULL, + `subjek_tipe` tinyint(4) NOT NULL, + `lock` tinyint(1) NOT NULL DEFAULT 1, + `deskripsi` text NOT NULL, + `kode_analisis` varchar(5) NOT NULL DEFAULT '00000', + `id_kelompok` int(11) DEFAULT NULL, + `pembagi` varchar(10) NOT NULL DEFAULT '100', + `id_child` smallint(4) DEFAULT NULL, + `format_impor` tinyint(2) DEFAULT NULL, + `jenis` tinyint(2) NOT NULL DEFAULT 2, + `gform_id` text DEFAULT NULL, + `gform_nik_item_id` text DEFAULT NULL, + `gform_last_sync` datetime DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_parameter` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_indikator` int(11) NOT NULL, + `jawaban` varchar(200) NOT NULL, + `nilai` int(3) NOT NULL DEFAULT 0, + `kode_jawaban` int(3) DEFAULT 0, + `asign` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `id_indikator` (`id_indikator`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_partisipasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_subjek` int(11) NOT NULL, + `id_master` int(11) NOT NULL, + `id_periode` int(11) NOT NULL, + `id_klassifikasi` int(11) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `id_subjek` (`id_subjek`,`id_master`,`id_periode`,`id_klassifikasi`), + KEY `id_master` (`id_master`), + KEY `id_periode` (`id_periode`), + KEY `id_klassifikasi` (`id_klassifikasi`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_periode` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_master` int(11) NOT NULL, + `nama` varchar(50) NOT NULL, + `id_state` tinyint(4) NOT NULL DEFAULT 1, + `aktif` tinyint(1) NOT NULL DEFAULT 0, + `keterangan` varchar(100) NOT NULL, + `tahun_pelaksanaan` year(4) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_master` (`id_master`), + KEY `id_state` (`id_state`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_ref_state` ( + `id` tinyint(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(40) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("analisis_ref_state")->insert([ + 0 => ["id" => 1, "nama" => "Belum Entri / Pendataan"], + 1 => ["id" => 2, "nama" => "Sedang Dalam Pendataan"], + 2 => ["id" => 3, "nama" => "Selesai Entri / Pendataan"], + ]); + + DB::statement(" + CREATE TABLE `analisis_ref_subjek` ( + `id` tinyint(4) NOT NULL AUTO_INCREMENT, + `subjek` varchar(20) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("analisis_ref_subjek")->insert([ + ["id" => 1, "subjek" => "Penduduk"], + ["id" => 2, "subjek" => "Keluarga / KK"], + ["id" => 3, "subjek" => "Rumah Tangga"], + ["id" => 4, "subjek" => "Kelompok"], + ["id" => 5, "subjek" => "Desa"], + ["id" => 6, "subjek" => "Dusun"], + ["id" => 7, "subjek" => "Rukun Warga (RW)"], + ["id" => 8, "subjek" => "Rukun Tetangga (RT)"], + ]); + + DB::statement(" + CREATE TABLE `analisis_respon` ( + `id_indikator` int(11) NOT NULL, + `id_parameter` int(11) NOT NULL, + `id_subjek` int(11) NOT NULL, + `id_periode` int(11) NOT NULL, + KEY `id_parameter` (`id_parameter`,`id_subjek`), + KEY `id_periode` (`id_periode`), + KEY `id_indikator` (`id_indikator`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_respon_bukti` ( + `id_master` tinyint(4) NOT NULL, + `id_periode` tinyint(4) NOT NULL, + `id_subjek` int(11) NOT NULL, + `pengesahan` varchar(100) NOT NULL, + `tgl_update` timestamp NOT NULL DEFAULT current_timestamp() + ); + "); + + DB::statement(" + CREATE TABLE `analisis_respon_hasil` ( + `id_master` tinyint(4) NOT NULL, + `id_periode` tinyint(4) NOT NULL, + `id_subjek` int(11) NOT NULL, + `akumulasi` double(8,3) NOT NULL, + `tgl_update` timestamp NOT NULL DEFAULT current_timestamp(), + UNIQUE KEY `id_master` (`id_master`,`id_periode`,`id_subjek`) + ); + "); + + DB::statement(" + CREATE TABLE `analisis_tipe_indikator` ( + `id` tinyint(4) NOT NULL AUTO_INCREMENT, + `tipe` varchar(20) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("analisis_tipe_indikator")->insert([ + ["id" => 1, "tipe" => "Pilihan (Tunggal)"], + ["id" => 2, "tipe" => "Pilihan (Multivalue)"], + ["id" => 3, "tipe" => "sian Angka"], + ["id" => 4, "tipe" => "sian Tulisan"], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_mandiri() + { + DB::statement(" + CREATE TABLE `anjungan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ip_address` varchar(100) NOT NULL, + `keterangan` varchar(300) DEFAULT NULL, + `keyboard` tinyint(1) DEFAULT 1, + `status` tinyint(1) NOT NULL DEFAULT 1, + `created_by` int(11) NOT NULL, + `updated_by` int(11) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `mac_address` varchar(100) DEFAULT NULL, + `printer_ip` varchar(100) DEFAULT NULL, + `printer_port` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `pendapat` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pengguna` text NOT NULL, + `tanggal` timestamp NOT NULL DEFAULT current_timestamp(), + `pilihan` int(1) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `pengaduan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pengaduan` int(11) DEFAULT NULL, + `nik` varchar(16) DEFAULT NULL, + `nama` varchar(100) NOT NULL, + `email` varchar(100) DEFAULT NULL, + `telepon` varchar(20) DEFAULT NULL, + `judul` varchar(100) DEFAULT NULL, + `isi` text NOT NULL, + `status` int(1) NOT NULL DEFAULT 1 COMMENT '1 = menunggu proses, 2 = Sedang Diproses, 3 = Selesai Diproses', + `foto` varchar(100) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_peta() + { + DB::statement(" + CREATE TABLE `area` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `path` text DEFAULT NULL, + `enabled` int(11) NOT NULL DEFAULT 1, + `ref_polygon` int(9) NOT NULL, + `foto` varchar(100) DEFAULT NULL, + `id_cluster` int(11) DEFAULT NULL, + `desk` text NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `garis` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `path` text DEFAULT NULL, + `enabled` int(11) NOT NULL DEFAULT 1, + `ref_line` int(9) NOT NULL, + `foto` varchar(100) DEFAULT NULL, + `desk` text DEFAULT NULL, + `id_cluster` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `gis_simbol` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `simbol` varchar(40) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `simbol` (`simbol`), + UNIQUE KEY `simbol_2` (`simbol`), + UNIQUE KEY `simbol_3` (`simbol`), + UNIQUE KEY `simbol_4` (`simbol`), + UNIQUE KEY `simbol_5` (`simbol`), + UNIQUE KEY `simbol_6` (`simbol`) + ); + "); + + DB::table("gis_simbol")->insert([ + ["id" => 611, "simbol" => "aa_bni.png"], + ["id" => 612, "simbol" => "aa_bri.png"], + ["id" => 613, "simbol" => "aa_btn.png"], + ["id" => 614, "simbol" => "aa_btp.png"], + ["id" => 615, "simbol" => "aa_pajak.png"], + ["id" => 616, "simbol" => "aa_pdam.png"], + ["id" => 617, "simbol" => "aa_pgadai.png"], + ["id" => 618, "simbol" => "aa_pln.png"], + ["id" => 619, "simbol" => "aa_pmi.png"], + ["id" => 620, "simbol" => "aa_polisi.png"], + ["id" => 621, "simbol" => "aa_prtmn.png"], + ["id" => 622, "simbol" => "aa_pskms.png"], + ["id" => 623, "simbol" => "aa_ptrns.png"], + ["id" => 624, "simbol" => "aa_pwbdh.png"], + ["id" => 625, "simbol" => "aa_pwhnd.png"], + ["id" => 626, "simbol" => "aa_pwisl.png"], + ["id" => 627, "simbol" => "aa_pwkhc.png"], + ["id" => 628, "simbol" => "aa_pwkrs.png"], + ["id" => 629, "simbol" => "aa_sk.png"], + ["id" => 630, "simbol" => "aa_skagm.png"], + ["id" => 631, "simbol" => "aa_skint.png"], + ["id" => 632, "simbol" => "aa_sksd.png"], + ["id" => 633, "simbol" => "aa_sksma.png"], + ["id" => 634, "simbol" => "aa_sksmp.png"], + ["id" => 635, "simbol" => "aa_sktk.png"], + ["id" => 636, "simbol" => "aa_tniad.png"], + ["id" => 637, "simbol" => "aa_tnial.png"], + ["id" => 638, "simbol" => "aa_tniau.png"], + ["id" => 1, "simbol" => "accident.png"], + ["id" => 2, "simbol" => "accident_2.png"], + ["id" => 3, "simbol" => "administration.png"], + ["id" => 4, "simbol" => "administration_2.png"], + ["id" => 5, "simbol" => "aestheticscenter.png"], + ["id" => 6, "simbol" => "agriculture.png"], + ["id" => 7, "simbol" => "agriculture2.png"], + ["id" => 8, "simbol" => "agriculture3.png"], + ["id" => 9, "simbol" => "agriculture4.png"], + ["id" => 10, "simbol" => "aircraft-small.png"], + ["id" => 11, "simbol" => "airplane-sport.png"], + ["id" => 12, "simbol" => "airplane-tourism.png"], + ["id" => 13, "simbol" => "airport-apron.png"], + ["id" => 14, "simbol" => "airport-runway.png"], + ["id" => 15, "simbol" => "airport-terminal.png"], + ["id" => 16, "simbol" => "airport.png"], + ["id" => 17, "simbol" => "airport_2.png"], + ["id" => 18, "simbol" => "amphitheater-tourism.png"], + ["id" => 19, "simbol" => "amphitheater.png"], + ["id" => 20, "simbol" => "ancientmonument.png"], + ["id" => 21, "simbol" => "ancienttemple.png"], + ["id" => 22, "simbol" => "ancienttempleruin.png"], + ["id" => 23, "simbol" => "animals.png"], + ["id" => 24, "simbol" => "animals_2.png"], + ["id" => 25, "simbol" => "anniversary.png"], + ["id" => 26, "simbol" => "apartment.png"], + ["id" => 27, "simbol" => "apartment_2.png"], + ["id" => 28, "simbol" => "aquarium.png"], + ["id" => 29, "simbol" => "arch.png"], + ["id" => 30, "simbol" => "archery.png"], + ["id" => 31, "simbol" => "artgallery.png"], + ["id" => 32, "simbol" => "atm.png"], + ["id" => 33, "simbol" => "atv.png"], + ["id" => 34, "simbol" => "audio.png"], + ["id" => 35, "simbol" => "australianfootball.png"], + ["id" => 36, "simbol" => "bags.png"], + ["id" => 37, "simbol" => "bank.png"], + ["id" => 39, "simbol" => "bankeuro.png"], + ["id" => 40, "simbol" => "bankpound.png"], + ["id" => 38, "simbol" => "bank_2.png"], + ["id" => 41, "simbol" => "bar.png"], + ["id" => 42, "simbol" => "bar_2.png"], + ["id" => 43, "simbol" => "baseball.png"], + ["id" => 44, "simbol" => "basketball.png"], + ["id" => 45, "simbol" => "baskteball2.png"], + ["id" => 46, "simbol" => "beach.png"], + ["id" => 47, "simbol" => "beach_2.png"], + ["id" => 48, "simbol" => "beautiful.png"], + ["id" => 49, "simbol" => "beautiful_2.png"], + ["id" => 50, "simbol" => "bench.png"], + ["id" => 51, "simbol" => "biblio.png"], + ["id" => 52, "simbol" => "bicycleparking.png"], + ["id" => 53, "simbol" => "bigcity.png"], + ["id" => 54, "simbol" => "billiard.png"], + ["id" => 55, "simbol" => "bobsleigh.png"], + ["id" => 56, "simbol" => "bomb.png"], + ["id" => 57, "simbol" => "bookstore.png"], + ["id" => 58, "simbol" => "bowling.png"], + ["id" => 59, "simbol" => "bowling_2.png"], + ["id" => 60, "simbol" => "boxing.png"], + ["id" => 61, "simbol" => "bread.png"], + ["id" => 62, "simbol" => "bread_2.png"], + ["id" => 63, "simbol" => "bridge.png"], + ["id" => 64, "simbol" => "bridgemodern.png"], + ["id" => 65, "simbol" => "bullfight.png"], + ["id" => 66, "simbol" => "bungalow.png"], + ["id" => 67, "simbol" => "bus.png"], + ["id" => 68, "simbol" => "bus_2.png"], + ["id" => 69, "simbol" => "butcher.png"], + ["id" => 70, "simbol" => "cabin.png"], + ["id" => 71, "simbol" => "cablecar.png"], + ["id" => 72, "simbol" => "camping.png"], + ["id" => 74, "simbol" => "campingsite.png"], + ["id" => 73, "simbol" => "camping_2.png"], + ["id" => 75, "simbol" => "canoe.png"], + ["id" => 76, "simbol" => "car.png"], + ["id" => 78, "simbol" => "carrental.png"], + ["id" => 79, "simbol" => "carrepair.png"], + ["id" => 80, "simbol" => "carrepair_2.png"], + ["id" => 81, "simbol" => "carwash.png"], + ["id" => 77, "simbol" => "car_2.png"], + ["id" => 82, "simbol" => "casino.png"], + ["id" => 83, "simbol" => "casino_2.png"], + ["id" => 84, "simbol" => "castle.png"], + ["id" => 85, "simbol" => "cathedral.png"], + ["id" => 86, "simbol" => "cathedral2.png"], + ["id" => 87, "simbol" => "cave.png"], + ["id" => 88, "simbol" => "cemetary.png"], + ["id" => 89, "simbol" => "chapel.png"], + ["id" => 90, "simbol" => "church.png"], + ["id" => 91, "simbol" => "church2.png"], + ["id" => 92, "simbol" => "church_2.png"], + ["id" => 93, "simbol" => "cinema.png"], + ["id" => 94, "simbol" => "cinema_2.png"], + ["id" => 95, "simbol" => "circus.png"], + ["id" => 96, "simbol" => "citysquare.png"], + ["id" => 97, "simbol" => "climbing.png"], + ["id" => 98, "simbol" => "clothes-female.png"], + ["id" => 99, "simbol" => "clothes-male.png"], + ["id" => 100, "simbol" => "clothes.png"], + ["id" => 101, "simbol" => "clothes_2.png"], + ["id" => 102, "simbol" => "clouds.png"], + ["id" => 104, "simbol" => "cloudsun.png"], + ["id" => 105, "simbol" => "cloudsun_2.png"], + ["id" => 103, "simbol" => "clouds_2.png"], + ["id" => 106, "simbol" => "club.png"], + ["id" => 107, "simbol" => "club_2.png"], + ["id" => 108, "simbol" => "cluster.png"], + ["id" => 109, "simbol" => "cluster2.png"], + ["id" => 110, "simbol" => "cluster3.png"], + ["id" => 111, "simbol" => "cluster4.png"], + ["id" => 112, "simbol" => "cluster5.png"], + ["id" => 113, "simbol" => "cocktail.png"], + ["id" => 114, "simbol" => "coffee.png"], + ["id" => 115, "simbol" => "coffee_2.png"], + ["id" => 116, "simbol" => "communitycentre.png"], + ["id" => 117, "simbol" => "company.png"], + ["id" => 118, "simbol" => "company_2.png"], + ["id" => 119, "simbol" => "computer.png"], + ["id" => 120, "simbol" => "computer_2.png"], + ["id" => 121, "simbol" => "concessionaire.png"], + ["id" => 122, "simbol" => "conference.png"], + ["id" => 123, "simbol" => "construction.png"], + ["id" => 124, "simbol" => "convenience.png"], + ["id" => 125, "simbol" => "convent.png"], + ["id" => 126, "simbol" => "corral.png"], + ["id" => 127, "simbol" => "country.png"], + ["id" => 128, "simbol" => "court.png"], + ["id" => 129, "simbol" => "cricket.png"], + ["id" => 130, "simbol" => "cross.png"], + ["id" => 131, "simbol" => "crossingguard.png"], + ["id" => 132, "simbol" => "cruise.png"], + ["id" => 133, "simbol" => "currencyexchange.png"], + ["id" => 134, "simbol" => "customs.png"], + ["id" => 135, "simbol" => "cycling.png"], + ["id" => 137, "simbol" => "cyclingfeedarea.png"], + ["id" => 138, "simbol" => "cyclingmountain1.png"], + ["id" => 139, "simbol" => "cyclingmountain2.png"], + ["id" => 140, "simbol" => "cyclingmountain3.png"], + ["id" => 141, "simbol" => "cyclingmountain4.png"], + ["id" => 142, "simbol" => "cyclingmountainnotrated.png"], + ["id" => 143, "simbol" => "cyclingsport.png"], + ["id" => 144, "simbol" => "cyclingsprint.png"], + ["id" => 145, "simbol" => "cyclinguncategorized.png"], + ["id" => 136, "simbol" => "cycling_2.png"], + ["id" => 146, "simbol" => "dam.png"], + ["id" => 147, "simbol" => "dancinghall.png"], + ["id" => 148, "simbol" => "dates.png"], + ["id" => 149, "simbol" => "dates_2.png"], + ["id" => 150, "simbol" => "daycare.png"], + ["id" => 151, "simbol" => "days-dim.png"], + ["id" => 152, "simbol" => "days-dom.png"], + ["id" => 153, "simbol" => "days-jeu.png"], + ["id" => 154, "simbol" => "days-jue.png"], + ["id" => 155, "simbol" => "days-lun.png"], + ["id" => 156, "simbol" => "days-mar.png"], + ["id" => 157, "simbol" => "days-mer.png"], + ["id" => 158, "simbol" => "days-mie.png"], + ["id" => 159, "simbol" => "days-qua.png"], + ["id" => 160, "simbol" => "days-qui.png"], + ["id" => 161, "simbol" => "days-sab.png"], + ["id" => 162, "simbol" => "days-sam.png"], + ["id" => 163, "simbol" => "days-seg.png"], + ["id" => 164, "simbol" => "days-sex.png"], + ["id" => 165, "simbol" => "days-ter.png"], + ["id" => 166, "simbol" => "days-ven.png"], + ["id" => 167, "simbol" => "days-vie.png"], + ["id" => 168, "simbol" => "default.png"], + ["id" => 169, "simbol" => "dentist.png"], + ["id" => 170, "simbol" => "deptstore.png"], + ["id" => 171, "simbol" => "disability.png"], + ["id" => 172, "simbol" => "disability_2.png"], + ["id" => 173, "simbol" => "disabledparking.png"], + ["id" => 174, "simbol" => "diving.png"], + ["id" => 175, "simbol" => "doctor.png"], + ["id" => 176, "simbol" => "doctor_2.png"], + ["id" => 177, "simbol" => "dog-leash.png"], + ["id" => 178, "simbol" => "dog-offleash.png"], + ["id" => 179, "simbol" => "door.png"], + ["id" => 180, "simbol" => "down.png"], + ["id" => 181, "simbol" => "downleft.png"], + ["id" => 182, "simbol" => "downright.png"], + ["id" => 183, "simbol" => "downthenleft.png"], + ["id" => 184, "simbol" => "downthenright.png"], + ["id" => 185, "simbol" => "drinkingfountain.png"], + ["id" => 186, "simbol" => "drinkingwater.png"], + ["id" => 187, "simbol" => "drugs.png"], + ["id" => 188, "simbol" => "drugs_2.png"], + ["id" => 189, "simbol" => "elevator.png"], + ["id" => 190, "simbol" => "embassy.png"], + ["id" => 191, "simbol" => "emblem-art.png"], + ["id" => 192, "simbol" => "emblem-photos.png"], + ["id" => 193, "simbol" => "entrance.png"], + ["id" => 194, "simbol" => "escalator-down.png"], + ["id" => 195, "simbol" => "escalator-up.png"], + ["id" => 196, "simbol" => "exit.png"], + ["id" => 197, "simbol" => "expert.png"], + ["id" => 198, "simbol" => "explosion.png"], + ["id" => 199, "simbol" => "face-devilish.png"], + ["id" => 200, "simbol" => "face-embarrassed.png"], + ["id" => 201, "simbol" => "factory.png"], + ["id" => 202, "simbol" => "factory_2.png"], + ["id" => 203, "simbol" => "fallingrocks.png"], + ["id" => 204, "simbol" => "family.png"], + ["id" => 205, "simbol" => "farm.png"], + ["id" => 206, "simbol" => "farm_2.png"], + ["id" => 207, "simbol" => "fastfood.png"], + ["id" => 208, "simbol" => "fastfood_2.png"], + ["id" => 209, "simbol" => "festival-itinerant.png"], + ["id" => 210, "simbol" => "festival.png"], + ["id" => 211, "simbol" => "findajob.png"], + ["id" => 212, "simbol" => "findjob.png"], + ["id" => 213, "simbol" => "findjob_2.png"], + ["id" => 214, "simbol" => "fire-extinguisher.png"], + ["id" => 215, "simbol" => "fire.png"], + ["id" => 216, "simbol" => "firemen.png"], + ["id" => 217, "simbol" => "firemen_2.png"], + ["id" => 218, "simbol" => "fireworks.png"], + ["id" => 219, "simbol" => "firstaid.png"], + ["id" => 220, "simbol" => "fishing.png"], + ["id" => 222, "simbol" => "fishingshop.png"], + ["id" => 221, "simbol" => "fishing_2.png"], + ["id" => 223, "simbol" => "fitnesscenter.png"], + ["id" => 224, "simbol" => "fjord.png"], + ["id" => 225, "simbol" => "flood.png"], + ["id" => 226, "simbol" => "flowers.png"], + ["id" => 227, "simbol" => "flowers_2.png"], + ["id" => 228, "simbol" => "followpath.png"], + ["id" => 229, "simbol" => "foodtruck.png"], + ["id" => 230, "simbol" => "forest.png"], + ["id" => 231, "simbol" => "fortress.png"], + ["id" => 232, "simbol" => "fossils.png"], + ["id" => 233, "simbol" => "fountain.png"], + ["id" => 234, "simbol" => "friday.png"], + ["id" => 235, "simbol" => "friday_2.png"], + ["id" => 236, "simbol" => "friends.png"], + ["id" => 237, "simbol" => "friends_2.png"], + ["id" => 238, "simbol" => "garden.png"], + ["id" => 239, "simbol" => "gateswalls.png"], + ["id" => 240, "simbol" => "gazstation.png"], + ["id" => 241, "simbol" => "gazstation_2.png"], + ["id" => 242, "simbol" => "geyser.png"], + ["id" => 243, "simbol" => "gifts.png"], + ["id" => 244, "simbol" => "girlfriend.png"], + ["id" => 245, "simbol" => "girlfriend_2.png"], + ["id" => 246, "simbol" => "glacier.png"], + ["id" => 247, "simbol" => "golf.png"], + ["id" => 248, "simbol" => "golf_2.png"], + ["id" => 249, "simbol" => "gondola.png"], + ["id" => 250, "simbol" => "gourmet.png"], + ["id" => 251, "simbol" => "grocery.png"], + ["id" => 252, "simbol" => "gun.png"], + ["id" => 253, "simbol" => "gym.png"], + ["id" => 254, "simbol" => "hairsalon.png"], + ["id" => 255, "simbol" => "handball.png"], + ["id" => 256, "simbol" => "hanggliding.png"], + ["id" => 257, "simbol" => "hats.png"], + ["id" => 258, "simbol" => "headstone.png"], + ["id" => 259, "simbol" => "headstonejewish.png"], + ["id" => 260, "simbol" => "helicopter.png"], + ["id" => 261, "simbol" => "highway.png"], + ["id" => 262, "simbol" => "highway_2.png"], + ["id" => 263, "simbol" => "hiking-tourism.png"], + ["id" => 264, "simbol" => "hiking.png"], + ["id" => 265, "simbol" => "hiking_2.png"], + ["id" => 266, "simbol" => "historicalquarter.png"], + ["id" => 267, "simbol" => "home.png"], + ["id" => 268, "simbol" => "home_2.png"], + ["id" => 269, "simbol" => "horseriding.png"], + ["id" => 270, "simbol" => "horseriding_2.png"], + ["id" => 271, "simbol" => "hospital.png"], + ["id" => 272, "simbol" => "hospital_2.png"], + ["id" => 273, "simbol" => "hostel.png"], + ["id" => 274, "simbol" => "hotairballoon.png"], + ["id" => 275, "simbol" => "hotel.png"], + ["id" => 276, "simbol" => "hotel1star.png"], + ["id" => 277, "simbol" => "hotel2stars.png"], + ["id" => 278, "simbol" => "hotel3stars.png"], + ["id" => 279, "simbol" => "hotel4stars.png"], + ["id" => 280, "simbol" => "hotel5stars.png"], + ["id" => 281, "simbol" => "hotel_2.png"], + ["id" => 282, "simbol" => "house.png"], + ["id" => 283, "simbol" => "hunting.png"], + ["id" => 284, "simbol" => "icecream.png"], + ["id" => 285, "simbol" => "icehockey.png"], + ["id" => 286, "simbol" => "iceskating.png"], + ["id" => 287, "simbol" => "im-user.png"], + ["id" => 288, "simbol" => "index.html"], + ["id" => 289, "simbol" => "info.png"], + ["id" => 290, "simbol" => "info_2.png"], + ["id" => 291, "simbol" => "jewelry.png"], + ["id" => 292, "simbol" => "jewishquarter.png"], + ["id" => 293, "simbol" => "jogging.png"], + ["id" => 294, "simbol" => "judo.png"], + ["id" => 295, "simbol" => "justice.png"], + ["id" => 296, "simbol" => "justice_2.png"], + ["id" => 297, "simbol" => "karate.png"], + ["id" => 298, "simbol" => "karting.png"], + ["id" => 299, "simbol" => "kayak.png"], + ["id" => 300, "simbol" => "laboratory.png"], + ["id" => 301, "simbol" => "lake.png"], + ["id" => 302, "simbol" => "laundromat.png"], + ["id" => 303, "simbol" => "left.png"], + ["id" => 304, "simbol" => "leftthendown.png"], + ["id" => 305, "simbol" => "leftthenup.png"], + ["id" => 306, "simbol" => "library.png"], + ["id" => 307, "simbol" => "library_2.png"], + ["id" => 308, "simbol" => "lighthouse.png"], + ["id" => 309, "simbol" => "liquor.png"], + ["id" => 310, "simbol" => "lock.png"], + ["id" => 311, "simbol" => "lockerrental.png"], + ["id" => 312, "simbol" => "magicshow.png"], + ["id" => 313, "simbol" => "mainroad.png"], + ["id" => 314, "simbol" => "massage.png"], + ["id" => 315, "simbol" => "military.png"], + ["id" => 316, "simbol" => "military_2.png"], + ["id" => 317, "simbol" => "mine.png"], + ["id" => 318, "simbol" => "mobilephonetower.png"], + ["id" => 319, "simbol" => "modernmonument.png"], + ["id" => 320, "simbol" => "moderntower.png"], + ["id" => 321, "simbol" => "monastery.png"], + ["id" => 322, "simbol" => "monday.png"], + ["id" => 323, "simbol" => "monday_2.png"], + ["id" => 324, "simbol" => "monument.png"], + ["id" => 325, "simbol" => "mosque.png"], + ["id" => 326, "simbol" => "motorbike.png"], + ["id" => 327, "simbol" => "motorcycle.png"], + ["id" => 328, "simbol" => "movierental.png"], + ["id" => 329, "simbol" => "museum-archeological.png"], + ["id" => 330, "simbol" => "museum-art.png"], + ["id" => 331, "simbol" => "museum-crafts.png"], + ["id" => 332, "simbol" => "museum-historical.png"], + ["id" => 333, "simbol" => "museum-naval.png"], + ["id" => 334, "simbol" => "museum-science.png"], + ["id" => 335, "simbol" => "museum-war.png"], + ["id" => 336, "simbol" => "museum.png"], + ["id" => 337, "simbol" => "museum_2.png"], + ["id" => 338, "simbol" => "music-classical.png"], + ["id" => 339, "simbol" => "music-hiphop.png"], + ["id" => 340, "simbol" => "music-live.png"], + ["id" => 341, "simbol" => "music-rock.png"], + ["id" => 342, "simbol" => "music.png"], + ["id" => 343, "simbol" => "music_2.png"], + ["id" => 344, "simbol" => "nanny.png"], + ["id" => 345, "simbol" => "newsagent.png"], + ["id" => 346, "simbol" => "nordicski.png"], + ["id" => 347, "simbol" => "nursery.png"], + ["id" => 348, "simbol" => "observatory.png"], + ["id" => 349, "simbol" => "oilpumpjack.png"], + ["id" => 350, "simbol" => "olympicsite.png"], + ["id" => 351, "simbol" => "ophthalmologist.png"], + ["id" => 352, "simbol" => "pagoda.png"], + ["id" => 353, "simbol" => "paint.png"], + ["id" => 354, "simbol" => "palace.png"], + ["id" => 355, "simbol" => "panoramic.png"], + ["id" => 356, "simbol" => "panoramic180.png"], + ["id" => 357, "simbol" => "park-urban.png"], + ["id" => 358, "simbol" => "park.png"], + ["id" => 360, "simbol" => "parkandride.png"], + ["id" => 361, "simbol" => "parking.png"], + ["id" => 362, "simbol" => "parking_2.png"], + ["id" => 359, "simbol" => "park_2.png"], + ["id" => 363, "simbol" => "party.png"], + ["id" => 364, "simbol" => "patisserie.png"], + ["id" => 365, "simbol" => "pedestriancrossing.png"], + ["id" => 366, "simbol" => "pend.png"], + ["id" => 367, "simbol" => "pens.png"], + ["id" => 368, "simbol" => "perfumery.png"], + ["id" => 369, "simbol" => "personal.png"], + ["id" => 370, "simbol" => "personalwatercraft.png"], + ["id" => 371, "simbol" => "petroglyphs.png"], + ["id" => 372, "simbol" => "pets.png"], + ["id" => 373, "simbol" => "phones.png"], + ["id" => 374, "simbol" => "photo.png"], + ["id" => 375, "simbol" => "photodown.png"], + ["id" => 376, "simbol" => "photodownleft.png"], + ["id" => 377, "simbol" => "photodownright.png"], + ["id" => 378, "simbol" => "photography.png"], + ["id" => 379, "simbol" => "photoleft.png"], + ["id" => 380, "simbol" => "photoright.png"], + ["id" => 381, "simbol" => "photoup.png"], + ["id" => 382, "simbol" => "photoupleft.png"], + ["id" => 383, "simbol" => "photoupright.png"], + ["id" => 384, "simbol" => "picnic.png"], + ["id" => 385, "simbol" => "pizza.png"], + ["id" => 386, "simbol" => "pizza_2.png"], + ["id" => 387, "simbol" => "places-unvisited.png"], + ["id" => 388, "simbol" => "places-visited.png"], + ["id" => 389, "simbol" => "planecrash.png"], + ["id" => 390, "simbol" => "playground.png"], + ["id" => 391, "simbol" => "playground_2.png"], + ["id" => 392, "simbol" => "poker.png"], + ["id" => 393, "simbol" => "poker_2.png"], + ["id" => 394, "simbol" => "police.png"], + ["id" => 395, "simbol" => "police2.png"], + ["id" => 396, "simbol" => "police_2.png"], + ["id" => 397, "simbol" => "pool-indoor.png"], + ["id" => 398, "simbol" => "pool.png"], + ["id" => 399, "simbol" => "pool_2.png"], + ["id" => 400, "simbol" => "port.png"], + ["id" => 401, "simbol" => "port_2.png"], + ["id" => 402, "simbol" => "postal.png"], + ["id" => 403, "simbol" => "postal_2.png"], + ["id" => 404, "simbol" => "powerlinepole.png"], + ["id" => 405, "simbol" => "powerplant.png"], + ["id" => 406, "simbol" => "powersubstation.png"], + ["id" => 407, "simbol" => "prison.png"], + ["id" => 408, "simbol" => "publicart.png"], + ["id" => 409, "simbol" => "racing.png"], + ["id" => 410, "simbol" => "radiation.png"], + ["id" => 411, "simbol" => "rain_2.png"], + ["id" => 412, "simbol" => "rain_3.png"], + ["id" => 413, "simbol" => "rattlesnake.png"], + ["id" => 414, "simbol" => "realestate.png"], + ["id" => 415, "simbol" => "realestate_2.png"], + ["id" => 416, "simbol" => "recycle.png"], + ["id" => 417, "simbol" => "recycle_2.png"], + ["id" => 418, "simbol" => "recycle_3.png"], + ["id" => 419, "simbol" => "regroup.png"], + ["id" => 420, "simbol" => "regulier.png"], + ["id" => 421, "simbol" => "resort.png"], + ["id" => 422, "simbol" => "restaurant-barbecue.png"], + ["id" => 423, "simbol" => "restaurant-buffet.png"], + ["id" => 424, "simbol" => "restaurant-fish.png"], + ["id" => 425, "simbol" => "restaurant-romantic.png"], + ["id" => 426, "simbol" => "restaurant.png"], + ["id" => 428, "simbol" => "restaurantafrican.png"], + ["id" => 429, "simbol" => "restaurantchinese.png"], + ["id" => 430, "simbol" => "restaurantchinese_2.png"], + ["id" => 431, "simbol" => "restaurantfishchips.png"], + ["id" => 432, "simbol" => "restaurantgourmet.png"], + ["id" => 433, "simbol" => "restaurantgreek.png"], + ["id" => 434, "simbol" => "restaurantindian.png"], + ["id" => 435, "simbol" => "restaurantitalian.png"], + ["id" => 436, "simbol" => "restaurantjapanese.png"], + ["id" => 437, "simbol" => "restaurantjapanese_2.png"], + ["id" => 438, "simbol" => "restaurantkebab.png"], + ["id" => 439, "simbol" => "restaurantkorean.png"], + ["id" => 440, "simbol" => "restaurantmediterranean.png"], + ["id" => 441, "simbol" => "restaurantmexican.png"], + ["id" => 442, "simbol" => "restaurantthai.png"], + ["id" => 443, "simbol" => "restaurantturkish.png"], + ["id" => 427, "simbol" => "restaurant_2.png"], + ["id" => 444, "simbol" => "revolution.png"], + ["id" => 445, "simbol" => "right.png"], + ["id" => 446, "simbol" => "rightthendown.png"], + ["id" => 447, "simbol" => "rightthenup.png"], + ["id" => 448, "simbol" => "riparian.png"], + ["id" => 449, "simbol" => "ropescourse.png"], + ["id" => 450, "simbol" => "rowboat.png"], + ["id" => 451, "simbol" => "rugby.png"], + ["id" => 452, "simbol" => "ruins.png"], + ["id" => 453, "simbol" => "sailboat-sport.png"], + ["id" => 454, "simbol" => "sailboat-tourism.png"], + ["id" => 455, "simbol" => "sailboat.png"], + ["id" => 456, "simbol" => "salle-fete.png"], + ["id" => 457, "simbol" => "satursday.png"], + ["id" => 458, "simbol" => "satursday_2.png"], + ["id" => 459, "simbol" => "sauna.png"], + ["id" => 460, "simbol" => "school.png"], + ["id" => 461, "simbol" => "school_2.png"], + ["id" => 462, "simbol" => "schrink.png"], + ["id" => 463, "simbol" => "schrink_2.png"], + ["id" => 464, "simbol" => "sciencecenter.png"], + ["id" => 465, "simbol" => "seals.png"], + ["id" => 466, "simbol" => "seniorsite.png"], + ["id" => 467, "simbol" => "shadow.png"], + ["id" => 468, "simbol" => "shelter-picnic.png"], + ["id" => 469, "simbol" => "shelter-sleeping.png"], + ["id" => 470, "simbol" => "shoes.png"], + ["id" => 471, "simbol" => "shoes_2.png"], + ["id" => 472, "simbol" => "shoppingmall.png"], + ["id" => 473, "simbol" => "shore.png"], + ["id" => 474, "simbol" => "shower.png"], + ["id" => 475, "simbol" => "sight.png"], + ["id" => 476, "simbol" => "skateboarding.png"], + ["id" => 477, "simbol" => "skiing.png"], + ["id" => 478, "simbol" => "skiing_2.png"], + ["id" => 479, "simbol" => "skijump.png"], + ["id" => 480, "simbol" => "skilift.png"], + ["id" => 481, "simbol" => "smallcity.png"], + ["id" => 482, "simbol" => "smokingarea.png"], + ["id" => 483, "simbol" => "sneakers.png"], + ["id" => 484, "simbol" => "snow.png"], + ["id" => 485, "simbol" => "snowboarding.png"], + ["id" => 486, "simbol" => "snowmobiling.png"], + ["id" => 487, "simbol" => "snowshoeing.png"], + ["id" => 488, "simbol" => "soccer.png"], + ["id" => 489, "simbol" => "soccer2.png"], + ["id" => 490, "simbol" => "soccer_2.png"], + ["id" => 491, "simbol" => "spaceport.png"], + ["id" => 492, "simbol" => "spectacle.png"], + ["id" => 493, "simbol" => "speed100.png"], + ["id" => 494, "simbol" => "speed110.png"], + ["id" => 495, "simbol" => "speed120.png"], + ["id" => 496, "simbol" => "speed130.png"], + ["id" => 497, "simbol" => "speed20.png"], + ["id" => 498, "simbol" => "speed30.png"], + ["id" => 499, "simbol" => "speed40.png"], + ["id" => 500, "simbol" => "speed50.png"], + ["id" => 501, "simbol" => "speed60.png"], + ["id" => 502, "simbol" => "speed70.png"], + ["id" => 503, "simbol" => "speed80.png"], + ["id" => 504, "simbol" => "speed90.png"], + ["id" => 505, "simbol" => "speedhump.png"], + ["id" => 506, "simbol" => "spelunking.png"], + ["id" => 507, "simbol" => "stadium.png"], + ["id" => 508, "simbol" => "statue.png"], + ["id" => 509, "simbol" => "steamtrain.png"], + ["id" => 510, "simbol" => "stop.png"], + ["id" => 511, "simbol" => "stoplight.png"], + ["id" => 512, "simbol" => "stoplight_2.png"], + ["id" => 513, "simbol" => "strike.png"], + ["id" => 514, "simbol" => "strike1.png"], + ["id" => 515, "simbol" => "subway.png"], + ["id" => 516, "simbol" => "sun.png"], + ["id" => 518, "simbol" => "sunday.png"], + ["id" => 519, "simbol" => "sunday_2.png"], + ["id" => 517, "simbol" => "sun_2.png"], + ["id" => 520, "simbol" => "supermarket.png"], + ["id" => 521, "simbol" => "supermarket_2.png"], + ["id" => 522, "simbol" => "surfing.png"], + ["id" => 523, "simbol" => "suv.png"], + ["id" => 524, "simbol" => "synagogue.png"], + ["id" => 525, "simbol" => "tailor.png"], + ["id" => 526, "simbol" => "tapas.png"], + ["id" => 527, "simbol" => "taxi.png"], + ["id" => 529, "simbol" => "taxiway.png"], + ["id" => 528, "simbol" => "taxi_2.png"], + ["id" => 530, "simbol" => "teahouse.png"], + ["id" => 531, "simbol" => "telephone.png"], + ["id" => 532, "simbol" => "templehindu.png"], + ["id" => 533, "simbol" => "tennis.png"], + ["id" => 534, "simbol" => "tennis2.png"], + ["id" => 535, "simbol" => "tennis_2.png"], + ["id" => 536, "simbol" => "tent.png"], + ["id" => 537, "simbol" => "terrace.png"], + ["id" => 538, "simbol" => "text.png"], + ["id" => 539, "simbol" => "textiles.png"], + ["id" => 540, "simbol" => "theater.png"], + ["id" => 541, "simbol" => "theater_2.png"], + ["id" => 542, "simbol" => "themepark.png"], + ["id" => 543, "simbol" => "thunder.png"], + ["id" => 544, "simbol" => "thunder_2.png"], + ["id" => 545, "simbol" => "thursday.png"], + ["id" => 546, "simbol" => "thursday_2.png"], + ["id" => 547, "simbol" => "toilets.png"], + ["id" => 548, "simbol" => "toilets_2.png"], + ["id" => 549, "simbol" => "tollstation.png"], + ["id" => 550, "simbol" => "tools.png"], + ["id" => 551, "simbol" => "tower.png"], + ["id" => 552, "simbol" => "toys.png"], + ["id" => 553, "simbol" => "toys_2.png"], + ["id" => 554, "simbol" => "trafficenforcementcamera.png"], + ["id" => 555, "simbol" => "train.png"], + ["id" => 556, "simbol" => "train_2.png"], + ["id" => 557, "simbol" => "tram.png"], + ["id" => 558, "simbol" => "trash.png"], + ["id" => 559, "simbol" => "truck.png"], + ["id" => 560, "simbol" => "truck_2.png"], + ["id" => 561, "simbol" => "tuesday.png"], + ["id" => 562, "simbol" => "tuesday_2.png"], + ["id" => 563, "simbol" => "tunnel.png"], + ["id" => 564, "simbol" => "turnleft.png"], + ["id" => 565, "simbol" => "turnright.png"], + ["id" => 566, "simbol" => "university.png"], + ["id" => 567, "simbol" => "university_2.png"], + ["id" => 568, "simbol" => "unnamed.png"], + ["id" => 569, "simbol" => "up.png"], + ["id" => 570, "simbol" => "upleft.png"], + ["id" => 571, "simbol" => "upright.png"], + ["id" => 572, "simbol" => "upthenleft.png"], + ["id" => 573, "simbol" => "upthenright.png"], + ["id" => 574, "simbol" => "usfootball.png"], + ["id" => 575, "simbol" => "vespa.png"], + ["id" => 576, "simbol" => "vet.png"], + ["id" => 577, "simbol" => "video.png"], + ["id" => 578, "simbol" => "videogames.png"], + ["id" => 579, "simbol" => "videogames_2.png"], + ["id" => 580, "simbol" => "villa.png"], + ["id" => 581, "simbol" => "waitingroom.png"], + ["id" => 582, "simbol" => "water.png"], + ["id" => 583, "simbol" => "waterfall.png"], + ["id" => 584, "simbol" => "watermill.png"], + ["id" => 585, "simbol" => "waterpark.png"], + ["id" => 586, "simbol" => "waterskiing.png"], + ["id" => 587, "simbol" => "watertower.png"], + ["id" => 588, "simbol" => "waterwell.png"], + ["id" => 589, "simbol" => "waterwellpump.png"], + ["id" => 590, "simbol" => "wedding.png"], + ["id" => 591, "simbol" => "wednesday.png"], + ["id" => 592, "simbol" => "wednesday_2.png"], + ["id" => 593, "simbol" => "wetland.png"], + ["id" => 594, "simbol" => "white1.png"], + ["id" => 595, "simbol" => "white20.png"], + ["id" => 596, "simbol" => "wifi.png"], + ["id" => 597, "simbol" => "wifi_2.png"], + ["id" => 598, "simbol" => "windmill.png"], + ["id" => 599, "simbol" => "windsurfing.png"], + ["id" => 600, "simbol" => "windturbine.png"], + ["id" => 601, "simbol" => "winery.png"], + ["id" => 602, "simbol" => "wineyard.png"], + ["id" => 603, "simbol" => "workoffice.png"], + ["id" => 604, "simbol" => "world.png"], + ["id" => 605, "simbol" => "worldheritagesite.png"], + ["id" => 606, "simbol" => "yoga.png"], + ["id" => 607, "simbol" => "youthhostel.png"], + ["id" => 608, "simbol" => "zipline.png"], + ["id" => 609, "simbol" => "zoo.png"], + ["id" => 610, "simbol" => "zoo_2.png"], + ]); + + DB::statement(" + CREATE TABLE `line` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `simbol` varchar(50) DEFAULT NULL, + `color` varchar(25) DEFAULT NULL, + `tipe` int(4) DEFAULT 0, + `tebal` int(2) DEFAULT 3, + `jenis` varchar(10) DEFAULT 'solid', + `parrent` int(4) DEFAULT 1, + `enabled` int(11) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `parrent` (`parrent`) + ); + "); + + DB::statement(" + CREATE TABLE `lokasi` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `desk` text NOT NULL, + `nama` varchar(50) NOT NULL, + `enabled` int(11) NOT NULL DEFAULT 1, + `lat` varchar(30) DEFAULT NULL, + `lng` varchar(30) DEFAULT NULL, + `ref_point` int(9) NOT NULL, + `foto` varchar(100) DEFAULT NULL, + `id_cluster` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `ref_point` (`ref_point`) + ); + "); + + DB::statement(" + CREATE TABLE `point` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `simbol` varchar(50) DEFAULT NULL, + `tipe` int(4) DEFAULT 0, + `parrent` int(4) NOT NULL DEFAULT 1, + `enabled` int(11) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `parrent` (`parrent`) + ); + "); + + DB::statement(" + CREATE TABLE `polygon` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `simbol` varchar(50) DEFAULT NULL, + `color` varchar(25) DEFAULT NULL, + `tipe` int(4) DEFAULT 0, + `parrent` int(4) DEFAULT 1, + `enabled` int(11) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `parrent` (`parrent`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_web() + { + DB::statement(" + CREATE TABLE `artikel` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `gambar` varchar(200) DEFAULT NULL, + `isi` text NOT NULL, + `enabled` int(2) NOT NULL DEFAULT 1, + `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), + `id_kategori` int(4) NOT NULL, + `id_user` int(4) NOT NULL, + `judul` varchar(100) NOT NULL, + `headline` int(1) NOT NULL DEFAULT 0, + `gambar1` varchar(200) DEFAULT NULL, + `gambar2` varchar(200) DEFAULT NULL, + `gambar3` varchar(200) DEFAULT NULL, + `dokumen` varchar(400) DEFAULT NULL, + `link_dokumen` varchar(200) DEFAULT NULL, + `boleh_komentar` tinyint(1) NOT NULL DEFAULT 1, + `slug` varchar(200) DEFAULT NULL, + `hit` int(11) DEFAULT 0, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `captcha_codes` ( + `id` varchar(40) NOT NULL, + `namespace` varchar(32) NOT NULL, + `code` varchar(32) NOT NULL, + `code_display` varchar(32) NOT NULL, + `created` int(11) NOT NULL, + `audio_data` mediumblob DEFAULT NULL, + PRIMARY KEY (`id`,`namespace`), + KEY `created` (`created`) + ); + "); + + DB::statement(" + CREATE TABLE `gambar_gallery` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `parrent` int(4) DEFAULT 0, + `gambar` varchar(200) NOT NULL, + `nama` varchar(50) NOT NULL, + `enabled` int(2) NOT NULL DEFAULT 1, + `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), + `tipe` int(4) DEFAULT 0, + `slider` tinyint(1) DEFAULT NULL, + `urut` int(5) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `parrent` (`parrent`) + ); + "); + + DB::statement(" + CREATE TABLE `kategori` ( + `id` int(5) NOT NULL AUTO_INCREMENT, + `kategori` varchar(100) NOT NULL, + `tipe` int(4) NOT NULL DEFAULT 1, + `urut` tinyint(4) NOT NULL, + `enabled` tinyint(4) NOT NULL, + `parrent` tinyint(4) NOT NULL DEFAULT 0, + `slug` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `komentar` ( + `id` int(5) NOT NULL AUTO_INCREMENT, + `id_artikel` int(7) NOT NULL, + `owner` varchar(50) NOT NULL, + `email` varchar(50) DEFAULT NULL, + `subjek` tinytext DEFAULT NULL, + `komentar` text NOT NULL, + `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), + `status` tinyint(1) DEFAULT NULL, + `tipe` tinyint(1) DEFAULT NULL, + `no_hp` varchar(15) DEFAULT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `is_archived` tinyint(1) DEFAULT 0, + `permohonan` text DEFAULT NULL, + PRIMARY KEY (`id`) + ) + "); + + DB::statement(" + CREATE TABLE `media_sosial` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `gambar` text NOT NULL, + `link` text DEFAULT NULL, + `nama` varchar(100) NOT NULL, + `tipe` tinyint(1) DEFAULT 1, + `enabled` int(11) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("media_sosial")->insert([ + [ + "id" => 1, + "gambar" => "fb.png", + "link" => "https://www.facebook.com/groups/OpenSID/", + "nama" => "Facebook", + "tipe" => 1, + "enabled" => 1, + ], + [ + "id" => 2, + "gambar" => "twt.png", + "link" => "", + "nama" => "Twitter", + "tipe" => 1, + "enabled" => 1, + ], + [ + "id" => 4, + "gambar" => "yb.png", + "link" => "", + "nama" => "YouTube", + "tipe" => 1, + "enabled" => 1, + ], + [ + "id" => 5, + "gambar" => "ins.png", + "link" => "", + "nama" => "Instagram", + "tipe" => 1, + "enabled" => 1, + ], + [ + "id" => 6, + "gambar" => "wa.png", + "link" => "", + "nama" => "WhatsApp", + "tipe" => 1, + "enabled" => 1, + ], + [ + "id" => 7, + "gambar" => "tg.png", + "link" => null, + "nama" => "Telegram", + "tipe" => 1, + "enabled" => 2, + ], + ]); + + DB::statement(" + CREATE TABLE `menu` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `link` varchar(500) NOT NULL, + `parrent` int(11) DEFAULT 0, + `link_tipe` tinyint(1) NOT NULL DEFAULT 0, + `enabled` tinyint(1) DEFAULT 1, + `urut` int(5) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `pelapak` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pend` int(11) DEFAULT NULL, + `telepon` varchar(20) DEFAULT NULL, + `lat` varchar(20) DEFAULT NULL, + `lng` varchar(20) DEFAULT NULL, + `zoom` tinyint(4) NOT NULL DEFAULT 10, + `status` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `teks_berjalan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `teks` text DEFAULT NULL, + `urut` int(5) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) DEFAULT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `tautan` varchar(150) DEFAULT NULL, + `judul_tautan` varchar(150) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `urls` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `url` varchar(255) NOT NULL, + `alias` varchar(100) NOT NULL, + `created` datetime NOT NULL, + PRIMARY KEY (`id`), + KEY `alias` (`alias`) + ); + "); + + DB::statement(" + CREATE TABLE `widget` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `isi` text DEFAULT NULL, + `enabled` int(2) DEFAULT NULL, + `judul` varchar(100) DEFAULT NULL, + `jenis_widget` tinyint(2) NOT NULL DEFAULT 3, + `urut` int(5) DEFAULT NULL, + `form_admin` varchar(100) DEFAULT NULL, + `setting` text DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("widget")->insert([ + [ + "id" => 1, + "isi" => + '

      ', + "enabled" => 2, + "judul" => "Peta Desa", + "jenis_widget" => 3, + "urut" => 1, + "form_admin" => "", + "setting" => "", + ], + [ + "id" => 3, + "isi" => "agenda.php", + "enabled" => 1, + "judul" => "Agenda", + "jenis_widget" => 1, + "urut" => 6, + "form_admin" => "web/tab/1000", + "setting" => "", + ], + [ + "id" => 4, + "isi" => "galeri.php", + "enabled" => 1, + "judul" => "Galeri", + "jenis_widget" => 1, + "urut" => 8, + "form_admin" => "gallery", + "setting" => "", + ], + [ + "id" => 5, + "isi" => "statistik.php", + "enabled" => 1, + "judul" => "Statistik", + "jenis_widget" => 1, + "urut" => 4, + "form_admin" => "", + "setting" => "", + ], + [ + "id" => 6, + "isi" => "komentar.php", + "enabled" => 1, + "judul" => "Komentar", + "jenis_widget" => 1, + "urut" => 10, + "form_admin" => "komentar", + "setting" => "", + ], + [ + "id" => 7, + "isi" => "media_sosial.php", + "enabled" => 1, + "judul" => "Media Sosial", + "jenis_widget" => 1, + "urut" => 11, + "form_admin" => "sosmed", + "setting" => "", + ], + [ + "id" => 8, + "isi" => "peta_lokasi_kantor.php", + "enabled" => 1, + "judul" => "Peta Lokasi Kantor", + "jenis_widget" => 1, + "urut" => 13, + "form_admin" => "identitas_desa/maps/kantor", + "setting" => "", + ], + [ + "id" => 9, + "isi" => "statistik_pengunjung.php", + "enabled" => 1, + "judul" => "Statistik Pengunjung", + "jenis_widget" => 1, + "urut" => 14, + "form_admin" => "", + "setting" => "", + ], + [ + "id" => 10, + "isi" => "arsip_artikel.php", + "enabled" => 1, + "judul" => "Arsip Artikel", + "jenis_widget" => 1, + "urut" => 5, + "form_admin" => "", + "setting" => "", + ], + [ + "id" => 11, + "isi" => "aparatur_desa.php", + "enabled" => 1, + "judul" => "Aparatur Desa", + "jenis_widget" => 1, + "urut" => 9, + "form_admin" => "web_widget/admin/aparatur_desa", + "setting" => '{\"overlay\":\"1\"}', + ], + [ + "id" => 12, + "isi" => "sinergi_program.php", + "enabled" => 1, + "judul" => "Sinergi Program", + "jenis_widget" => 1, + "urut" => 7, + "form_admin" => "web_widget/admin/sinergi_program", + "setting" => "[]", + ], + [ + "id" => 13, + "isi" => "menu_kategori.php", + "enabled" => 1, + "judul" => "Menu Kategori", + "jenis_widget" => 1, + "urut" => 2, + "form_admin" => "", + "setting" => "", + ], + [ + "id" => 14, + "isi" => "peta_wilayah_desa.php", + "enabled" => 1, + "judul" => "Peta Wilayah Desa", + "jenis_widget" => 1, + "urut" => 12, + "form_admin" => "identitas_desa/maps/wilayah", + "setting" => "", + ], + [ + "id" => 15, + "isi" => "keuangan.php", + "enabled" => 1, + "judul" => "Keuangan", + "jenis_widget" => 1, + "urut" => 15, + "form_admin" => "keuangan/impor_data", + "setting" => "", + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_pertanahan() + { + DB::statement(" + CREATE TABLE `cdesa` ( + `id` int(5) unsigned NOT NULL AUTO_INCREMENT, + `nomor` varchar(20) NOT NULL, + `nama_kepemilikan` varchar(100) NOT NULL, + `jenis_pemilik` tinyint(1) NOT NULL DEFAULT 0, + `nama_pemilik_luar` varchar(100) DEFAULT NULL, + `alamat_pemilik_luar` varchar(200) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `nomor` (`nomor`) + ); + "); + + DB::statement(" + CREATE TABLE `persil` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `nomor` varchar(20) NOT NULL, + `nomor_urut_bidang` smallint(6) DEFAULT 1, + `kelas` int(5) NOT NULL, + `luas_persil` decimal(7,0) DEFAULT NULL, + `id_wilayah` int(11) DEFAULT NULL, + `lokasi` text DEFAULT NULL, + `path` text DEFAULT NULL, + `cdesa_awal` int(11) unsigned DEFAULT NULL, + `id_peta` int(60) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `nomor_nomor_urut_bidang` (`nomor`,`nomor_urut_bidang`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_persil_kelas` ( + `id` int(5) unsigned NOT NULL AUTO_INCREMENT, + `tipe` varchar(20) NOT NULL, + `kode` varchar(20) NOT NULL, + `ndesc` text DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_persil_kelas")->insert([ + [ + "id" => 1, + "tipe" => "BASAH", + "kode" => "S-I", + "ndesc" => "Persawahan Dekat dengan Pemukiman", + ], + [ + "id" => 2, + "tipe" => "BASAH", + "kode" => "S-II", + "ndesc" => "Persawahan Agak Dekat dengan Pemukiman", + ], + [ + "id" => 3, + "tipe" => "BASAH", + "kode" => "S-III", + "ndesc" => "Persawahan Jauh dengan Pemukiman", + ], + [ + "id" => 4, + "tipe" => "BASAH", + "kode" => "S-IV", + "ndesc" => "Persawahan Sangat Jauh dengan Pemukiman", + ], + [ + "id" => 5, + "tipe" => "KERING", + "kode" => "D-I", + "ndesc" => "Lahan Kering Dekat dengan Pemukiman", + ], + [ + "id" => 6, + "tipe" => "KERING", + "kode" => "D-II", + "ndesc" => "Lahan Kering Agak Dekat dengan Pemukiman", + ], + [ + "id" => 7, + "tipe" => "KERING", + "kode" => "D-III", + "ndesc" => "Lahan Kering Jauh dengan Pemukiman", + ], + [ + "id" => 8, + "tipe" => "KERING", + "kode" => "D-IV", + "ndesc" => "Lahan Kering Sanga Jauh dengan Pemukiman", + ], + ]); + + DB::statement(" + CREATE TABLE `ref_persil_mutasi` ( + `id` tinyint(5) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(20) NOT NULL, + `ndesc` text DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_persil_mutasi")->insert([ + [ + "id" => 1, + "nama" => "Jual Beli", + "ndesc" => "Didapat dari proses Jual Beli", + ], + [ + "id" => 2, + "nama" => "Hibah", + "ndesc" => "Didapat dari proses Hibah", + ], + [ + "id" => 3, + "nama" => "Waris", + "ndesc" => "Didapat dari proses Waris", + ], + ]); + + DB::statement(" + CREATE TABLE `tanah_desa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_penduduk` int(10) NOT NULL, + `nik` decimal(16,0) DEFAULT NULL, + `jenis_pemilik` text DEFAULT NULL, + `nama_pemilik_asal` varchar(200) NOT NULL, + `luas` int(10) NOT NULL, + `hak_milik` int(11) DEFAULT NULL, + `hak_guna_bangunan` int(11) DEFAULT NULL, + `hak_pakai` int(11) DEFAULT NULL, + `hak_guna_usaha` int(11) DEFAULT NULL, + `hak_pengelolaan` int(11) DEFAULT NULL, + `hak_milik_adat` int(11) DEFAULT NULL, + `hak_verponding` int(11) DEFAULT NULL, + `tanah_negara` int(11) DEFAULT NULL, + `perumahan` int(11) DEFAULT NULL, + `perdagangan_jasa` int(11) DEFAULT NULL, + `perkantoran` int(11) DEFAULT NULL, + `industri` int(11) DEFAULT NULL, + `fasilitas_umum` int(11) DEFAULT NULL, + `sawah` int(11) DEFAULT NULL, + `tegalan` int(11) DEFAULT NULL, + `perkebunan` int(11) DEFAULT NULL, + `peternakan_perikanan` int(11) DEFAULT NULL, + `hutan_belukar` int(11) DEFAULT NULL, + `hutan_lebat_lindung` int(11) DEFAULT NULL, + `tanah_kosong` int(11) DEFAULT NULL, + `lain` int(11) DEFAULT NULL, + `mutasi` text NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(10) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(10) NOT NULL, + `visible` tinyint(3) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `id_penduduk` (`id_penduduk`) + ); + "); + + DB::statement(" + CREATE TABLE `tanah_kas_desa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_pemilik_asal` varchar(200) NOT NULL, + `letter_c` text NOT NULL, + `kelas` text NOT NULL, + `luas` int(10) NOT NULL, + `asli_milik_desa` int(11) DEFAULT NULL, + `pemerintah` int(11) DEFAULT NULL, + `provinsi` int(11) DEFAULT NULL, + `kabupaten_kota` int(11) DEFAULT NULL, + `lain_lain` int(11) DEFAULT NULL, + `sawah` int(11) DEFAULT NULL, + `tegal` int(11) DEFAULT NULL, + `kebun` int(11) DEFAULT NULL, + `tambak_kolam` int(11) DEFAULT NULL, + `tanah_kering_darat` int(11) DEFAULT NULL, + `ada_patok` int(11) DEFAULT NULL, + `tidak_ada_patok` int(11) DEFAULT NULL, + `ada_papan_nama` int(11) DEFAULT NULL, + `tidak_ada_papan_nama` int(11) DEFAULT NULL, + `tanggal_perolehan` date DEFAULT NULL, + `lokasi` text NOT NULL, + `peruntukan` text NOT NULL, + `mutasi` text NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(10) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(10) NOT NULL, + `visible` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_desa() + { + DB::statement(" + CREATE TABLE `config` ( + `id` int(5) NOT NULL AUTO_INCREMENT, + `nama_desa` varchar(100) NOT NULL, + `kode_desa` varchar(100) NOT NULL, + `kode_pos` int(5) DEFAULT NULL, + `nama_kecamatan` varchar(100) NOT NULL, + `kode_kecamatan` varchar(100) NOT NULL, + `nama_kepala_camat` varchar(100) NOT NULL, + `nip_kepala_camat` varchar(100) NOT NULL, + `nama_kabupaten` varchar(100) NOT NULL, + `kode_kabupaten` varchar(100) NOT NULL, + `nama_propinsi` varchar(100) NOT NULL, + `kode_propinsi` varchar(100) NOT NULL, + `logo` varchar(100) DEFAULT NULL, + `lat` varchar(20) DEFAULT NULL, + `lng` varchar(20) DEFAULT NULL, + `zoom` tinyint(4) DEFAULT NULL, + `map_tipe` varchar(20) DEFAULT NULL, + `path` text DEFAULT NULL, + `alamat_kantor` varchar(200) DEFAULT NULL, + `email_desa` varchar(50) DEFAULT NULL, + `telepon` varchar(50) DEFAULT NULL, + `website` varchar(100) DEFAULT NULL, + `kantor_desa` varchar(100) DEFAULT NULL, + `warna` varchar(25) DEFAULT NULL, + `pamong_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_wil_clusterdesa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `rt` varchar(10) NOT NULL DEFAULT '0', + `rw` varchar(10) NOT NULL DEFAULT '0', + `dusun` varchar(50) NOT NULL DEFAULT '0', + `id_kepala` int(11) DEFAULT NULL, + `lat` varchar(20) DEFAULT NULL, + `lng` varchar(20) DEFAULT NULL, + `zoom` int(11) DEFAULT NULL, + `path` text DEFAULT NULL, + `map_tipe` varchar(20) DEFAULT NULL, + `warna` varchar(25) DEFAULT NULL, + `urut` int(11) DEFAULT NULL, + `urut_cetak` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `rt` (`rt`,`rw`,`dusun`), + KEY `id_kepala` (`id_kepala`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_covid19() + { + DB::statement(" + CREATE TABLE `covid19_vaksin` ( + `id_penduduk` varchar(100) NOT NULL, + `vaksin_1` int(1) DEFAULT NULL, + `tgl_vaksin_1` date DEFAULT NULL, + `dokumen_vaksin_1` varchar(255) DEFAULT NULL, + `jenis_vaksin_1` varchar(100) DEFAULT NULL, + `vaksin_2` int(1) DEFAULT NULL, + `tgl_vaksin_2` date DEFAULT NULL, + `dokumen_vaksin_2` varchar(255) DEFAULT NULL, + `jenis_vaksin_2` varchar(100) DEFAULT NULL, + `vaksin_3` int(1) DEFAULT NULL, + `tgl_vaksin_3` date DEFAULT NULL, + `dokumen_vaksin_3` varchar(255) DEFAULT NULL, + `jenis_vaksin_3` varchar(100) DEFAULT NULL, + `tunda` int(1) DEFAULT NULL, + `keterangan` tinytext DEFAULT NULL, + `surat_dokter` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id_penduduk`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_status_covid` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_status_covid")->insert([ + ["id" => 1, "nama" => "Kasus Suspek"], + ["id" => 2, "nama" => "Kasus Probable"], + ["id" => 3, "nama" => "Kasus Konfirmasi"], + ["id" => 4, "nama" => "Kontak Erat"], + ["id" => 5, "nama" => "Pelaku Perjalanan"], + ["id" => 6, "nama" => "Discarded"], + ["id" => 7, "nama" => "Selesai Isolasi"], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + return; + } + + private function tabel_penduduk() + { + DB::statement(" + CREATE TABLE `kelompok` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_master` int(11) NOT NULL, + `id_ketua` int(11) NOT NULL, + `nama` varchar(50) NOT NULL, + `slug` varchar(255) DEFAULT NULL, + `keterangan` varchar(300) DEFAULT NULL, + `kode` varchar(16) NOT NULL, + `tipe` varchar(100) DEFAULT 'kelompok', + PRIMARY KEY (`id`), + UNIQUE KEY `kode` (`kode`), + UNIQUE KEY `slug` (`slug`), + KEY `id_ketua` (`id_ketua`), + KEY `id_master` (`id_master`) + ); + "); + + DB::statement(" + CREATE TABLE `kelompok_master` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `kelompok` varchar(50) NOT NULL, + `deskripsi` varchar(400) NOT NULL, + `tipe` varchar(100) DEFAULT 'kelompok', + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `log_hapus_penduduk` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pend` int(11) NOT NULL, + `nik` decimal(16,0) NOT NULL, + `foto` varchar(100) DEFAULT NULL, + `deleted_by` varchar(100) DEFAULT NULL, + `deleted_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `log_perubahan_penduduk` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pend` int(11) NOT NULL, + `id_cluster` varchar(200) NOT NULL, + `tanggal` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_penduduk_bahasa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `inisial` varchar(10) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_penduduk_bahasa")->insert([ + ["id" => 1, "nama" => "Latin", "inisial" => "L"], + ["id" => 2, "nama" => "Daerah", "inisial" => "D"], + ["id" => 3, "nama" => "Arab", "inisial" => "A"], + ["id" => 4, "nama" => "Arab dan Latin", "inisial" => "AL"], + ["id" => 5, "nama" => "Arab dan Daerah", "inisial" => "AD"], + ["id" => 6, "nama" => "Arab, Latin dan Daerah", "inisial" => "ALD"], + ]); + + DB::statement(" + CREATE TABLE `ref_penduduk_bidang` ( + `id` int(12) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_penduduk_bidang")->insert([ + ["id" => 1, "nama" => "Service Komputer"], + ["id" => 2, "nama" => "Operator Buldoser"], + ["id" => 3, "nama" => "Operator Komputer"], + ["id" => 4, "nama" => "Operator Genset"], + ["id" => 5, "nama" => "Service HP"], + ["id" => 6, "nama" => "Rias Pengantin"], + ["id" => 7, "nama" => "Design Grafis"], + ["id" => 8, "nama" => "Menjahit"], + ["id" => 9, "nama" => "Menulis"], + ["id" => 10, "nama" => "Reporter"], + ["id" => 11, "nama" => "Sosial Media Manajer"], + ["id" => 12, "nama" => "Manajemen Trainee"], + ["id" => 13, "nama" => "Kasir"], + ["id" => 14, "nama" => "HRD"], + ["id" => 15, "nama" => "Guru"], + ["id" => 16, "nama" => "Digital Marketing"], + ["id" => 17, "nama" => "Customer Services"], + ["id" => 18, "nama" => "Welder"], + ["id" => 19, "nama" => "Mekanik Alat Berat"], + ["id" => 20, "nama" => "Teknisi Listrik"], + ["id" => 21, "nama" => "Internet Marketing"], + ]); + + DB::statement(" + CREATE TABLE `ref_penduduk_hamil` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_penduduk_hamil")->insert([ + ["id" => 1, "nama" => "Hamil"], + ["id" => 2, "nama" => "Tidak Hamil"], + ]); + + DB::statement(" + CREATE TABLE `ref_penduduk_kursus` ( + `id` int(12) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_penduduk_kursus")->insert([ + ["id" => 1, "nama" => "Kursus Komputer"], + ["id" => 2, "nama" => "Kursus Menjahit"], + ["id" => 3, "nama" => "Pelatihan Kelistrikan"], + ["id" => 4, "nama" => "Kursus Mekanik Motor"], + ["id" => 5, "nama" => "Pelatihan Security"], + ["id" => 6, "nama" => "Kursus Otomotif"], + ["id" => 7, "nama" => "Kursus Bahasa Inggris"], + ["id" => 8, "nama" => "Kursus Tata Kecantikan Kulit"], + ["id" => 9, "nama" => "Kursus Megemudi"], + ["id" => 10, "nama" => "Kursus Tata Boga"], + ["id" => 11, "nama" => "Kursus Meubeler"], + ["id" => 12, "nama" => "Kursus Las"], + ["id" => 13, "nama" => "Kursus Sablon"], + ["id" => 14, "nama" => "Kursus Penerbangan"], + ["id" => 15, "nama" => "Kursus Desain Interior"], + ["id" => 16, "nama" => "Kursus Teknisi HP"], + ["id" => 17, "nama" => "Kursus Garment"], + ["id" => 18, "nama" => "Kursus Akupuntur"], + ["id" => 19, "nama" => "Kursus Senam"], + ["id" => 20, "nama" => "Kursus Pendidik PAUD"], + ["id" => 21, "nama" => "Kursus Baby Sitter"], + ["id" => 22, "nama" => "Kursus Desain Grafis"], + ["id" => 23, "nama" => "Kursus Bahasa Indonesia"], + ["id" => 24, "nama" => "Kursus Photografi"], + ["id" => 25, "nama" => "Kursus Expor Impor"], + ["id" => 26, "nama" => "Kursus Jurnalistik"], + ["id" => 27, "nama" => "Kursus Bahasa Arab"], + ["id" => 28, "nama" => "Kursus Bahasa Jepang"], + ["id" => 29, "nama" => "Kursus Anak Buah Kapal"], + ["id" => 30, "nama" => "Kursus Refleksi"], + ["id" => 31, "nama" => "Kursus Akupuntur"], + ["id" => 32, "nama" => "Kursus Perhotelan"], + ["id" => 33, "nama" => "Kursus Tata Rias"], + ["id" => 34, "nama" => "Kursus Administrasi Perkantoran"], + ["id" => 35, "nama" => "Kursus Broadcasting"], + ["id" => 36, "nama" => "Kursus Kerajinan Tangan"], + ["id" => 37, "nama" => "Kursus Sosial Media Marketing"], + ["id" => 38, "nama" => "Kursus Internet Marketing"], + ["id" => 39, "nama" => "Kursus Sekretaris"], + ["id" => 40, "nama" => "Kursus Perpajakan"], + ["id" => 41, "nama" => "Kursus Publik Speaking"], + ["id" => 42, "nama" => "Kursus Publik Relation"], + ["id" => 43, "nama" => "Kursus Batik"], + ["id" => 44, "nama" => "Kursus Pengobatan Tradisional"], + ]); + + DB::statement(" + CREATE TABLE `ref_penduduk_suku` ( + `id` int(65) unsigned NOT NULL AUTO_INCREMENT, + `suku` varchar(100) NOT NULL, + `deskripsi` text NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_penduduk_suku")->insert([ + ["id" => 1, "suku" => "Aceh", "deskripsi" => "Aceh"], + ["id" => 2, "suku" => "Alas", "deskripsi" => "Aceh"], + ["id" => 3, "suku" => "Alor", "deskripsi" => "NTT"], + ["id" => 4, "suku" => "Ambon", "deskripsi" => "Ambon"], + ["id" => 5, "suku" => "Ampana", "deskripsi" => "Sulawesi Tengah"], + ["id" => 6, "suku" => "Anak Dalam", "deskripsi" => "Jambi"], + ["id" => 7, "suku" => "Aneuk Jamee", "deskripsi" => "Aceh"], + [ + "id" => 8, + "suku" => "Arab: Orang Hadhrami", + "deskripsi" => "Arab: Orang Hadhrami", + ], + ["id" => 9, "suku" => "Aru", "deskripsi" => "Maluku"], + ["id" => 10, "suku" => "Asmat", "deskripsi" => "Papua"], + [ + "id" => 11, + "suku" => "Bare’e", + "deskripsi" => + "Bare’e di Kabupaten Tojo Una-Una Tojo dan Tojo Barat", + ], + ["id" => 12, "suku" => "Banten", "deskripsi" => "Banten di Banten"], + [ + "id" => 13, + "suku" => "Besemah", + "deskripsi" => "Besemah di Sumatera Selatan", + ], + [ + "id" => 14, + "suku" => "Bali", + "deskripsi" => + "Bali di Bali terdiri dari: Suku Bali Majapahit di sebagian besar Pulau Bali; Suku Bali Aga di Karangasem dan Kintamani", + ], + [ + "id" => 15, + "suku" => "Balantak", + "deskripsi" => "Balantak di Sulawesi Tengah", + ], + [ + "id" => 16, + "suku" => "Banggai", + "deskripsi" => + "Banggai di Sulawesi Tengah (Kabupaten Banggai Kepulauan)", + ], + ["id" => 17, "suku" => "Baduy", "deskripsi" => "Baduy di Banten"], + [ + "id" => 18, + "suku" => "Bajau", + "deskripsi" => "Bajau di Kalimantan Timur", + ], + [ + "id" => 19, + "suku" => "Banjar", + "deskripsi" => "Banjar di Kalimantan Selatan", + ], + ["id" => 20, "suku" => "Batak", "deskripsi" => "Sumatera Utara"], + [ + "id" => 21, + "suku" => "Batak Karo", + "deskripsi" => "Sumatera Utara", + ], + [ + "id" => 22, + "suku" => "Mandailing", + "deskripsi" => "Sumatera Utara", + ], + ["id" => 23, "suku" => "Angkola", "deskripsi" => "Sumatera Utara"], + ["id" => 24, "suku" => "Toba", "deskripsi" => "Sumatera Utara"], + ["id" => 25, "suku" => "Pakpak", "deskripsi" => "Sumatera Utara"], + [ + "id" => 26, + "suku" => "Simalungun", + "deskripsi" => "Sumatera Utara", + ], + ["id" => 27, "suku" => "Batin", "deskripsi" => "Batin di Jambi"], + [ + "id" => 28, + "suku" => "Bawean", + "deskripsi" => "Bawean di Jawa Timur (Gresik)", + ], + [ + "id" => 29, + "suku" => "Bentong", + "deskripsi" => "Bentong di Sulawesi Selatan", + ], + [ + "id" => 30, + "suku" => "Berau", + "deskripsi" => "Berau di Kalimantan Timur (kabupaten Berau)", + ], + [ + "id" => 31, + "suku" => "Betawi", + "deskripsi" => "Betawi di Jakarta", + ], + [ + "id" => 32, + "suku" => "Bima", + "deskripsi" => "Bima NTB (kota Bima)", + ], + [ + "id" => 33, + "suku" => "Boti", + "deskripsi" => "Boti di kabupaten Timor Tengah Selatan", + ], + [ + "id" => 34, + "suku" => "Bolang Mongondow", + "deskripsi" => + "Bolang Mongondow di Sulawesi Utara (Kabupaten Bolaang Mongondow)", + ], + [ + "id" => 35, + "suku" => "Bugis", + "deskripsi" => + "Bugis di Sulawesi Selatan: Orang Bugis Pagatan di Kalimantan Selatan, Kusan Hilir, Tanah Bumbu", + ], + [ + "id" => 36, + "suku" => "Bungku", + "deskripsi" => "Bungku di Sulawesi Tengah (Kabupaten Morowali)", + ], + [ + "id" => 37, + "suku" => "Buru", + "deskripsi" => "Buru di Maluku (Kabupaten Buru)", + ], + [ + "id" => 38, + "suku" => "Buol", + "deskripsi" => "Buol di Sulawesi Tengah (Kabupaten Buol)", + ], + [ + "id" => 39, + "suku" => "Bulungan ", + "deskripsi" => + "Bulungan di Kalimantan Timur (Kabupaten Bulungan)", + ], + [ + "id" => 40, + "suku" => "Buton", + "deskripsi" => + "Buton di Sulawesi Tenggara (Kabupaten Buton dan Kota Bau-Bau)", + ], + [ + "id" => 41, + "suku" => "Bonai", + "deskripsi" => "Bonai di Riau (Kabupaten Rokan Hilir)", + ], + ["id" => 42, "suku" => "Cham ", "deskripsi" => "Cham di Aceh"], + [ + "id" => 43, + "suku" => "Cirebon ", + "deskripsi" => "Cirebon di Jawa Barat (Kota Cirebon)", + ], + ["id" => 44, "suku" => "Damal", "deskripsi" => "Damal di Mimika"], + [ + "id" => 45, + "suku" => "Dampeles", + "deskripsi" => "Dampeles di Sulawesi Tengah", + ], + [ + "id" => 46, + "suku" => "Dani ", + "deskripsi" => "Dani di Papua (Lembah Baliem)", + ], + [ + "id" => 47, + "suku" => "Dairi", + "deskripsi" => "Dairi di Sumatera Utara", + ], + [ + "id" => 48, + "suku" => "Daya ", + "deskripsi" => "Daya di Sumatera Selatan", + ], + [ + "id" => 49, + "suku" => "Dayak", + "deskripsi" => + "Dayak terdiri dari: Suku Dayak Ahe di Kalimantan Barat; Suku Dayak Bajare di Kalimantan Barat; Suku Dayak Damea di Kalimantan Barat; Suku Dayak Banyadu di Kalimantan Barat; Suku Bakati di Kalimantan Barat; Suku Punan di Kalimantan Tengah; Suku Kanayatn di Kalimantan Barat; Suku Dayak Krio di Kalimantan Barat (Ketapang], Suku Dayak Sungai Laur di Kalimantan Barat (Ketapang], Suku Dayak Simpangh di Kalimantan Barat (Ketapang], Suku Iban di Kalimantan Barat; Suku Mualang di Kalimantan Barat (Sekada", + ], + [ + "id" => 50, + "suku" => "Dompu", + "deskripsi" => "Dompu NTB (Kabupaten Dompu)", + ], + ["id" => 51, "suku" => "Donggo", "deskripsi" => "Donggo, Bima"], + [ + "id" => 52, + "suku" => "Dongga", + "deskripsi" => "Donggala di Sulawesi Tengah", + ], + [ + "id" => 53, + "suku" => "Dondo ", + "deskripsi" => "Dondo di Sulawesi Tengah (Kabupaten Toli-Toli)", + ], + [ + "id" => 54, + "suku" => "Duri", + "deskripsi" => + "Duri Terletak di bagian utara Kabupaten Enrekang berbatasan dengan Kabupaten Tana Toraja, meliputi tiga kecamatan induk Anggeraja, Baraka, dan Alla di Sulawesi Selatan", + ], + [ + "id" => 55, + "suku" => "Eropa ", + "deskripsi" => + "Eropa (orang Indo, peranakan Eropa-Indonesia, atau etnik Mestizo)", + ], + [ + "id" => 56, + "suku" => "Flores", + "deskripsi" => "Flores di NTT (Flores Timur)", + ], + [ + "id" => 57, + "suku" => "Lamaholot", + "deskripsi" => + "Lamaholot, Flores Timur, terdiri dari: Suku Wandan, di Solor Timur, Flores Timur; Suku Kaliha, di Solor Timur, Flores Timur; Suku Serang Gorang, di Solor Timur, Flores Timur; Suku Lamarobak, di Solor Timur, Flores Timur; Suku Atanuhan, di Solor Timur, Flores Timur; Suku Wotan, di Solor Timur, Flores Timur; Suku Kapitan Belen, di Solor Timur, Flores Timur", + ], + [ + "id" => 58, + "suku" => "Gayo", + "deskripsi" => + "Gayo di Aceh (Gayo Lues Aceh Tengah Bener Meriah Aceh Tenggara Aceh Timur Aceh Tamiang)", + ], + [ + "id" => 59, + "suku" => "Gorontalo", + "deskripsi" => "Gorontalo di Gorontalo (Kota Gorontalo)", + ], + [ + "id" => 60, + "suku" => "Gumai ", + "deskripsi" => "Gumai di Sumatera Selatan (Lahat)", + ], + [ + "id" => 61, + "suku" => "India", + "deskripsi" => + "India, terdiri dari: Suku Tamil di Aceh, Sumatera Utara, Sumatera Barat, dan DKI Jakarta; Suku Punjab di Sumatera Utara, DKI Jakarta, dan Jawa Timur; Suku Bengali di DKI Jakarta; Suku Gujarati di DKI Jakarta dan Jawa Tengah; Orang Sindhi di DKI Jakarta dan Jawa Timur; Orang Sikh di Sumatera Utara, DKI Jakarta, dan Jawa Timur", + ], + [ + "id" => 62, + "suku" => "Jawa", + "deskripsi" => "Jawa di Jawa Tengah, Jawa Timur, DI Yogyakarta", + ], + [ + "id" => 63, + "suku" => "Tengger", + "deskripsi" => + "Tengger di Jawa Timur (Probolinggo, Pasuruan, dan Malang)", + ], + [ + "id" => 64, + "suku" => "Osing ", + "deskripsi" => "Osing di Jawa Timur (Banyuwangi)", + ], + [ + "id" => 65, + "suku" => "Samin ", + "deskripsi" => "Samin di Jawa Tengah (Purwodadi)", + ], + [ + "id" => 66, + "suku" => "Bawean", + "deskripsi" => "Bawean di Jawa Timur (Pulau Bawean)", + ], + [ + "id" => 67, + "suku" => "Jambi ", + "deskripsi" => "Jambi di Jambi (Kota Jambi)", + ], + [ + "id" => 68, + "suku" => "Jepang", + "deskripsi" => "Jepang di DKI Jakarta, Jawa Timur, dan Bali", + ], + [ + "id" => 69, + "suku" => "Kei", + "deskripsi" => + "Kei di Maluku Tenggara (Kabupaten Maluku Tenggara dan Kota Tual)", + ], + [ + "id" => 70, + "suku" => "Kaili ", + "deskripsi" => "Kaili di Sulawesi Tengah (Kota Palu)", + ], + ["id" => 71, "suku" => "Kampar", "deskripsi" => "Kampar"], + [ + "id" => 72, + "suku" => "Kaur ", + "deskripsi" => "Kaur di Bengkulu (Kabupaten Kaur)", + ], + [ + "id" => 73, + "suku" => "Kayu Agung", + "deskripsi" => "Kayu Agung di Sumatera Selatan", + ], + [ + "id" => 74, + "suku" => "Kerinci", + "deskripsi" => "Kerinci di Jambi (Kabupaten Kerinci)", + ], + [ + "id" => 75, + "suku" => "Komering ", + "deskripsi" => + "Komering di Sumatera Selatan (Kabupaten Ogan Komering Ilir, Baturaja)", + ], + [ + "id" => 76, + "suku" => "Konjo Pegunungan", + "deskripsi" => + "Konjo Pegunungan, Kabupaten Gowa, Sulawesi Selatan", + ], + [ + "id" => 77, + "suku" => "Konjo Pesisir", + "deskripsi" => + "Konjo Pesisir, Kabupaten Bulukumba, Sulawesi Selatan", + ], + [ + "id" => 78, + "suku" => "Koto", + "deskripsi" => "Koto di Sumatera Barat", + ], + [ + "id" => 79, + "suku" => "Kubu", + "deskripsi" => "Kubu di Jambi dan Sumatera Selatan", + ], + [ + "id" => 80, + "suku" => "Kulawi", + "deskripsi" => "Kulawi di Sulawesi Tengah", + ], + [ + "id" => 81, + "suku" => "Kutai ", + "deskripsi" => "Kutai di Kalimantan Timur (Kutai Kartanegara)", + ], + [ + "id" => 82, + "suku" => "Kluet ", + "deskripsi" => "Kluet di Aceh (Aceh Selatan)", + ], + [ + "id" => 83, + "suku" => "Korea ", + "deskripsi" => "Korea di DKI Jakarta", + ], + ["id" => 84, "suku" => "Krui", "deskripsi" => "Krui di Lampung"], + [ + "id" => 85, + "suku" => "Laut,", + "deskripsi" => "Laut, Kepulauan Riau", + ], + [ + "id" => 86, + "suku" => "Lampung", + "deskripsi" => + "Lampung, terdiri dari: Suku Sungkai di Lampung; Suku Abung di Lampung; Suku Way Kanan di Lampung, Sumatera Selatan dan Bengkulu; Suku Pubian di Lampung; Suku Tulang Bawang di Lampung; Suku Melinting di Lampung; Suku Peminggir Teluk di Lampung; Suku Ranau di Lampung, Sumatera Selatan dan Sumatera Utara; Suku Komering di Sumatera Selatan; Suku Cikoneng di Banten; Suku Merpas di Bengkulu; Suku Belalau di Lampung; Suku Smoung di Lampung; Suku Semaka di Lampung", + ], + [ + "id" => 87, + "suku" => "Lematang ", + "deskripsi" => "Lematang di Sumatera Selatan", + ], + [ + "id" => 88, + "suku" => "Lembak", + "deskripsi" => "Lembak, Kabupaten Rejang Lebong, Bengkulu", + ], + [ + "id" => 89, + "suku" => "Lintang", + "deskripsi" => "Lintang, Sumatera Selatan", + ], + [ + "id" => 90, + "suku" => "Lom", + "deskripsi" => "Lom, Bangka Belitung", + ], + [ + "id" => 91, + "suku" => "Lore", + "deskripsi" => "Lore, Sulawesi Tengah", + ], + [ + "id" => 92, + "suku" => "Lubu", + "deskripsi" => + "Lubu, daerah perbatasan antara Provinsi Sumatera Utara dan Provinsi Sumatera Barat", + ], + [ + "id" => 93, + "suku" => "Moronene", + "deskripsi" => "Moronene di Sulawesi Tenggara.", + ], + [ + "id" => 94, + "suku" => "Madura", + "deskripsi" => + "Madura di Jawa Timur (Pulau Madura, Kangean, wilayah Tapal Kuda)", + ], + [ + "id" => 95, + "suku" => "Makassar", + "deskripsi" => + "Makassar di Sulawesi Selatan: Kabupaten Gowa, Kabupaten Takalar, Kabupaten Jeneponto, Kabupaten Bantaeng, Kabupaten Bulukumba (sebagian), Kabupaten Sinjai (bagian perbatasan Kab Gowa), Kabupaten Maros (sebagian), Kabupaten Pangkep (sebagian), Kota Makassar", + ], + [ + "id" => 96, + "suku" => "Mamasa", + "deskripsi" => + "Mamasa (Toraja Barat) di Sulawesi Barat: Kabupaten Mamasa", + ], + [ + "id" => 97, + "suku" => "Manda", + "deskripsi" => "Mandar Sulawesi Barat: Polewali Mandar", + ], + [ + "id" => 98, + "suku" => "Melayu", + "deskripsi" => + "Melayu, terdiri dari Suku Melayu Tamiang di Aceh (Aceh Tamiang], Suku Melayu Riau di Riau dan Kepulauan Riau; Suku Melayu Deli di Sumatera Utara; Suku Melayu Jambi di Jambi; Suku Melayu Bangka di Pulau Bangka; Suku Melayu Belitung di Pulau Belitung; Suku Melayu Sambas di Kalimantan Barat", + ], + [ + "id" => 99, + "suku" => "Mentawai", + "deskripsi" => + "Mentawai di Sumatera Barat (Kabupaten Kepulauan Mentawai)", + ], + [ + "id" => 100, + "suku" => "Minahasa", + "deskripsi" => + "Minahasa di Sulawesi Utara (Kabupaten Minahasa), terdiri 9 subetnik : Suku Babontehu; Suku Bantik; Suku Pasan Ratahan", + ], + [ + "id" => 101, + "suku" => "Ponosakan", + "deskripsi" => + "Ponosakan; Suku Tonsea; Suku Tontemboan; Suku Toulour; Suku Tonsawang; Suku Tombulu", + ], + [ + "id" => 102, + "suku" => "Minangkabau", + "deskripsi" => "Minangkabau, Sumatera Barat", + ], + [ + "id" => 103, + "suku" => "Mongondow", + "deskripsi" => "Mongondow, Sulawesi Utara", + ], + [ + "id" => 104, + "suku" => "Mori", + "deskripsi" => "Mori, Kabupaten Morowali, Sulawesi Tengah", + ], + [ + "id" => 105, + "suku" => "Muko-Muko", + "deskripsi" => "Muko-Muko di Bengkulu (Kabupaten Mukomuko)", + ], + [ + "id" => 106, + "suku" => "Muna", + "deskripsi" => "Muna di Sulawesi Tenggara (Kabupaten Muna)", + ], + [ + "id" => 107, + "suku" => "Muyu", + "deskripsi" => "Muyu di Kabupaten Boven Digoel, Papua", + ], + [ + "id" => 108, + "suku" => "Mekongga", + "deskripsi" => + "Mekongga di Sulawesi Tenggara (Kabupaten Kolaka dan Kabupaten Kolaka Utara)", + ], + [ + "id" => 109, + "suku" => "Moro", + "deskripsi" => "Moro di Kalimantan Barat dan Kalimantan Utara", + ], + [ + "id" => 110, + "suku" => "Nias", + "deskripsi" => + "Nias di Sumatera Utara (Kabupaten Nias, Nias Selatan dan Nias Utara dari dua keturunan Jepang dan Vietnam)", + ], + [ + "id" => 111, + "suku" => "Ngada ", + "deskripsi" => "Ngada di NTT: Kabupaten Ngada", + ], + [ + "id" => 112, + "suku" => "Osing", + "deskripsi" => "Osing di Banyuwangi Jawa Timur", + ], + [ + "id" => 113, + "suku" => "Ogan", + "deskripsi" => "Ogan di Sumatera Selatan", + ], + [ + "id" => 114, + "suku" => "Ocu", + "deskripsi" => "Ocu di Kabupaten Kampar, Riau", + ], + [ + "id" => 115, + "suku" => "Padoe", + "deskripsi" => "Padoe di Sulawesi Tengah dan Sulawesi Selatan", + ], + [ + "id" => 116, + "suku" => "Papua", + "deskripsi" => + "Papua / Irian, terdiri dari: Suku Asmat di Kabupaten Asmat; Suku Biak di Kabupaten Biak Numfor; Suku Dani, Lembah Baliem, Papua; Suku Ekagi, daerah Paniai, Abepura, Papua; Suku Amungme di Mimika; Suku Bauzi, Mamberamo hilir, Papua utara; Suku Arfak di Manokwari; Suku Kamoro di Mimika", + ], + [ + "id" => 117, + "suku" => "Palembang", + "deskripsi" => "Palembang di Sumatera Selatan (Kota Palembang)", + ], + [ + "id" => 118, + "suku" => "Pamona", + "deskripsi" => + "Pamona di Sulawesi Tengah (Kabupaten Poso) dan di Sulawesi Selatan", + ], + [ + "id" => 119, + "suku" => "Pesisi", + "deskripsi" => "Pesisi di Sumatera Utara (Tapanuli Tengah)", + ], + [ + "id" => 120, + "suku" => "Pasir", + "deskripsi" => "Pasir di Kalimantan Timur (Kabupaten Pasir)", + ], + [ + "id" => 121, + "suku" => "Pubian", + "deskripsi" => "Pubian di Lampung", + ], + [ + "id" => 122, + "suku" => "Pattae", + "deskripsi" => "Pattae di Polewali Mandar", + ], + [ + "id" => 123, + "suku" => "Pakistani", + "deskripsi" => + "Pakistani di Sumatera Utara, DKI Jakarta, dan Jawa Tengah", + ], + [ + "id" => 124, + "suku" => "Peranakan", + "deskripsi" => + "Peranakan (Tionghoa-Peranakan atau Baba Nyonya)", + ], + [ + "id" => 125, + "suku" => "Rawa", + "deskripsi" => "Rawa, Rokan Hilir, Riau", + ], + [ + "id" => 126, + "suku" => "Rejang", + "deskripsi" => + "Rejang di Bengkulu (Kabupaten Bengkulu Tengah, Kabupaten Bengkulu Utara, Kabupaten Kepahiang, Kabupaten Lebong, dan Kabupaten Rejang Lebong)", + ], + [ + "id" => 127, + "suku" => "Rote", + "deskripsi" => "Rote di NTT (Kabupaten Rote Ndao)", + ], + [ + "id" => 128, + "suku" => "Rongga", + "deskripsi" => "Rongga di NTT Kabupaten Manggarai Timur", + ], + ["id" => 129, "suku" => "Rohingya", "deskripsi" => "Rohingya"], + [ + "id" => 130, + "suku" => "Sabu", + "deskripsi" => "Sabu di Pulau Sabu, NTT", + ], + [ + "id" => 131, + "suku" => "Saluan", + "deskripsi" => "Saluan di Sulawesi Tengah", + ], + [ + "id" => 132, + "suku" => "Sambas", + "deskripsi" => + "Sambas (Melayu Sambas) di Kalimantan Barat: Kabupaten Sambas", + ], + [ + "id" => 133, + "suku" => "Samin", + "deskripsi" => + "Samin di Jawa Tengah (Blora) dan Jawa Timur (Bojonegoro)", + ], + [ + "id" => 134, + "suku" => "Sangi", + "deskripsi" => "Sangir di Sulawesi Utara (Kepulauan Sangihe)", + ], + [ + "id" => 135, + "suku" => "Sasak", + "deskripsi" => "Sasak di NTB, Lombok", + ], + [ + "id" => 136, + "suku" => "Sekak Bangka", + "deskripsi" => "Sekak Bangka", + ], + [ + "id" => 137, + "suku" => "Sekayu", + "deskripsi" => "Sekayu di Sumatera Selatan", + ], + [ + "id" => 138, + "suku" => "Semendo ", + "deskripsi" => + "Semendo di Bengkulu, Sumatera Selatan (Muara Enim)", + ], + [ + "id" => 139, + "suku" => "Serawai ", + "deskripsi" => + "Serawai di Bengkulu (Kabupaten Bengkulu Selatan dan Kabupaten Seluma)", + ], + [ + "id" => 140, + "suku" => "Simeulue", + "deskripsi" => "Simeulue di Aceh (Kabupaten Simeulue)", + ], + [ + "id" => 141, + "suku" => "Sigulai ", + "deskripsi" => + "Sigulai di Aceh (Kabupaten Simeulue bagian utara", + ], + [ + "id" => 142, + "suku" => "Suluk", + "deskripsi" => "Suluk di Kalimantan Utara)", + ], + [ + "id" => 143, + "suku" => "Sumbawa ", + "deskripsi" => "Sumbawa Di NTB (Kabupaten Sumbawa)", + ], + [ + "id" => 144, + "suku" => "Sumba", + "deskripsi" => "Sumba di NTT (Sumba Barat, Sumba Timur)", + ], + [ + "id" => 145, + "suku" => "Sunda", + "deskripsi" => + "Sunda di Jawa Barat, Banten, DKI Jakarta, Lampung, Sumatra Selatan dan Jawa Tengah", + ], + [ + "id" => 146, + "suku" => "Sungkai ", + "deskripsi" => "Sungkai di Lampung Lampung Utara", + ], + [ + "id" => 147, + "suku" => "Talau", + "deskripsi" => "Talaud di Sulawesi Utara (Kepulauan Talaud)", + ], + [ + "id" => 148, + "suku" => "Talang Mamak", + "deskripsi" => "Talang Mamak di Riau (Indragiri Hulu)", + ], + [ + "id" => 149, + "suku" => "Tamiang ", + "deskripsi" => "Tamiang di Aceh (Kabupaten Aceh Tamiang)", + ], + [ + "id" => 150, + "suku" => "Tengger ", + "deskripsi" => + "Tengger di Jawa Timur (Kabupaten Pasuruan) dan Probolinggo (lereng G. Bromo)", + ], + [ + "id" => 151, + "suku" => "Ternate ", + "deskripsi" => "Ternate di Maluku Utara (Kota Ternate)", + ], + [ + "id" => 152, + "suku" => "Tidore", + "deskripsi" => "Tidore di Maluku Utara (Kota Tidore)", + ], + [ + "id" => 153, + "suku" => "Tidung", + "deskripsi" => + "Tidung di Kalimantan Timur (Kabupaten Tanah Tidung)", + ], + [ + "id" => 154, + "suku" => "Timor", + "deskripsi" => "Timor di NTT, Kota Kupang", + ], + [ + "id" => 155, + "suku" => "Tionghoa", + "deskripsi" => + "Tionghoa, terdiri dari: Orang Cina Parit di Pelaihari, Tanah Laut, Kalsel; Orang Cina Benteng di Tangerang, Provinsi Banten; Orang Tionghoa Hokkien di Jawa dan Sumatera Utara; Orang Tionghoa Hakka di Belitung dan Kalimantan Barat; Orang Tionghoa Hubei; Orang Tionghoa Hainan; Orang Tionghoa Kanton; Orang Tionghoa Hokchia; Orang Tionghoa Tiochiu", + ], + [ + "id" => 156, + "suku" => "Tojo", + "deskripsi" => + "Tojo di Sulawesi Tengah (Kabupaten Tojo Una-Una)", + ], + [ + "id" => 157, + "suku" => "Toraja", + "deskripsi" => "Toraja di Sulawesi Selatan (Tana Toraja)", + ], + [ + "id" => 158, + "suku" => "Tolaki", + "deskripsi" => "Tolaki di Sulawesi Tenggara (Kendari)", + ], + [ + "id" => 159, + "suku" => "Toli Toli", + "deskripsi" => + "Toli Toli di Sulawesi Tengah (Kabupaten Toli-Toli)", + ], + [ + "id" => 160, + "suku" => "Tomini", + "deskripsi" => + "Tomini di Sulawesi Tengah (Kabupaten Parigi Mouton", + ], + [ + "id" => 161, + "suku" => "Una-una ", + "deskripsi" => + "Una-una di Sulawesi Tengah (Kabupaten Tojo Una-Una)", + ], + [ + "id" => 162, + "suku" => "Ulu", + "deskripsi" => "Ulu di Sumatera Utara (Mandailing natal)", + ], + [ + "id" => 163, + "suku" => "Wolio", + "deskripsi" => "Wolio di Sulawesi Tenggara (Buton)", + ], + ]); + + DB::statement(" + CREATE TABLE `ref_peristiwa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_peristiwa")->insert([ + ["id" => 1, "nama" => "Lahir"], + ["id" => 2, "nama" => "Mati"], + ["id" => 3, "nama" => "Pindah Keluar"], + ["id" => 4, "nama" => "Hilang"], + ["id" => 5, "nama" => "Pindah Masuk"], + ["id" => 6, "nama" => "Pergi"], + ]); + + DB::statement(" + CREATE TABLE `ref_pindah` ( + `id` tinyint(4) NOT NULL, + `nama` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_pindah")->insert([ + ["id" => 1, "nama" => "Pindah keluar Desa/Kelurahan"], + ["id" => 2, "nama" => "Pindah keluar Kecamatan"], + ["id" => 3, "nama" => "Pindah keluar Kabupaten/Kota"], + ["id" => 4, "nama" => "Pindah keluar Provinsi"], + ]); + + DB::statement(" + CREATE TABLE `suplemen` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(100) DEFAULT NULL, + `slug` varchar(255) DEFAULT NULL, + `sasaran` tinyint(4) DEFAULT NULL, + `keterangan` varchar(300) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `slug` (`slug`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_cacat` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_cacat")->insert([ + ["id" => 1, "nama" => "CACAT FISIK"], + ["id" => 2, "nama" => "CACAT NETRA/BUTA"], + ["id" => 3, "nama" => "CACAT RUNGU/WICARA"], + ["id" => 4, "nama" => "CACAT MENTAL/JIWA"], + ["id" => 5, "nama" => "CACAT FISIK DAN MENTAL"], + ["id" => 6, "nama" => "CACAT LAINNYA"], + ["id" => 7, "nama" => "TIDAK CACAT"], + ]); + + DB::statement(" + CREATE TABLE `tweb_cara_kb` ( + `id` tinyint(5) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `sex` tinyint(2) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_cara_kb")->insert([ + ["id" => 1, "nama" => "Pil", "sex" => 2], + ["id" => 2, "nama" => "IUD", "sex" => 2], + ["id" => 3, "nama" => "Suntik", "sex" => 2], + ["id" => 4, "nama" => "Kondom", "sex" => 1], + ["id" => 5, "nama" => "Susuk KB", "sex" => 2], + ["id" => 6, "nama" => "Sterilisasi Wanita", "sex" => 2], + ["id" => 7, "nama" => "Sterilisasi Pria", "sex" => 1], + ["id" => 99, "nama" => "Lainnya", "sex" => 3], + ]); + + DB::statement(" + CREATE TABLE `tweb_golongan_darah` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(15) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_golongan_darah")->insert([ + ["id" => 1, "nama" => "A"], + ["id" => 2, "nama" => "B"], + ["id" => 3, "nama" => "AB"], + ["id" => 4, "nama" => "O"], + ["id" => 5, "nama" => "A+"], + ["id" => 6, "nama" => "A-"], + ["id" => 7, "nama" => "B+"], + ["id" => 8, "nama" => "B-"], + ["id" => 9, "nama" => "AB+"], + ["id" => 10, "nama" => "AB-"], + ["id" => 11, "nama" => "O+"], + ["id" => 12, "nama" => "O-"], + ["id" => 13, "nama" => "TIDAK TAHU"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + `nik` varchar(16) DEFAULT NULL, + `id_kk` int(11) DEFAULT 0, + `kk_level` tinyint(2) DEFAULT NULL, + `id_rtm` varchar(30) DEFAULT NULL, + `rtm_level` int(11) DEFAULT NULL, + `sex` tinyint(4) unsigned DEFAULT NULL, + `tempatlahir` varchar(100) DEFAULT NULL, + `tanggallahir` date DEFAULT NULL, + `agama_id` int(1) DEFAULT NULL, + `pendidikan_kk_id` int(1) DEFAULT NULL, + `pendidikan_sedang_id` int(1) DEFAULT NULL, + `pekerjaan_id` int(1) DEFAULT NULL, + `status_kawin` tinyint(4) DEFAULT NULL, + `warganegara_id` tinyint(4) NOT NULL DEFAULT 1, + `dokumen_pasport` varchar(45) DEFAULT NULL, + `dokumen_kitas` varchar(45) DEFAULT NULL, + `ayah_nik` varchar(16) DEFAULT NULL, + `ibu_nik` varchar(16) DEFAULT NULL, + `nama_ayah` varchar(100) DEFAULT NULL, + `nama_ibu` varchar(100) DEFAULT NULL, + `foto` varchar(100) DEFAULT NULL, + `golongan_darah_id` int(11) DEFAULT NULL, + `id_cluster` int(11) NOT NULL, + `status` int(10) unsigned DEFAULT NULL, + `alamat_sebelumnya` varchar(200) DEFAULT NULL, + `alamat_sekarang` varchar(200) DEFAULT NULL, + `status_dasar` tinyint(4) NOT NULL DEFAULT 1, + `hamil` int(1) DEFAULT NULL, + `cacat_id` int(11) DEFAULT NULL, + `sakit_menahun_id` int(11) DEFAULT NULL, + `akta_lahir` varchar(40) DEFAULT NULL, + `akta_perkawinan` varchar(40) DEFAULT NULL, + `tanggalperkawinan` date DEFAULT NULL, + `akta_perceraian` varchar(40) DEFAULT NULL, + `tanggalperceraian` date DEFAULT NULL, + `cara_kb_id` tinyint(2) DEFAULT NULL, + `telepon` varchar(20) DEFAULT NULL, + `tanggal_akhir_paspor` date DEFAULT NULL, + `no_kk_sebelumnya` varchar(30) DEFAULT NULL, + `ktp_el` tinyint(4) DEFAULT NULL, + `status_rekam` tinyint(4) DEFAULT NULL, + `waktu_lahir` varchar(5) DEFAULT NULL, + `tempat_dilahirkan` tinyint(2) DEFAULT NULL, + `jenis_kelahiran` tinyint(2) DEFAULT NULL, + `kelahiran_anak_ke` tinyint(2) DEFAULT NULL, + `penolong_kelahiran` tinyint(2) DEFAULT NULL, + `berat_lahir` smallint(6) DEFAULT NULL, + `panjang_lahir` varchar(10) DEFAULT NULL, + `tag_id_card` varchar(17) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) DEFAULT NULL, + `id_asuransi` tinyint(5) DEFAULT NULL, + `no_asuransi` char(100) DEFAULT NULL, + `email` varchar(100) DEFAULT NULL, + `email_token` varchar(100) DEFAULT NULL, + `email_tgl_kadaluarsa` datetime DEFAULT NULL, + `email_tgl_verifikasi` datetime DEFAULT NULL, + `telegram` varchar(100) DEFAULT NULL, + `telegram_token` varchar(100) DEFAULT NULL, + `telegram_tgl_kadaluarsa` datetime DEFAULT NULL, + `telegram_tgl_verifikasi` datetime DEFAULT NULL, + `bahasa_id` int(11) DEFAULT NULL, + `ket` tinytext DEFAULT NULL, + `negara_asal` varchar(50) DEFAULT NULL, + `tempat_cetak_ktp` varchar(150) DEFAULT NULL, + `tanggal_cetak_ktp` date DEFAULT NULL, + `suku` varchar(150) DEFAULT NULL, + `bpjs_ketenagakerjaan` char(100) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `tag_id_card` (`tag_id_card`), + UNIQUE KEY `nik` (`nik`), + UNIQUE KEY `telegram` (`telegram`), + UNIQUE KEY `telegram_token` (`telegram_token`), + UNIQUE KEY `email_token` (`email_token`), + UNIQUE KEY `email` (`email`), + KEY `id_rtm` (`id_rtm`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_penduduk_agama` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_agama")->insert([ + ["id" => 1, "nama" => "ISLAM"], + ["id" => 2, "nama" => "KRISTEN"], + ["id" => 3, "nama" => "KATHOLIK"], + ["id" => 4, "nama" => "HINDU"], + ["id" => 5, "nama" => "BUDHA"], + ["id" => 6, "nama" => "KHONGHUCU"], + ["id" => 7, "nama" => "Kepercayaan Terhadap Tuhan YME / Lainnya"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_asuransi` ( + `id` tinyint(5) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_asuransi")->insert([ + ["id" => 1, "nama" => "Tidak/Belum Punya"], + ["id" => 2, "nama" => "BPJS Penerima Bantuan Iuran"], + ["id" => 3, "nama" => "BPJS Non Penerima Bantuan Iuran"], + ["id" => 99, "nama" => "Asuransi Lainnya"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_hubungan` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_hubungan")->insert([ + ["id" => 1, "nama" => "KEPALA KELUARGA"], + ["id" => 2, "nama" => "SUAMI"], + ["id" => 3, "nama" => "ISTRI"], + ["id" => 4, "nama" => "ANAK"], + ["id" => 5, "nama" => "MENANTU"], + ["id" => 6, "nama" => "CUCU"], + ["id" => 7, "nama" => "ORANGTUA"], + ["id" => 8, "nama" => "MERTUA"], + ["id" => 9, "nama" => "FAMILI LAIN"], + ["id" => 10, "nama" => "PEMBANTU"], + ["id" => 11, "nama" => "LAINNYA"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_kawin` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_kawin")->insert([ + ["id" => 1, "nama" => "BELUM KAWIN"], + ["id" => 2, "nama" => "KAWIN"], + ["id" => 3, "nama" => "CERAI HIDUP"], + ["id" => 4, "nama" => "CERAI MATI"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_map` ( + `id` int(11) NOT NULL, + `lat` varchar(24) DEFAULT NULL, + `lng` varchar(24) DEFAULT NULL + ); + "); + + DB::statement(" + CREATE TABLE `tweb_penduduk_pekerjaan` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_pekerjaan")->insert([ + ["id" => 1, "nama" => "BELUM/TIDAK BEKERJA"], + ["id" => 2, "nama" => "MENGURUS RUMAH TANGGA"], + ["id" => 3, "nama" => "PELAJAR/MAHASISWA"], + ["id" => 4, "nama" => "PENSIUNAN"], + ["id" => 5, "nama" => "PEGAWAI NEGERI SIPIL (PNS)"], + ["id" => 6, "nama" => "TENTARA NASIONAL INDONESIA (TNI)"], + ["id" => 7, "nama" => "KEPOLISIAN RI (POLRI)"], + ["id" => 8, "nama" => "PERDAGANGAN"], + ["id" => 9, "nama" => "PETANI/PEKEBUN"], + ["id" => 10, "nama" => "PETERNAK"], + ["id" => 11, "nama" => "NELAYAN/PERIKANAN"], + ["id" => 12, "nama" => "INDUSTRI"], + ["id" => 13, "nama" => "KONSTRUKSI"], + ["id" => 14, "nama" => "TRANSPORTASI"], + ["id" => 15, "nama" => "KARYAWAN SWASTA"], + ["id" => 16, "nama" => "KARYAWAN BUMN"], + ["id" => 17, "nama" => "KARYAWAN BUMD"], + ["id" => 18, "nama" => "KARYAWAN HONORER"], + ["id" => 19, "nama" => "BURUH HARIAN LEPAS"], + ["id" => 20, "nama" => "BURUH TANI/PERKEBUNAN"], + ["id" => 21, "nama" => "BURUH NELAYAN/PERIKANAN"], + ["id" => 22, "nama" => "BURUH PETERNAKAN"], + ["id" => 23, "nama" => "PEMBANTU RUMAH TANGGA"], + ["id" => 24, "nama" => "TUKANG CUKUR"], + ["id" => 25, "nama" => "TUKANG LISTRIK"], + ["id" => 26, "nama" => "TUKANG BATU"], + ["id" => 27, "nama" => "TUKANG KAYU"], + ["id" => 28, "nama" => "TUKANG SOL SEPATU"], + ["id" => 29, "nama" => "TUKANG LAS/PANDAI BESI"], + ["id" => 30, "nama" => "TUKANG JAHIT"], + ["id" => 31, "nama" => "TUKANG GIGI"], + ["id" => 32, "nama" => "PENATA RIAS"], + ["id" => 33, "nama" => "PENATA BUSANA"], + ["id" => 34, "nama" => "PENATA RAMBUT"], + ["id" => 35, "nama" => "MEKANIK"], + ["id" => 36, "nama" => "SENIMAN"], + ["id" => 37, "nama" => "TABIB"], + ["id" => 38, "nama" => "PARAJI"], + ["id" => 39, "nama" => "PERANCANG BUSANA"], + ["id" => 40, "nama" => "PENTERJEMAH"], + ["id" => 41, "nama" => "IMAM MASJID"], + ["id" => 42, "nama" => "PENDETA"], + ["id" => 43, "nama" => "PASTOR"], + ["id" => 44, "nama" => "WARTAWAN"], + ["id" => 45, "nama" => "USTADZ/MUBALIGH"], + ["id" => 46, "nama" => "JURU MASAK"], + ["id" => 47, "nama" => "PROMOTOR ACARA"], + ["id" => 48, "nama" => "ANGGOTA DPR-RI"], + ["id" => 49, "nama" => "ANGGOTA DPD"], + ["id" => 50, "nama" => "ANGGOTA BPK"], + ["id" => 51, "nama" => "PRESIDEN"], + ["id" => 52, "nama" => "WAKIL PRESIDEN"], + ["id" => 53, "nama" => "ANGGOTA MAHKAMAH KONSTITUSI"], + ["id" => 54, "nama" => "ANGGOTA KABINET KEMENTERIAN"], + ["id" => 55, "nama" => "DUTA BESAR"], + ["id" => 56, "nama" => "GUBERNUR"], + ["id" => 57, "nama" => "WAKIL GUBERNUR"], + ["id" => 58, "nama" => "BUPATI"], + ["id" => 59, "nama" => "WAKIL BUPATI"], + ["id" => 60, "nama" => "WALIKOTA"], + ["id" => 61, "nama" => "WAKIL WALIKOTA"], + ["id" => 62, "nama" => "ANGGOTA DPRD PROVINSI"], + ["id" => 63, "nama" => "ANGGOTA DPRD KABUPATEN/KOTA"], + ["id" => 64, "nama" => "DOSEN"], + ["id" => 65, "nama" => "GURU"], + ["id" => 66, "nama" => "PILOT"], + ["id" => 67, "nama" => "PENGACARA"], + ["id" => 68, "nama" => "NOTARIS"], + ["id" => 69, "nama" => "ARSITEK"], + ["id" => 70, "nama" => "AKUNTAN"], + ["id" => 71, "nama" => "KONSULTAN"], + ["id" => 72, "nama" => "DOKTER"], + ["id" => 73, "nama" => "BIDAN"], + ["id" => 74, "nama" => "PERAWAT"], + ["id" => 75, "nama" => "APOTEKER"], + ["id" => 76, "nama" => "PSIKIATER/PSIKOLOG"], + ["id" => 77, "nama" => "PENYIAR TELEVISI"], + ["id" => 78, "nama" => "PENYIAR RADIO"], + ["id" => 79, "nama" => "PELAUT"], + ["id" => 80, "nama" => "PENELITI"], + ["id" => 81, "nama" => "SOPIR"], + ["id" => 82, "nama" => "PIALANG"], + ["id" => 83, "nama" => "PARANORMAL"], + ["id" => 84, "nama" => "PEDAGANG"], + ["id" => 85, "nama" => "PERANGKAT DESA"], + ["id" => 86, "nama" => "KEPALA DESA"], + ["id" => 87, "nama" => "BIARAWATI"], + ["id" => 88, "nama" => "WIRASWASTA"], + ["id" => 89, "nama" => "LAINNYA"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_pendidikan` ( + `id` tinyint(3) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_pendidikan")->insert([ + ["id" => 1, "nama" => "BELUM MASUK TK/KELOMPOK BERMAIN"], + ["id" => 2, "nama" => "SEDANG TK/KELOMPOK BERMAIN"], + ["id" => 3, "nama" => "TIDAK PERNAH SEKOLAH"], + ["id" => 4, "nama" => "SEDANG SD/SEDERAJAT"], + ["id" => 5, "nama" => "TIDAK TAMAT SD/SEDERAJAT"], + ["id" => 6, "nama" => "SEDANG SLTP/SEDERAJAT"], + ["id" => 7, "nama" => "SEDANG SLTA/SEDERAJAT"], + ["id" => 8, "nama" => "SEDANG D-1/SEDERAJAT"], + ["id" => 9, "nama" => "SEDANG D-2/SEDERAJAT"], + ["id" => 10, "nama" => "SEDANG D-3/SEDERAJAT"], + ["id" => 11, "nama" => "SEDANG S-1/SEDERAJAT"], + ["id" => 12, "nama" => "SEDANG S-2/SEDERAJAT"], + ["id" => 13, "nama" => "SEDANG S-3/SEDERAJAT"], + ["id" => 14, "nama" => "SEDANG SLB A/SEDERAJAT"], + ["id" => 15, "nama" => "SEDANG SLB B/SEDERAJAT"], + ["id" => 16, "nama" => "SEDANG SLB C/SEDERAJAT"], + [ + "id" => 17, + "nama" => "TIDAK DAPAT MEMBACA DAN MENULIS HURUF LATIN/ARAB", + ], + ["id" => 18, "nama" => "TIDAK SEDANG SEKOLAH"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_pendidikan_kk` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_pendidikan_kk")->insert([ + ["id" => 1, "nama" => "TIDAK / BELUM SEKOLAH"], + ["id" => 2, "nama" => "BELUM TAMAT SD/SEDERAJAT"], + ["id" => 3, "nama" => "TAMAT SD / SEDERAJAT"], + ["id" => 4, "nama" => "SLTP/SEDERAJAT"], + ["id" => 5, "nama" => "SLTA / SEDERAJAT"], + ["id" => 6, "nama" => "DIPLOMA I / II"], + ["id" => 7, "nama" => "AKADEMI/ DIPLOMA III/S. MUDA"], + ["id" => 8, "nama" => "DIPLOMA IV/ STRATA I"], + ["id" => 9, "nama" => "STRATA II"], + ["id" => 10, "nama" => "STRATA III"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_sex` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(15) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_sex")->insert([ + ["id" => 1, "nama" => "LAKI-LAKI"], + ["id" => 2, "nama" => "PEREMPUAN"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_status` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_status")->insert([ + ["id" => 1, "nama" => "TETAP"], + ["id" => 2, "nama" => "TIDAK TETAP"], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_umur` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(25) DEFAULT NULL, + `dari` int(11) DEFAULT NULL, + `sampai` int(11) DEFAULT NULL, + `status` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_umur")->insert([ + [ + "id" => 1, + "nama" => "BALITA", + "dari" => 0, + "sampai" => 5, + "status" => 0, + ], + [ + "id" => 2, + "nama" => "ANAK-ANAK", + "dari" => 6, + "sampai" => 17, + "status" => 0, + ], + [ + "id" => 3, + "nama" => "DEWASA", + "dari" => 18, + "sampai" => 30, + "status" => 0, + ], + [ + "id" => 4, + "nama" => "TUA", + "dari" => 31, + "sampai" => 99999, + "status" => 0, + ], + [ + "id" => 6, + "nama" => "Di bawah 1 Tahun", + "dari" => 0, + "sampai" => 1, + "status" => 1, + ], + [ + "id" => 9, + "nama" => "2 s/d 4 Tahun", + "dari" => 2, + "sampai" => 4, + "status" => 1, + ], + [ + "id" => 12, + "nama" => "5 s/d 9 Tahun", + "dari" => 5, + "sampai" => 9, + "status" => 1, + ], + [ + "id" => 13, + "nama" => "10 s/d 14 Tahun", + "dari" => 10, + "sampai" => 14, + "status" => 1, + ], + [ + "id" => 14, + "nama" => "15 s/d 19 Tahun", + "dari" => 15, + "sampai" => 19, + "status" => 1, + ], + [ + "id" => 15, + "nama" => "20 s/d 24 Tahun", + "dari" => 20, + "sampai" => 24, + "status" => 1, + ], + [ + "id" => 16, + "nama" => "25 s/d 29 Tahun", + "dari" => 25, + "sampai" => 29, + "status" => 1, + ], + [ + "id" => 17, + "nama" => "30 s/d 34 Tahun", + "dari" => 30, + "sampai" => 34, + "status" => 1, + ], + [ + "id" => 18, + "nama" => "35 s/d 39 Tahun ", + "dari" => 35, + "sampai" => 39, + "status" => 1, + ], + [ + "id" => 19, + "nama" => "40 s/d 44 Tahun", + "dari" => 40, + "sampai" => 44, + "status" => 1, + ], + [ + "id" => 20, + "nama" => "45 s/d 49 Tahun", + "dari" => 45, + "sampai" => 49, + "status" => 1, + ], + [ + "id" => 21, + "nama" => "50 s/d 54 Tahun", + "dari" => 50, + "sampai" => 54, + "status" => 1, + ], + [ + "id" => 22, + "nama" => "55 s/d 59 Tahun", + "dari" => 55, + "sampai" => 59, + "status" => 1, + ], + [ + "id" => 23, + "nama" => "60 s/d 64 Tahun", + "dari" => 60, + "sampai" => 64, + "status" => 1, + ], + [ + "id" => 24, + "nama" => "65 s/d 69 Tahun", + "dari" => 65, + "sampai" => 69, + "status" => 1, + ], + [ + "id" => 25, + "nama" => "70 s/d 74 Tahun", + "dari" => 70, + "sampai" => 74, + "status" => 1, + ], + [ + "id" => 26, + "nama" => "Di atas 75 Tahun", + "dari" => 75, + "sampai" => 99999, + "status" => 1, + ], + ]); + + DB::statement(" + CREATE TABLE `tweb_penduduk_warganegara` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(25) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_penduduk_warganegara")->insert([ + ["id" => 1, "nama" => "WNI"], + ["id" => 2, "nama" => "WNA"], + ["id" => 3, "nama" => "DUA KEWARGANEGARAAN"], + ]); + + DB::statement(" + CREATE TABLE `tweb_rtm` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nik_kepala` int(11) NOT NULL, + `no_kk` varchar(30) NOT NULL, + `tgl_daftar` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `kelas_sosial` int(11) DEFAULT NULL, + `bdt` varchar(16) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `no_kk` (`no_kk`), + UNIQUE KEY `no_kk_2` (`no_kk`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_rtm_hubungan` ( + `id` tinyint(4) NOT NULL AUTO_INCREMENT, + `nama` varchar(20) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_rtm_hubungan")->insert([ + ["id" => 1, "nama" => "Kepala Rumah Tangga"], + ["id" => 2, "nama" => "Anggota"], + ]); + + DB::statement(" + CREATE TABLE `tweb_sakit_menahun` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(255) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_sakit_menahun")->insert([ + ["id" => 1, "nama" => "JANTUNG"], + ["id" => 2, "nama" => "LEVER"], + ["id" => 3, "nama" => "PARU-PARU"], + ["id" => 4, "nama" => "KANKER"], + ["id" => 5, "nama" => "STROKE"], + ["id" => 6, "nama" => "DIABETES MELITUS"], + ["id" => 7, "nama" => "GINJAL"], + ["id" => 8, "nama" => "MALARIA"], + ["id" => 9, "nama" => "LEPRA/KUSTA"], + ["id" => 10, "nama" => "HIV/AIDS"], + ["id" => 11, "nama" => "GILA/STRESS"], + ["id" => 12, "nama" => "TBC"], + ["id" => 13, "nama" => "ASTHMA"], + ["id" => 14, "nama" => "TIDAK ADA/TIDAK SAKIT"], + ]); + + DB::statement(" + CREATE TABLE `tweb_status_dasar` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_status_dasar")->insert([ + ["id" => 1, "nama" => "HIDUP"], + ["id" => 2, "nama" => "MATI"], + ["id" => 3, "nama" => "PINDAH"], + ["id" => 4, "nama" => "HILANG"], + ["id" => 6, "nama" => "PERGI"], + ["id" => 9, "nama" => "TIDAK VALID"], + ]); + + DB::statement(" + CREATE TABLE `tweb_status_ktp` ( + `id` tinyint(5) NOT NULL AUTO_INCREMENT, + `nama` varchar(50) NOT NULL, + `ktp_el` tinyint(4) NOT NULL, + `status_rekam` varchar(50) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_status_ktp")->insert([ + [ + "id" => 1, + "nama" => "BELUM REKAM", + "ktp_el" => 1, + "status_rekam" => "2", + ], + [ + "id" => 2, + "nama" => "SUDAH REKAM", + "ktp_el" => 2, + "status_rekam" => "3", + ], + [ + "id" => 3, + "nama" => "CARD PRINTED", + "ktp_el" => 2, + "status_rekam" => "4", + ], + [ + "id" => 4, + "nama" => "PRINT READY RECORD", + "ktp_el" => 2, + "status_rekam" => "5", + ], + [ + "id" => 5, + "nama" => "CARD SHIPPED", + "ktp_el" => 2, + "status_rekam" => "6", + ], + [ + "id" => 6, + "nama" => "SENT FOR CARD PRINTING", + "ktp_el" => 2, + "status_rekam" => "7", + ], + [ + "id" => 7, + "nama" => "CARD ISSUED", + "ktp_el" => 2, + "status_rekam" => "8", + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_dokumen() + { + DB::statement(" + CREATE TABLE `dokumen` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `satuan` varchar(200) DEFAULT NULL, + `nama` varchar(200) NOT NULL, + `enabled` int(2) NOT NULL DEFAULT 1, + `tgl_upload` timestamp NOT NULL DEFAULT current_timestamp(), + `id_pend` int(11) NOT NULL DEFAULT 0, + `kategori` tinyint(3) NOT NULL DEFAULT 1, + `attr` text NOT NULL, + `tahun` int(4) DEFAULT NULL, + `kategori_info_publik` tinyint(4) DEFAULT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `id_syarat` int(11) DEFAULT NULL, + `id_parent` int(11) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` varchar(16) DEFAULT NULL, + `updated_by` varchar(16) DEFAULT NULL, + `dok_warga` tinyint(1) DEFAULT 0, + `lokasi_arsip` varchar(150) DEFAULT '', + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_dokumen` ( + `id` int(5) unsigned NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_dokumen")->insert([ + ["id" => 1, "nama" => "Informasi Publik"], + ["id" => 2, "nama" => "SK Kades"], + ["id" => 3, "nama" => "Perdes"], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_hubung_warga() + { + DB::statement(" + CREATE TABLE `inbox` ( + `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `ReceivingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), + `Text` text NOT NULL, + `SenderNumber` varchar(20) NOT NULL DEFAULT '', + `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', + `UDH` text NOT NULL, + `SMSCNumber` varchar(20) NOT NULL DEFAULT '', + `Class` int(11) NOT NULL DEFAULT -1, + `TextDecoded` text NOT NULL, + `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, + `RecipientID` text NOT NULL, + `Processed` enum('false','true') NOT NULL DEFAULT 'false', + PRIMARY KEY (`ID`) + ); + "); + + DB::statement(" + CREATE TABLE `kontak_grup` ( + `id_grup` int(11) NOT NULL AUTO_INCREMENT, + `nama_grup` varchar(30) NOT NULL, + PRIMARY KEY (`id_grup`) + ); + "); + + DB::statement(" + CREATE TABLE `outbox` ( + `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `InsertIntoDB` timestamp NOT NULL DEFAULT current_timestamp(), + `SendingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), + `SendBefore` time NOT NULL DEFAULT '23:59:59', + `SendAfter` time NOT NULL DEFAULT '00:00:00', + `Text` text DEFAULT NULL, + `DestinationNumber` varchar(20) NOT NULL DEFAULT '', + `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', + `UDH` text DEFAULT NULL, + `Class` int(11) DEFAULT -1, + `TextDecoded` text NOT NULL, + `ID` int(10) unsigned NOT NULL AUTO_INCREMENT, + `MultiPart` enum('false','true') DEFAULT 'false', + `RelativeValidity` int(11) DEFAULT -1, + `SenderID` varchar(255) DEFAULT NULL, + `SendingTimeOut` timestamp NULL DEFAULT NULL, + `DeliveryReport` enum('default','yes','no') DEFAULT 'default', + `CreatorID` text DEFAULT NULL, + PRIMARY KEY (`ID`), + KEY `outbox_date` (`SendingDateTime`,`SendingTimeOut`), + KEY `outbox_sender` (`SenderID`) + ); + "); + + DB::statement(" + CREATE TABLE `sentitems` ( + `UpdatedInDB` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `InsertIntoDB` timestamp NOT NULL DEFAULT current_timestamp(), + `SendingDateTime` timestamp NOT NULL DEFAULT current_timestamp(), + `DeliveryDateTime` timestamp NULL DEFAULT NULL, + `Text` text NOT NULL, + `DestinationNumber` varchar(20) NOT NULL DEFAULT '', + `Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression', + `UDH` text NOT NULL, + `SMSCNumber` varchar(20) NOT NULL DEFAULT '', + `Class` int(11) NOT NULL DEFAULT -1, + `TextDecoded` text NOT NULL, + `ID` int(10) unsigned NOT NULL DEFAULT 0, + `SenderID` varchar(255) NOT NULL, + `SequencePosition` int(11) NOT NULL DEFAULT 1, + `Status` enum('SendingOK','SendingOKNoReport','SendingError','DeliveryOK','DeliveryFailed','DeliveryPending','DeliveryUnknown','Error') NOT NULL DEFAULT 'SendingOK', + `StatusError` int(11) NOT NULL DEFAULT -1, + `TPMR` int(11) NOT NULL DEFAULT -1, + `RelativeValidity` int(11) NOT NULL DEFAULT -1, + `CreatorID` text NOT NULL, + PRIMARY KEY (`ID`,`SequencePosition`), + KEY `sentitems_date` (`DeliveryDateTime`), + KEY `sentitems_tpmr` (`TPMR`), + KEY `sentitems_dest` (`DestinationNumber`), + KEY `sentitems_sender` (`SenderID`) + ); + "); + + DB::statement(" + CREATE TABLE `setting_sms` ( + `autoreply_text` varchar(160) DEFAULT NULL + ); + "); + + DB::table("setting_sms")->insert([ + ["autoreply_text" => "Terima kasih pesan Anda telah kami terima."], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + return; + } + + private function tabel_inventaris() + { + DB::statement(" + CREATE TABLE `inventaris_asset` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kode_barang` varchar(64) NOT NULL, + `register` varchar(64) NOT NULL, + `jenis` varchar(255) NOT NULL, + `judul_buku` varchar(255) DEFAULT NULL, + `spesifikasi_buku` varchar(255) DEFAULT NULL, + `asal_daerah` varchar(255) DEFAULT NULL, + `pencipta` varchar(255) DEFAULT NULL, + `bahan` varchar(255) DEFAULT NULL, + `jenis_hewan` varchar(255) DEFAULT NULL, + `ukuran_hewan` varchar(255) DEFAULT NULL, + `jenis_tumbuhan` varchar(255) DEFAULT NULL, + `ukuran_tumbuhan` varchar(255) DEFAULT NULL, + `jumlah` int(64) NOT NULL, + `tahun_pengadaan` year(4) NOT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `inventaris_gedung` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kode_barang` varchar(64) NOT NULL, + `register` varchar(64) NOT NULL, + `kondisi_bangunan` varchar(255) NOT NULL, + `kontruksi_bertingkat` varchar(255) NOT NULL, + `kontruksi_beton` tinyint(1) DEFAULT 0, + `luas_bangunan` int(64) NOT NULL, + `letak` varchar(255) NOT NULL, + `tanggal_dokument` date DEFAULT NULL, + `no_dokument` varchar(255) DEFAULT NULL, + `luas` int(64) DEFAULT NULL, + `status_tanah` varchar(255) DEFAULT NULL, + `kode_tanah` varchar(255) DEFAULT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `inventaris_jalan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kode_barang` varchar(64) NOT NULL, + `register` varchar(64) NOT NULL, + `kontruksi` varchar(255) NOT NULL, + `panjang` int(64) NOT NULL, + `lebar` int(64) NOT NULL, + `luas` int(64) NOT NULL, + `letak` text DEFAULT NULL, + `tanggal_dokument` date NOT NULL, + `no_dokument` varchar(255) DEFAULT NULL, + `status_tanah` varchar(255) DEFAULT NULL, + `kode_tanah` varchar(255) DEFAULT NULL, + `kondisi` varchar(255) NOT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `inventaris_kontruksi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kondisi_bangunan` varchar(255) NOT NULL, + `kontruksi_bertingkat` varchar(255) NOT NULL, + `kontruksi_beton` tinyint(1) DEFAULT 0, + `luas_bangunan` int(64) NOT NULL, + `letak` varchar(255) NOT NULL, + `tanggal_dokument` date DEFAULT NULL, + `no_dokument` varchar(255) DEFAULT NULL, + `tanggal` date DEFAULT NULL, + `status_tanah` varchar(255) DEFAULT NULL, + `kode_tanah` varchar(255) DEFAULT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `inventaris_peralatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kode_barang` varchar(64) NOT NULL, + `register` varchar(64) NOT NULL, + `merk` varchar(255) DEFAULT NULL, + `ukuran` text DEFAULT NULL, + `bahan` text DEFAULT NULL, + `tahun_pengadaan` year(4) NOT NULL, + `no_pabrik` varchar(255) DEFAULT NULL, + `no_rangka` varchar(255) DEFAULT NULL, + `no_mesin` varchar(255) DEFAULT NULL, + `no_polisi` varchar(255) DEFAULT NULL, + `no_bpkb` varchar(255) DEFAULT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `inventaris_tanah` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama_barang` varchar(255) NOT NULL, + `kode_barang` varchar(64) NOT NULL, + `register` varchar(64) NOT NULL, + `luas` int(64) NOT NULL, + `tahun_pengadaan` year(4) NOT NULL, + `letak` varchar(255) NOT NULL, + `hak` varchar(255) NOT NULL, + `no_sertifikat` varchar(255) DEFAULT NULL, + `tanggal_sertifikat` date DEFAULT NULL, + `penggunaan` varchar(255) NOT NULL, + `asal` varchar(255) NOT NULL, + `harga` double NOT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `status` int(1) NOT NULL DEFAULT 0, + `visible` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_asal_tanah_kas` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` text NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_asal_tanah_kas")->insert([ + ["id" => 1, "nama" => "Jual Beli"], + ["id" => 2, "nama" => "Hibah / Sumbangan"], + ["id" => 3, "nama" => "Lain - lain"], + ]); + + DB::statement(" + CREATE TABLE `ref_peruntukan_tanah_kas` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` text NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("ref_peruntukan_tanah_kas")->insert([ + ["id" => 1, "nama" => "Sewa"], + ["id" => 2, "nama" => "Pinjam Pakai"], + ["id" => 3, "nama" => "Kerjasama Pemanfaatan"], + ["id" => 4, "nama" => "Bangun Guna Serah atau Bangun Serah Guna"], + ]); + + DB::statement(" + CREATE TABLE `tweb_aset` ( + `id_aset` int(11) NOT NULL, + `golongan` varchar(11) NOT NULL, + `bidang` varchar(11) NOT NULL, + `kelompok` varchar(11) NOT NULL, + `sub_kelompok` varchar(11) NOT NULL, + `sub_sub_kelompok` varchar(11) NOT NULL, + `nama` varchar(255) NOT NULL, + PRIMARY KEY (`id_aset`) + ); + "); + + DB::table("tweb_aset")->insert([ + [ + "id_aset" => 1, + "golongan" => "2", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH", + ], + [ + "id_aset" => 2, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH DESA", + ], + [ + "id_aset" => 3, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KAS DESA", + ], + [ + "id_aset" => 4, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH BENGKOK", + ], + [ + "id_aset" => 5, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BENGKOK KEPALA DESA", + ], + [ + "id_aset" => 6, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BENGKOK LAINNYA", + ], + [ + "id_aset" => 7, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH BONDO", + ], + [ + "id_aset" => 8, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KALAKERAN NEGERI", + ], + [ + "id_aset" => 9, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PECATU", + ], + [ + "id_aset" => 10, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PENGAREM-AREM", + ], + [ + "id_aset" => 11, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "TANAH TITISARA", + ], + [ + "id_aset" => 12, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERKAMPUNGAN", + ], + [ + "id_aset" => 13, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERKAMPUNGAN", + ], + [ + "id_aset" => 14, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH PERKAMPUNGAN", + ], + [ + "id_aset" => 15, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH PERKAMPUNGAN LAINNYA", + ], + [ + "id_aset" => 16, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "EMPLASMEN", + ], + [ + "id_aset" => 17, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "EMPLASMEN", + ], + [ + "id_aset" => 18, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "EMPLASMEN LAINNYA", + ], + [ + "id_aset" => 19, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KUBURAN", + ], + [ + "id_aset" => 20, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TANAH KUBURAN ISLAM", + ], + [ + "id_aset" => 21, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "TANAH KUBURAN KRISTEN", + ], + [ + "id_aset" => 22, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "TANAH KUBURAN CINA", + ], + [ + "id_aset" => 23, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "TANAH KUBURAN HINDU", + ], + [ + "id_aset" => 24, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "TANAH KUBURAN BUDHA", + ], + [ + "id_aset" => 25, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "TANAH MAKAM PAHLAWAN", + ], + [ + "id_aset" => 26, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "TANAH KUBURAN TEMPAT BENDA BERSEJARAH", + ], + [ + "id_aset" => 27, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "TANAH MAKAM UMUM/KUBURAN UMUM", + ], + [ + "id_aset" => 28, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "TANAH KUBURAN LAINNYA", + ], + [ + "id_aset" => 29, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERTANIAN", + ], + [ + "id_aset" => 30, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "SAWAH SATU TAHUN DITANAMI", + ], + [ + "id_aset" => 31, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "SAWAH DITANAMI PADI", + ], + [ + "id_aset" => 32, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "SAWAH DITANAMI PALAWIJA", + ], + [ + "id_aset" => 33, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "SAWAH DITANAMI TEBU", + ], + [ + "id_aset" => 34, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "SAWAH DITANAMI SAYURAN", + ], + [ + "id_aset" => 35, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "SAWAH DITANAMI TEMBAKAU", + ], + [ + "id_aset" => 36, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "SAWAH DITANAMI ROSELLA", + ], + [ + "id_aset" => 37, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "SAWAH DITANAMI LAINNYA", + ], + [ + "id_aset" => 38, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KERING/TEGALAN", + ], + [ + "id_aset" => 39, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TANAH KERING DITANAMI BUAH-BUAHAN", + ], + [ + "id_aset" => 40, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "TANAH KERING DITANAMI TEMBAKAU", + ], + [ + "id_aset" => 41, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "TANAH KERING DITANAMI JAGUNG", + ], + [ + "id_aset" => 42, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "TANAH KERING DITANAMI KETELA POHON", + ], + [ + "id_aset" => 43, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "TANAH KERING DITANAMI KACANG TANAH", + ], + [ + "id_aset" => 44, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "TANAH KERING DITANAMI KACANG HIJAU", + ], + [ + "id_aset" => 45, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "TANAH KERING DITANAMI KEDELAI", + ], + [ + "id_aset" => 46, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "TANAH KERING DITANAMI UBI JALAR", + ], + [ + "id_aset" => 47, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "TANAH KERING DITANAMI KELADI", + ], + [ + "id_aset" => 48, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TANAH KERING DITANAMI LAINNYA", + ], + [ + "id_aset" => 49, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "LADANG", + ], + [ + "id_aset" => 50, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "LADANG PADI", + ], + [ + "id_aset" => 51, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "LADANG JAGUNG", + ], + [ + "id_aset" => 52, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "LADANG KETELA POHON", + ], + [ + "id_aset" => 53, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "LADANG KACANG TANAH", + ], + [ + "id_aset" => 54, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "LADANG KACANG HIJAU", + ], + [ + "id_aset" => 55, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "LADANG KEDELAI", + ], + [ + "id_aset" => 56, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "LADANG UBI JALAR", + ], + [ + "id_aset" => 57, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "LADANG KELADI", + ], + [ + "id_aset" => 58, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "LADANG BENGKUANG", + ], + [ + "id_aset" => 59, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "LADANG APEL", + ], + [ + "id_aset" => 60, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "LADANG KENTANG", + ], + [ + "id_aset" => 61, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "LADANG JERUK", + ], + [ + "id_aset" => 62, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "LADANG LAINNYA", + ], + [ + "id_aset" => 63, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERKEBUNAN", + ], + [ + "id_aset" => 64, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERKEBUNAN", + ], + [ + "id_aset" => 65, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH PERKEBUNAN KARET", + ], + [ + "id_aset" => 66, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAH PERKEBUNAN KOPI", + ], + [ + "id_aset" => 67, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH PERKEBUNAN KELAPA", + ], + [ + "id_aset" => 68, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH PERKEBUNAN RANDU", + ], + [ + "id_aset" => 69, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH PERKEBUNAN LADA", + ], + [ + "id_aset" => 70, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAH PERKEBUNAN TEH", + ], + [ + "id_aset" => 71, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TANAH PERKEBUNAN KINA", + ], + [ + "id_aset" => 72, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TANAH PERKEBUNAN COKLAT", + ], + [ + "id_aset" => 73, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "TANAH PERKEBUNAN KELAPA SAWIT", + ], + [ + "id_aset" => 74, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "TANAH PERKEBUNAN SEREH", + ], + [ + "id_aset" => 75, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "TANAH PERKEBUNAN CENGKEH", + ], + [ + "id_aset" => 76, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "TANAH PERKEBUNAN PALA", + ], + [ + "id_aset" => 77, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "TANAH PERKEBUNAN SAGU", + ], + [ + "id_aset" => 78, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "TANAH PERKEBUNAN JAMBU MENTE", + ], + [ + "id_aset" => 79, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "TANAH PERKEBUNAN TENGKAWANG", + ], + [ + "id_aset" => 80, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "TANAH PERKEBUNAN MINYAK KAYU PUTIH", + ], + [ + "id_aset" => 81, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "TANAH PERKEBUNAN KAYU MANIS", + ], + [ + "id_aset" => 82, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "TANAH PERKEBUNAN PETAI", + ], + [ + "id_aset" => 83, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH PERKEBUNAN LAINNYA", + ], + [ + "id_aset" => 84, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH HUTAN", + ], + [ + "id_aset" => 85, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH HUTAN LEBAT (DITANAMI JENIS KAYU UTAMA)", + ], + [ + "id_aset" => 86, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH HUTAN MERANTI", + ], + [ + "id_aset" => 87, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAH HUTAN RASAMALA", + ], + [ + "id_aset" => 88, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH HUTAN BULIAN", + ], + [ + "id_aset" => 89, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH HUTAN MEDANG", + ], + [ + "id_aset" => 90, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH HUTAN JELUTUNG", + ], + [ + "id_aset" => 91, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAH HUTAN RAMIN", + ], + [ + "id_aset" => 92, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TANAH HUTAN PUSPA", + ], + [ + "id_aset" => 93, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TANAH HUTAN SUNINTEM", + ], + [ + "id_aset" => 94, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "TANAH HUTAN ALBENIA", + ], + [ + "id_aset" => 95, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "TANAH HUTAN KAYU BESI/ULIN", + ], + [ + "id_aset" => 96, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "HUTAN LEBAT LAINNYA", + ], + [ + "id_aset" => 97, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH HUTAN BELUKAR", + ], + [ + "id_aset" => 98, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TANAH HUTAN SEMAK-SEMAK", + ], + [ + "id_aset" => 99, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "HUTAN BELUKAR", + ], + [ + "id_aset" => 100, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "HUTAN BELUKAR LAINNYA", + ], + [ + "id_aset" => 101, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "HUTAN TANAMAN JENIS", + ], + [ + "id_aset" => 102, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "HUTAN TANAMAN JATI", + ], + [ + "id_aset" => 103, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "HUTAN TANAMAN PINUS", + ], + [ + "id_aset" => 104, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "HUTAN TANAMAN ROTAN", + ], + [ + "id_aset" => 105, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "HUTAN TANAMAN JENIS LAINNYA", + ], + [ + "id_aset" => 106, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "HUTAN ALAM SEJENIS/HUTAN RAWA", + ], + [ + "id_aset" => 107, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "HUTAN BAKAU", + ], + [ + "id_aset" => 108, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "HUTAN CEMARA (YANG TIDAK DITANAMAN)", + ], + [ + "id_aset" => 109, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "HUTAN GALAM", + ], + [ + "id_aset" => 110, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "HUTAN NIPAH", + ], + [ + "id_aset" => 111, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "HUTAN BAMBU", + ], + [ + "id_aset" => 112, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "HUTAN ROTAN", + ], + [ + "id_aset" => 113, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "HUTAN ALAM SEJENIS LAINNYA", + ], + [ + "id_aset" => 114, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "HUTAN UNTUK PENGGUNAAN KHUSUS", + ], + [ + "id_aset" => 115, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "HUTAN CADANGAN", + ], + [ + "id_aset" => 116, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "HUTAN LINDUNG", + ], + [ + "id_aset" => 117, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "HUTAN CAGAR ALAM", + ], + [ + "id_aset" => 118, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "HUTAN TAMAN WISATA", + ], + [ + "id_aset" => 119, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "HUTAN TAMAN BURUNG", + ], + [ + "id_aset" => 120, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "HUTAN SUAKA MARGA SATWA", + ], + [ + "id_aset" => 121, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "HUTAN TAMAN NASIONAL", + ], + [ + "id_aset" => 122, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "HUTAN PRODUKSI", + ], + [ + "id_aset" => 123, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "HUTAN UNTUK PENGGUNAAN KHUSUS LAINNYA", + ], + [ + "id_aset" => 124, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KEBUN CAMPURAN", + ], + [ + "id_aset" => 125, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH YANG TIDAK ADA JARINGAN PENGAIRAN", + ], + [ + "id_aset" => 126, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAMAN RUPA-RUPA", + ], + [ + "id_aset" => 127, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH KEBUN CAMPURAN LAINNYA", + ], + [ + "id_aset" => 128, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TUMBUH LIAR BERCAMPUR JENIS LAIN", + ], + [ + "id_aset" => 129, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => + "JENIS TANAMAN RUPA-RUPA & TIDAK JELAS MANA YANG MENONJOL", + ], + [ + "id_aset" => 130, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "TANAMAN LUAR PERKARANGAN", + ], + [ + "id_aset" => 131, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TUMBUH LIAR BERCAMPUR JENIS LAINNYA", + ], + [ + "id_aset" => 132, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KOLAM IKAN", + ], + [ + "id_aset" => 133, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TAMBAK", + ], + [ + "id_aset" => 134, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TAMBAK", + ], + [ + "id_aset" => 135, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TAMBAK LAINNYA", + ], + [ + "id_aset" => 136, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "AIR TAWAR", + ], + [ + "id_aset" => 137, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "KOLAM AIR TAWAR", + ], + [ + "id_aset" => 138, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "AIR TAWAR LAINNYA", + ], + [ + "id_aset" => 139, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH DANAU / RAWA", + ], + [ + "id_aset" => 140, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "RAWA", + ], + [ + "id_aset" => 141, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "RAWA", + ], + [ + "id_aset" => 142, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "RAWA LAINNYA", + ], + [ + "id_aset" => 143, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "DANAU", + ], + [ + "id_aset" => 144, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SANAU/SITU", + ], + [ + "id_aset" => 145, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "WADUK", + ], + [ + "id_aset" => 146, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "08", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "DANAU LAINNYA", + ], + [ + "id_aset" => 147, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH TANDUS / RUSAK", + ], + [ + "id_aset" => 148, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH TANDUS", + ], + [ + "id_aset" => 149, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BERBATU-BATU", + ], + [ + "id_aset" => 150, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "LONGSOR", + ], + [ + "id_aset" => 151, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAHAR", + ], + [ + "id_aset" => 152, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH BERPASIR/PASIR", + ], + [ + "id_aset" => 153, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH PENGAMBILAN/KUASI", + ], + [ + "id_aset" => 154, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH TANDUS LAINNYA", + ], + [ + "id_aset" => 155, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH RUSAK", + ], + [ + "id_aset" => 156, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TANAH YANG TEREROSI/LONGSOR", + ], + [ + "id_aset" => 157, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BEKAS TAMBANG/GALIAN", + ], + [ + "id_aset" => 158, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BEKAS SAWAH/RAWA", + ], + [ + "id_aset" => 159, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "09", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TANAH RUSAK LAINNYA", + ], + [ + "id_aset" => 160, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH ALANG-ALANG DAN PADANG RUMPUT", + ], + [ + "id_aset" => 161, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALANG-ALANG", + ], + [ + "id_aset" => 162, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "ALANG-ALANG", + ], + [ + "id_aset" => 163, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALANG-ALANG LAINNYA", + ], + [ + "id_aset" => 164, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PADANG RUMPUT", + ], + [ + "id_aset" => 165, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SEMAK BELUKAR", + ], + [ + "id_aset" => 166, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "PADANG RUMPUT", + ], + [ + "id_aset" => 167, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "10", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PADANG RUMPUT LAINNYA", + ], + [ + "id_aset" => 168, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERTAMBANGAN", + ], + [ + "id_aset" => 169, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PERTAMBANGAN", + ], + [ + "id_aset" => 170, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH PERTAMBANGAN INTAN", + ], + [ + "id_aset" => 171, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAH PERTAMBANGAN EMAS", + ], + [ + "id_aset" => 172, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH PERTAMBANGAN PERAK", + ], + [ + "id_aset" => 173, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH PERTAMBANGAN NEKEL", + ], + [ + "id_aset" => 174, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH PERTAMBANGAN TIMAH", + ], + [ + "id_aset" => 175, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAH PERTAMBANGAN URANIUM", + ], + [ + "id_aset" => 176, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TANAH PERTAMBANGAN TEMBAGA", + ], + [ + "id_aset" => 177, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TANAH PERTAMBANGAN MINYAK BUMI", + ], + [ + "id_aset" => 178, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "TANAH PERTAMBANGAN BATU BARA", + ], + [ + "id_aset" => 179, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "TANAH PERTAMBANGAN KOSLIN", + ], + [ + "id_aset" => 180, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "TANAH PERTAMBANGAN BATU BARA BERHARGA", + ], + [ + "id_aset" => 181, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "TANAH PERTAMBANGAN PASIR BERHARGA", + ], + [ + "id_aset" => 182, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "11", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH PERTAMBANGAN LAINNYA", + ], + [ + "id_aset" => 183, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN GEDUNG", + ], + [ + "id_aset" => 184, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH BANGUNAN PERUMAHAN/GDG. TEMPAT TINGGAL", + ], + [ + "id_aset" => 185, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BANGUNAN MESS", + ], + [ + "id_aset" => 186, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAH BANGUNAN WISMA", + ], + [ + "id_aset" => 187, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH BANGUNAN ASRAMA", + ], + [ + "id_aset" => 188, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH BANGUNAN PERISTIRAHATAN", + ], + [ + "id_aset" => 189, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH BANGUNAN BUNGALAOW", + ], + [ + "id_aset" => 190, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAH BANGUNAN COTTAGE", + ], + [ + "id_aset" => 191, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN RUMAH TEMPAT TINGGAL LAINNYA", + ], + [ + "id_aset" => 192, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN GEDUNG PERDAGANGAN", + ], + [ + "id_aset" => 193, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BANGUNAN PASAR", + ], + [ + "id_aset" => 194, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "TANAH BANGUNAN PERTOKOAN/RUMAH TOKO", + ], + [ + "id_aset" => 195, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "TANAH BANGUNAN GUDANG", + ], + [ + "id_aset" => 196, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "TANAH BANGUNAN BIOSKOP", + ], + [ + "id_aset" => 197, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "TANAH BANGUNAN HOTEL/PENGINAPAN", + ], + [ + "id_aset" => 198, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "TANAH BANGUNAN TERMINAL DARAT", + ], + [ + "id_aset" => 199, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "TANAH BANGUNAN TERMINAL LAUT", + ], + [ + "id_aset" => 200, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "TANAH BANGUNAN GEDUNG KESENIAN", + ], + [ + "id_aset" => 201, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "TANAH BANGUNAN GEDUNG PAMERAN", + ], + [ + "id_aset" => 202, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "TANAH BANGUNAN GEDUNG PUSAT PERBELANJAAN", + ], + [ + "id_aset" => 203, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "011", + "nama" => "TANAH BANGUNAN APOTIK", + ], + [ + "id_aset" => 204, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN GEDUNG PERDAGANGAN LAINNYA", + ], + [ + "id_aset" => 205, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN INDUSTRI", + ], + [ + "id_aset" => 206, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BANGUNAN INDUSTRI MAKANAN", + ], + [ + "id_aset" => 207, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "TANAH BANGUNAN INDUSTRI MINUMAN", + ], + [ + "id_aset" => 208, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "TANAH BANGUNAN INDUSTRI/ALAT RT.", + ], + [ + "id_aset" => 209, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "TANAH BANGUNAN INDUSTRI PAKAIAN/GARMENT", + ], + [ + "id_aset" => 210, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "TANAH BANGUNAN INDUSTRI BESI/LOGAM", + ], + [ + "id_aset" => 211, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "TANAH BANGUNAN INDUSTRI BAJA", + ], + [ + "id_aset" => 212, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "TANAH BANGUNAN INDUSTRI PENGALENGAN", + ], + [ + "id_aset" => 213, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "TANAH BANGUNAN INDUSTRI BENGKEL", + ], + [ + "id_aset" => 214, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "TANAH BANGUNAN INDUSTRI PENYULINGAN MINYAK", + ], + [ + "id_aset" => 215, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "TANAH BANGUNAN INDUSTRI SEMEN", + ], + [ + "id_aset" => 216, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "TANAH BANGUNAN INDUSTRI BATU BATA/BATAKO", + ], + [ + "id_aset" => 217, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "TANAH BANGUNAN INDUSTRI GENTENG", + ], + [ + "id_aset" => 218, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => "TANAH BANGUNAN INDUSTRI PERCETAKAN", + ], + [ + "id_aset" => 219, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "TANAH BANGUNAN INDUSTRI TESKTIL", + ], + [ + "id_aset" => 220, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "TANAH BANGUNAN INDUSTRI OBAT-OBATAN", + ], + [ + "id_aset" => 221, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "TANAH BANGUNAN INDUSTRI ALAT OLAH RAGA", + ], + [ + "id_aset" => 222, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "TANAH BANGUNAN INDUSTRI KENDARAAN/ OTOMOTIF", + ], + [ + "id_aset" => 223, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "019", + "nama" => "TANAH BANGUNAN INDUSTRI PERSENJATAAN", + ], + [ + "id_aset" => 224, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "020", + "nama" => "TANAH BANGUNAN INDUSTRI KAPAL UDARA", + ], + [ + "id_aset" => 225, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "021", + "nama" => "TANAH BANGUNAN INDUSTRI KAPAL LAUT", + ], + [ + "id_aset" => 226, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "022", + "nama" => "TANAH BANGUNAN INDUSTRI KAPAL API", + ], + [ + "id_aset" => 227, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "023", + "nama" => "TANAH BANGUNAN INDUSTRI KERAMIK/MARMER", + ], + [ + "id_aset" => 228, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN INDUSTRI LAINNYA", + ], + [ + "id_aset" => 229, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN TEMPAT KERJA/JASA", + ], + [ + "id_aset" => 230, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BANGUNAN KANTOR PEMERINTAH", + ], + [ + "id_aset" => 231, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "TANAH BANGUNAN SEKOLAH", + ], + [ + "id_aset" => 232, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "TANAH BANGUNAN RUMAH SAKIT", + ], + [ + "id_aset" => 233, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "TANAH BANGUNAN APOTIK", + ], + [ + "id_aset" => 234, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "TANAH BANGUNAN TEMPAT IBADAH", + ], + [ + "id_aset" => 235, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "TANAH BANGUNAN DERMAGA", + ], + [ + "id_aset" => 236, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "TANAH BANGUNAN PELABUHAN UDARA", + ], + [ + "id_aset" => 237, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "TANAH BANGUNAN OLAH RAGA", + ], + [ + "id_aset" => 238, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "TANAH BANGUNAN TAMAN/WISATA/REKREASI", + ], + [ + "id_aset" => 239, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "TANAH BANGUNAN BALAI SIDANG/PERTEMUAN", + ], + [ + "id_aset" => 240, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "TANAH BANGUNAN BALAI NIKAH", + ], + [ + "id_aset" => 241, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "TANAH BANGUNAN PUSKESMAS/POSYANDU", + ], + [ + "id_aset" => 242, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "TANAH BANGUNAN POLIKLINIK", + ], + [ + "id_aset" => 243, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "TANAH BANGUNAN LABORATURIUM", + ], + [ + "id_aset" => 244, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "015", + "nama" => "TANAH BANGUNAN FUMIGASI/STERLISASI", + ], + [ + "id_aset" => 245, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "016", + "nama" => "TANAH BANGUNAN KARANTINA", + ], + [ + "id_aset" => 246, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "017", + "nama" => "TANAH BANGUNAN BANGSAL PENGOLAHAN PONDON KERJA", + ], + [ + "id_aset" => 247, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "018", + "nama" => "TANAH BANGUNAN KANDANG HEWAN", + ], + [ + "id_aset" => 248, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "019", + "nama" => "TANAH BANGUNAN-BANGUNAN PEMBIBITAN", + ], + [ + "id_aset" => 249, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "020", + "nama" => "TANAH BANGUNAN RUMAH PENDINGIN", + ], + [ + "id_aset" => 250, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "021", + "nama" => "TANAH BANGUNAN RUMAH PENGERING", + ], + [ + "id_aset" => 251, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "022", + "nama" => "TANAH BANGUNAN STASIUN PENELITIAN", + ], + [ + "id_aset" => 252, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "023", + "nama" => "TANAH BANGUNAN GEDUNG PELELANGAN IKAN", + ], + [ + "id_aset" => 253, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "024", + "nama" => "TANAH BANGUNAN POS JAGA/MENARA JAGA", + ], + [ + "id_aset" => 254, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN TEMPAT KERJA LAINNYA", + ], + [ + "id_aset" => 255, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "TANAH KOSONG", + ], + [ + "id_aset" => 256, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TANAH SAWAH", + ], + [ + "id_aset" => 257, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "TANAH TEGALAN", + ], + [ + "id_aset" => 258, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "TANAH KEBUN", + ], + [ + "id_aset" => 259, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "KEBUN PEMBIBITAN", + ], + [ + "id_aset" => 260, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "TANAH KOSONG YANG TIDAK DIUSAHAKAN", + ], + [ + "id_aset" => 261, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PETERNAKAN", + ], + [ + "id_aset" => 262, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "TANAH PETERNAKAN", + ], + [ + "id_aset" => 263, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "TANAH PETERNAKAN LAINNYA", + ], + [ + "id_aset" => 264, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "TANAH BANGUNAN PENGAIRAN", + ], + [ + "id_aset" => 265, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "TANAH WADUK", + ], + [ + "id_aset" => 266, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "TANAH KOMPLEK BENDUNGAN", + ], + [ + "id_aset" => 267, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "TANAH JARINGAN/SALURAN", + ], + [ + "id_aset" => 268, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN PENGAIRAN LAINNYA", + ], + [ + "id_aset" => 269, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "TANAH BANGUNAN JALAN DAN JEMBATAN", + ], + [ + "id_aset" => 270, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "TANAH JALAN", + ], + [ + "id_aset" => 271, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "TANAH JEMBATAN", + ], + [ + "id_aset" => 272, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN JALAN DAN JEMBATAN LAINNYA", + ], + [ + "id_aset" => 273, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LEMBIRAN/BANTARAN/LEPE-LEPE/SETREN DST", + ], + [ + "id_aset" => 274, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LEMBIRAN PENGAIRAN", + ], + [ + "id_aset" => 275, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LEMBIRAN JALAN DAN JEMBATAN", + ], + [ + "id_aset" => 276, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "12", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LEMBIRAN LAINNYA", + ], + [ + "id_aset" => 277, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN BUKAN GEDUNG", + ], + [ + "id_aset" => 278, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN OLAH RAGA", + ], + [ + "id_aset" => 279, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN TENIS", + ], + [ + "id_aset" => 280, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPANGAN BASKET", + ], + [ + "id_aset" => 281, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAPANGAN BADMINTON/BULUTANGKIS", + ], + [ + "id_aset" => 282, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAH LAPANGAN GOLF", + ], + [ + "id_aset" => 283, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAH LAPANGAN SEPAK BOLA", + ], + [ + "id_aset" => 284, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAH LAPANGAN BOLA VOLLY", + ], + [ + "id_aset" => 285, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TANAH LAPANGAN SEPAK TAKRAW", + ], + [ + "id_aset" => 286, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TAANH LAPANGAN PACUAN KUDA", + ], + [ + "id_aset" => 287, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "TANAH LAPANGAN BALAP SEPEDA", + ], + [ + "id_aset" => 288, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "TANAH LAPANGAN ATLETIK", + ], + [ + "id_aset" => 289, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "TANAH LAPANGAN SOFTBALL", + ], + [ + "id_aset" => 290, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN OLAHRAGA LAINNYA", + ], + [ + "id_aset" => 291, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN PARKIR", + ], + [ + "id_aset" => 292, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN PARKIR KONTRUKSI BETON", + ], + [ + "id_aset" => 293, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPANGAN PARKIR KONTRUKSI ASPAL", + ], + [ + "id_aset" => 294, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAPANGAN PARKIR SIRTU (PASIR BATU)", + ], + [ + "id_aset" => 295, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "TANAH LAPANGAN PARKIR KONBLOK", + ], + [ + "id_aset" => 296, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "TANAH LAPANGAN PARKIR TANAH KERAS", + ], + [ + "id_aset" => 297, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN PARKIR LAINNYA", + ], + [ + "id_aset" => 298, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN PENIMBUN BARANG", + ], + [ + "id_aset" => 299, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN PENIMBUN BARANG BELUM DIOLAH", + ], + [ + "id_aset" => 300, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPANGAN PENIMBUN BARANG JADI", + ], + [ + "id_aset" => 301, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAPANGAN PENIMBUN PEMBUANGAN SAMPAH", + ], + [ + "id_aset" => 302, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "TANAH LAPANGAN PENIMBUN BAHAN BANGUNAN", + ], + [ + "id_aset" => 303, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "TANAH LAPANGAN PENIMBUN BARANG BUKTI", + ], + [ + "id_aset" => 304, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN PENIMBUN BARANG LAINNYA", + ], + [ + "id_aset" => 305, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN PEMANCAR DAN STUDIO ALAM", + ], + [ + "id_aset" => 306, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN PEMANCAR TV/RADIO/RADAR", + ], + [ + "id_aset" => 307, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPANGAN STUDIO ALAM", + ], + [ + "id_aset" => 308, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAPANGAN PEMANCAR LAINNYA", + ], + [ + "id_aset" => 309, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN PEMANCAR DAN STUDIO ALAM LAINNYA", + ], + [ + "id_aset" => 310, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN PENGUJIAN/PENGOLAHAN", + ], + [ + "id_aset" => 311, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN PENGUJIAN KENDARAAN BERMOTOR", + ], + [ + "id_aset" => 312, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPANGAN PENGELOLAAN BAHAN BANGUNAN", + ], + [ + "id_aset" => 313, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN PENGUJIAN/PENGOLAHAN LAINNYA", + ], + [ + "id_aset" => 314, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "TANAH LAPANGAN TERBANG", + ], + [ + "id_aset" => 315, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "TANAH LAPANGAN TERBANG PERINTIS", + ], + [ + "id_aset" => 316, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "TANAH LAPNGAN KOMERSIAL", + ], + [ + "id_aset" => 317, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "TANAH LAPANGAN TERBANG KHUSUS/MILITER", + ], + [ + "id_aset" => 318, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "TANAH LAOPANGAN TERBANG OLAH RAGA", + ], + [ + "id_aset" => 319, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "TANAH LAPANGAN TERBANG PENDIDIKAN", + ], + [ + "id_aset" => 320, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "TANAH LAPANGAN TERBANG LAINNYA", + ], + [ + "id_aset" => 321, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN JALAN", + ], + [ + "id_aset" => 322, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK JALAN NASIONAL", + ], + [ + "id_aset" => 323, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK JALAN PROPINSI", + ], + [ + "id_aset" => 324, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK JALAN KABUPATEN", + ], + [ + "id_aset" => 325, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "TANAH UNTUK JALAN KOTAMADYA", + ], + [ + "id_aset" => 326, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "TANAH UNTUK JALAN DESA", + ], + [ + "id_aset" => 327, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "TANAH UNTUK JALAN TOL", + ], + [ + "id_aset" => 328, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "TANAH UNTUK JALAN KERETA API/LORI", + ], + [ + "id_aset" => 329, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "008", + "nama" => "TANAH UNTUK JALAN LANDASAN PACU PESAWAT TERBANG", + ], + [ + "id_aset" => 330, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "009", + "nama" => "TANAH UNTUK JALAN KHUSUS/KOMPLEK", + ], + [ + "id_aset" => 331, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN JALAN LAINNYA", + ], + [ + "id_aset" => 332, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN AIR", + ], + [ + "id_aset" => 333, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK BANGUNAN AIR IRIGASI", + ], + [ + "id_aset" => 334, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK BANGUNAN PENGAIRAN PASANG SURUT", + ], + [ + "id_aset" => 335, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK BANGUNAN PENGEMBANGAN RAWA DAN POLDER", + ], + [ + "id_aset" => 336, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "004", + "nama" => + "TANAH UNTUK BANGUNAN PENGAMAN SUNGAI DAN PENANGGULANGAN BENCANA ALAM", + ], + [ + "id_aset" => 337, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "005", + "nama" => + "TANAH UNTUK BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TNH", + ], + [ + "id_aset" => 338, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "006", + "nama" => "TANAH UNTUK BANGUNAN AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 339, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "007", + "nama" => "TANAH UNTUK BANGUNAN AIR KOTOR", + ], + [ + "id_aset" => 340, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN AIR LAINNYA", + ], + [ + "id_aset" => 341, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI", + ], + [ + "id_aset" => 342, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 343, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI AIR KOTOR/AIR LIMBAH", + ], + [ + "id_aset" => 344, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI PENGELOHAN SAMPAH", + ], + [ + "id_aset" => 345, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => + "TANAH UNTUK BANGUNAN INSTALASI PENGOLAHAN BAHAN BANGUNAN", + ], + [ + "id_aset" => 346, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "005", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI LISTRIK", + ], + [ + "id_aset" => 347, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "006", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI GARDU LISTRIK", + ], + [ + "id_aset" => 348, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "007", + "nama" => "TANAH UNTUK BANGUNAN PANGOLAHAN LIMBAH", + ], + [ + "id_aset" => 349, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN INSTALASI LAINNYA", + ], + [ + "id_aset" => 350, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN", + ], + [ + "id_aset" => 351, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 352, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN KOMUNIKASI", + ], + [ + "id_aset" => 353, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN LISTRIK", + ], + [ + "id_aset" => 354, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN GAS/BBM", + ], + [ + "id_aset" => 355, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN JARINGAN LAINNYA", + ], + [ + "id_aset" => 356, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN BERSEJARAH", + ], + [ + "id_aset" => 357, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK MONUMEN", + ], + [ + "id_aset" => 358, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK TUGU PERINGATAN", + ], + [ + "id_aset" => 359, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK TUGU BATAS WILAYAH", + ], + [ + "id_aset" => 360, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "004", + "nama" => "TANAH UNTUK CANDI", + ], + [ + "id_aset" => 361, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "005", + "nama" => "TANAH UNTUK BANGUNAN MOSEUM", + ], + [ + "id_aset" => 362, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "006", + "nama" => "TANAH UNTUK BANGUNAN BERSEJARAH", + ], + [ + "id_aset" => 363, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN BERSEJARAH LAINNYA", + ], + [ + "id_aset" => 364, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN GEDUNG OLAH RAGA", + ], + [ + "id_aset" => 365, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "001", + "nama" => "TANAH BANGUNAN SARANA OLAOH RAGA TERBATAS", + ], + [ + "id_aset" => 366, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "002", + "nama" => "TANAH BANGUNAN SARANA OLAH RAGA TERBUKA", + ], + [ + "id_aset" => 367, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "999", + "nama" => "TANAH BANGUNAN SARANA OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 368, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "000", + "nama" => "TANAH UNTUK BANGUNAN TEMPAT IBADAH", + ], + [ + "id_aset" => 369, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "001", + "nama" => "TANAH UNTUK BANGUNAN MESJID", + ], + [ + "id_aset" => 370, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "002", + "nama" => "TANAH UNTUK BANGUNAN GEREJA", + ], + [ + "id_aset" => 371, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "003", + "nama" => "TANAH UNTUK BANGUNAN PURA", + ], + [ + "id_aset" => 372, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "004", + "nama" => "TANAH UNTUK BANGUNAN VIHARA", + ], + [ + "id_aset" => 373, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "005", + "nama" => "TANAH UNTUK BANGUNAN KLENTENG/KUIL", + ], + [ + "id_aset" => 374, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "006", + "nama" => "TANAH UNTUK BANGUNAN KREMATORIUM", + ], + [ + "id_aset" => 375, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "13", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "999", + "nama" => "TANAH UNTUK BANGUNAN TAMPAT IBADAH LAINNYA", + ], + [ + "id_aset" => 376, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "14", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAH PENGGUNAAN LAINNYA", + ], + [ + "id_aset" => 377, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "14", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PENGGALIAN", + ], + [ + "id_aset" => 378, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "14", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PENGGALIAN", + ], + [ + "id_aset" => 379, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "14", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TEMPAT AIR HANGAT", + ], + [ + "id_aset" => 380, + "golongan" => "2", + "bidang" => "01", + "kelompok" => "14", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAH PENGGUNAAN LAINNYA", + ], + [ + "id_aset" => 381, + "golongan" => "3", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN DAN MESIN", + ], + [ + "id_aset" => 382, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BESAR", + ], + [ + "id_aset" => 383, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BESAR DARAT", + ], + [ + "id_aset" => 384, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TRACTOR", + ], + [ + "id_aset" => 385, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "CRAWLER TRACTOR + ATTACHMENT", + ], + [ + "id_aset" => 386, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "WHEEL TRACTOR + ATTACHMENT", + ], + [ + "id_aset" => 387, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "SWAMP TRACTOR + ATTACHMENT", + ], + [ + "id_aset" => 388, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "PRIME MOWER", + ], + [ + "id_aset" => 389, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "AIRCRAFT TOWING TRACTOR", + ], + [ + "id_aset" => 390, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TOWING BAR", + ], + [ + "id_aset" => 391, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "BULLDOZER", + ], + [ + "id_aset" => 392, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "WHEEL DOZER", + ], + [ + "id_aset" => 393, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TRACTOR LAINNYA", + ], + [ + "id_aset" => 394, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "GRADER", + ], + [ + "id_aset" => 395, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "GRADER + ATTACHMENT", + ], + [ + "id_aset" => 396, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "GRADER TOWED TYPE", + ], + [ + "id_aset" => 397, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "GRADER LAINNYA", + ], + [ + "id_aset" => 398, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "EXCAVATOR", + ], + [ + "id_aset" => 399, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "CRAWLER EXCAVATOR + ATTACHMENT", + ], + [ + "id_aset" => 400, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "WHEEL EXCAVATOR + ATTACHMENT", + ], + [ + "id_aset" => 401, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "EXCAVATOR LAINNYA", + ], + [ + "id_aset" => 402, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PILE DRIVER", + ], + [ + "id_aset" => 403, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "DIESEL PILE DRIVER", + ], + [ + "id_aset" => 404, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "PNEUMATIC PILE DRIVER", + ], + [ + "id_aset" => 405, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "VIBRATION PILE DRIVER", + ], + [ + "id_aset" => 406, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PILE DRIVER LAINNYA", + ], + [ + "id_aset" => 407, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "HAULER", + ], + [ + "id_aset" => 408, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "SELF PROPELLED SCRAPER", + ], + [ + "id_aset" => 409, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "TOWED SCRAPER", + ], + [ + "id_aset" => 410, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "DUMP TRUCK", + ], + [ + "id_aset" => 411, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "DUMP WAGON", + ], + [ + "id_aset" => 412, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "LORI", + ], + [ + "id_aset" => 413, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "HAULER LAINNYA", + ], + [ + "id_aset" => 414, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "ASPHALT EQUIPMENT", + ], + [ + "id_aset" => 415, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "ASPHALT MIXING PLANT", + ], + [ + "id_aset" => 416, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "ASPHALT FINISHER", + ], + [ + "id_aset" => 417, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "ASPHALT DISTRIBUTOR", + ], + [ + "id_aset" => 418, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "ASPHALT HEATER", + ], + [ + "id_aset" => 419, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "ASPHALT TANKER", + ], + [ + "id_aset" => 420, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "ASPHALT SPRAYER", + ], + [ + "id_aset" => 421, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "ASBUTON DRYER", + ], + [ + "id_aset" => 422, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "ASPHALT RECYCLE", + ], + [ + "id_aset" => 423, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "COLD MILLING MACHINE", + ], + [ + "id_aset" => 424, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "ASPHALT MIXER", + ], + [ + "id_aset" => 425, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "BITUMEN / ASPHALT TEST", + ], + [ + "id_aset" => 426, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "ASPHALT EQUIPMENT LAINNYA", + ], + [ + "id_aset" => 427, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "COMPACTING EQUIPMENT", + ], + [ + "id_aset" => 428, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "MACADAM ROLLER/THREE WHEEL ROLLER", + ], + [ + "id_aset" => 429, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "TANDEM ROLLER", + ], + [ + "id_aset" => 430, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "MESH ROLLER", + ], + [ + "id_aset" => 431, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "VIBRATION ROLLER", + ], + [ + "id_aset" => 432, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "TYRE ROLLER", + ], + [ + "id_aset" => 433, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "SOIL STABILIZER", + ], + [ + "id_aset" => 434, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "SHEEPFOOT/TAMPING ROLLER", + ], + [ + "id_aset" => 435, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "008", + "nama" => "STAMPER", + ], + [ + "id_aset" => 436, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "009", + "nama" => "VIBRATION PLATE", + ], + [ + "id_aset" => 437, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "010", + "nama" => "PEMADAT SAMPAH", + ], + [ + "id_aset" => 438, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "011", + "nama" => "TRUCK & BUSH TYRE", + ], + [ + "id_aset" => 439, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "COMPACTING EQUIPMENT LAINNYA", + ], + [ + "id_aset" => 440, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "AGGREGATE & CONCRETE EQUIPMENT", + ], + [ + "id_aset" => 441, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "STONE CRUSHING PLANT", + ], + [ + "id_aset" => 442, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "SCREENING CLASSIFER", + ], + [ + "id_aset" => 443, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "STONE CHUSER", + ], + [ + "id_aset" => 444, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "004", + "nama" => "AGGREGATE WASHER", + ], + [ + "id_aset" => 445, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "005", + "nama" => "BATCHING PLANT", + ], + [ + "id_aset" => 446, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "006", + "nama" => "CONCRETE FINISHER", + ], + [ + "id_aset" => 447, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "007", + "nama" => "CONCRETE PUMP", + ], + [ + "id_aset" => 448, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "008", + "nama" => "CONCRETE LIFT", + ], + [ + "id_aset" => 449, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "009", + "nama" => "CONCRETE PRESTRES", + ], + [ + "id_aset" => 450, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "010", + "nama" => "CONCRETE CUTTER", + ], + [ + "id_aset" => 451, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "011", + "nama" => "CONCRETE MIXER", + ], + [ + "id_aset" => 452, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "012", + "nama" => "CONCRETE VIBRATOR", + ], + [ + "id_aset" => 453, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "013", + "nama" => "CONCRETE BREAKER", + ], + [ + "id_aset" => 454, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "014", + "nama" => "AGGREGATE/CHIP SPREADER", + ], + [ + "id_aset" => 455, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "015", + "nama" => "GRAUTING MACHINE", + ], + [ + "id_aset" => 456, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "016", + "nama" => "CONCRETE MOULD", + ], + [ + "id_aset" => 457, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "017", + "nama" => "PIPE PLANT EQUIPMENT", + ], + [ + "id_aset" => 458, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "018", + "nama" => "CONCRETE MIXER TANDEM", + ], + [ + "id_aset" => 459, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "019", + "nama" => "ONION HEAD MACHINE", + ], + [ + "id_aset" => 460, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "020", + "nama" => "PAN MIXER", + ], + [ + "id_aset" => 461, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "021", + "nama" => "ASBUTON MIXER", + ], + [ + "id_aset" => 462, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "022", + "nama" => "PADDLE MIXER", + ], + [ + "id_aset" => 463, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "023", + "nama" => "ASPHALT BUTON CRUSHER", + ], + [ + "id_aset" => 464, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "024", + "nama" => "ROCK DRILL", + ], + [ + "id_aset" => 465, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "AGGREGATE & CONCRETE EQUIPMENT LAINNYA", + ], + [ + "id_aset" => 466, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "LOADER", + ], + [ + "id_aset" => 467, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "TRACK LOADER + ATTACHMENT", + ], + [ + "id_aset" => 468, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "WHEEL LOADER + ATTACHMENT", + ], + [ + "id_aset" => 469, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "MAIN DECK LOADER", + ], + [ + "id_aset" => 470, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => "CONVEYOR BELT TRUCK", + ], + [ + "id_aset" => 471, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "005", + "nama" => "HIGH LIFT LOADER", + ], + [ + "id_aset" => 472, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "006", + "nama" => "BACKHOE LOADER", + ], + [ + "id_aset" => 473, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "LOADER LAINNYA", + ], + [ + "id_aset" => 474, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGANGKAT", + ], + [ + "id_aset" => 475, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "TOWER CRANE", + ], + [ + "id_aset" => 476, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "TRUCK MOUNTED CRANE", + ], + [ + "id_aset" => 477, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "TRUCK CRANE", + ], + [ + "id_aset" => 478, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "WHEEL CRANE", + ], + [ + "id_aset" => 479, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "005", + "nama" => "FORKLIFT", + ], + [ + "id_aset" => 480, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "006", + "nama" => "FORTAL CRANE", + ], + [ + "id_aset" => 481, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "007", + "nama" => "CRAWLER CRANE", + ], + [ + "id_aset" => 482, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "008", + "nama" => "CONTAINER CRANE", + ], + [ + "id_aset" => 483, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "009", + "nama" => "TRANSTAINER", + ], + [ + "id_aset" => 484, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "010", + "nama" => "TRAVELT CONTAINER STACKER", + ], + [ + "id_aset" => 485, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "011", + "nama" => "TOP LOADER", + ], + [ + "id_aset" => 486, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "012", + "nama" => "RAIL LIFTER", + ], + [ + "id_aset" => 487, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "013", + "nama" => "TRACK MOTOR CAR", + ], + [ + "id_aset" => 488, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "014", + "nama" => "SALVAGE PESAWAT UDARA", + ], + [ + "id_aset" => 489, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "015", + "nama" => "HAND PALET TRUCK", + ], + [ + "id_aset" => 490, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "016", + "nama" => "CRANE SHOVEL 20 T", + ], + [ + "id_aset" => 491, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "017", + "nama" => "SHOP WOOD WORKING CRANE SHOVEL 20 T", + ], + [ + "id_aset" => 492, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGANGKAT LAINNYA", + ], + [ + "id_aset" => 493, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => "MESIN PROSES", + ], + [ + "id_aset" => 494, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "MESIN PEMBUAT PELLET", + ], + [ + "id_aset" => 495, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "MESIN PEMBUAT ES", + ], + [ + "id_aset" => 496, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "MESIN PENGHANCUR ES", + ], + [ + "id_aset" => 497, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "004", + "nama" => "WATER TREATMENT (MESIN PROSES)", + ], + [ + "id_aset" => 498, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "005", + "nama" => "SEA WATER TREATMENT", + ], + [ + "id_aset" => 499, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "006", + "nama" => "MESIN PENGOLAH DODOL", + ], + [ + "id_aset" => 500, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => "MESIN PROSES LAINNYA", + ], + [ + "id_aset" => 501, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BESAR DARAT LAINNYA", + ], + [ + "id_aset" => 502, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BESAR DARAT LAINNYA", + ], + [ + "id_aset" => 503, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BESAR APUNG", + ], + [ + "id_aset" => 504, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "DREDGER", + ], + [ + "id_aset" => 505, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "SUCTION DREDGER", + ], + [ + "id_aset" => 506, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "BUCKET DREDGER", + ], + [ + "id_aset" => 507, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "CUTTER SUCTION DREDGER", + ], + [ + "id_aset" => 508, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "DREDGER LAINNYA", + ], + [ + "id_aset" => 509, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "FLOATING EXCAVATOR", + ], + [ + "id_aset" => 510, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "FLOATING EXCAVATOR + ATTACHMENT", + ], + [ + "id_aset" => 511, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "FLOATING CRANE", + ], + [ + "id_aset" => 512, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "FLOATING PUMP", + ], + [ + "id_aset" => 513, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "FLOATING EXCAVATOR LAINNYA", + ], + [ + "id_aset" => 514, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "AMPHIBI DREDGER", + ], + [ + "id_aset" => 515, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PLAIN SUCTION", + ], + [ + "id_aset" => 516, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "CUTTER (AMPHIBI DREDGER)", + ], + [ + "id_aset" => 517, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "CLAMSHELL / DRAGLINE", + ], + [ + "id_aset" => 518, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "AMPHIBI DREDGER LAINNYA", + ], + [ + "id_aset" => 519, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "KAPAL TARIK", + ], + [ + "id_aset" => 520, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "KAPAL TARIK", + ], + [ + "id_aset" => 521, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "KAPAL TARIK LAINNYA", + ], + [ + "id_aset" => 522, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "MESIN PROSES APUNG", + ], + [ + "id_aset" => 523, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "WATER TREATMENT (MESIN PROSES APUNG)", + ], + [ + "id_aset" => 524, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "MESIN PROSES APUNG LAINNYA", + ], + [ + "id_aset" => 525, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BESAR APUNG LAINNYA", + ], + [ + "id_aset" => 526, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BESAR APUNG LAINNYA", + ], + [ + "id_aset" => 527, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BANTU", + ], + [ + "id_aset" => 528, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENARIK", + ], + [ + "id_aset" => 529, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PENARIK KAPAL", + ], + [ + "id_aset" => 530, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PENARIK JARING", + ], + [ + "id_aset" => 531, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENARIK LAINNYA", + ], + [ + "id_aset" => 532, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "FEEDER", + ], + [ + "id_aset" => 533, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "ELEVATOR /LIFT", + ], + [ + "id_aset" => 534, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BELT CONVEYOR (FEEDER)", + ], + [ + "id_aset" => 535, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "SCREW CONVEYOR (FEEDER)", + ], + [ + "id_aset" => 536, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "ESCALATOR", + ], + [ + "id_aset" => 537, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "GANDOLA", + ], + [ + "id_aset" => 538, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "ELEVATOR (FEEDER)", + ], + [ + "id_aset" => 539, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "GANGWAY", + ], + [ + "id_aset" => 540, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "FEEDER LAINNYA (ALAT BESAR)", + ], + [ + "id_aset" => 541, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "COMPRESSOR", + ], + [ + "id_aset" => 542, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TRANSPORTABLE COMPRESSOR", + ], + [ + "id_aset" => 543, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "PORTABLE COMPRESSOR", + ], + [ + "id_aset" => 544, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "STATIONARY COMPRESSOR", + ], + [ + "id_aset" => 545, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "AIR COMPRESOR", + ], + [ + "id_aset" => 546, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "COMPRESSOR PNEUMATIC TOOL 25 GMP", + ], + [ + "id_aset" => 547, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "COMPRESSOR LAINNYA", + ], + [ + "id_aset" => 548, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ELECTRIC GENERATING SET", + ], + [ + "id_aset" => 549, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "TRANSPORTABLE GENERATING SET", + ], + [ + "id_aset" => 550, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "PORTABLE GENERATING SET", + ], + [ + "id_aset" => 551, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "STATIONARY GENERATING SET", + ], + [ + "id_aset" => 552, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "DYNAMO ELECTRIC", + ], + [ + "id_aset" => 553, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ELECTRIC GENERATING SET LAINNYA", + ], + [ + "id_aset" => 554, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "POMPA", + ], + [ + "id_aset" => 555, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TRANSPORTABLE WATER PUMP", + ], + [ + "id_aset" => 556, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "PORTABLE WATER PUMP", + ], + [ + "id_aset" => 557, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "STATIONARY WATER PUMP", + ], + [ + "id_aset" => 558, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "POMPA LUMPUR", + ], + [ + "id_aset" => 559, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "SUMERSIBLE PUMP", + ], + [ + "id_aset" => 560, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "POMPA TANGAN", + ], + [ + "id_aset" => 561, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "POMPA ANGIN", + ], + [ + "id_aset" => 562, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "POMPA BENSIN/MINYAK STATIONERY", + ], + [ + "id_aset" => 563, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "POMPA BENSIN/MINYAK TRANSPORTABLE", + ], + [ + "id_aset" => 564, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "POMPA AIR", + ], + [ + "id_aset" => 565, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "WATER DISTRIBUTOR", + ], + [ + "id_aset" => 566, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "WATER PURIFICATION", + ], + [ + "id_aset" => 567, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "POMPA LAINNYA", + ], + [ + "id_aset" => 568, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "MESIN BOR", + ], + [ + "id_aset" => 569, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "MESIN BOR BATU", + ], + [ + "id_aset" => 570, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "MESIN BOR TANAH", + ], + [ + "id_aset" => 571, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "MESIN BOR BETON", + ], + [ + "id_aset" => 572, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "MESIN BOR LAINNYA", + ], + [ + "id_aset" => 573, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "UNIT PEMELIHARAAN LAPANGAN", + ], + [ + "id_aset" => 574, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "MOBIL WORKSHOP", + ], + [ + "id_aset" => 575, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "SERVICE CAR", + ], + [ + "id_aset" => 576, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "FLOATING WORKSHOP", + ], + [ + "id_aset" => 577, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "ROAD MAINTENANCE TRUCK", + ], + [ + "id_aset" => 578, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "SWEEPER TRUCK", + ], + [ + "id_aset" => 579, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "WRECK CAR", + ], + [ + "id_aset" => 580, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "LEAK DETECTOR (UNIT PEMELIHARAAN LAPANGAN)", + ], + [ + "id_aset" => 581, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "008", + "nama" => "PIPE LOCATOR", + ], + [ + "id_aset" => 582, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "009", + "nama" => "METAL LOCATOR", + ], + [ + "id_aset" => 583, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "010", + "nama" => "MESIN DIESEL", + ], + [ + "id_aset" => 584, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "011", + "nama" => "KETLE HEATING", + ], + [ + "id_aset" => 585, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "012", + "nama" => "SWEEPER PENGHISAP OLI", + ], + [ + "id_aset" => 586, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "013", + "nama" => "FUEL TANK", + ], + [ + "id_aset" => 587, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "014", + "nama" => "GRASS COLECTOR", + ], + [ + "id_aset" => 588, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "015", + "nama" => "MESIN PEMOTONG ASPAL (DRAGING)", + ], + [ + "id_aset" => 589, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "016", + "nama" => "SWEEPER ROTARY", + ], + [ + "id_aset" => 590, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "017", + "nama" => "EARTH VAGER TRUCK", + ], + [ + "id_aset" => 591, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "018", + "nama" => "SCRAPPER", + ], + [ + "id_aset" => 592, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "019", + "nama" => "ROSTER", + ], + [ + "id_aset" => 593, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "020", + "nama" => "SHOP TRUCK EQUIPMENT", + ], + [ + "id_aset" => 594, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "UNIT PEMELIHARAAN LAPANGAN LAINNYA", + ], + [ + "id_aset" => 595, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN AIR KOTOR", + ], + [ + "id_aset" => 596, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PENGOLAHAN AIR KOTOR", + ], + [ + "id_aset" => 597, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 598, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "PEMBANGKIT UAP AIR PANAS/STEAM GENERATOR", + ], + [ + "id_aset" => 599, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMBANGKIT UAP AIR PANAS", + ], + [ + "id_aset" => 600, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "PEMBANGKIT UAP AIR PANAS/STEAM GENERATOR LAINNYA", + ], + [ + "id_aset" => 601, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KEBAKARAN HUTAN", + ], + [ + "id_aset" => 602, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "001", + "nama" => "BACKPACK PUMP (POMPA PUNGGUNG BESAR)", + ], + [ + "id_aset" => 603, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "002", + "nama" => "FLOATING FIRE PUMP (POMPA PUNGGUNG KECIL)", + ], + [ + "id_aset" => 604, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "003", + "nama" => "POMPA PORTABLE", + ], + [ + "id_aset" => 605, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "004", + "nama" => "JET SHOOTER", + ], + [ + "id_aset" => 606, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "005", + "nama" => "GOLOK PEMADAM", + ], + [ + "id_aset" => 607, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "006", + "nama" => "BLADE SHOVEL (SEKOP PEMADAM)", + ], + [ + "id_aset" => 608, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "007", + "nama" => "SUMBUT", + ], + [ + "id_aset" => 609, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "008", + "nama" => "VELD BED", + ], + [ + "id_aset" => 610, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "009", + "nama" => "RANSEL PEMADAM", + ], + [ + "id_aset" => 611, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "010", + "nama" => "FULL BODY HARNESS", + ], + [ + "id_aset" => 612, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "011", + "nama" => "SIT HARNESS", + ], + [ + "id_aset" => 613, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "012", + "nama" => "FIGURE", + ], + [ + "id_aset" => 614, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "013", + "nama" => "ASCENDER", + ], + [ + "id_aset" => 615, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "014", + "nama" => "SCROLL LOCK", + ], + [ + "id_aset" => 616, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "015", + "nama" => "PERLENGKAPAN RESCUE", + ], + [ + "id_aset" => 617, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "016", + "nama" => "AUTOMATIC SNAP HOOK", + ], + [ + "id_aset" => 618, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "017", + "nama" => "TANGGA TALI", + ], + [ + "id_aset" => 619, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "018", + "nama" => "NOZEL TABIR ALUMUNIUM", + ], + [ + "id_aset" => 620, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "019", + "nama" => "NOZEL KUNINGAN PERNEKEL", + ], + [ + "id_aset" => 621, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "020", + "nama" => "SELANG AIR", + ], + [ + "id_aset" => 622, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "021", + "nama" => "BREATHING APARATUS (TABUNG 10 KG)", + ], + [ + "id_aset" => 623, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "022", + "nama" => "GEPYOK PEMADAM", + ], + [ + "id_aset" => 624, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "023", + "nama" => "FIRE RAKE (GARU TAJAM)", + ], + [ + "id_aset" => 625, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "024", + "nama" => "PULASKI AXE (KAPAK DUA FUNGSI)", + ], + [ + "id_aset" => 626, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "025", + "nama" => "FIRE TOOL (GARU PACUL/ CANGKUL)", + ], + [ + "id_aset" => 627, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "026", + "nama" => "SABIT SEMAK", + ], + [ + "id_aset" => 628, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "027", + "nama" => "FLAPPER (PEMUKUL API)", + ], + [ + "id_aset" => 629, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "028", + "nama" => "DRIP TORCH (OBOR SULUT TETES)", + ], + [ + "id_aset" => 630, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "029", + "nama" => "FILES (KIKIR BAJA)", + ], + [ + "id_aset" => 631, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "030", + "nama" => "KACA MATA (LENSA TAHAN PANAS)", + ], + [ + "id_aset" => 632, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "031", + "nama" => "KOPEL REM", + ], + [ + "id_aset" => 633, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "032", + "nama" => "FELPES", + ], + [ + "id_aset" => 634, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "033", + "nama" => "KANTONG AIR", + ], + [ + "id_aset" => 635, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "034", + "nama" => "BATANG POMPA", + ], + [ + "id_aset" => 636, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN KEBAKARAN HUTAN LAINNYA", + ], + [ + "id_aset" => 637, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN SELAM", + ], + [ + "id_aset" => 638, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "001", + "nama" => "TANKS (TABUNG SELAM)", + ], + [ + "id_aset" => 639, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "002", + "nama" => "SEPATU KARANG", + ], + [ + "id_aset" => 640, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "003", + "nama" => "KNIVES (PISAU SELAM)", + ], + [ + "id_aset" => 641, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "004", + "nama" => "DIVE LIGHTS (SENTER SELAM)", + ], + [ + "id_aset" => 642, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "005", + "nama" => "REGULATOR INSTRUMENTS", + ], + [ + "id_aset" => 643, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "006", + "nama" => "BOUYANCY COMPENSATOR DEVICE (BCD)", + ], + [ + "id_aset" => 644, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "007", + "nama" => "BELT (SABUK PEMBERAT)", + ], + [ + "id_aset" => 645, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "008", + "nama" => "WEIGHT (PEMBERAT)", + ], + [ + "id_aset" => 646, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "009", + "nama" => "DIVING GLOVES (SARUNG TANGAN SELAM)", + ], + [ + "id_aset" => 647, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "010", + "nama" => "KOMPRESOR SELAM", + ], + [ + "id_aset" => 648, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "011", + "nama" => "PELAMPUNG LIFE JACKET", + ], + [ + "id_aset" => 649, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN SELAM LAINNYA", + ], + [ + "id_aset" => 650, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN SAR MOUNTENERING", + ], + [ + "id_aset" => 651, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "001", + "nama" => "TALI KAMANTEL STATIC", + ], + [ + "id_aset" => 652, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "002", + "nama" => "TALI KAMANTEL DINAMIC", + ], + [ + "id_aset" => 653, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "003", + "nama" => "RAINCOAT (PONCO)", + ], + [ + "id_aset" => 654, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "004", + "nama" => "SEAT HARNESS", + ], + [ + "id_aset" => 655, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "005", + "nama" => "PRUSIK", + ], + [ + "id_aset" => 656, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "006", + "nama" => "JUMMAR", + ], + [ + "id_aset" => 657, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "007", + "nama" => "PULLEY", + ], + [ + "id_aset" => 658, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "008", + "nama" => "DESCENDER FIGURE OG EIGHT", + ], + [ + "id_aset" => 659, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "009", + "nama" => "CARABINER NON SCREW", + ], + [ + "id_aset" => 660, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "010", + "nama" => "WEBBING", + ], + [ + "id_aset" => 661, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "011", + "nama" => "TANDU LIPAT", + ], + [ + "id_aset" => 662, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN SAR MOUNTENERING LAINNYA", + ], + [ + "id_aset" => 663, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BANTU LAINNYA", + ], + [ + "id_aset" => 664, + "golongan" => "3", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BANTU LAINNYA", + ], + [ + "id_aset" => 665, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN", + ], + [ + "id_aset" => 666, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN DARAT BERMOTOR", + ], + [ + "id_aset" => 667, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN DINAS BERMOTOR PERORANGAN", + ], + [ + "id_aset" => 668, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "SEDAN", + ], + [ + "id_aset" => 669, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "JEEP", + ], + [ + "id_aset" => 670, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "STATION WAGON", + ], + [ + "id_aset" => 671, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN DINAS BERMOTOR PERORANGAN LAINNYA", + ], + [ + "id_aset" => 672, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN BERMOTOR PENUMPANG", + ], + [ + "id_aset" => 673, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BUS ( PENUMPANG 30 ORANG KEATAS )", + ], + [ + "id_aset" => 674, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MICRO BUS ( PENUMPANG 15 S/D 29 ORANG )", + ], + [ + "id_aset" => 675, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "MINI BUS ( PENUMPANG 14 ORANG KEBAWAH )", + ], + [ + "id_aset" => 676, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "KENDARAAN LAPIS BAJA", + ], + [ + "id_aset" => 677, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN BERMOTOR PENUMPANG LAINNYA", + ], + [ + "id_aset" => 678, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN BERMOTOR ANGKUTAN BARANG", + ], + [ + "id_aset" => 679, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TRUCK + ATTACHMENT", + ], + [ + "id_aset" => 680, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "PICK UP", + ], + [ + "id_aset" => 681, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "YEENGLER/TRAILER", + ], + [ + "id_aset" => 682, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SEMI TRAILER", + ], + [ + "id_aset" => 683, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "TRUCK PONTON DENGAN TRAILLER", + ], + [ + "id_aset" => 684, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "DALHURA", + ], + [ + "id_aset" => 685, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN BERMOTOR ANGKUTAN BARANG LAINNYA", + ], + [ + "id_aset" => 686, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN BERMOTOR BERODA DUA", + ], + [ + "id_aset" => 687, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SEPEDA MOTOR", + ], + [ + "id_aset" => 688, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SCOOTER", + ], + [ + "id_aset" => 689, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "SEPEDA MOTOR PERPUSTAKAAN KELILING", + ], + [ + "id_aset" => 690, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "SEPEDA MOTOR PATROLI", + ], + [ + "id_aset" => 691, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "SEPEDA MOTOR PENGAWALAN", + ], + [ + "id_aset" => 692, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN BERMOTOR BERODA DUA LAINNYA", + ], + [ + "id_aset" => 693, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN BERMOTOR KHUSUS", + ], + [ + "id_aset" => 694, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "MOBIL AMBULANCE", + ], + [ + "id_aset" => 695, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "MOBIL JENAZAH", + ], + [ + "id_aset" => 696, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "MOBIL UNIT PENERANGAN DARAT", + ], + [ + "id_aset" => 697, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "MOBIL PEMADAM KEBAKARAN", + ], + [ + "id_aset" => 698, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "MOBIL TINJA", + ], + [ + "id_aset" => 699, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "MOBIL TANGKI AIR", + ], + [ + "id_aset" => 700, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "MOBIL UNIT MONITORING FREKWENSI", + ], + [ + "id_aset" => 701, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "MOBIL UNIT PERPUSTAKAAN KELILING", + ], + [ + "id_aset" => 702, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "MOBIL UNIT VISUAL MINI (MUVIANI)", + ], + [ + "id_aset" => 703, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "MOBIL UNIT SATELITE LINK VAN", + ], + [ + "id_aset" => 704, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "MOBIL UNIT PANGGUNG", + ], + [ + "id_aset" => 705, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "MOBIL UNIT PAMERAN", + ], + [ + "id_aset" => 706, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "OUT SIDE BROAD CAST VAN RADIO", + ], + [ + "id_aset" => 707, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "OUT SIDE BROAD CAST VAN TELEVISI", + ], + [ + "id_aset" => 708, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "MOBIL UNIT PRODUKSI FILM", + ], + [ + "id_aset" => 709, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "MOBIL UNIT PRODUKSI TELEVISI", + ], + [ + "id_aset" => 710, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => "MOBIL UNIT PRODUKSI CINERAMA", + ], + [ + "id_aset" => 711, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "MOBIL UNIT KESEHATAN MASYARAKAT", + ], + [ + "id_aset" => 712, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "MOBIL UNIT KESEHATAN HEWAN", + ], + [ + "id_aset" => 713, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "MOBIL UNIT TAHANAN", + ], + [ + "id_aset" => 714, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "MOBIL UNIT PENGANGKUT UANG", + ], + [ + "id_aset" => 715, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "TRUCK SAMPAH", + ], + [ + "id_aset" => 716, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "MOBIL TANGKI BAHAN BAKAR", + ], + [ + "id_aset" => 717, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "MOBIL UNIT RONTGEN", + ], + [ + "id_aset" => 718, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => "MOBIL UNIT REHABILITASI SOSIAL KELILING", + ], + [ + "id_aset" => 719, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "026", + "nama" => "BOMP TRAILER", + ], + [ + "id_aset" => 720, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "027", + "nama" => "KENDARAAN KLINIK", + ], + [ + "id_aset" => 721, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "028", + "nama" => "MOBIL UNIT PENGANGKUT LIMBAH RADIO AKTIF", + ], + [ + "id_aset" => 722, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "029", + "nama" => "MOBIL TRANFUSI DARAH", + ], + [ + "id_aset" => 723, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "030", + "nama" => "KENDARAAN TIM PEMELIHARAAN", + ], + [ + "id_aset" => 724, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "031", + "nama" => "MOBIL PENARIK (UNIMOG)", + ], + [ + "id_aset" => 725, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "032", + "nama" => "KENDARAAN SATMOBEK/SATMOBENG/SATMOMAS", + ], + [ + "id_aset" => 726, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "033", + "nama" => "MOBIL WORK SHOP/SERVICES", + ], + [ + "id_aset" => 727, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "034", + "nama" => "KENDARAAN DEREK", + ], + [ + "id_aset" => 728, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "035", + "nama" => "MOBIL UNIT KHUSUS ALJIHANDAK", + ], + [ + "id_aset" => 729, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "036", + "nama" => "AIRCRAFT AIR CONDITIONING", + ], + [ + "id_aset" => 730, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "037", + "nama" => "KENDARAAN GIRAFLE RADAR", + ], + [ + "id_aset" => 731, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "038", + "nama" => "MOBIL PERS VAN", + ], + [ + "id_aset" => 732, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "039", + "nama" => "KENDARAAN UNIT BEDAH", + ], + [ + "id_aset" => 733, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "040", + "nama" => "MOBILE FLOODLIGHT", + ], + [ + "id_aset" => 734, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "041", + "nama" => "KENDARAAN PENGANGKUT TANK", + ], + [ + "id_aset" => 735, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "042", + "nama" => "CRASH CAR", + ], + [ + "id_aset" => 736, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "043", + "nama" => "KENDARAAN WATER CANON", + ], + [ + "id_aset" => 737, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "044", + "nama" => "FOAM VEHICLE", + ], + [ + "id_aset" => 738, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "045", + "nama" => "KENDARAAN TOILET", + ], + [ + "id_aset" => 739, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "046", + "nama" => "RAPID INVENTION VEHICLE", + ], + [ + "id_aset" => 740, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "047", + "nama" => "KENDARAAN GAS AIRMATA", + ], + [ + "id_aset" => 741, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "048", + "nama" => "KENDARAAN TAKTIS", + ], + [ + "id_aset" => 742, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "049", + "nama" => "KENDARAAN VIP (ANTI PELURU)", + ], + [ + "id_aset" => 743, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "050", + "nama" => "KENDARAAN TANGGA PESAWAT", + ], + [ + "id_aset" => 744, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "051", + "nama" => "KENDARAAN METEO", + ], + [ + "id_aset" => 745, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "052", + "nama" => "KENDARAAN SWEEPER", + ], + [ + "id_aset" => 746, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "053", + "nama" => "KENDARAAN KAMAR SANDI", + ], + [ + "id_aset" => 747, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "054", + "nama" => "KENDARAAN JAMMING FREKUENSI", + ], + [ + "id_aset" => 748, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "055", + "nama" => "KENDARAAN MONITORING SINYAL", + ], + [ + "id_aset" => 749, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "056", + "nama" => "MOBIL DAPUR LAPANGAN", + ], + [ + "id_aset" => 750, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "057", + "nama" => "MOBIL PENARIK BARRIER", + ], + [ + "id_aset" => 751, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "058", + "nama" => "MOBIL OPERASIONAL PJR", + ], + [ + "id_aset" => 752, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "059", + "nama" => "AUTOMATIC UNGUIDED VEHICLE (AUGV)", + ], + [ + "id_aset" => 753, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "060", + "nama" => "RESCUE CAR", + ], + [ + "id_aset" => 754, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "061", + "nama" => "RAPID DEPLOYMENT LAND SAR", + ], + [ + "id_aset" => 755, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "062", + "nama" => "RESCUE TRUCK", + ], + [ + "id_aset" => 756, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "063", + "nama" => "MONILOG (MOBIL LOGISTIK/ PERSONIL)", + ], + [ + "id_aset" => 757, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "064", + "nama" => "MOBIL LATIH", + ], + [ + "id_aset" => 758, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "065", + "nama" => "RAN SWITCH WAGON", + ], + [ + "id_aset" => 759, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "066", + "nama" => "RAN CACDRI WAGON", + ], + [ + "id_aset" => 760, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "067", + "nama" => "RAN TRAKTOR", + ], + [ + "id_aset" => 761, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "068", + "nama" => "RAN TANGKI", + ], + [ + "id_aset" => 762, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "069", + "nama" => "RAN ZAT ASAM", + ], + [ + "id_aset" => 763, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "070", + "nama" => "RAN PENYAPU LANDASAN", + ], + [ + "id_aset" => 764, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "071", + "nama" => "RAN PANDU PESAWAT", + ], + [ + "id_aset" => 765, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "072", + "nama" => "RAN PENARIK PESAWAT", + ], + [ + "id_aset" => 766, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "073", + "nama" => "RAN PENYAPU HANGGAR", + ], + [ + "id_aset" => 767, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "074", + "nama" => "RAN DRUG CHUTE", + ], + [ + "id_aset" => 768, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "075", + "nama" => "RAN PEMBANGKIT TENAGA", + ], + [ + "id_aset" => 769, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "076", + "nama" => "RAN CRIME SQUID", + ], + [ + "id_aset" => 770, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "077", + "nama" => "RAN WEAPON CARRIER", + ], + [ + "id_aset" => 771, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "078", + "nama" => "RAN LABORATORIUM / UJI COBA", + ], + [ + "id_aset" => 772, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "079", + "nama" => "RAN KANTIN", + ], + [ + "id_aset" => 773, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "080", + "nama" => "RAN PATROLI", + ], + [ + "id_aset" => 774, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "081", + "nama" => "RAN JEEP KOMMAB", + ], + [ + "id_aset" => 775, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "082", + "nama" => "RAN RECOVERY", + ], + [ + "id_aset" => 776, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "083", + "nama" => "RAN PENGISI BB PESAWAT", + ], + [ + "id_aset" => 777, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "084", + "nama" => "RAN WRECKER", + ], + [ + "id_aset" => 778, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "085", + "nama" => "RAN FORKLIP", + ], + [ + "id_aset" => 779, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "086", + "nama" => "MOBIL PATROLI", + ], + [ + "id_aset" => 780, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "087", + "nama" => "KENDARAAN APC", + ], + [ + "id_aset" => 781, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "088", + "nama" => "KENDARAAN DARE V", + ], + [ + "id_aset" => 782, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "089", + "nama" => "KENDARAAN/MOBIL PENGAWALAN", + ], + [ + "id_aset" => 783, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "090", + "nama" => "MOBIL IRUP", + ], + [ + "id_aset" => 784, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "091", + "nama" => "MOBIL KOMLEK POLRI", + ], + [ + "id_aset" => 785, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "092", + "nama" => "MOBIL UNIT TKP", + ], + [ + "id_aset" => 786, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "093", + "nama" => "MOBIL UNIT LAKA LANTAS", + ], + [ + "id_aset" => 787, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "094", + "nama" => "MOBIL UNIT IDENTIFIKASI", + ], + [ + "id_aset" => 788, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "095", + "nama" => "MOBIL UNIT LABFOR", + ], + [ + "id_aset" => 789, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "096", + "nama" => "MOBIL UNIT PENERANGAN POLRI", + ], + [ + "id_aset" => 790, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "097", + "nama" => "MOBIL UNIT DEREK", + ], + [ + "id_aset" => 791, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "098", + "nama" => "MOBIL UNIT SATWA", + ], + [ + "id_aset" => 792, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "099", + "nama" => "RANTIS PHH", + ], + [ + "id_aset" => 793, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "100", + "nama" => "KENDARAAN POS POLISI MOBILE", + ], + [ + "id_aset" => 794, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "101", + "nama" => "MOBIL UNIT ALSUS JIHANDAK", + ], + [ + "id_aset" => 795, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "102", + "nama" => "MOBIL GOLFCAR", + ], + [ + "id_aset" => 796, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "103", + "nama" => "RANTIS RESCUE SAMAPTA", + ], + [ + "id_aset" => 797, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "104", + "nama" => "RANSUS SATWA ANJING TYPE KECIL", + ], + [ + "id_aset" => 798, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "105", + "nama" => "RANSUS SATWA ANJING TYPE SEDANG", + ], + [ + "id_aset" => 799, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "106", + "nama" => "RANSUS SATWA ANJING TYPE BESAR", + ], + [ + "id_aset" => 800, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "107", + "nama" => "RANSUS SATWA KUDA TYPE SEDANG", + ], + [ + "id_aset" => 801, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "108", + "nama" => "RANSUS SATWA KUDA TYPE BESAR", + ], + [ + "id_aset" => 802, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "109", + "nama" => "TRAILER KUDA", + ], + [ + "id_aset" => 803, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN BERMOTOR KHUSUS LAINNYA", + ], + [ + "id_aset" => 804, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN DARAT BERMOTOR LAINNYA", + ], + [ + "id_aset" => 805, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN DARAT BERMOTOR LAINNYA", + ], + [ + "id_aset" => 806, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN DARAT TAK BERMOTOR", + ], + [ + "id_aset" => 807, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN TAK BERMOTOR ANGKUTAN BARANG", + ], + [ + "id_aset" => 808, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "GEROBAK TARIK", + ], + [ + "id_aset" => 809, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "GEROBAK DORONG", + ], + [ + "id_aset" => 810, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "CARAVAN", + ], + [ + "id_aset" => 811, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "LORI DORONG", + ], + [ + "id_aset" => 812, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TRAILER", + ], + [ + "id_aset" => 813, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "CONTAINER DOLLY", + ], + [ + "id_aset" => 814, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "PALLET DOLLY", + ], + [ + "id_aset" => 815, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "BAGGAGE AND MAIL CART", + ], + [ + "id_aset" => 816, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "BAGGAGE TROLLY", + ], + [ + "id_aset" => 817, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "MEJA DORONG SAJI/TROLLEY SAJI", + ], + [ + "id_aset" => 818, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "RODA DUA BERINSULASI", + ], + [ + "id_aset" => 819, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "RODA TIGA/ GEROBAK KAYUH BERINSULASI", + ], + [ + "id_aset" => 820, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN TAK BERMOTOR ANGKUTAN BARANG LAINNYA", + ], + [ + "id_aset" => 821, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "KENDARAAN TAK BERMOTOR PENUMPANG", + ], + [ + "id_aset" => 822, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SEPEDA", + ], + [ + "id_aset" => 823, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "KUDA (KENDARAAN TAK BERMOTOR PENUMPANG)", + ], + [ + "id_aset" => 824, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "KENDARAAN TAK BERMOTOR PENUMPANG LAINNYA", + ], + [ + "id_aset" => 825, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN KERETA REL TAK BERMOTOR", + ], + [ + "id_aset" => 826, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "KERETA PENUMPANG", + ], + [ + "id_aset" => 827, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "KERETA MAKAN", + ], + [ + "id_aset" => 828, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "POWER CAR", + ], + [ + "id_aset" => 829, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "GERBONG BARANG TERTUTUP", + ], + [ + "id_aset" => 830, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "GERBONG BARANG TERBUKA", + ], + [ + "id_aset" => 831, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN KERETA REL TAK BERMOTOR LAINNYA", + ], + [ + "id_aset" => 832, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN DARAT TAK BERMOTOR LAINNYA", + ], + [ + "id_aset" => 833, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN DARAT TAK BERMOTOR LAINNYA", + ], + [ + "id_aset" => 834, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR", + ], + [ + "id_aset" => 835, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR UNTUK BARANG", + ], + [ + "id_aset" => 836, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "KAPAL MINYAK (TANKER)", + ], + [ + "id_aset" => 837, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TONGKANG BERMOTOR", + ], + [ + "id_aset" => 838, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TUG BOAT + ATTACHMENT", + ], + [ + "id_aset" => 839, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "LANDING SHIP TRANSPORTATION( L.S.T )", + ], + [ + "id_aset" => 840, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "KAPAL CARGO (KAPAL BARANG)", + ], + [ + "id_aset" => 841, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TRUCK AIR", + ], + [ + "id_aset" => 842, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR UNTUK BARANG LAINNYA", + ], + [ + "id_aset" => 843, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR UNTUK PENUMPANG", + ], + [ + "id_aset" => 844, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SPEED BOAT / MOTOR TEMPEL", + ], + [ + "id_aset" => 845, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MOTOR BOAT", + ], + [ + "id_aset" => 846, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "KLOTOK", + ], + [ + "id_aset" => 847, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "FERRY", + ], + [ + "id_aset" => 848, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "HIDROFOIL", + ], + [ + "id_aset" => 849, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "JETFOIL", + ], + [ + "id_aset" => 850, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "LONG BOAT", + ], + [ + "id_aset" => 851, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "KAPAL PASSANGER (KAPAL PENUMPANG)", + ], + [ + "id_aset" => 852, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "PERAHU KAYU", + ], + [ + "id_aset" => 853, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "ALAT ANGKUTAN APUNG BERMOTOR UNTUK PENUMPANG LAINNYA", + ], + [ + "id_aset" => 854, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR KHUSUS", + ], + [ + "id_aset" => 855, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SURVEY BOAT", + ], + [ + "id_aset" => 856, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "KAPAL ANTI POLUSI", + ], + [ + "id_aset" => 857, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "KAPAL PERAMBUAN", + ], + [ + "id_aset" => 858, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "OUT BOAT MOTOR", + ], + [ + "id_aset" => 859, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "KAPAL HYDROGRAFI", + ], + [ + "id_aset" => 860, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "KAPAL UNIT PENERANGAN AIR", + ], + [ + "id_aset" => 861, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "KAPAL VISUAL MINI", + ], + [ + "id_aset" => 862, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "KAPAL PENANGKAP IKAN", + ], + [ + "id_aset" => 863, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "KAPAL PENGANGKUT HEWAN", + ], + [ + "id_aset" => 864, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "KAPAL PATROLI PANTAI", + ], + [ + "id_aset" => 865, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "KAPAL MOTOR PERPUSTAKAAN KELILING", + ], + [ + "id_aset" => 866, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "FLOATING WORK SHOP/DOCK", + ], + [ + "id_aset" => 867, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => "MORING BOAT/KEPIL", + ], + [ + "id_aset" => 868, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "SUCTION DREDGER/KERUK HISAP", + ], + [ + "id_aset" => 869, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "QUTTER DREDGER/KERUK BOR", + ], + [ + "id_aset" => 870, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "BUCKET DREDGER/KERUK TIMBA", + ], + [ + "id_aset" => 871, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "CLAMPSHEL DREDGER/KERUK CAKRAM", + ], + [ + "id_aset" => 872, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "018", + "nama" => "ALAT ANGKUTAN APUNG UNTUK MANCING", + ], + [ + "id_aset" => 873, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "019", + "nama" => + "FLOATING PILE + ATTACHMENT (ALAT ANGKUTAN APUNG BERMOTOR KHUSUS)", + ], + [ + "id_aset" => 874, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "020", + "nama" => "SEKOCI MOTOR TEMPEL", + ], + [ + "id_aset" => 875, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "021", + "nama" => "PERAHU MOTOR TEMPEL", + ], + [ + "id_aset" => 876, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "022", + "nama" => "KAPAL OSEANOGRAFI", + ], + [ + "id_aset" => 877, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "023", + "nama" => "PERAHU TRADISIONAL", + ], + [ + "id_aset" => 878, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "024", + "nama" => "SEA RIDER", + ], + [ + "id_aset" => 879, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "025", + "nama" => "HOVER CRAFT", + ], + [ + "id_aset" => 880, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "026", + "nama" => "KAPAL PENGANGKUT IKAN", + ], + [ + "id_aset" => 881, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "027", + "nama" => "KAPAL PENGOLAH IKAN", + ], + [ + "id_aset" => 882, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "028", + "nama" => "KAPAL PENELITIAN/ EKSPLORASI PERIKANAN", + ], + [ + "id_aset" => 883, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "029", + "nama" => "KAPAL PENDUKUNG OPERASI PENANGKAPAN IKAN", + ], + [ + "id_aset" => 884, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "030", + "nama" => "KAPAL PENDUKUNG OPERASI PEMBUDIDAYAAN IKAN", + ], + [ + "id_aset" => 885, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "031", + "nama" => "KAPAL PENGAWAS PERIKANAN", + ], + [ + "id_aset" => 886, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "032", + "nama" => "PERAHU INTAI 3 ORANG", + ], + [ + "id_aset" => 887, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "033", + "nama" => "PERAHU SERBU 15 ORANG", + ], + [ + "id_aset" => 888, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "034", + "nama" => "KAPAL PATROLI POLISI", + ], + [ + "id_aset" => 889, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "035", + "nama" => "JET SKY", + ], + [ + "id_aset" => 890, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR KHUSUS LAINNYA", + ], + [ + "id_aset" => 891, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR LAINNYA", + ], + [ + "id_aset" => 892, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN APUNG BERMOTOR LAINNYA", + ], + [ + "id_aset" => 893, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR", + ], + [ + "id_aset" => 894, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK BARANG", + ], + [ + "id_aset" => 895, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TONGKANG", + ], + [ + "id_aset" => 896, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "PERAHU BARANG", + ], + [ + "id_aset" => 897, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK BARANG LAINNYA", + ], + [ + "id_aset" => 898, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK PENUMPANG", + ], + [ + "id_aset" => 899, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "PERAHU PENUMPANG", + ], + [ + "id_aset" => 900, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "PERAHU PENYEBERANGAN", + ], + [ + "id_aset" => 901, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "ALAT ANGKUTAN APUNG TAK BERMOTOR UNTUK PENUMPANG LAINNYA", + ], + [ + "id_aset" => 902, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS", + ], + [ + "id_aset" => 903, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PONTON", + ], + [ + "id_aset" => 904, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => + "PERAHU KARET (ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS)", + ], + [ + "id_aset" => 905, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "PONTON RUMAH", + ], + [ + "id_aset" => 906, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "FLOATING PLATFORM/RAKIT", + ], + [ + "id_aset" => 907, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR KHUSUS LAINNYA", + ], + [ + "id_aset" => 908, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR LAINNYA", + ], + [ + "id_aset" => 909, + "golongan" => "3", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT ANGKUTAN APUNG TAK BERMOTOR LAINNYA", + ], + [ + "id_aset" => 910, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BENGKEL DAN ALAT UKUR", + ], + [ + "id_aset" => 911, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BENGKEL BERMESIN", + ], + [ + "id_aset" => 912, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI", + ], + [ + "id_aset" => 913, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "MESIN BUBUT", + ], + [ + "id_aset" => 914, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MESIN FRAIS", + ], + [ + "id_aset" => 915, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => + "MESIN KETAM (PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI)", + ], + [ + "id_aset" => 916, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "MESIN PRESS HIDROLIK & PUNCH", + ], + [ + "id_aset" => 917, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "MESIN BOR", + ], + [ + "id_aset" => 918, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "MESIN GERGAJI LOGAM", + ], + [ + "id_aset" => 919, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "MESIN GERINDA", + ], + [ + "id_aset" => 920, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "MESIN ROL", + ], + [ + "id_aset" => 921, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "MESIN BOR CYLINDER", + ], + [ + "id_aset" => 922, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "MESIN SKRUP", + ], + [ + "id_aset" => 923, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "MESIN MEILING", + ], + [ + "id_aset" => 924, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "MESIN PUREL", + ], + [ + "id_aset" => 925, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "MESIN PERAPEN", + ], + [ + "id_aset" => 926, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "MESIN SIKAT KULIT", + ], + [ + "id_aset" => 927, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "MESIN PEMOTONG KULIT", + ], + [ + "id_aset" => 928, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "MESIN JAHIT KULIT", + ], + [ + "id_aset" => 929, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "MESIN PENGEPRES KULIT", + ], + [ + "id_aset" => 930, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "MESIN KOMPRESOR", + ], + [ + "id_aset" => 931, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "019", + "nama" => "MESIN LAS LISTRIK", + ], + [ + "id_aset" => 932, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "020", + "nama" => "MESIN DYNAMO KRON", + ], + [ + "id_aset" => 933, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "021", + "nama" => "MESIN SIKAT BESI KRON", + ], + [ + "id_aset" => 934, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "022", + "nama" => "MESIN PEMOTONG FIBERGLAS/POLIYSTER", + ], + [ + "id_aset" => 935, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "023", + "nama" => "MESIN GULUNG LISTRIK", + ], + [ + "id_aset" => 936, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "024", + "nama" => + "MESIN PELUBANG (PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI)", + ], + [ + "id_aset" => 937, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "025", + "nama" => "MESIN PENEKUK/LIPAT PLAT", + ], + [ + "id_aset" => 938, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "026", + "nama" => "MESIN GUNTING PLAT", + ], + [ + "id_aset" => 939, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "027", + "nama" => "MESIN PEMBENGKOK UNI", + ], + [ + "id_aset" => 940, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "028", + "nama" => "MESIN AMPLAS PLAT", + ], + [ + "id_aset" => 941, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "029", + "nama" => "MESIN PEMOTONG PLAT", + ], + [ + "id_aset" => 942, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "030", + "nama" => "MESIN TRANSMISSION AUTOMOTIVE", + ], + [ + "id_aset" => 943, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "031", + "nama" => "MESIN PEMBENGKOK LOGAM", + ], + [ + "id_aset" => 944, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "032", + "nama" => "MESIN CRYSTAL GROWING", + ], + [ + "id_aset" => 945, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "033", + "nama" => "MESIN LASER CUTTING", + ], + [ + "id_aset" => 946, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "034", + "nama" => "MESIN LASER WELDING", + ], + [ + "id_aset" => 947, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "035", + "nama" => "MESIN LIPAT PLAT", + ], + [ + "id_aset" => 948, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "036", + "nama" => "MESIN BRIKET", + ], + [ + "id_aset" => 949, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "037", + "nama" => "UNIV. GRINDER SETING VALVE", + ], + [ + "id_aset" => 950, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "038", + "nama" => "UNIV. GRINDER VALVE REPAIR", + ], + [ + "id_aset" => 951, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "039", + "nama" => "MESIN SERUT", + ], + [ + "id_aset" => 952, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "040", + "nama" => "MESIN PROFILE KAYU", + ], + [ + "id_aset" => 953, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS KONSTRUKSI LOGAM TERPASANG PADA PONDASI LAINNYA", + ], + [ + "id_aset" => 954, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => + "PERKAKAS KONSTRUKSI LOGAM YANG TRANSPORTABLE (BERPINDAH)", + ], + [ + "id_aset" => 955, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "MESIN GERINDA TANGAN", + ], + [ + "id_aset" => 956, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MESIN BOR TANGAN", + ], + [ + "id_aset" => 957, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "MESIN CYLINDER", + ], + [ + "id_aset" => 958, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "RIVETING MACHINE", + ], + [ + "id_aset" => 959, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "MESIN GULUNG MANUAL", + ], + [ + "id_aset" => 960, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "MESIN AMPELAS TANGAN", + ], + [ + "id_aset" => 961, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "MESIN AMPELAS ROL KECIL", + ], + [ + "id_aset" => 962, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "MESIN GERGAJI BESI", + ], + [ + "id_aset" => 963, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS KONSTRUKSI LOGAM YANG TRANSPORTABLE (BERPINDAH) LAINNYA", + ], + [ + "id_aset" => 964, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL LISTRIK", + ], + [ + "id_aset" => 965, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "BATTERY CHARGE", + ], + [ + "id_aset" => 966, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "WINDER", + ], + [ + "id_aset" => 967, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "TRANSFORMATOR", + ], + [ + "id_aset" => 968, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SOLDER LISTRIK", + ], + [ + "id_aset" => 969, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "SEDOTAN TIMAH LISTRIK", + ], + [ + "id_aset" => 970, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "ELECTRICAL DISCHARGE", + ], + [ + "id_aset" => 971, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "VERTICAL MACHINING CENTRE", + ], + [ + "id_aset" => 972, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "COPY MILLING", + ], + [ + "id_aset" => 973, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "SURFACE GRINDING PROTH", + ], + [ + "id_aset" => 974, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "CYDRICAL GRINDER YAM", + ], + [ + "id_aset" => 975, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "CAPACITY DIE CASTING", + ], + [ + "id_aset" => 976, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "HMC CINTINATI MILACRON", + ], + [ + "id_aset" => 977, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => "ENGINE CYLINDER RESEARCH ENGINE", + ], + [ + "id_aset" => 978, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "VALVE SENSOR", + ], + [ + "id_aset" => 979, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "COORDINATE MEASURING MACHINES", + ], + [ + "id_aset" => 980, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "ENGINE COOLING SYSTEM", + ], + [ + "id_aset" => 981, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "OUTLET MANIFODLD PRESSURE", + ], + [ + "id_aset" => 982, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "018", + "nama" => "IMPULSE ORBITAL WELDER", + ], + [ + "id_aset" => 983, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "019", + "nama" => "AVL DIGAS", + ], + [ + "id_aset" => 984, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "020", + "nama" => "ELECTRIC WIRE ROPE", + ], + [ + "id_aset" => 985, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "021", + "nama" => "STEAM PRESSURE GAUGE", + ], + [ + "id_aset" => 986, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "022", + "nama" => "SAVETUY VALVE", + ], + [ + "id_aset" => 987, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "023", + "nama" => "TRESHER STATIS", + ], + [ + "id_aset" => 988, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "024", + "nama" => "VARIAC", + ], + [ + "id_aset" => 989, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "025", + "nama" => "MIXER (PERKAKAS BENGKEL LISTRIK)", + ], + [ + "id_aset" => 990, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "026", + "nama" => "STEPPING MOTOR", + ], + [ + "id_aset" => 991, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "027", + "nama" => "CYLINDER PRESSURE TRANDUCER", + ], + [ + "id_aset" => 992, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "028", + "nama" => "ENGINE SIMULATION SOFTWARE PACKAGE", + ], + [ + "id_aset" => 993, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "029", + "nama" => "AXHAUST GAS ANALIZER", + ], + [ + "id_aset" => 994, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "030", + "nama" => "CIRCULAR SAW", + ], + [ + "id_aset" => 995, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "031", + "nama" => "TESTER LISTRIK/TELEPON/INTERNET", + ], + [ + "id_aset" => 996, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS BENGKEL LISTRIK LAINNYA (ALAT BENGKEL BERMESIN)", + ], + [ + "id_aset" => 997, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL SERVICE", + ], + [ + "id_aset" => 998, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "AUTO LIFT", + ], + [ + "id_aset" => 999, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "CAR WASHER", + ], + [ + "id_aset" => 1000, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "STEAM CLEANER", + ], + [ + "id_aset" => 1001, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "LUBRIACATING EQUIPMENT", + ], + [ + "id_aset" => 1002, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "MESIN SPOORING", + ], + [ + "id_aset" => 1003, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "MESIN BALANCER", + ], + [ + "id_aset" => 1004, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "BRAKE DRUM LATHE/MESIN PERATA TROMOL", + ], + [ + "id_aset" => 1005, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "PENGASAH LUBANG STANG PISTON", + ], + [ + "id_aset" => 1006, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "LUBRICATING SET (PERKAKAS BENGKEL SERVICE)", + ], + [ + "id_aset" => 1007, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "AIR FILTER REGULATOR", + ], + [ + "id_aset" => 1008, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "DIAMOND CARE DRILL CARE", + ], + [ + "id_aset" => 1009, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "AC MOTOR CONTROL", + ], + [ + "id_aset" => 1010, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS BENGKEL SERVICE LAINNYA (ALAT BENGKEL BERMESIN)", + ], + [ + "id_aset" => 1011, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS PENGANGKAT BERMESIN", + ], + [ + "id_aset" => 1012, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "OVERHEAD CRANE", + ], + [ + "id_aset" => 1013, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "HOIST", + ], + [ + "id_aset" => 1014, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "WINCH/LIR", + ], + [ + "id_aset" => 1015, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS PENGANGKAT BERMESIN LAINNYA", + ], + [ + "id_aset" => 1016, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL KAYU", + ], + [ + "id_aset" => 1017, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "MESIN GERGAJI", + ], + [ + "id_aset" => 1018, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "MESIN KETAM (PERKAKAS BENGKEL KAYU)", + ], + [ + "id_aset" => 1019, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "MESIN BOR KAYU", + ], + [ + "id_aset" => 1020, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "MESIN PENGHALUS", + ], + [ + "id_aset" => 1021, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "TATAH LISTRIK OSCAR MK 361", + ], + [ + "id_aset" => 1022, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "PASAH LISTRIK MKC", + ], + [ + "id_aset" => 1023, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "PROFILE LISTRIK MKC", + ], + [ + "id_aset" => 1024, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "GRENDO DUDUK", + ], + [ + "id_aset" => 1025, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "GERGAJI BENGKOK ATS", + ], + [ + "id_aset" => 1026, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "AMPLAS LISTRIK GMT", + ], + [ + "id_aset" => 1027, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "GERGAJI CHAIN SAW", + ], + [ + "id_aset" => 1028, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "TABLE SAW 10 EASTCO", + ], + [ + "id_aset" => 1029, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS BENGKEL KAYU LAINNYA", + ], + [ + "id_aset" => 1030, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL KHUSUS", + ], + [ + "id_aset" => 1031, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "MESIN JAHIT TERPAL", + ], + [ + "id_aset" => 1032, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "PERKAKAS VULKANISIR BAN", + ], + [ + "id_aset" => 1033, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "PERKAKAS BONGKAR/PASANG BAN", + ], + [ + "id_aset" => 1034, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "MESIN TENUN TEKSTIL", + ], + [ + "id_aset" => 1035, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "MESIN CELUP (PERKAKAS BENGKEL KHUSUS)", + ], + [ + "id_aset" => 1036, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "PEMASANG BARU", + ], + [ + "id_aset" => 1037, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "MESIN TENUN JAHIT", + ], + [ + "id_aset" => 1038, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS BENGKEL KHUSUS LAINNYA", + ], + [ + "id_aset" => 1039, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN LAS", + ], + [ + "id_aset" => 1040, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "PERALATAN LAS LISTRIK", + ], + [ + "id_aset" => 1041, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN LAS KARBIT", + ], + [ + "id_aset" => 1042, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "PERALATAN LAS GAS", + ], + [ + "id_aset" => 1043, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN LAS LAINNYA", + ], + [ + "id_aset" => 1044, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BENGKEL BERMESIN LAINNYA", + ], + [ + "id_aset" => 1045, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BENGKEL BERMESIN LAINNYA", + ], + [ + "id_aset" => 1046, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BENGKEL TAK BERMESIN", + ], + [ + "id_aset" => 1047, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL KONSTRUKSI LOGAM", + ], + [ + "id_aset" => 1048, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PERKAKAS DAPUR TEMPA", + ], + [ + "id_aset" => 1049, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "PERKAKAS BANGKU KERJA", + ], + [ + "id_aset" => 1050, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PERKAKAS PENGUKUR", + ], + [ + "id_aset" => 1051, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "PERKAKAS PENGECORAN LOGAM", + ], + [ + "id_aset" => 1052, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "R O L", + ], + [ + "id_aset" => 1053, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "PERKAKAS PEMOTONG PLAT", + ], + [ + "id_aset" => 1054, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "PERKAKAS PRESS HIDROLIK", + ], + [ + "id_aset" => 1055, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "PERKAKAS PEMOTONG KABEL SLING", + ], + [ + "id_aset" => 1056, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "PERKAKAS PENGECATAN KENDARAAN", + ], + [ + "id_aset" => 1057, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS BENGKEL KONSTRUKSI LOGAM LAINNYA", + ], + [ + "id_aset" => 1058, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL LISTRIK", + ], + [ + "id_aset" => 1059, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "ARMATURE DRYING OVEN", + ], + [ + "id_aset" => 1060, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MICA UNDERCUTTER", + ], + [ + "id_aset" => 1061, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "COMMUTATOR TURNING TOOL", + ], + [ + "id_aset" => 1062, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "ARMATURE CROWLER", + ], + [ + "id_aset" => 1063, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "SOLID STATE SOLDERING GUN", + ], + [ + "id_aset" => 1064, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS BENGKEL LISTRIK LAINNYA (ALAT BENGKEL TAK BERMESIN)", + ], + [ + "id_aset" => 1065, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL SERVICE", + ], + [ + "id_aset" => 1066, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PERKAKAS BENGKEL SERVICE", + ], + [ + "id_aset" => 1067, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "LUBRICATING SET (PERKAKAS BENGKEL SERVICE)", + ], + [ + "id_aset" => 1068, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "PERLENGKAPAN BENGKEL MEKANIK", + ], + [ + "id_aset" => 1069, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "JEMBATAN SERVICE HIDROLIK", + ], + [ + "id_aset" => 1070, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => + "PERKAKAS BENGKEL SERVICE LAINNYA (ALAT BENGKEL TAK BERMESIN)", + ], + [ + "id_aset" => 1071, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS PENGANGKAT", + ], + [ + "id_aset" => 1072, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "DONGKRAK MEKANIK", + ], + [ + "id_aset" => 1073, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "DONGKRAK HIDROLIK", + ], + [ + "id_aset" => 1074, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "T A K E L", + ], + [ + "id_aset" => 1075, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "G A N T R Y", + ], + [ + "id_aset" => 1076, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "T R I P O D", + ], + [ + "id_aset" => 1077, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "FLOOR CRANE", + ], + [ + "id_aset" => 1078, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS PENGANGKAT LAINNYA", + ], + [ + "id_aset" => 1079, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS STANDARD (STANDARD TOOLS)", + ], + [ + "id_aset" => 1080, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TOOL KIT SET", + ], + [ + "id_aset" => 1081, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "TOOL KIT BOX", + ], + [ + "id_aset" => 1082, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "TOOL CABINET SET", + ], + [ + "id_aset" => 1083, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "KUNCI PIPA", + ], + [ + "id_aset" => 1084, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "PULLER SET", + ], + [ + "id_aset" => 1085, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "TAP DIES", + ], + [ + "id_aset" => 1086, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "GREEPER", + ], + [ + "id_aset" => 1087, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "ENGINE STAND", + ], + [ + "id_aset" => 1088, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "KUNCI MOMENT", + ], + [ + "id_aset" => 1089, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "PEMBUAT FISIK (DIESS)", + ], + [ + "id_aset" => 1090, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "TUNGKU NON FERROUS", + ], + [ + "id_aset" => 1091, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "WHEEL CHOCK (PERKAKAS STANDARD (STANDARD TOOLS))", + ], + [ + "id_aset" => 1092, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "MAINTENANCE STEP", + ], + [ + "id_aset" => 1093, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "CRIMPING TOLLS", + ], + [ + "id_aset" => 1094, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "TOOLKIT TUKANG KAYU TON", + ], + [ + "id_aset" => 1095, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "TOOLKIT TUKANG BATU TON", + ], + [ + "id_aset" => 1096, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => "TOOLKIT TUKANG LISTRIK", + ], + [ + "id_aset" => 1097, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "TOOLKIT PEMELIHARAAN", + ], + [ + "id_aset" => 1098, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "TOOLKIT PERBENGKELAN", + ], + [ + "id_aset" => 1099, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "TOOLKIT PERPIPAAN", + ], + [ + "id_aset" => 1100, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "TOOL OUTFIT PIONER ELECTRIC", + ], + [ + "id_aset" => 1101, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "TOOL GENERAL MECHANIC SET", + ], + [ + "id_aset" => 1102, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "TOOLKIT TUKANG BESI", + ], + [ + "id_aset" => 1103, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "TOOL ELECTRICAL SET", + ], + [ + "id_aset" => 1104, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => "SAWMIL", + ], + [ + "id_aset" => 1105, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "026", + "nama" => "UNIT PELUMAS PORTABLE", + ], + [ + "id_aset" => 1106, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "027", + "nama" => "SCAFOLDING SET & TOOL", + ], + [ + "id_aset" => 1107, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "028", + "nama" => "HAND FALLET", + ], + [ + "id_aset" => 1108, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "029", + "nama" => "PARON", + ], + [ + "id_aset" => 1109, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "030", + "nama" => "CYLINDER BEARING", + ], + [ + "id_aset" => 1110, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "031", + "nama" => "PERLENGKAPAN BENGKEL PENGECATAN", + ], + [ + "id_aset" => 1111, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS STANDARD (STANDARD TOOLS) LAINNYA", + ], + [ + "id_aset" => 1112, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS KHUSUS (SPECIAL TOOLS)", + ], + [ + "id_aset" => 1113, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "KUNCI KHUSUS UNTUK ENGINE", + ], + [ + "id_aset" => 1114, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "KUNCI KHUSUS ALAT BESAR DARAT", + ], + [ + "id_aset" => 1115, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "KUNCI KHUSUS ALAT BESAR APUNG", + ], + [ + "id_aset" => 1116, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "KUNCI KHUSUS CASIS ALAT ANGKUT DARAT", + ], + [ + "id_aset" => 1117, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "KUNCI KHUSUS CASIS", + ], + [ + "id_aset" => 1118, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "KUNCI KHUSUS ALAT ANGKUT APUNG", + ], + [ + "id_aset" => 1119, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "KUNCI KHUSUS PEMBUKA MUR/BAUT", + ], + [ + "id_aset" => 1120, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "KUNCI KHUSUS MOMENT", + ], + [ + "id_aset" => 1121, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "KUNCI KHUSUS ALAT BESAR UDARA", + ], + [ + "id_aset" => 1122, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "KUNCI KHUSUS CASIS ALAT BESAR UDARA", + ], + [ + "id_aset" => 1123, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "DIGITAL TANG AMPERE", + ], + [ + "id_aset" => 1124, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "DIGITAL TACHOMETER", + ], + [ + "id_aset" => 1125, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "013", + "nama" => "FOOT KLEP", + ], + [ + "id_aset" => 1126, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "014", + "nama" => "CINCIN/KOPLING SLANG HYDRANT", + ], + [ + "id_aset" => 1127, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "015", + "nama" => "KUNCI L", + ], + [ + "id_aset" => 1128, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "016", + "nama" => "TBA", + ], + [ + "id_aset" => 1129, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS KHUSUS (SPECIAL TOOLS) LAINNYA", + ], + [ + "id_aset" => 1130, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "PERKAKAS BENGKEL KERJA", + ], + [ + "id_aset" => 1131, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "GERGAJI", + ], + [ + "id_aset" => 1132, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "KETAM", + ], + [ + "id_aset" => 1133, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BOR", + ], + [ + "id_aset" => 1134, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "PAHAT", + ], + [ + "id_aset" => 1135, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "KAKAK TUA", + ], + [ + "id_aset" => 1136, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "WATER PAS", + ], + [ + "id_aset" => 1137, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "SIKU", + ], + [ + "id_aset" => 1138, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "008", + "nama" => "PALU", + ], + [ + "id_aset" => 1139, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS BENGKEL KERJA LAINNYA", + ], + [ + "id_aset" => 1140, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TUKANG BESI", + ], + [ + "id_aset" => 1141, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "TANGGEM", + ], + [ + "id_aset" => 1142, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "GUNTING PLAT", + ], + [ + "id_aset" => 1143, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "LANDASAN KENTENG", + ], + [ + "id_aset" => 1144, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "004", + "nama" => "KUNCI KAUL", + ], + [ + "id_aset" => 1145, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "005", + "nama" => "GUNTING PLAT TANGAN", + ], + [ + "id_aset" => 1146, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "006", + "nama" => "TANG KOMBINASI", + ], + [ + "id_aset" => 1147, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "007", + "nama" => "TANG POTONG", + ], + [ + "id_aset" => 1148, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "008", + "nama" => '\"BETEL', + ], + [ + "id_aset" => 1149, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "009", + "nama" => "PUKUL KONDE", + ], + [ + "id_aset" => 1150, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "010", + "nama" => "PUKUL LENGKUNG", + ], + [ + "id_aset" => 1151, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "011", + "nama" => "PUKUL SABIT", + ], + [ + "id_aset" => 1152, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "012", + "nama" => "KIKIR", + ], + [ + "id_aset" => 1153, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "013", + "nama" => "KUNCI PAS", + ], + [ + "id_aset" => 1154, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "014", + "nama" => "TANG SENAI & TAP", + ], + [ + "id_aset" => 1155, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "015", + "nama" => "DREI BIASA (OBENG)", + ], + [ + "id_aset" => 1156, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "016", + "nama" => "DREI KEMBANG (OBENG)", + ], + [ + "id_aset" => 1157, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "017", + "nama" => "DREI KETOK (OBENG)", + ], + [ + "id_aset" => 1158, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "018", + "nama" => "SEKET MAT", + ], + [ + "id_aset" => 1159, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "019", + "nama" => "JANGKA BESI", + ], + [ + "id_aset" => 1160, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "020", + "nama" => "KUNCI STANG", + ], + [ + "id_aset" => 1161, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TUKANG BESI LAINNYA", + ], + [ + "id_aset" => 1162, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TUKANG KAYU", + ], + [ + "id_aset" => 1163, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "TATAH BIASA", + ], + [ + "id_aset" => 1164, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "TATAH LENGKUNG", + ], + [ + "id_aset" => 1165, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "KAOTA", + ], + [ + "id_aset" => 1166, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => "PETEL", + ], + [ + "id_aset" => 1167, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "005", + "nama" => "PATAR", + ], + [ + "id_aset" => 1168, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "006", + "nama" => "BOR ENGKOL", + ], + [ + "id_aset" => 1169, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "007", + "nama" => "PERLENGKAPAN BENGKEL KAYU", + ], + [ + "id_aset" => 1170, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TUKANG KAYU LAINNYA", + ], + [ + "id_aset" => 1171, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TUKANG KULIT", + ], + [ + "id_aset" => 1172, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "PISAU KULIT", + ], + [ + "id_aset" => 1173, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "PANDOKAN SEPATU", + ], + [ + "id_aset" => 1174, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "LIS SEPATU", + ], + [ + "id_aset" => 1175, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "COKRO", + ], + [ + "id_aset" => 1176, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "005", + "nama" => "PLONG KULIT", + ], + [ + "id_aset" => 1177, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "006", + "nama" => "CATUT", + ], + [ + "id_aset" => 1178, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "007", + "nama" => "PUKUL SEPATU", + ], + [ + "id_aset" => 1179, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "008", + "nama" => "GUNTING KULIT", + ], + [ + "id_aset" => 1180, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "009", + "nama" => "GUNTING KAIN", + ], + [ + "id_aset" => 1181, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "010", + "nama" => "DREK MATA AYAM", + ], + [ + "id_aset" => 1182, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "012", + "nama" => "UNCEK", + ], + [ + "id_aset" => 1183, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TUKANG KULIT LAINNYA", + ], + [ + "id_aset" => 1184, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => '\"PERALATAN UKUR', + ], + [ + "id_aset" => 1185, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "DIPAN UKUR", + ], + [ + "id_aset" => 1186, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "METERAN KAIN", + ], + [ + "id_aset" => 1187, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "ROL METER", + ], + [ + "id_aset" => 1188, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "004", + "nama" => "JANGKA BERKAKI", + ], + [ + "id_aset" => 1189, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "005", + "nama" => "PATAR GIP", + ], + [ + "id_aset" => 1190, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "006", + "nama" => "PISAU GIP", + ], + [ + "id_aset" => 1191, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "007", + "nama" => "PARAREL BAR", + ], + [ + "id_aset" => 1192, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "008", + "nama" => "CERMIN BESAR", + ], + [ + "id_aset" => 1193, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "009", + "nama" => "TANGGA LATIHAN", + ], + [ + "id_aset" => 1194, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "010", + "nama" => "TRAP LATIHAN", + ], + [ + "id_aset" => 1195, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => '\"PERALATAN UKUR', + ], + [ + "id_aset" => 1196, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN BENGKEL KHUSUS PELADAM", + ], + [ + "id_aset" => 1197, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "001", + "nama" => "MESIN CNC", + ], + [ + "id_aset" => 1198, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "002", + "nama" => "DYNAMO TUNGKU", + ], + [ + "id_aset" => 1199, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "003", + "nama" => "MESIN FRAIS", + ], + [ + "id_aset" => 1200, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "004", + "nama" => "MESIN SKRAF", + ], + [ + "id_aset" => 1201, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "005", + "nama" => "MESIN BOR MEJA / KAKI LISTRIK", + ], + [ + "id_aset" => 1202, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "006", + "nama" => "PALU BESAR", + ], + [ + "id_aset" => 1203, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "007", + "nama" => "MESIN KORTER", + ], + [ + "id_aset" => 1204, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "008", + "nama" => "PALU KECIL", + ], + [ + "id_aset" => 1205, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "009", + "nama" => "MESIN GERINDA DUDUK (BENCH GERINDA)", + ], + [ + "id_aset" => 1206, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "010", + "nama" => "GEGEP PEMOTONG KUKU", + ], + [ + "id_aset" => 1207, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "011", + "nama" => "GEGEP PEMOTONG PAKU", + ], + [ + "id_aset" => 1208, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "012", + "nama" => "PISAU RENET", + ], + [ + "id_aset" => 1209, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "013", + "nama" => "MESIN JAHIT TERPAL", + ], + [ + "id_aset" => 1210, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "014", + "nama" => "PELOBANG TAPEL", + ], + [ + "id_aset" => 1211, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "015", + "nama" => "TANG BUAYA", + ], + [ + "id_aset" => 1212, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "016", + "nama" => "MESIN BATTERY SET / PENGISI ACCU", + ], + [ + "id_aset" => 1213, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "017", + "nama" => "PERALATAN BENGKEL LAINNYA", + ], + [ + "id_aset" => 1214, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "018", + "nama" => "MESIN BLOWER LISTRIK / MEKANIK", + ], + [ + "id_aset" => 1215, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "019", + "nama" => "MESIN SIKAT / BRUSH MACHINE", + ], + [ + "id_aset" => 1216, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "020", + "nama" => "MESIN PEMBUKA BAN", + ], + [ + "id_aset" => 1217, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "021", + "nama" => "MESIN SLEP KRUK AS", + ], + [ + "id_aset" => 1218, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "022", + "nama" => "MESIN ASAH SILIDER COP", + ], + [ + "id_aset" => 1219, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "023", + "nama" => "MESIN GULUNG SPOOL", + ], + [ + "id_aset" => 1220, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "024", + "nama" => "MESIN GULUNG PLAT", + ], + [ + "id_aset" => 1221, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "025", + "nama" => "MESIN POMPA AIR PMK", + ], + [ + "id_aset" => 1222, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "026", + "nama" => "MESIN ASAH KLEP", + ], + [ + "id_aset" => 1223, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "027", + "nama" => "MESIN TUSUK / STIK", + ], + [ + "id_aset" => 1224, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "028", + "nama" => "MESIN BOR LISTRIK TANGAN", + ], + [ + "id_aset" => 1225, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "029", + "nama" => "MESIN NIMBLING", + ], + [ + "id_aset" => 1226, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "030", + "nama" => "MESIN GERINDA TANGAN LISTRIK", + ], + [ + "id_aset" => 1227, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "031", + "nama" => "MESIN POTONG PLAT BENTUK / HAND NIMBLER", + ], + [ + "id_aset" => 1228, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "032", + "nama" => "UNIT CAT", + ], + [ + "id_aset" => 1229, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "033", + "nama" => "CUT OFF SAW", + ], + [ + "id_aset" => 1230, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "034", + "nama" => "MESIN ANALISA SYSTEM", + ], + [ + "id_aset" => 1231, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "035", + "nama" => "BLENDER LAS POTONG", + ], + [ + "id_aset" => 1232, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "036", + "nama" => "MESIN CUCI KENDARAAN/ CAR WASHER", + ], + [ + "id_aset" => 1233, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "037", + "nama" => "PERKAKAS AC", + ], + [ + "id_aset" => 1234, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN BENGKEL KHUSUS PELADAM LAINNYA", + ], + [ + "id_aset" => 1235, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BENGKEL TAK BERMESIN LAINNYA", + ], + [ + "id_aset" => 1236, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BENGKEL TAK BERMESIN LAINNYA", + ], + [ + "id_aset" => 1237, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT UKUR", + ], + [ + "id_aset" => 1238, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT UKUR UNIVERSAL", + ], + [ + "id_aset" => 1239, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "AF GENERATOR TONE GENERATOR", + ], + [ + "id_aset" => 1240, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "AUDIO SIGNAL SOURCE", + ], + [ + "id_aset" => 1241, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "AUDIO TEST SET", + ], + [ + "id_aset" => 1242, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "AUDIO MORSE & DISTRIBUTOR METER", + ], + [ + "id_aset" => 1243, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "AUDIO SWEEP OSILATOR", + ], + [ + "id_aset" => 1244, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "VTVM VOLT", + ], + [ + "id_aset" => 1245, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "INDEPENDENCE METER", + ], + [ + "id_aset" => 1246, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "DECIBLE METER", + ], + [ + "id_aset" => 1247, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "CRT TESTER", + ], + [ + "id_aset" => 1248, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "CIRCUIT TESTER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1249, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "ELECTRONIC CAPASITOR TESTER", + ], + [ + "id_aset" => 1250, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "ILLUMINO METER", + ], + [ + "id_aset" => 1251, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "IC TESTER SEMI TEST IV", + ], + [ + "id_aset" => 1252, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "IC METER", + ], + [ + "id_aset" => 1253, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "MIHVOLT METER", + ], + [ + "id_aset" => 1254, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "MULTITESTER & ACCESSORIE", + ], + [ + "id_aset" => 1255, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "MULTISESTER DIGITAL", + ], + [ + "id_aset" => 1256, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "PHOTO ILLUMINATION METER", + ], + [ + "id_aset" => 1257, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "019", + "nama" => "TRANSISTOR TESTER SEMITEST I", + ], + [ + "id_aset" => 1258, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "020", + "nama" => "TRANSISTOR TESTER SEMITEST II", + ], + [ + "id_aset" => 1259, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "021", + "nama" => "TRANSISTOR TESTER SEMITEST V", + ], + [ + "id_aset" => 1260, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "022", + "nama" => "TRANSISTOR TESTER AVO", + ], + [ + "id_aset" => 1261, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "023", + "nama" => "VOLT METER ELEKTRONIK", + ], + [ + "id_aset" => 1262, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "024", + "nama" => "VOLT METER DIGITAL", + ], + [ + "id_aset" => 1263, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "025", + "nama" => "VOLT METER HIGT TENSION", + ], + [ + "id_aset" => 1264, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "026", + "nama" => "WIDW BAND LEVEL METER", + ], + [ + "id_aset" => 1265, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "027", + "nama" => "AUTOMATIC DISTROTION METER", + ], + [ + "id_aset" => 1266, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "028", + "nama" => "POWER METER AND ACCESSORIES", + ], + [ + "id_aset" => 1267, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "029", + "nama" => "PH METER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1268, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "030", + "nama" => "QUASI PEAK METER", + ], + [ + "id_aset" => 1269, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "031", + "nama" => "THRULINE WATT METER", + ], + [ + "id_aset" => 1270, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "032", + "nama" => "DIGITAL MULTIMETER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1271, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "033", + "nama" => "MULTI METER", + ], + [ + "id_aset" => 1272, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "034", + "nama" => "METER CALIBRATOR", + ], + [ + "id_aset" => 1273, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "035", + "nama" => "MOISE FIGURE METER", + ], + [ + "id_aset" => 1274, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "036", + "nama" => "DISTORTION ANALYZER", + ], + [ + "id_aset" => 1275, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "037", + "nama" => "VECTOR VOLT METER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1276, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "038", + "nama" => "PULSE GENERATOR (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1277, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "039", + "nama" => "DME GROUND STATION TEST SET (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1278, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "040", + "nama" => "UHF SIGNAL GENERATOR", + ], + [ + "id_aset" => 1279, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "041", + "nama" => "SWEEP OSCILLATOR (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1280, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "042", + "nama" => "VHF SIGNAL GENERATOR", + ], + [ + "id_aset" => 1281, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "043", + "nama" => "SPEKTRUM ANALYZER", + ], + [ + "id_aset" => 1282, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "044", + "nama" => "TUBE TESTER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1283, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "045", + "nama" => "DOSIMETER & ACCESORIES", + ], + [ + "id_aset" => 1284, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "046", + "nama" => "SURVEY METER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1285, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "047", + "nama" => "SOUND DETECTOR", + ], + [ + "id_aset" => 1286, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "048", + "nama" => "VIDICON QUICK TESTER", + ], + [ + "id_aset" => 1287, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "049", + "nama" => "PATTERN FOR TV ADJUSTMENT", + ], + [ + "id_aset" => 1288, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "050", + "nama" => "POWER METER CILLIBRATOR", + ], + [ + "id_aset" => 1289, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "051", + "nama" => "THERMISTOR", + ], + [ + "id_aset" => 1290, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "052", + "nama" => '\"SIGNAL GENERATOR AUDIO VHF', + ], + [ + "id_aset" => 1291, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "053", + "nama" => "X - TAL DETECTOR", + ], + [ + "id_aset" => 1292, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "054", + "nama" => "CO - AXIAL SLOT LINE", + ], + [ + "id_aset" => 1293, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "055", + "nama" => "RF VOLT METER", + ], + [ + "id_aset" => 1294, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "056", + "nama" => "FREKQUENCY WAVE METER", + ], + [ + "id_aset" => 1295, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "057", + "nama" => "MEGGER", + ], + [ + "id_aset" => 1296, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "058", + "nama" => "CO AXIAL ATTENUATOR", + ], + [ + "id_aset" => 1297, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "059", + "nama" => "VARIABEL CO AXIAL ATTENUATOR", + ], + [ + "id_aset" => 1298, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "060", + "nama" => "DIRECTIONAL COUPLER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1299, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "061", + "nama" => "PIN MODULATOR", + ], + [ + "id_aset" => 1300, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "062", + "nama" => "LOGIG TROUBLE SHOTING KIT", + ], + [ + "id_aset" => 1301, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "063", + "nama" => "SWR METER", + ], + [ + "id_aset" => 1302, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "064", + "nama" => "MEMORI PROGRAMMER", + ], + [ + "id_aset" => 1303, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "065", + "nama" => "LOGIG STATC ANALYZER", + ], + [ + "id_aset" => 1304, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "066", + "nama" => "FREQUENCY CUONTER", + ], + [ + "id_aset" => 1305, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "067", + "nama" => "UNIVERSAL BRIDGE", + ], + [ + "id_aset" => 1306, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "068", + "nama" => "FB METER", + ], + [ + "id_aset" => 1307, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "069", + "nama" => "NOISE", + ], + [ + "id_aset" => 1308, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "070", + "nama" => "RADIATION MONITOR ISOTROPIC", + ], + [ + "id_aset" => 1309, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "071", + "nama" => "PHASE METER", + ], + [ + "id_aset" => 1310, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "072", + "nama" => "GLOBAL POSITIONING SYSTEM", + ], + [ + "id_aset" => 1311, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "073", + "nama" => "ILS. CALIBRATION RX.", + ], + [ + "id_aset" => 1312, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "074", + "nama" => "DCP ( ALAT CONTROL ) SENSOR", + ], + [ + "id_aset" => 1313, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "075", + "nama" => "MOISTEUR METER", + ], + [ + "id_aset" => 1314, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "076", + "nama" => "ROTA METER", + ], + [ + "id_aset" => 1315, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "077", + "nama" => "MINI PHASEC VIEW", + ], + [ + "id_aset" => 1316, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "078", + "nama" => "FREQUENCY INVERTER", + ], + [ + "id_aset" => 1317, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "079", + "nama" => "ACCUMETER", + ], + [ + "id_aset" => 1318, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "080", + "nama" => "TEMPERATUR DIGITAL", + ], + [ + "id_aset" => 1319, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "081", + "nama" => "ARGOMETER", + ], + [ + "id_aset" => 1320, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "082", + "nama" => "DIAL TEST INDICATOR", + ], + [ + "id_aset" => 1321, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "083", + "nama" => "SPEED METER", + ], + [ + "id_aset" => 1322, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "084", + "nama" => '\"OIL BATH', + ], + [ + "id_aset" => 1323, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "085", + "nama" => "SPEED DETECTOR", + ], + [ + "id_aset" => 1324, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "086", + "nama" => "THERMOHYGROMETER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1325, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "087", + "nama" => "TRAFFIC COUNTER", + ], + [ + "id_aset" => 1326, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "088", + "nama" => "STANDAR TEST GAUGE", + ], + [ + "id_aset" => 1327, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "090", + "nama" => "SIGMA METER", + ], + [ + "id_aset" => 1328, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "091", + "nama" => "IONISASI METER", + ], + [ + "id_aset" => 1329, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "092", + "nama" => "ROTAN SAMPLER SPLITER", + ], + [ + "id_aset" => 1330, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "093", + "nama" => "HENRY METER", + ], + [ + "id_aset" => 1331, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "094", + "nama" => "MESIN KOCOK HORISONTAL", + ], + [ + "id_aset" => 1332, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "095", + "nama" => "CAPASITOR METER", + ], + [ + "id_aset" => 1333, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "096", + "nama" => "MICROPROCESSOR CONDUCTIVITY", + ], + [ + "id_aset" => 1334, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "097", + "nama" => "UHF OUT PUSTTESSTING EQUIPMENT", + ], + [ + "id_aset" => 1335, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "098", + "nama" => "SHRANGKAGE LIMIT APPARATUS", + ], + [ + "id_aset" => 1336, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "099", + "nama" => "R.F. SIGNAL GENERATOR", + ], + [ + "id_aset" => 1337, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "100", + "nama" => "DEWMETER PRINT", + ], + [ + "id_aset" => 1338, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "102", + "nama" => "ORBITAL SHAKER", + ], + [ + "id_aset" => 1339, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "103", + "nama" => "VHF/UHF DUMMY LOAD", + ], + [ + "id_aset" => 1340, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "104", + "nama" => "OZONIZER", + ], + [ + "id_aset" => 1341, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "105", + "nama" => "PSOPHOMETRIC WEIGHTING NETWORK", + ], + [ + "id_aset" => 1342, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "106", + "nama" => "PERSONAL CDT", + ], + [ + "id_aset" => 1343, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "107", + "nama" => "PORTABLE TEST RECK", + ], + [ + "id_aset" => 1344, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "108", + "nama" => "RADIO METER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1345, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "109", + "nama" => "NMOTOR DRIVE WIRE WROPPER", + ], + [ + "id_aset" => 1346, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "110", + "nama" => "SALINITY TEMP DEPTH ANALIZER", + ], + [ + "id_aset" => 1347, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "111", + "nama" => "DIGITAL CIRCUIT TESTER", + ], + [ + "id_aset" => 1348, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "112", + "nama" => "SALINOMETER", + ], + [ + "id_aset" => 1349, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "113", + "nama" => "FIELD STRENGTH METER", + ], + [ + "id_aset" => 1350, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "114", + "nama" => "ACIENTIFIC SOUNDEER SYSTEM", + ], + [ + "id_aset" => 1351, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "115", + "nama" => "ALTERNEATUR", + ], + [ + "id_aset" => 1352, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "116", + "nama" => "SENTER BAWAH AIR", + ], + [ + "id_aset" => 1353, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "117", + "nama" => "MEGA OHM TESTER", + ], + [ + "id_aset" => 1354, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "118", + "nama" => "SIX PLACE HIDROMANIFOLD", + ], + [ + "id_aset" => 1355, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "119", + "nama" => "INSULATION TESTER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1356, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "120", + "nama" => "SONICATOR VIRSOIC CALL DISLUPTOR", + ], + [ + "id_aset" => 1357, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "121", + "nama" => "ELECTRIC BENCH", + ], + [ + "id_aset" => 1358, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "122", + "nama" => "SWEEP FUNCTION GENERATOR", + ], + [ + "id_aset" => 1359, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "123", + "nama" => "LOADMETER", + ], + [ + "id_aset" => 1360, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "124", + "nama" => "SYSTEM UV STERELISASI DAN SIRKULASI AI", + ], + [ + "id_aset" => 1361, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "125", + "nama" => "COUNTER TESTER", + ], + [ + "id_aset" => 1362, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "126", + "nama" => "SYSTEM FOR CHEMICAL OXYGEN DEMOND", + ], + [ + "id_aset" => 1363, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "127", + "nama" => "THE DACOR SEASPRINT UNDER WATER VEHICLE", + ], + [ + "id_aset" => 1364, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "128", + "nama" => "TITRATION UNIT", + ], + [ + "id_aset" => 1365, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "129", + "nama" => "ULTRASONIC CLEANER (ALAT UKUR UNIVERSAL)", + ], + [ + "id_aset" => 1366, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "130", + "nama" => "WATER ANALYSIS KIT", + ], + [ + "id_aset" => 1367, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "131", + "nama" => "WHEEL METER", + ], + [ + "id_aset" => 1368, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "132", + "nama" => "PROYECTION POLARISCOPE", + ], + [ + "id_aset" => 1369, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "133", + "nama" => "CDMA/GSM TEST", + ], + [ + "id_aset" => 1370, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "134", + "nama" => "ANTENNA SELECTOR", + ], + [ + "id_aset" => 1371, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "135", + "nama" => "LOG PERIODIC ANTENNA", + ], + [ + "id_aset" => 1372, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "136", + "nama" => "ALAT UKUR SIGMAT", + ], + [ + "id_aset" => 1373, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT UKUR UNIVERSAL LAINNYA", + ], + [ + "id_aset" => 1374, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "UNIVERSAL TESTER", + ], + [ + "id_aset" => 1375, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "FREQUENCY COUNTER (UNIVERSAL TESTER)", + ], + [ + "id_aset" => 1376, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "INSULATION RES METER MOD", + ], + [ + "id_aset" => 1377, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "NOISE & DISTORTION METER", + ], + [ + "id_aset" => 1378, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "OSCILATOR DISTORTION METER", + ], + [ + "id_aset" => 1379, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "OSCILATOR TEST SIGNAL", + ], + [ + "id_aset" => 1380, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "OSCILATOR WIDW BAND", + ], + [ + "id_aset" => 1381, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "OSCILATOR SWEEP", + ], + [ + "id_aset" => 1382, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "PRECISION ENCODER MONITOR", + ], + [ + "id_aset" => 1383, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "PLAMBICON TEST UNIT", + ], + [ + "id_aset" => 1384, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "SCANNER (UNIVERSAL TESTER)", + ], + [ + "id_aset" => 1385, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "011", + "nama" => "TIME INTERVAL UNIT", + ], + [ + "id_aset" => 1386, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "012", + "nama" => "UNIVERSAL COUNTER (UNIVERSAL TESTER)", + ], + [ + "id_aset" => 1387, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "013", + "nama" => "VIDEO NOISE METER", + ], + [ + "id_aset" => 1388, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "014", + "nama" => "ADMINTANCE METER", + ], + [ + "id_aset" => 1389, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "015", + "nama" => "ADMINTANCE BRIDE", + ], + [ + "id_aset" => 1390, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "016", + "nama" => "FIELDSTRENGTH METER", + ], + [ + "id_aset" => 1391, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "017", + "nama" => "RF BRIDGE", + ], + [ + "id_aset" => 1392, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "018", + "nama" => "RF PUSH BUTTON ATTENUATOR", + ], + [ + "id_aset" => 1393, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "019", + "nama" => "VISION AND SOUND NYQUIST DEMODULATOR AMF", + ], + [ + "id_aset" => 1394, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "020", + "nama" => "V.S.W.R STANDING REVIEW", + ], + [ + "id_aset" => 1395, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "022", + "nama" => "DIGITAL FREQUENCE METER", + ], + [ + "id_aset" => 1396, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "023", + "nama" => "VINDICAM QUICK TESTER", + ], + [ + "id_aset" => 1397, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "024", + "nama" => "COAXIAL ATT", + ], + [ + "id_aset" => 1398, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "025", + "nama" => "VARIABLE COAXIAL ATT", + ], + [ + "id_aset" => 1399, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "026", + "nama" => "LOGIC PROBE (UNIVERSAL TESTER)", + ], + [ + "id_aset" => 1400, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "027", + "nama" => "SURVEY METER (UNIVERSAL TESTER)", + ], + [ + "id_aset" => 1401, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "028", + "nama" => "LOGIC COMPARATOR", + ], + [ + "id_aset" => 1402, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "UNIVERSAL TESTER LAINNYA", + ], + [ + "id_aset" => 1403, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT UKUR/PEMBANDING", + ], + [ + "id_aset" => 1404, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => + "UKURAN JOHANSON (ALAT PEMBANDING STANDAR UKURAN PANJANG)", + ], + [ + "id_aset" => 1405, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => + "MICRO INDICATOR (DENGAN PERLENGKAPAN SUPARTO POINTERS DAN REVOLV", + ], + [ + "id_aset" => 1406, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "PERLENGKAPAN MICRO INDICATOR", + ], + [ + "id_aset" => 1407, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "PSYCOMETER VANLAMBRECHT", + ], + [ + "id_aset" => 1408, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "PSYCOMETER", + ], + [ + "id_aset" => 1409, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "BAROMETER LOGAM", + ], + [ + "id_aset" => 1410, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "BAROMETER MERCURY", + ], + [ + "id_aset" => 1411, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "MANOMETER UNTUK MESIN", + ], + [ + "id_aset" => 1412, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "MONOTOR PRECISI", + ], + [ + "id_aset" => 1413, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "ALAT PEMERIKSA MANOMETER ( DENGAN PERLENGKAPAN )", + ], + [ + "id_aset" => 1414, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "ALAT PEMERIKSAAN ZAT CAIR", + ], + [ + "id_aset" => 1415, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "TERMOMETER STANDAR", + ], + [ + "id_aset" => 1416, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => + "TERMOMETER GOVERMEN TESTER 0 DERAJAT SAMPAI DENGAN 100 DERAJAT C", + ], + [ + "id_aset" => 1417, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "THERMOSTAT ( PENGUJI PEMERIKSAAN TERMOMETER )", + ], + [ + "id_aset" => 1418, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "JAM UKUR ( MEET LOCK )", + ], + [ + "id_aset" => 1419, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "HARDNES TESTER", + ], + [ + "id_aset" => 1420, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "STOPWATCH", + ], + [ + "id_aset" => 1421, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "018", + "nama" => "LOUP", + ], + [ + "id_aset" => 1422, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "019", + "nama" => "PLANIMETER (ALAT UKUR/PEMBANDING)", + ], + [ + "id_aset" => 1423, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "020", + "nama" => "METRA BLOCK", + ], + [ + "id_aset" => 1424, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "021", + "nama" => "LEMARI BAJA PENGERING", + ], + [ + "id_aset" => 1425, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "022", + "nama" => "SANBLAS UNIT", + ], + [ + "id_aset" => 1426, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "023", + "nama" => "ALAT PEMERIKSAAN TIMBANGAN TEKANAN BERODA", + ], + [ + "id_aset" => 1427, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "024", + "nama" => "STELAN INSTRUMEN BOURJE", + ], + [ + "id_aset" => 1428, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "025", + "nama" => "LAMPU UNTUK MENERANGI SKALA NERACA PAKAI STANDAR", + ], + [ + "id_aset" => 1429, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "026", + "nama" => "AVOMETER SU 20 - 20 K", + ], + [ + "id_aset" => 1430, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "027", + "nama" => "TRAPPO 1.000 WATT", + ], + [ + "id_aset" => 1431, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "028", + "nama" => "TOOL SET", + ], + [ + "id_aset" => 1432, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "029", + "nama" => "LANDASAN CAP LENGKAP", + ], + [ + "id_aset" => 1433, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "030", + "nama" => "KAKI TIGA GANTUNGAN DACIN", + ], + [ + "id_aset" => 1434, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "031", + "nama" => "ALAT PENDATAR TAKARAN BENSIN", + ], + [ + "id_aset" => 1435, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "032", + "nama" => "TANG PLOMBIR / SEGEL", + ], + [ + "id_aset" => 1436, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "033", + "nama" => "EXICATOR BESAR", + ], + [ + "id_aset" => 1437, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "034", + "nama" => "EXICATOR KECIL", + ], + [ + "id_aset" => 1438, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "035", + "nama" => "DESICATOR ( SIZE ) 3", + ], + [ + "id_aset" => 1439, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "036", + "nama" => "DESICATOR ( SIZE ) 4", + ], + [ + "id_aset" => 1440, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "037", + "nama" => "BOTOL AIR SALING DARI 25 LITER", + ], + [ + "id_aset" => 1441, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "038", + "nama" => "PICNOMETER", + ], + [ + "id_aset" => 1442, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "039", + "nama" => "DESIMETER ( HIDROMETER )", + ], + [ + "id_aset" => 1443, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "040", + "nama" => "TELESCOPE TILE VARIEBLE", + ], + [ + "id_aset" => 1444, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "041", + "nama" => "OPTICAL STREAN ( UNTUK PEMERIKSAAN KACA )", + ], + [ + "id_aset" => 1445, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "042", + "nama" => "OPTOCAL TEKNIS GANGE ( PENGUKUR TEBAL DINDING )", + ], + [ + "id_aset" => 1446, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "043", + "nama" => "LIFTER CAPASITAS 500 KG", + ], + [ + "id_aset" => 1447, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "044", + "nama" => "TAXIMETER TESTER", + ], + [ + "id_aset" => 1448, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "045", + "nama" => "SPEDOMETER TESTER", + ], + [ + "id_aset" => 1449, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "046", + "nama" => "STANDARD GUAGE BLOCKS", + ], + [ + "id_aset" => 1450, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "047", + "nama" => + "FINEST DIRECT READING INTERN MICROMETER OF VARIOS RANGE UP TO 10", + ], + [ + "id_aset" => 1451, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "048", + "nama" => "CONSTANT TEMPERATURE COMBINED BRIDGE THERMOSTAT", + ], + [ + "id_aset" => 1452, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "049", + "nama" => + "TRANSPARAN PLASTIC RACK INSERT FOR 20 TEST TEST TUBES 75 X 17", + ], + [ + "id_aset" => 1453, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "050", + "nama" => "WATER BATH PLEXIGLASS CAPASITY 71", + ], + [ + "id_aset" => 1454, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "051", + "nama" => "TEST TUBE RACK STAINLESSTEL WITH 10 HOLES 18 MM DIA", + ], + [ + "id_aset" => 1455, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "052", + "nama" => "CALORIMETER THERMOMETER ACETO BESTMEN CERTIFICATE", + ], + [ + "id_aset" => 1456, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "053", + "nama" => "SIT OF GAUGE PRETITION LANDS BERGER THERMOMETER", + ], + [ + "id_aset" => 1457, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "054", + "nama" => "SET OF 14 HIGHT PRECISION AMERAL THERMOMETER", + ], + [ + "id_aset" => 1458, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "055", + "nama" => "ADDITION TUNER STOP WATCH", + ], + [ + "id_aset" => 1459, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "056", + "nama" => '\"UNIVERSAL CLAMP', + ], + [ + "id_aset" => 1460, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "057", + "nama" => '\"UNIVERSAL CLAMP', + ], + [ + "id_aset" => 1461, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "058", + "nama" => "VENIER CALIVER", + ], + [ + "id_aset" => 1462, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "059", + "nama" => "PROPILE PROYEKTOR TOYO SERIE", + ], + [ + "id_aset" => 1463, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "060", + "nama" => "TOOL MAKER MICROSCOPE MAGNIFICATION 30 X", + ], + [ + "id_aset" => 1464, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "061", + "nama" => "MICROSCOPE MULTIVIEW", + ], + [ + "id_aset" => 1465, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT UKUR/PEMBANDING LAINNYA", + ], + [ + "id_aset" => 1466, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT UKUR LAINNYA", + ], + [ + "id_aset" => 1467, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "METER X - 27 DARI PLATINA TRIDIUM", + ], + [ + "id_aset" => 1468, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "H - METER DARI BAJA NIKEL", + ], + [ + "id_aset" => 1469, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "KOMPARATOR", + ], + [ + "id_aset" => 1470, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "ALAT PENGUKUR GARIS TENGAH", + ], + [ + "id_aset" => 1471, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "BAN UKUR", + ], + [ + "id_aset" => 1472, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "DIAMETER TAPE", + ], + [ + "id_aset" => 1473, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "UKURAN TINGGI ORANG", + ], + [ + "id_aset" => 1474, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "SCHUIFMAAT ( UKURAN INGSUT )", + ], + [ + "id_aset" => 1475, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "LIFTER STANDARD ( 1 LITER )", + ], + [ + "id_aset" => 1476, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "BEJANA UKUR", + ], + [ + "id_aset" => 1477, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "ALAT UKUR KADAR AIR (ALAT UKUR LAINNYA)", + ], + [ + "id_aset" => 1478, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "ALAT UKUR PEMECAH KULIT GABAH", + ], + [ + "id_aset" => 1479, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "RAIN GAUGE", + ], + [ + "id_aset" => 1480, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "NEEDLE LIFT SENSOR", + ], + [ + "id_aset" => 1481, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT UKUR LAINNYA", + ], + [ + "id_aset" => 1482, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT TIMBANGAN/BIARA", + ], + [ + "id_aset" => 1483, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TIMBANGAN JEMBATAN CAPASITAS 10 TON", + ], + [ + "id_aset" => 1484, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "TIMBANGAN MEJA CAPASITAS 10 KG", + ], + [ + "id_aset" => 1485, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "TIMBANGAN MEJA CAPASITAS 5 KG", + ], + [ + "id_aset" => 1486, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "TIMBANGAN BBI CAPASITAS 100 KG", + ], + [ + "id_aset" => 1487, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "TIMBANGAN BBI CAPASITAS 25 KG", + ], + [ + "id_aset" => 1488, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "TIMBANGAN BBI CAPASITAS 15 KG ( TIMBANGAN BAYI )", + ], + [ + "id_aset" => 1489, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "TIMBANGAN BBI CAPASITAS 10 KG", + ], + [ + "id_aset" => 1490, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "TIMBANGAN CEPAT CAPASITAS 10 KG", + ], + [ + "id_aset" => 1491, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "TIMBANGAN CEPAT CAPASITAS 25 KG", + ], + [ + "id_aset" => 1492, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "TIMBANGAN CEPAT CAPASITAS 200 KG", + ], + [ + "id_aset" => 1493, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "TIMBANGAN PEGAS CAPASITAS 10 KG", + ], + [ + "id_aset" => 1494, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => + "TIMBANGAN PEGAS CAPASITAS 50 KG (ALAT TIMBANGAN/BIARA)", + ], + [ + "id_aset" => 1495, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "TIMBANGAN SURAT CAPASITAS 100 KG", + ], + [ + "id_aset" => 1496, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "TIMBANGAN KWADRAN CAPASITAS 100 KG", + ], + [ + "id_aset" => 1497, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "TIMBANGAN SENTISIMAL DACIN KUNINGAN", + ], + [ + "id_aset" => 1498, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => "TIMBANGAN GULA GAVEKA", + ], + [ + "id_aset" => 1499, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "TIMBANGAN GANTUNG CAPASITAS 50 GRAM", + ], + [ + "id_aset" => 1500, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "NERACA HALUS + LEMARI CAPASITAS 500 GRAM", + ], + [ + "id_aset" => 1501, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "NERACA PARAMA E", + ], + [ + "id_aset" => 1502, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "NERACA PARAMA D CAPASITAS 5 GRAM", + ], + [ + "id_aset" => 1503, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "NERACA PERCISI ELEKTRONIK CAPASITAS 1 KG.", + ], + [ + "id_aset" => 1504, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "NERACA PERCISI ( SINGLE PAN ) CAPASITAS 20 KG.", + ], + [ + "id_aset" => 1505, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "NERACA PERCISI ( ELEKTRONIK VACUM ME )", + ], + [ + "id_aset" => 1506, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => "NERACA PERCISI 30 KG ( MICRO BALANCE )", + ], + [ + "id_aset" => 1507, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "026", + "nama" => "NERACA PERCISI CAPASITAS 50 GRAM", + ], + [ + "id_aset" => 1508, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "027", + "nama" => "NERACA PERCISI CAPASITAS 1 KG.", + ], + [ + "id_aset" => 1509, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "028", + "nama" => "NERACA TERA E", + ], + [ + "id_aset" => 1510, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "029", + "nama" => "NERACA TERA A CAPASITAS 75 KG.", + ], + [ + "id_aset" => 1511, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "030", + "nama" => "NERACA TERA B CAPASITAS 10 KG.", + ], + [ + "id_aset" => 1512, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "031", + "nama" => "NERACA TORSION BALANCE CAPASITAS 500 GRAM", + ], + [ + "id_aset" => 1513, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "032", + "nama" => "NERACA ANALISA CAPASITAS 1000 GRAM", + ], + [ + "id_aset" => 1514, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "033", + "nama" => "NERACA ANALISA CAPASITAS 20 KG", + ], + [ + "id_aset" => 1515, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "034", + "nama" => "NERACA CAPASITAS 1 KG.", + ], + [ + "id_aset" => 1516, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "035", + "nama" => "NERACA CAPASITAS 20 KG.", + ], + [ + "id_aset" => 1517, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "036", + "nama" => "MOISTER METER", + ], + [ + "id_aset" => 1518, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "037", + "nama" => "NERACA DENGAN DIGITAL DISPLAY", + ], + [ + "id_aset" => 1519, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "ALAT TIMBANGAN/BIARA LAINNYA", + ], + [ + "id_aset" => 1520, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "ANAK TIMBANGAN / BIARA", + ], + [ + "id_aset" => 1521, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "KILOGRAM TEMBAGA NASIONAL PLATINA", + ], + [ + "id_aset" => 1522, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "KILOGRAM TEMBAGA BENTUK TONG BERSADUR MAS MURNI 1 KG.", + ], + [ + "id_aset" => 1523, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "KILOGRAM SEPUH MAS 1 KG. PAKAI TOMBOL", + ], + [ + "id_aset" => 1524, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "KILOGRAM BAJA BERBENTUK TONG BERSADUR CROOM", + ], + [ + "id_aset" => 1525, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "KILOGRAM DARI BAJA BERBENTUK SLINDER", + ], + [ + "id_aset" => 1526, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "KILOGRAM KERJA STANDAR TK.II", + ], + [ + "id_aset" => 1527, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "KILOGRAM STANDAR", + ], + [ + "id_aset" => 1528, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "ANAK TIMBANGAN TEMBAGA KANTOR TK.III", + ], + [ + "id_aset" => 1529, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "ANAK TIMBANGAN MILIGRAM", + ], + [ + "id_aset" => 1530, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "ANAK TIMBANGAN MILIGRAM PLATINA", + ], + [ + "id_aset" => 1531, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "ANAK TIMBANGAN MILIGRAM ALUMINIUM", + ], + [ + "id_aset" => 1532, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "ANAK TIMBANGAN GRAM STANDAR 1 GRAM", + ], + [ + "id_aset" => 1533, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "013", + "nama" => "ANAK TIMBANGAN HALUS DARI 1.000 - 1 GRAM", + ], + [ + "id_aset" => 1534, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "014", + "nama" => "ANAK TIMBANGAN BIASA DARI 1.000 - 1 GRAM", + ], + [ + "id_aset" => 1535, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "015", + "nama" => "ANAK TIMBANGAN BIDUR", + ], + [ + "id_aset" => 1536, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "016", + "nama" => "ANAK TIMBANGAN DARI BESI", + ], + [ + "id_aset" => 1537, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "017", + "nama" => "ANAK TIMBANGAN KEPING ( MULUT KECIL )", + ], + [ + "id_aset" => 1538, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "018", + "nama" => "ANAK TIMBANGAN KEPING ( MULUT BESAR )", + ], + [ + "id_aset" => 1539, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "ANAK TIMBANGAN / BIARA LAINNYA", + ], + [ + "id_aset" => 1540, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "TAKARAN KERING", + ], + [ + "id_aset" => 1541, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "TAKARAN KERING DARI 100 - 50 - 20 LITER", + ], + [ + "id_aset" => 1542, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => '\"TAKARAN KERING DARI 10 S/D 0', + ], + [ + "id_aset" => 1543, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "TAKARAN KERING LAINNYA", + ], + [ + "id_aset" => 1544, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "TAKARAN BAHAN BANGUNAN", + ], + [ + "id_aset" => 1545, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "TAKARAN BAHAN BANGUNAN 2 HL BERBENTUK TONG", + ], + [ + "id_aset" => 1546, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "TAKARAN BAHAN BANGUNAN LAINNYA", + ], + [ + "id_aset" => 1547, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "TAKARAN LAINNYA", + ], + [ + "id_aset" => 1548, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "TAKARAN LATEX/GETAH SUSU", + ], + [ + "id_aset" => 1549, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => '\"TAKARAN BUAH KOPI DARI 0', + ], + [ + "id_aset" => 1550, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "TAKARAN KAPUK DARI KAYU 2 DAN 1 HL", + ], + [ + "id_aset" => 1551, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => '\"TAKARAN MINYAK DARI BESI 0', + ], + [ + "id_aset" => 1552, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "005", + "nama" => '\"TAKARAN GANDUM 0', + ], + [ + "id_aset" => 1553, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "TAKARAN LAINNYA", + ], + [ + "id_aset" => 1554, + "golongan" => "3", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT UKUR LAINNYA", + ], + [ + "id_aset" => 1555, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PERTANIAN", + ], + [ + "id_aset" => 1556, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN", + ], + [ + "id_aset" => 1557, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN TANAH DAN TANAMAN", + ], + [ + "id_aset" => 1558, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BAJAK KAYU", + ], + [ + "id_aset" => 1559, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "BAJAK MUARA", + ], + [ + "id_aset" => 1560, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PACUL", + ], + [ + "id_aset" => 1561, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "LINGGIS", + ], + [ + "id_aset" => 1562, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "GARPU PACUL", + ], + [ + "id_aset" => 1563, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "GARPU KAYU", + ], + [ + "id_aset" => 1564, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "GARPU BESI", + ], + [ + "id_aset" => 1565, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TRACTOR FOUR WHEEL (DENGAN KELENGKAPANNYA)", + ], + [ + "id_aset" => 1566, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "TRACTOR TANGAN DENGAN PERLENGKAPANNYA", + ], + [ + "id_aset" => 1567, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN TANAH DAN TANAMAN LAINNYA", + ], + [ + "id_aset" => 1568, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PEMELIHARAAN TANAMAN/IKAN/TERNAK", + ], + [ + "id_aset" => 1569, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "KORED", + ], + [ + "id_aset" => 1570, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "ARIT", + ], + [ + "id_aset" => 1571, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BABATAN", + ], + [ + "id_aset" => 1572, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "PACUL DANGIR", + ], + [ + "id_aset" => 1573, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "PENYEMPROT OTOMATIS (AUTOMATIC SPRAYER)", + ], + [ + "id_aset" => 1574, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "PENYEMPROT MESIN (POWER SPRAYER)", + ], + [ + "id_aset" => 1575, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "PENYEMPROT TANGAN (HAND SPRAYER)", + ], + [ + "id_aset" => 1576, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "ALAT PENYIANG TANAMAN", + ], + [ + "id_aset" => 1577, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PEMELIHARAAN TANAMAN/IKAN/TERNAK LAINNYA", + ], + [ + "id_aset" => 1578, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PANEN", + ], + [ + "id_aset" => 1579, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "ANI-ANI", + ], + [ + "id_aset" => 1580, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PERONTOKAN (THRESSER PEDAL)", + ], + [ + "id_aset" => 1581, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "ALAT PERONTOKAN MESIN (POWER THRESSER)", + ], + [ + "id_aset" => 1582, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "ALAT PEMIPIL JAGUNG", + ], + [ + "id_aset" => 1583, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "ALAT PENGERING (DRYER)", + ], + [ + "id_aset" => 1584, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "ALAT PENGUKUR KADAR AIR (MOISTURE TESTER)", + ], + [ + "id_aset" => 1585, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "ALAT PENGGILING KOPI", + ], + [ + "id_aset" => 1586, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "ALAT PENGOLAH TEPUNG", + ], + [ + "id_aset" => 1587, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "ALAT BANTU UJI TUMBUH", + ], + [ + "id_aset" => 1588, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "ALAT PENAMPI", + ], + [ + "id_aset" => 1589, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PANEN LAINNYA", + ], + [ + "id_aset" => 1590, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENYIMPAN HASIL PERCOBAAN PERTANIAN", + ], + [ + "id_aset" => 1591, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "COLD STORAGE (KAMAR PENDINGIN)", + ], + [ + "id_aset" => 1592, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SELO (KOTAK PENYIMPANAN) DENGAN PENGATUR TEMPERATUR", + ], + [ + "id_aset" => 1593, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "RAK-RAK PENYIMPAN", + ], + [ + "id_aset" => 1594, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "LEMARI PENYIMPAN", + ], + [ + "id_aset" => 1595, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENYIMPAN HASIL PERCOBAAN PERTANIAN LAINNYA", + ], + [ + "id_aset" => 1596, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT LABORATORIUM PERTANIAN", + ], + [ + "id_aset" => 1597, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PENGUKUR CURAH HUJAN", + ], + [ + "id_aset" => 1598, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PENGUKUR CAHAYA", + ], + [ + "id_aset" => 1599, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "ALAT PENGUKUR INTENSITAS CAHAYA", + ], + [ + "id_aset" => 1600, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "ALAT PENGUKUR TEMPERATUR", + ], + [ + "id_aset" => 1601, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "ALAT PENGUKUR P.H. TANAH (SOIL TESTER)", + ], + [ + "id_aset" => 1602, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "ALAT PENGAMBIL SAMPLE TANAH", + ], + [ + "id_aset" => 1603, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "RICE", + ], + [ + "id_aset" => 1604, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "GRINDDING MILL", + ], + [ + "id_aset" => 1605, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "VOLUME TEST", + ], + [ + "id_aset" => 1606, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "WEIGHT", + ], + [ + "id_aset" => 1607, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "STRAW FACTURE", + ], + [ + "id_aset" => 1608, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "FALLING NUMBER", + ], + [ + "id_aset" => 1609, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "ELECTRODE PH METER", + ], + [ + "id_aset" => 1610, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "ALAT PENURUN KADAR AIR MADU", + ], + [ + "id_aset" => 1611, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => + "ALAT LABORATORIUM PERTANIAN LAINNYA (ALAT PENGOLAHAN PERTANIAN)", + ], + [ + "id_aset" => 1612, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PROSESING", + ], + [ + "id_aset" => 1613, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PENGADUK", + ], + [ + "id_aset" => 1614, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PENCABUT BULU AYAM", + ], + [ + "id_aset" => 1615, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "ALAT PEMBUAT PELET/MAKANAN TERNAK", + ], + [ + "id_aset" => 1616, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "ALAT PEMBUAT MOLASE BLOK", + ], + [ + "id_aset" => 1617, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "MESIN TETAS", + ], + [ + "id_aset" => 1618, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "MESIN PERAH SUSU", + ], + [ + "id_aset" => 1619, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "MILK CAN", + ], + [ + "id_aset" => 1620, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "PENGUPAS KULIT ARI KEDELAI", + ], + [ + "id_aset" => 1621, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "PEMARUT SERAT SERBA GUNA", + ], + [ + "id_aset" => 1622, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "PENYAWUT SINGKONG", + ], + [ + "id_aset" => 1623, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "GILINGAN BERAS", + ], + [ + "id_aset" => 1624, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "SALINA INJECTOR", + ], + [ + "id_aset" => 1625, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "013", + "nama" => "SCALLER MOTOR", + ], + [ + "id_aset" => 1626, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "014", + "nama" => "ULV CABINET", + ], + [ + "id_aset" => 1627, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "015", + "nama" => "TLC DRAYER", + ], + [ + "id_aset" => 1628, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "016", + "nama" => "MESIN PENCUCI ALAT (MIELE)", + ], + [ + "id_aset" => 1629, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "017", + "nama" => "HYDROLIC PIECES", + ], + [ + "id_aset" => 1630, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "018", + "nama" => "REAPER", + ], + [ + "id_aset" => 1631, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "019", + "nama" => "ELECTRIC DISK CUTTER", + ], + [ + "id_aset" => 1632, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "020", + "nama" => "RAGUM /CATOK", + ], + [ + "id_aset" => 1633, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "021", + "nama" => "DIESEL EGGANE", + ], + [ + "id_aset" => 1634, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "022", + "nama" => "ALAT PROSESING DAGING", + ], + [ + "id_aset" => 1635, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "023", + "nama" => "ALAT PROSESING TELUR", + ], + [ + "id_aset" => 1636, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "024", + "nama" => "ICE CREAM MAKER", + ], + [ + "id_aset" => 1637, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "025", + "nama" => "HAND SEPARATOR", + ], + [ + "id_aset" => 1638, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "026", + "nama" => "MESIN PENEPUNG BERAS", + ], + [ + "id_aset" => 1639, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "027", + "nama" => "ALAT PENGGILING JAGUNG", + ], + [ + "id_aset" => 1640, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "028", + "nama" => "MESIN PENGAYAK TEPUNG", + ], + [ + "id_aset" => 1641, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "029", + "nama" => "PENGOLAHAN PRODUK KERING", + ], + [ + "id_aset" => 1642, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "030", + "nama" => "PENYAWUT BESAR DAN KECIL", + ], + [ + "id_aset" => 1643, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "031", + "nama" => "PROCESSING MULTIGUNA", + ], + [ + "id_aset" => 1644, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "032", + "nama" => "PUMP FOR HPLC AND ACCESSORIES", + ], + [ + "id_aset" => 1645, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "033", + "nama" => "SAUSAGE FEELER MACHINE", + ], + [ + "id_aset" => 1646, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "034", + "nama" => "TWIN PAPER ROLLER BEARING", + ], + [ + "id_aset" => 1647, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "035", + "nama" => "SKINNING CRADLE", + ], + [ + "id_aset" => 1648, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "036", + "nama" => "HEAD RESTRAINER", + ], + [ + "id_aset" => 1649, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "037", + "nama" => "STUNING DEVICE", + ], + [ + "id_aset" => 1650, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "038", + "nama" => "PENYODOK KOTORAN", + ], + [ + "id_aset" => 1651, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "039", + "nama" => "PENGARAH KEPALA", + ], + [ + "id_aset" => 1652, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "040", + "nama" => "OFFAL WASH", + ], + [ + "id_aset" => 1653, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "041", + "nama" => "BEEF SPLITTER", + ], + [ + "id_aset" => 1654, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PROSESING LAINNYA", + ], + [ + "id_aset" => 1655, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PASCA PANEN", + ], + [ + "id_aset" => 1656, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PENGASAPAN", + ], + [ + "id_aset" => 1657, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PEMBEKUAN", + ], + [ + "id_aset" => 1658, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "ALAT PENGGILING PADI", + ], + [ + "id_aset" => 1659, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "ALAT PENCACAH HIJAUAN", + ], + [ + "id_aset" => 1660, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => "ALAT PEMECAH TAPIOKA", + ], + [ + "id_aset" => 1661, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PASCA PANEN LAINNYA", + ], + [ + "id_aset" => 1662, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PRODUKSI PERIKANAN", + ], + [ + "id_aset" => 1663, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "PUKAT", + ], + [ + "id_aset" => 1664, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "DOUBLE RIG SHRIMP TRAWL/PUKAT UDANG GANDA", + ], + [ + "id_aset" => 1665, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "PAYANG ( TERMASUK LAMPARA )", + ], + [ + "id_aset" => 1666, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "004", + "nama" => "DANISH SEINE ( DOGOL )", + ], + [ + "id_aset" => 1667, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "005", + "nama" => "BEACH SEINE ( PUKAT PANTAI )", + ], + [ + "id_aset" => 1668, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "006", + "nama" => "DRIFT GILL NET ( JARING INSANG HANYUT )", + ], + [ + "id_aset" => 1669, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "007", + "nama" => "ENCIRCLING GILL NET ( JARING INSANG LINGKAR )", + ], + [ + "id_aset" => 1670, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "008", + "nama" => "SHRIMP GILL NET ( JARING KLITIK )", + ], + [ + "id_aset" => 1671, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "009", + "nama" => "SET GILL NET ( JARING INSANG TETAP )", + ], + [ + "id_aset" => 1672, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "010", + "nama" => "BOAT RAFT LIFT NET ( BAGAN PERAHU/RAKIT )", + ], + [ + "id_aset" => 1673, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "011", + "nama" => "BAGAN TANCAP BERIKUT KELONG", + ], + [ + "id_aset" => 1674, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "012", + "nama" => "SCOOP NET ( SEROK )", + ], + [ + "id_aset" => 1675, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "013", + "nama" => "JARING ANGKAT LAINNYA", + ], + [ + "id_aset" => 1676, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "014", + "nama" => "GUIDING BARRIER ( SEROK )", + ], + [ + "id_aset" => 1677, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "015", + "nama" => "STOW NET ( JERMAL TERMASUK TOGO )", + ], + [ + "id_aset" => 1678, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "016", + "nama" => "PORTABLE TRAPS ( BUBU )", + ], + [ + "id_aset" => 1679, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "017", + "nama" => "PERANGKAP LAINNYA", + ], + [ + "id_aset" => 1680, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "018", + "nama" => "TUNA LONG LINE ( RAWAI TUNA )", + ], + [ + "id_aset" => 1681, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "019", + "nama" => "SET LONG LINE ( RAWAI TETAP )", + ], + [ + "id_aset" => 1682, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "020", + "nama" => "SKIPJACK POLE AND LINES ( HUHATE )", + ], + [ + "id_aset" => 1683, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "021", + "nama" => "TROOL LINE ( PANCING TONDA )", + ], + [ + "id_aset" => 1684, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "022", + "nama" => "PANCING LAINNYA", + ], + [ + "id_aset" => 1685, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "023", + "nama" => "MUROAMI INC. MALLALUGIS", + ], + [ + "id_aset" => 1686, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "024", + "nama" => "JALA", + ], + [ + "id_aset" => 1687, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "025", + "nama" => "GARPU", + ], + [ + "id_aset" => 1688, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "026", + "nama" => "TOMBAK", + ], + [ + "id_aset" => 1689, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "027", + "nama" => "SEA WATER RESERVOIR", + ], + [ + "id_aset" => 1690, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "028", + "nama" => "BAK PEMELIHARAAN SEMENTARA", + ], + [ + "id_aset" => 1691, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "029", + "nama" => "BAK PENGENDAPAN", + ], + [ + "id_aset" => 1692, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "030", + "nama" => "KERAMBA ( JARING APUNG )", + ], + [ + "id_aset" => 1693, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "031", + "nama" => "JARING LINGKAR", + ], + [ + "id_aset" => 1694, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "032", + "nama" => "PUKAT TARIK BERKAPAL", + ], + [ + "id_aset" => 1695, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "033", + "nama" => "PUKAT HELA", + ], + [ + "id_aset" => 1696, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "034", + "nama" => "PUKAT DORONG", + ], + [ + "id_aset" => 1697, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "035", + "nama" => "PENGGARUK", + ], + [ + "id_aset" => 1698, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "036", + "nama" => "JARING ANGKAT MENETAP", + ], + [ + "id_aset" => 1699, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "037", + "nama" => "JARING ANGKAT TIDAK MENETAP", + ], + [ + "id_aset" => 1700, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "038", + "nama" => "ALAT YANG DIJATUHKAN", + ], + [ + "id_aset" => 1701, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "039", + "nama" => "ALAT PENJEPIT DAN MELUKAI", + ], + [ + "id_aset" => 1702, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PRODUKSI PERIKANAN LAINNYA", + ], + [ + "id_aset" => 1703, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN LAINNYA", + ], + [ + "id_aset" => 1704, + "golongan" => "3", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN LAINNYA", + ], + [ + "id_aset" => 1705, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KANTOR & RUMAH TANGGA", + ], + [ + "id_aset" => 1706, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KANTOR", + ], + [ + "id_aset" => 1707, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "MESIN KETIK", + ], + [ + "id_aset" => 1708, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "MESIN KETIK MANUAL PORTABLE (11-13 INCI)", + ], + [ + "id_aset" => 1709, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MESIN KETIK MANUAL STANDARD (14-16 INCI)", + ], + [ + "id_aset" => 1710, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "MESIN KETIK MANUAL LANGEWAGON (18-27 INCI)", + ], + [ + "id_aset" => 1711, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "MESIN KETIK LISTRIK", + ], + [ + "id_aset" => 1712, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "MESIN KETIK LISTRIK POTABLE (11-13 INCI)", + ], + [ + "id_aset" => 1713, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "MESIN KETIK LISTRIK STANDARD (14-16 INCI)", + ], + [ + "id_aset" => 1714, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "MESIN KETIK LISTRIK LANGEWAGON (18-27 INCI)", + ], + [ + "id_aset" => 1715, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "MESIN KETIK ELEKTRONIK/SELEKTRIK", + ], + [ + "id_aset" => 1716, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "MESIN KETIK BRAILLE", + ], + [ + "id_aset" => 1717, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "MESIN PHROMOSONS", + ], + [ + "id_aset" => 1718, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "MESIN CETAK STEREO PIPER (BRAILLE)", + ], + [ + "id_aset" => 1719, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "MESIN KETIK LAINNYA", + ], + [ + "id_aset" => 1720, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "MESIN HITUNG/MESIN JUMLAH", + ], + [ + "id_aset" => 1721, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "MESIN HITUNG MANUAL", + ], + [ + "id_aset" => 1722, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MESIN HITUNG LISTRIK", + ], + [ + "id_aset" => 1723, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "MESIN HITUNG ELEKTRONIK/CALCULATOR", + ], + [ + "id_aset" => 1724, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "MESIN KAS REGISTER", + ], + [ + "id_aset" => 1725, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "ABAKUS (ALAT HITUNG)", + ], + [ + "id_aset" => 1726, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "BLOKYCS (MESIN HITUNG BRAILLE)", + ], + [ + "id_aset" => 1727, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "MESIN PENGHITUNG UANG", + ], + [ + "id_aset" => 1728, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "MESIN PEMBUKUAN", + ], + [ + "id_aset" => 1729, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "MESIN PENGHITUNG KERTAS/PITA CUKAI", + ], + [ + "id_aset" => 1730, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "MESIN HITUNG/MESIN JUMLAH LAINNYA", + ], + [ + "id_aset" => 1731, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT REPRODUKSI (PENGGANDAAN)", + ], + [ + "id_aset" => 1732, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "MESIN STENSIL MANUAL FOLIO", + ], + [ + "id_aset" => 1733, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "MESIN STENSIL MANUAL DOUBLE FOLIO", + ], + [ + "id_aset" => 1734, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "MESIN STENSIL LISTRIK FOLIO", + ], + [ + "id_aset" => 1735, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "MESIN STENSIL LISTRIK DOUBLE FOLIO", + ], + [ + "id_aset" => 1736, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "MESIN STENSIL SPIRITUS MANUAL", + ], + [ + "id_aset" => 1737, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "MESIN STENSIL SPIRITUS LISTRIK", + ], + [ + "id_aset" => 1738, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "MESIN FOTOCOPY FOLIO", + ], + [ + "id_aset" => 1739, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "MESIN FOTOCOPY DOUBLE FOLIO", + ], + [ + "id_aset" => 1740, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "MESIN FOTOCOPY ELECTRONIC", + ], + [ + "id_aset" => 1741, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "MESIN THERMOFORN", + ], + [ + "id_aset" => 1742, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "MESIN FOTOCOPY LAINNYA", + ], + [ + "id_aset" => 1743, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "RISOGRAF", + ], + [ + "id_aset" => 1744, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT REPRODUKSI (PENGGANDAAN) LAINNYA", + ], + [ + "id_aset" => 1745, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENYIMPAN PERLENGKAPAN KANTOR", + ], + [ + "id_aset" => 1746, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "LEMARI BESI/METAL", + ], + [ + "id_aset" => 1747, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "LEMARI KAYU", + ], + [ + "id_aset" => 1748, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "RAK BESI", + ], + [ + "id_aset" => 1749, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "RAK KAYU", + ], + [ + "id_aset" => 1750, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "FILING CABINET BESI", + ], + [ + "id_aset" => 1751, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "FILING CABINET KAYU", + ], + [ + "id_aset" => 1752, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "BRANDKAS", + ], + [ + "id_aset" => 1753, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "PETI UANG/CASH BOX/COIN BOX", + ], + [ + "id_aset" => 1754, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "KARDEX BESI", + ], + [ + "id_aset" => 1755, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "KARDEX KAYU", + ], + [ + "id_aset" => 1756, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "ROTARY FILLING", + ], + [ + "id_aset" => 1757, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "COMPACT ROLLING", + ], + [ + "id_aset" => 1758, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "BUFFET", + ], + [ + "id_aset" => 1759, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "MOBILE FILE", + ], + [ + "id_aset" => 1760, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "015", + "nama" => "LOCKER", + ], + [ + "id_aset" => 1761, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "016", + "nama" => "ROLL OPEK", + ], + [ + "id_aset" => 1762, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "017", + "nama" => "TEMPAT MENYIMPAN GAMBAR", + ], + [ + "id_aset" => 1763, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "018", + "nama" => "KONTAINER", + ], + [ + "id_aset" => 1764, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "019", + "nama" => "COIN BOX", + ], + [ + "id_aset" => 1765, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "020", + "nama" => "LEMARI DISPLAY", + ], + [ + "id_aset" => 1766, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "021", + "nama" => "WATER PROOF BOX", + ], + [ + "id_aset" => 1767, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "022", + "nama" => "FOLDING CONTAINER BOX", + ], + [ + "id_aset" => 1768, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "023", + "nama" => "BOX TRUCK", + ], + [ + "id_aset" => 1769, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "024", + "nama" => "LACI BOX", + ], + [ + "id_aset" => 1770, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "025", + "nama" => "LEMARI KATALOG", + ], + [ + "id_aset" => 1771, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENYIMPAN PERLENGKAPAN KANTOR LAINNYA", + ], + [ + "id_aset" => 1772, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KANTOR LAINNYA", + ], + [ + "id_aset" => 1773, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TABUNG PEMADAM API", + ], + [ + "id_aset" => 1774, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "HYDRANT", + ], + [ + "id_aset" => 1775, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "SPRINKLER", + ], + [ + "id_aset" => 1776, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "FIRE ALARM", + ], + [ + "id_aset" => 1777, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "RAMBU-RAMBU", + ], + [ + "id_aset" => 1778, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "NARKOTIK TEST", + ], + [ + "id_aset" => 1779, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "CCTV - CAMERA CONTROL TELEVISION SYSTEM", + ], + [ + "id_aset" => 1780, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "PAPAN VISUAL/PAPAN NAMA", + ], + [ + "id_aset" => 1781, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "MOVITEX BOARD", + ], + [ + "id_aset" => 1782, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "WHITE BOARD", + ], + [ + "id_aset" => 1783, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "ALAT DETEKTOR UANG PALSU", + ], + [ + "id_aset" => 1784, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "ALAT DETEKTOR BARANG TERLARANG/X RAY", + ], + [ + "id_aset" => 1785, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "COPY BOARD/ELEKTRIC WHITE BOARD", + ], + [ + "id_aset" => 1786, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "PETA", + ], + [ + "id_aset" => 1787, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "ALAT PENGHANCUR KERTAS", + ], + [ + "id_aset" => 1788, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "GLOBE", + ], + [ + "id_aset" => 1789, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => "MESIN ABSENSI", + ], + [ + "id_aset" => 1790, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "DRY SEAL", + ], + [ + "id_aset" => 1791, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "FERGULATOR", + ], + [ + "id_aset" => 1792, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "CREAM POLISHER", + ], + [ + "id_aset" => 1793, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "MESIN PERANGKO", + ], + [ + "id_aset" => 1794, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "CHECK WRITER", + ], + [ + "id_aset" => 1795, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "NUMERATOR", + ], + [ + "id_aset" => 1796, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "ALAT PEMOTONG KERTAS", + ], + [ + "id_aset" => 1797, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => "HEADMACHINE BESAR", + ], + [ + "id_aset" => 1798, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "026", + "nama" => "PERFORATOR BESAR", + ], + [ + "id_aset" => 1799, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "027", + "nama" => "ALAT PENCETAK LABEL", + ], + [ + "id_aset" => 1800, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "028", + "nama" => "OVERHEAD PROJECTOR", + ], + [ + "id_aset" => 1801, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "029", + "nama" => "HAND METAL DETECTOR", + ], + [ + "id_aset" => 1802, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "030", + "nama" => "WALKMAN DETECTOR", + ], + [ + "id_aset" => 1803, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "031", + "nama" => "PANEL PAMERAN", + ], + [ + "id_aset" => 1804, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "032", + "nama" => "ALAT PENGAMAN / SINYAL", + ], + [ + "id_aset" => 1805, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "033", + "nama" => "BOARD MODULUX", + ], + [ + "id_aset" => 1806, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "034", + "nama" => "PORTO SAFE TRAVEL COSE", + ], + [ + "id_aset" => 1807, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "035", + "nama" => "DISK PRIME", + ], + [ + "id_aset" => 1808, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "036", + "nama" => "MEGASHOW", + ], + [ + "id_aset" => 1809, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "037", + "nama" => "WHITE BOARD ELECTRONIC", + ], + [ + "id_aset" => 1810, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "038", + "nama" => "LASER POINTER", + ], + [ + "id_aset" => 1811, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "039", + "nama" => "DISPLAY", + ], + [ + "id_aset" => 1812, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "040", + "nama" => "EXHAUSTER FORM", + ], + [ + "id_aset" => 1813, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "041", + "nama" => "RUBU MUJAYYAB", + ], + [ + "id_aset" => 1814, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "042", + "nama" => "ELECTRIC DUMPER", + ], + [ + "id_aset" => 1815, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "043", + "nama" => "MESIN TERAAN", + ], + [ + "id_aset" => 1816, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "044", + "nama" => "MESIN LAMINATING", + ], + [ + "id_aset" => 1817, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "045", + "nama" => "PENANGKAL PETIR", + ], + [ + "id_aset" => 1818, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "046", + "nama" => "STEMPEL TIMBUL/BULAT", + ], + [ + "id_aset" => 1819, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "047", + "nama" => "LAMPU-LAMPU KRISTAL", + ], + [ + "id_aset" => 1820, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "048", + "nama" => "LCD PROJECTOR/INFOCUS", + ], + [ + "id_aset" => 1821, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "049", + "nama" => "FLIP CHART", + ], + [ + "id_aset" => 1822, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "050", + "nama" => "BINDING MACHINE", + ], + [ + "id_aset" => 1823, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "051", + "nama" => "SOFTBOARD", + ], + [ + "id_aset" => 1824, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "052", + "nama" => "ALAT PEREKAM SUARA (VOICE PEN)", + ], + [ + "id_aset" => 1825, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "053", + "nama" => "ACCES CONTROL SYSTEM", + ], + [ + "id_aset" => 1826, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "054", + "nama" => "INTRUCTION DETECTOR", + ], + [ + "id_aset" => 1827, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "055", + "nama" => "MONITOR PANEL WITH MIMIC BOARD", + ], + [ + "id_aset" => 1828, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "056", + "nama" => '\"PANIC BUTTON SYSTEM', + ], + [ + "id_aset" => 1829, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "057", + "nama" => "PINTU ELEKTRIK (YANG MEMAKAI AKSES)", + ], + [ + "id_aset" => 1830, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "058", + "nama" => "FOCUSING SCREEN/LAYAR LCD PROJECTOR", + ], + [ + "id_aset" => 1831, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "059", + "nama" => "ALAT DETEKTOR BARANG TERLARANG", + ], + [ + "id_aset" => 1832, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "060", + "nama" => "PROYECTOR SPIDER BRACKET", + ], + [ + "id_aset" => 1833, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "061", + "nama" => "PAPAN GAMBAR", + ], + [ + "id_aset" => 1834, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "062", + "nama" => "BEL", + ], + [ + "id_aset" => 1835, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "063", + "nama" => "ELECTRIC PRESSING MACHINE", + ], + [ + "id_aset" => 1836, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "064", + "nama" => "ENCAPSULATOR (JARASONIC WELDER)", + ], + [ + "id_aset" => 1837, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "065", + "nama" => "DEACIDIFICATOR UNIT (NON AQUAS)", + ], + [ + "id_aset" => 1838, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "066", + "nama" => "FULL AUTOMATIC LEAF CASTER", + ], + [ + "id_aset" => 1839, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "067", + "nama" => "CONSERVATION TOOLS", + ], + [ + "id_aset" => 1840, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "068", + "nama" => "BOARD STAN", + ], + [ + "id_aset" => 1841, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "069", + "nama" => "VACUM FREEZE DRY CHAMBER", + ], + [ + "id_aset" => 1842, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "070", + "nama" => "KOTAK SURAT", + ], + [ + "id_aset" => 1843, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "071", + "nama" => "GEMBOK", + ], + [ + "id_aset" => 1844, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "072", + "nama" => "COMPACT HAND PROJECTOR", + ], + [ + "id_aset" => 1845, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "073", + "nama" => "ALAT SIDIK JARI", + ], + [ + "id_aset" => 1846, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "074", + "nama" => "ALAT PENGHANCUR JARUM", + ], + [ + "id_aset" => 1847, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "075", + "nama" => "WALKTHROUGH/ PORTAL METAL DETECTOR", + ], + [ + "id_aset" => 1848, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "076", + "nama" => "HANDHELD TRACE DETECTOR", + ], + [ + "id_aset" => 1849, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "077", + "nama" => + "ALAT DETEKSI PITA CUKAI PALSU/ VIDEO SPECTRAL COMPARATOR", + ], + [ + "id_aset" => 1850, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "078", + "nama" => "MESIN PACKING/ STARPPING MACHINE", + ], + [ + "id_aset" => 1851, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "079", + "nama" => "TELEVISION CONTROL OPERASIONAL LIFT", + ], + [ + "id_aset" => 1852, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "080", + "nama" => "MESIN ANTRIAN", + ], + [ + "id_aset" => 1853, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "081", + "nama" => "PAPAN PENGUMUMAN", + ], + [ + "id_aset" => 1854, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "082", + "nama" => "MESIN FOGGING", + ], + [ + "id_aset" => 1855, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "083", + "nama" => "TERALIS", + ], + [ + "id_aset" => 1856, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "PERKAKAS KANTOR LAINNYA", + ], + [ + "id_aset" => 1857, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KANTOR LAINNYA", + ], + [ + "id_aset" => 1858, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KANTOR LAINNYA", + ], + [ + "id_aset" => 1859, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT RUMAH TANGGA", + ], + [ + "id_aset" => 1860, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "MEUBELAIR", + ], + [ + "id_aset" => 1861, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "MEJA KERJA BESI/METAL", + ], + [ + "id_aset" => 1862, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MEJA KERJA KAYU", + ], + [ + "id_aset" => 1863, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "KURSI BESI/METAL", + ], + [ + "id_aset" => 1864, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "KURSI KAYU", + ], + [ + "id_aset" => 1865, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "SICE", + ], + [ + "id_aset" => 1866, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "BANGKU PANJANG BESI/METAL", + ], + [ + "id_aset" => 1867, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "BANGKU PANJANG KAYU", + ], + [ + "id_aset" => 1868, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "MEJA RAPAT", + ], + [ + "id_aset" => 1869, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "MEJA KOMPUTER", + ], + [ + "id_aset" => 1870, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "TEMPAT TIDUR BESI", + ], + [ + "id_aset" => 1871, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "TEMPAT TIDUR KAYU", + ], + [ + "id_aset" => 1872, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "MEJA KETIK", + ], + [ + "id_aset" => 1873, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "MEJA TELEPON", + ], + [ + "id_aset" => 1874, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "MEJA RESEPSIONIS", + ], + [ + "id_aset" => 1875, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "MEJA MARMER", + ], + [ + "id_aset" => 1876, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "KASUR/SPRING BED", + ], + [ + "id_aset" => 1877, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "SKETSEL", + ], + [ + "id_aset" => 1878, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "MEJA MAKAN BESI", + ], + [ + "id_aset" => 1879, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "019", + "nama" => "MEJA MAKAN KAYU", + ], + [ + "id_aset" => 1880, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "020", + "nama" => "KURSI FIBER GLAS/PLASTIK", + ], + [ + "id_aset" => 1881, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "021", + "nama" => "POT BUNGA", + ], + [ + "id_aset" => 1882, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "022", + "nama" => "PARTISI", + ], + [ + "id_aset" => 1883, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "023", + "nama" => "PUBLIK ASTARI (PEMBATAS ANTRIAN)", + ], + [ + "id_aset" => 1884, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "024", + "nama" => "RAK SEPATU ( ALMUNIUM )", + ], + [ + "id_aset" => 1885, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "025", + "nama" => "GANTUNGAN JAS", + ], + [ + "id_aset" => 1886, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "026", + "nama" => "NAKAS", + ], + [ + "id_aset" => 1887, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "027", + "nama" => "CUBIKAL", + ], + [ + "id_aset" => 1888, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "028", + "nama" => "WORKSTATION", + ], + [ + "id_aset" => 1889, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "MEUBELAIR LAINNYA", + ], + [ + "id_aset" => 1890, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGUKUR WAKTU", + ], + [ + "id_aset" => 1891, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JAM MEKANIS", + ], + [ + "id_aset" => 1892, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JAM LISTRIK", + ], + [ + "id_aset" => 1893, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JAM ELEKTRONIK", + ], + [ + "id_aset" => 1894, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "CONTROL CLOCK", + ], + [ + "id_aset" => 1895, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGUKUR WAKTU LAINNYA", + ], + [ + "id_aset" => 1896, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PEMBERSIH", + ], + [ + "id_aset" => 1897, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "MESIN PENGHISAP DEBU/VACUUM CLEANER", + ], + [ + "id_aset" => 1898, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "MESIN PEL/POLES", + ], + [ + "id_aset" => 1899, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "MESIN PEMOTONG RUMPUT", + ], + [ + "id_aset" => 1900, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "MESIN CUCI", + ], + [ + "id_aset" => 1901, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "AIR CLEANER", + ], + [ + "id_aset" => 1902, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "ALAT PEMBERSIH SALJU", + ], + [ + "id_aset" => 1903, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PEMBERSIH LAINNYA", + ], + [ + "id_aset" => 1904, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENDINGIN", + ], + [ + "id_aset" => 1905, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "LEMARI ES", + ], + [ + "id_aset" => 1906, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "A.C. SENTRAL", + ], + [ + "id_aset" => 1907, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "A.C. WINDOW", + ], + [ + "id_aset" => 1908, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "A.C. SPLIT", + ], + [ + "id_aset" => 1909, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "PORTABLE AIR CONDITIONER (ALAT PENDINGIN)", + ], + [ + "id_aset" => 1910, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "KIPAS ANGIN", + ], + [ + "id_aset" => 1911, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "EXHAUSE FAN", + ], + [ + "id_aset" => 1912, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "COLD STORAGE (ALAT PENDINGIN)", + ], + [ + "id_aset" => 1913, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "REACH IN FREZZER", + ], + [ + "id_aset" => 1914, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "REACH IN CHILLER", + ], + [ + "id_aset" => 1915, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "UP RIGHT CHILLER/FREZZER", + ], + [ + "id_aset" => 1916, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "COLD ROOM FREZZER", + ], + [ + "id_aset" => 1917, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "AIR CURTAIN", + ], + [ + "id_aset" => 1918, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "AIR HANDLING UNIT", + ], + [ + "id_aset" => 1919, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENDINGIN LAINNYA", + ], + [ + "id_aset" => 1920, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT DAPUR", + ], + [ + "id_aset" => 1921, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "KOMPOR LISTRIK (ALAT DAPUR)", + ], + [ + "id_aset" => 1922, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "KOMPOR GAS (ALAT DAPUR)", + ], + [ + "id_aset" => 1923, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "KOMPOR MINYAK", + ], + [ + "id_aset" => 1924, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "TEKO LISTRIK", + ], + [ + "id_aset" => 1925, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "RICE COOKER (ALAT DAPUR)", + ], + [ + "id_aset" => 1926, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "OVEN LISTRIK", + ], + [ + "id_aset" => 1927, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "RICE WARMER", + ], + [ + "id_aset" => 1928, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "KITCHEN SET", + ], + [ + "id_aset" => 1929, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "TABUNG GAS", + ], + [ + "id_aset" => 1930, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "MESIN GILING BUMBU", + ], + [ + "id_aset" => 1931, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "TRENG AIR/TANDON AIR", + ], + [ + "id_aset" => 1932, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "MESIN PARUTAN KELAPA", + ], + [ + "id_aset" => 1933, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "KOMPOR KOMPRESOR", + ], + [ + "id_aset" => 1934, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "ALAT PEMANGGANG ROTI/SATE", + ], + [ + "id_aset" => 1935, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "RAK PIRING ALUMUNIUM", + ], + [ + "id_aset" => 1936, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "ALAT PENYIMPAN BERAS", + ], + [ + "id_aset" => 1937, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => "PANCI", + ], + [ + "id_aset" => 1938, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "BLENDER", + ], + [ + "id_aset" => 1939, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "MIXER", + ], + [ + "id_aset" => 1940, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "OVEN GAS", + ], + [ + "id_aset" => 1941, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "PRESTO COOKER", + ], + [ + "id_aset" => 1942, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "WONDER PAN", + ], + [ + "id_aset" => 1943, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "MESIN GILING DAGING", + ], + [ + "id_aset" => 1944, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "HEATING SET", + ], + [ + "id_aset" => 1945, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => "THERMOS AIR", + ], + [ + "id_aset" => 1946, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "ALAT DAPUR LAINNYA", + ], + [ + "id_aset" => 1947, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "ALAT RUMAH TANGGA LAINNYA ( HOME USE )", + ], + [ + "id_aset" => 1948, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "RADIO", + ], + [ + "id_aset" => 1949, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "TELEVISI", + ], + [ + "id_aset" => 1950, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "VIDEO CASSETTE", + ], + [ + "id_aset" => 1951, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => + "TAPE RECORDER (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))", + ], + [ + "id_aset" => 1952, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "AMPLIFIER", + ], + [ + "id_aset" => 1953, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "EQUALIZER", + ], + [ + "id_aset" => 1954, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "LOUDSPEAKER", + ], + [ + "id_aset" => 1955, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "SOUND SYSTEM", + ], + [ + "id_aset" => 1956, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "COMPACT DISC", + ], + [ + "id_aset" => 1957, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "LASER DISC", + ], + [ + "id_aset" => 1958, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "KARAOKE", + ], + [ + "id_aset" => 1959, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "WIRELESS", + ], + [ + "id_aset" => 1960, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "013", + "nama" => "MEGAPHONE", + ], + [ + "id_aset" => 1961, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "014", + "nama" => "MICROPHONE", + ], + [ + "id_aset" => 1962, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "015", + "nama" => "MICROPHONE TABLE STAND", + ], + [ + "id_aset" => 1963, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "016", + "nama" => "MIC CONFERENCE", + ], + [ + "id_aset" => 1964, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "017", + "nama" => "UNIT POWER SUPPLY", + ], + [ + "id_aset" => 1965, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "018", + "nama" => + "STEP UP/DOWN (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))", + ], + [ + "id_aset" => 1966, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "019", + "nama" => "STABILISATOR", + ], + [ + "id_aset" => 1967, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "020", + "nama" => "CAMERA VIDEO", + ], + [ + "id_aset" => 1968, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "021", + "nama" => "TUSTEL", + ], + [ + "id_aset" => 1969, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "022", + "nama" => "MESIN JAHIT", + ], + [ + "id_aset" => 1970, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "023", + "nama" => "TIMBANGAN ORANG", + ], + [ + "id_aset" => 1971, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "024", + "nama" => "TIMBANGAN BARANG", + ], + [ + "id_aset" => 1972, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "025", + "nama" => "ALAT HIASAN", + ], + [ + "id_aset" => 1973, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "026", + "nama" => "LAMBANG GARUDA PANCASILA", + ], + [ + "id_aset" => 1974, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "027", + "nama" => "GAMBAR PRESIDEN/WAKIL PRESIDEN", + ], + [ + "id_aset" => 1975, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "028", + "nama" => "LAMBANG KORPRI/DHARMA WANITA", + ], + [ + "id_aset" => 1976, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "029", + "nama" => "AQUARIUM (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))", + ], + [ + "id_aset" => 1977, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "030", + "nama" => "TIANG BENDERA", + ], + [ + "id_aset" => 1978, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "031", + "nama" => "PATAKA", + ], + [ + "id_aset" => 1979, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "032", + "nama" => "SETERIKA", + ], + [ + "id_aset" => 1980, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "033", + "nama" => "WATER FILTER", + ], + [ + "id_aset" => 1981, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "034", + "nama" => "TANGGA ALUMINIUM", + ], + [ + "id_aset" => 1982, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "035", + "nama" => "KACA HIAS", + ], + [ + "id_aset" => 1983, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "036", + "nama" => "DISPENSER", + ], + [ + "id_aset" => 1984, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "037", + "nama" => "MIMBAR/PODIUM", + ], + [ + "id_aset" => 1985, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "038", + "nama" => "GUCCI", + ], + [ + "id_aset" => 1986, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "039", + "nama" => "TANGGA HIDROLIK", + ], + [ + "id_aset" => 1987, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "040", + "nama" => "PALU SIDANG", + ], + [ + "id_aset" => 1988, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "041", + "nama" => "MESIN PENGERING PAKAIAN", + ], + [ + "id_aset" => 1989, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "042", + "nama" => "LAMBANG INSTANSI", + ], + [ + "id_aset" => 1990, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "043", + "nama" => "LONCENG/GENTA", + ], + [ + "id_aset" => 1991, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "044", + "nama" => "MESIN PEMOTONG KERAMIK", + ], + [ + "id_aset" => 1992, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "045", + "nama" => "COFFEE MAKER", + ], + [ + "id_aset" => 1993, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "046", + "nama" => "HANDY CAM", + ], + [ + "id_aset" => 1994, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "047", + "nama" => "MESIN OBRAS", + ], + [ + "id_aset" => 1995, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "048", + "nama" => "MESIN POTONG KAIN", + ], + [ + "id_aset" => 1996, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "049", + "nama" => "MESIN PELUBANG KANCING", + ], + [ + "id_aset" => 1997, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "050", + "nama" => "MEJA POTONG", + ], + [ + "id_aset" => 1998, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "051", + "nama" => "RADER", + ], + [ + "id_aset" => 1999, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "052", + "nama" => "MANEQUIN (BONEKA)", + ], + [ + "id_aset" => 2000, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "053", + "nama" => "PINSET (PISAU LOBANG KANCING)", + ], + [ + "id_aset" => 2001, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "054", + "nama" => "MINI COMPO", + ], + [ + "id_aset" => 2002, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "055", + "nama" => "HEATER (ALAT RUMAH TANGGA LAINNYA ( HOME USE ))", + ], + [ + "id_aset" => 2003, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "056", + "nama" => "KARPET", + ], + [ + "id_aset" => 2004, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "057", + "nama" => "VERTIKAL BLIND", + ], + [ + "id_aset" => 2005, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "058", + "nama" => "GORDYIN/KRAY", + ], + [ + "id_aset" => 2006, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "059", + "nama" => "KABEL ROLL", + ], + [ + "id_aset" => 2007, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "060", + "nama" => "ASBAK TINGGI", + ], + [ + "id_aset" => 2008, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "061", + "nama" => "KESET KAKI", + ], + [ + "id_aset" => 2009, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "062", + "nama" => "SUN SCREEN", + ], + [ + "id_aset" => 2010, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "063", + "nama" => "ALAT PEMANAS RUANGAN", + ], + [ + "id_aset" => 2011, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "064", + "nama" => "LEMARI PLASTIK", + ], + [ + "id_aset" => 2012, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "065", + "nama" => "MESIN PENGERING TANGAN", + ], + [ + "id_aset" => 2013, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "066", + "nama" => "PANGGUNG", + ], + [ + "id_aset" => 2014, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "067", + "nama" => "MESIN PEDDING", + ], + [ + "id_aset" => 2015, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "068", + "nama" => "DVD PLAYER", + ], + [ + "id_aset" => 2016, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "069", + "nama" => "LAMPU BELAJAR", + ], + [ + "id_aset" => 2017, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "070", + "nama" => "TANGGA", + ], + [ + "id_aset" => 2018, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "071", + "nama" => "KABEL", + ], + [ + "id_aset" => 2019, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "072", + "nama" => "LAMPU", + ], + [ + "id_aset" => 2020, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "073", + "nama" => "JEMURAN", + ], + [ + "id_aset" => 2021, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "074", + "nama" => "PATUNG PERAGA PAKAIAN", + ], + [ + "id_aset" => 2022, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "075", + "nama" => "GENDOLA", + ], + [ + "id_aset" => 2023, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "076", + "nama" => "GUNTING RUMPUT NON MESIN", + ], + [ + "id_aset" => 2024, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "077", + "nama" => "BENDERA NEGARA", + ], + [ + "id_aset" => 2025, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "078", + "nama" => "BINGKAI FOTO", + ], + [ + "id_aset" => 2026, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "079", + "nama" => "ALAT PANGKAS RAMBUT LISTRIK", + ], + [ + "id_aset" => 2027, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "080", + "nama" => "BRACKET STANDING PERALATAN", + ], + [ + "id_aset" => 2028, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "081", + "nama" => "TANGKI AIR", + ], + [ + "id_aset" => 2029, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "082", + "nama" => "HOME THEATER", + ], + [ + "id_aset" => 2030, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "ALAT RUMAH TANGGA LAINNYA ( HOME USE )", + ], + [ + "id_aset" => 2031, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT RUMAH TANGGA LAINNYA", + ], + [ + "id_aset" => 2032, + "golongan" => "3", + "bidang" => "05", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT RUMAH TANGGA LAINNYA", + ], + [ + "id_aset" => 2033, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"ALAT STUDIO', + ], + [ + "id_aset" => 2034, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT STUDIO", + ], + [ + "id_aset" => 2035, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN STUDIO AUDIO", + ], + [ + "id_aset" => 2036, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "AUDIO MIXING CONSOLE", + ], + [ + "id_aset" => 2037, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "AUDIO MIXING PORTABLE", + ], + [ + "id_aset" => 2038, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "AUDIO MIXING STATIONER", + ], + [ + "id_aset" => 2039, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "AUDIO ATTENUATOR", + ], + [ + "id_aset" => 2040, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "AUDIO AMPLIFIER", + ], + [ + "id_aset" => 2041, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "AUDIO ERASE UNIT", + ], + [ + "id_aset" => 2042, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "AUDIO VIDEO SELECTOR (PERALATAN STUDIO AUDIO)", + ], + [ + "id_aset" => 2043, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "AUDIO MONITOR ACTIVE", + ], + [ + "id_aset" => 2044, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "AUDIO MONITOR PASSIVE", + ], + [ + "id_aset" => 2045, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "AUDIO REVERBERATION", + ], + [ + "id_aset" => 2046, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "AUDIO PATCH PANEL", + ], + [ + "id_aset" => 2047, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "AUDIO DISTRIBUTION", + ], + [ + "id_aset" => 2048, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "AUDIO TONE GENERATOR", + ], + [ + "id_aset" => 2049, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "AUDIO CATRIDGE RECORDER", + ], + [ + "id_aset" => 2050, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "AUDIO LOGGING RECORDER", + ], + [ + "id_aset" => 2051, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "COMPACT DISC PLAYER", + ], + [ + "id_aset" => 2052, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "CASSETTE DUPLICATOR", + ], + [ + "id_aset" => 2053, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "DISC RECORD PLAYER", + ], + [ + "id_aset" => 2054, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "019", + "nama" => "MULTITRACK RECORDER", + ], + [ + "id_aset" => 2055, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "020", + "nama" => "REEL TAPE DUPLICATOR", + ], + [ + "id_aset" => 2056, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "021", + "nama" => "COMPACT DISC JUKE BOX SYSTEM", + ], + [ + "id_aset" => 2057, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "022", + "nama" => "TELEPHONE HYBRID", + ], + [ + "id_aset" => 2058, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "023", + "nama" => "AUDIO PHONE IN", + ], + [ + "id_aset" => 2059, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "024", + "nama" => "PROFANITY DELAY SYSTEM", + ], + [ + "id_aset" => 2060, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "025", + "nama" => "AUDIO VISUAL", + ], + [ + "id_aset" => 2061, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "026", + "nama" => "AUDIO FILTER", + ], + [ + "id_aset" => 2062, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "027", + "nama" => "AUDIO LIMITER", + ], + [ + "id_aset" => 2063, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "028", + "nama" => "AUDIO COMPRESSOR", + ], + [ + "id_aset" => 2064, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "029", + "nama" => "TURN TABLE", + ], + [ + "id_aset" => 2065, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "030", + "nama" => "TALK BACK UNIT", + ], + [ + "id_aset" => 2066, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "031", + "nama" => "INTERCOM UNIT", + ], + [ + "id_aset" => 2067, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "032", + "nama" => "BUZZER", + ], + [ + "id_aset" => 2068, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "033", + "nama" => "SET STUDIO LIGHT SIGNAL", + ], + [ + "id_aset" => 2069, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "034", + "nama" => "DOLBY NOISE REDUCTION", + ], + [ + "id_aset" => 2070, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "035", + "nama" => "MODULATION MONITOR SPEAKER KABARET", + ], + [ + "id_aset" => 2071, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "036", + "nama" => "MICROPHONE/WIRELESS MIC", + ], + [ + "id_aset" => 2072, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "037", + "nama" => "MICROPHONE/BOOM STAND", + ], + [ + "id_aset" => 2073, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "038", + "nama" => "MICROPHONE CONNECTOR BOX", + ], + [ + "id_aset" => 2074, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "039", + "nama" => "LIGHT SIGNAL", + ], + [ + "id_aset" => 2075, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "040", + "nama" => "POWER SUPPLY MICROPHONE", + ], + [ + "id_aset" => 2076, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "041", + "nama" => "PROFESSIONAL SOUND SYSTEM", + ], + [ + "id_aset" => 2077, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "042", + "nama" => "AUDIO MASTER CONTROL UNIT", + ], + [ + "id_aset" => 2078, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "043", + "nama" => "TIME INDETIFICATION UNIT", + ], + [ + "id_aset" => 2079, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "044", + "nama" => "AUDIO ANNOUNCER DESK", + ], + [ + "id_aset" => 2080, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "045", + "nama" => "MASTER CLOCK (PERALATAN STUDIO AUDIO)", + ], + [ + "id_aset" => 2081, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "046", + "nama" => "SLAVE CLOCK (PERALATAN STUDIO AUDIO)", + ], + [ + "id_aset" => 2082, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "047", + "nama" => "AUDIO COMMAND DESK", + ], + [ + "id_aset" => 2083, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "048", + "nama" => "UNINTERRUPTIBLE POWER SUPPLY (UPS)", + ], + [ + "id_aset" => 2084, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "049", + "nama" => "MASTER CONTROL DESK", + ], + [ + "id_aset" => 2085, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "050", + "nama" => "HEAD COMPENSATOR", + ], + [ + "id_aset" => 2086, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "051", + "nama" => "AUTOMATIC VOLTAGE REGULATOR (AVR)", + ], + [ + "id_aset" => 2087, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "053", + "nama" => "HUM/CABLE CONPENSATOR", + ], + [ + "id_aset" => 2088, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "054", + "nama" => "EDITING & DUBBING SYSTEM", + ], + [ + "id_aset" => 2089, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "055", + "nama" => "ANALOG DELAY (PERALATAN STUDIO AUDIO)", + ], + [ + "id_aset" => 2090, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "056", + "nama" => "BATTERY CHARGER (PERALATAN STUDIO AUDIO)", + ], + [ + "id_aset" => 2091, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "057", + "nama" => "BLANK PANEL", + ], + [ + "id_aset" => 2092, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "058", + "nama" => "CONTROL UNIT HF", + ], + [ + "id_aset" => 2093, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "059", + "nama" => "DELAY UNIT", + ], + [ + "id_aset" => 2094, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "060", + "nama" => "POWER AMPLIFIER", + ], + [ + "id_aset" => 2095, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "061", + "nama" => "PAGING MIC", + ], + [ + "id_aset" => 2096, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "062", + "nama" => "COMPACT MONITOR PANEL FOR STEREO", + ], + [ + "id_aset" => 2097, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "063", + "nama" => "PISTOL GRIP", + ], + [ + "id_aset" => 2098, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "064", + "nama" => "MOUNTING BREAKEN", + ], + [ + "id_aset" => 2099, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "065", + "nama" => "CHAIRMAN/AUDIO CONFERENCE", + ], + [ + "id_aset" => 2100, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "066", + "nama" => "TIME SWITCHING", + ], + [ + "id_aset" => 2101, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "067", + "nama" => "TERMINAL BOARD", + ], + [ + "id_aset" => 2102, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "068", + "nama" => "ENCODER/DECODER", + ], + [ + "id_aset" => 2103, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "069", + "nama" => "WIND SHIELD", + ], + [ + "id_aset" => 2104, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "070", + "nama" => "RECEIVER HF/LF", + ], + [ + "id_aset" => 2105, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "071", + "nama" => "RECEIVER VHF/FM", + ], + [ + "id_aset" => 2106, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "072", + "nama" => "AUDIO TAPE REEL RECORDER", + ], + [ + "id_aset" => 2107, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "073", + "nama" => "AUDIO CASSETTE RECORDER", + ], + [ + "id_aset" => 2108, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "074", + "nama" => "COMPACT DISC RECORDER", + ], + [ + "id_aset" => 2109, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "075", + "nama" => "DIGITAL AUDIO STORAGE SYSTEM", + ], + [ + "id_aset" => 2110, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "076", + "nama" => "DIGITAL AUDIO TAPERECORDER", + ], + [ + "id_aset" => 2111, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "077", + "nama" => "BLITZZER", + ], + [ + "id_aset" => 2112, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "078", + "nama" => "AUDIO MAXIMIZER", + ], + [ + "id_aset" => 2113, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "079", + "nama" => "MICROPHONE CABLE", + ], + [ + "id_aset" => 2114, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "080", + "nama" => "SIGNAL INSTRUMENT SWITCER", + ], + [ + "id_aset" => 2115, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "081", + "nama" => "CELLING MOUNT BRACKET", + ], + [ + "id_aset" => 2116, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "082", + "nama" => "INTERFACEBOARD", + ], + [ + "id_aset" => 2117, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "083", + "nama" => "VIDEO PRESENTER", + ], + [ + "id_aset" => 2118, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "084", + "nama" => "MULTISCAN PROYECTOR", + ], + [ + "id_aset" => 2119, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "085", + "nama" => "CABLE", + ], + [ + "id_aset" => 2120, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "086", + "nama" => '\"SCANNER COIR', + ], + [ + "id_aset" => 2121, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "087", + "nama" => "KOMP. INTERFACE BOAR", + ], + [ + "id_aset" => 2122, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "088", + "nama" => "VOICE RECORDER", + ], + [ + "id_aset" => 2123, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "089", + "nama" => "AM/FM MEASUREMENT", + ], + [ + "id_aset" => 2124, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "090", + "nama" => "SIGNAL ON AIR", + ], + [ + "id_aset" => 2125, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "091", + "nama" => "DIGITAL LED RUNNING TEXT", + ], + [ + "id_aset" => 2126, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "092", + "nama" => "ANALOG/DIGITAL RECEIVER", + ], + [ + "id_aset" => 2127, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "093", + "nama" => "DIGITAL KEYBOARD TECHNICS", + ], + [ + "id_aset" => 2128, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "094", + "nama" => "EXPLORIST 600", + ], + [ + "id_aset" => 2129, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN STUDIO AUDIO LAINNYA", + ], + [ + "id_aset" => 2130, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN STUDIO VIDEO DAN FILM", + ], + [ + "id_aset" => 2131, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "ASSIGNMENT SWITCHER", + ], + [ + "id_aset" => 2132, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "OFF AIR TV MONITOR", + ], + [ + "id_aset" => 2133, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "CAMERA ELECTRONIC", + ], + [ + "id_aset" => 2134, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "PULSE GENERATOR (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2135, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "PULSE DISTRIBUTION AMPLIFIER", + ], + [ + "id_aset" => 2136, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "PULSE SWITCHER", + ], + [ + "id_aset" => 2137, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "PULSE DELAY LINE", + ], + [ + "id_aset" => 2138, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => + "CHARACTER GENERATOR (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2139, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "CAPTION GENERATOR", + ], + [ + "id_aset" => 2140, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "TELECINE", + ], + [ + "id_aset" => 2141, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "011", + "nama" => "VIDEO DISTRIBUTION AMPLIFIER", + ], + [ + "id_aset" => 2142, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "012", + "nama" => "VIDEO MONITOR", + ], + [ + "id_aset" => 2143, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "013", + "nama" => "VIDEO TAPE RECORDER PORTABLE", + ], + [ + "id_aset" => 2144, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "014", + "nama" => "VIDEO TAPE RECORDER STATIONER", + ], + [ + "id_aset" => 2145, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "015", + "nama" => "VIDEO MIXER", + ], + [ + "id_aset" => 2146, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "016", + "nama" => "VIDEO SWITCHER", + ], + [ + "id_aset" => 2147, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "017", + "nama" => "VIDEO EQUALIZER AMPLIFIER", + ], + [ + "id_aset" => 2148, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "018", + "nama" => "VIDEO COLOR BAR GENERATOR", + ], + [ + "id_aset" => 2149, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "019", + "nama" => "VIDEO CROSS BAR SWITCH", + ], + [ + "id_aset" => 2150, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "020", + "nama" => "VIDEO TEST SIGNAL GENERATOR", + ], + [ + "id_aset" => 2151, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "021", + "nama" => "VIDEO CORRECTOR", + ], + [ + "id_aset" => 2152, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "022", + "nama" => "VIDEO CAPTION ADDER", + ], + [ + "id_aset" => 2153, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "023", + "nama" => "VIDEO HUM COMPENSATOR", + ], + [ + "id_aset" => 2154, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "024", + "nama" => "VIDEO PROCESSOR", + ], + [ + "id_aset" => 2155, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "025", + "nama" => "VIDEO STATION ID GENERATOR", + ], + [ + "id_aset" => 2156, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "026", + "nama" => "VIDEO PATCH PANEL", + ], + [ + "id_aset" => 2157, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "027", + "nama" => "VIDEO DELAY UNIT", + ], + [ + "id_aset" => 2158, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "028", + "nama" => "VIDEO PROCESSING AMPLIFIER", + ], + [ + "id_aset" => 2159, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "029", + "nama" => "VIDEO EQUALIZER", + ], + [ + "id_aset" => 2160, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "030", + "nama" => "VIDEO TAPE EVALUATOR", + ], + [ + "id_aset" => 2161, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "031", + "nama" => "VIDEO EFFECT GENERATOR", + ], + [ + "id_aset" => 2162, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "032", + "nama" => "VITS INSERTER GENERATOR", + ], + [ + "id_aset" => 2163, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "033", + "nama" => "CAMERA WALL BOX", + ], + [ + "id_aset" => 2164, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "034", + "nama" => "TELEPROMPTER", + ], + [ + "id_aset" => 2165, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "035", + "nama" => "TIME BASE CORRECTOR", + ], + [ + "id_aset" => 2166, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "036", + "nama" => "GUN SMOKE", + ], + [ + "id_aset" => 2167, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "037", + "nama" => + "AUTOMATIC EDITING CONTROL (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2168, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "038", + "nama" => "POWER SUPPLY (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2169, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "039", + "nama" => "EDITING ELECTRONIC", + ], + [ + "id_aset" => 2170, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "040", + "nama" => "RECTIFIER UNIT", + ], + [ + "id_aset" => 2171, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "041", + "nama" => "REMOTE CONTROL UNIT", + ], + [ + "id_aset" => 2172, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "042", + "nama" => "RAK PERALATAN", + ], + [ + "id_aset" => 2173, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "043", + "nama" => "STABILIZING AMPLIFIER", + ], + [ + "id_aset" => 2174, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "044", + "nama" => "DIGITAL VIDEO EFFECT", + ], + [ + "id_aset" => 2175, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "045", + "nama" => "TRIPOD CAMERA", + ], + [ + "id_aset" => 2176, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "046", + "nama" => "DIMMER", + ], + [ + "id_aset" => 2177, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "047", + "nama" => "CHILLER", + ], + [ + "id_aset" => 2178, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "048", + "nama" => "SLAVE CLOCK (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2179, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "049", + "nama" => "MASTER CLOCK (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2180, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "050", + "nama" => "TELEDYNE", + ], + [ + "id_aset" => 2181, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "051", + "nama" => "FLYING SPOT SCANNER", + ], + [ + "id_aset" => 2182, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "052", + "nama" => "SYNCHRONIZING PULSE GENERATOR", + ], + [ + "id_aset" => 2183, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "053", + "nama" => "DC CONVERTER", + ], + [ + "id_aset" => 2184, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "054", + "nama" => "BLACK BURST GENERATOR", + ], + [ + "id_aset" => 2185, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "055", + "nama" => "LIGHTING STAND TRIPOD", + ], + [ + "id_aset" => 2186, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "056", + "nama" => "FILM PROJECTOR", + ], + [ + "id_aset" => 2187, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "057", + "nama" => "SLIDE PROJECTOR", + ], + [ + "id_aset" => 2188, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "058", + "nama" => "COMMAND DESK", + ], + [ + "id_aset" => 2189, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "059", + "nama" => "ANNOUNCER DESK", + ], + [ + "id_aset" => 2190, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "060", + "nama" => "CAMERA FILM", + ], + [ + "id_aset" => 2191, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "061", + "nama" => "LENSA KAMERA", + ], + [ + "id_aset" => 2192, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "062", + "nama" => "FILM MAGAZINE", + ], + [ + "id_aset" => 2193, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "063", + "nama" => "CLAPER", + ], + [ + "id_aset" => 2194, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "064", + "nama" => "CHANGING BAG", + ], + [ + "id_aset" => 2195, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "065", + "nama" => "CONDITIONER", + ], + [ + "id_aset" => 2196, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "066", + "nama" => "COLOUR FILM ANALYZER", + ], + [ + "id_aset" => 2197, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "068", + "nama" => "FILM SOUND RECORDER", + ], + [ + "id_aset" => 2198, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "069", + "nama" => "TELE RECORDER", + ], + [ + "id_aset" => 2199, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "070", + "nama" => "CAMERA VIEW FINDER", + ], + [ + "id_aset" => 2200, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "071", + "nama" => "SERVO ZOOM LENS", + ], + [ + "id_aset" => 2201, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "072", + "nama" => "CAMERA ADAPTOR", + ], + [ + "id_aset" => 2202, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "073", + "nama" => "PHOTO PROCESSING SET", + ], + [ + "id_aset" => 2203, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "074", + "nama" => "MICRO FILM", + ], + [ + "id_aset" => 2204, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "075", + "nama" => "MIXER PVC", + ], + [ + "id_aset" => 2205, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "076", + "nama" => "UNIT REPLENIESER TANK", + ], + [ + "id_aset" => 2206, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "077", + "nama" => "HORIZONTAL MOTORIZED FILM REWINDER", + ], + [ + "id_aset" => 2207, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "078", + "nama" => "VERTICAL MOTORIZED FILM REWINDER", + ], + [ + "id_aset" => 2208, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "079", + "nama" => "MANUAL FILM REWINDER", + ], + [ + "id_aset" => 2209, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "080", + "nama" => "MESIN PROSESING FILM NEGATIF", + ], + [ + "id_aset" => 2210, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "081", + "nama" => "MESIN PROSESING FILM POSITIF", + ], + [ + "id_aset" => 2211, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "082", + "nama" => "MESIN PROSESING FILM WARNA NEGATIF (ECN)", + ], + [ + "id_aset" => 2212, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "083", + "nama" => "MESIN PROSESING FILM WARNA POSITIF (ECP)", + ], + [ + "id_aset" => 2213, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "084", + "nama" => "MESIN FILM COLOR ANALYZER", + ], + [ + "id_aset" => 2214, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "085", + "nama" => + "ANALITICAL BALANCE (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2215, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "086", + "nama" => "ALAT PEMANAS PROSESING ( WATER HEATER )", + ], + [ + "id_aset" => 2216, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "087", + "nama" => "STAPLER FILM", + ], + [ + "id_aset" => 2217, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "088", + "nama" => "MAGNETIC STIP", + ], + [ + "id_aset" => 2218, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "089", + "nama" => "SPLITZER TAPE", + ], + [ + "id_aset" => 2219, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "090", + "nama" => "MEJA EDITING FILM", + ], + [ + "id_aset" => 2220, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "091", + "nama" => "DIGITAL TBC", + ], + [ + "id_aset" => 2221, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "092", + "nama" => "TITANIUM TANK SINGLE SHAFT", + ], + [ + "id_aset" => 2222, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "093", + "nama" => "TEMPERATUR CONTROL C/W", + ], + [ + "id_aset" => 2223, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "094", + "nama" => "GEAR BOX SUN ASSY", + ], + [ + "id_aset" => 2224, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "095", + "nama" => "TACHO GENERATOR FOR DRIVE MOTOR RACHING", + ], + [ + "id_aset" => 2225, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "096", + "nama" => "CIRCULATION SYSTEM COMPLET", + ], + [ + "id_aset" => 2226, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "097", + "nama" => "CHILLER WATER COMPLET", + ], + [ + "id_aset" => 2227, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "098", + "nama" => "VIDEO AUDIO JACK PANEL", + ], + [ + "id_aset" => 2228, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "099", + "nama" => "AUTOMATIC EMERGENCY LIGHT", + ], + [ + "id_aset" => 2229, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "100", + "nama" => "FILM CHAIN MULTIPLIER", + ], + [ + "id_aset" => 2230, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "101", + "nama" => "PHOTO TUSTEL", + ], + [ + "id_aset" => 2231, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "102", + "nama" => "PHOTO TUSTEL POLAROID", + ], + [ + "id_aset" => 2232, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "103", + "nama" => "BETACAM RECORDER/PLAYER", + ], + [ + "id_aset" => 2233, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "104", + "nama" => "SLIDE RAIL", + ], + [ + "id_aset" => 2234, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "105", + "nama" => "WEAPON & METAL DETECTOR ( CHECK GATE )", + ], + [ + "id_aset" => 2235, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "107", + "nama" => "LAYAR FILM/PROJECTOR", + ], + [ + "id_aset" => 2236, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "108", + "nama" => "CAMERA TUNE SIMULATOR", + ], + [ + "id_aset" => 2237, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "109", + "nama" => "DRY SPLITZER FILM", + ], + [ + "id_aset" => 2238, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "110", + "nama" => "VIDEO TONE CLEANER", + ], + [ + "id_aset" => 2239, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "111", + "nama" => "MINI VIEWER", + ], + [ + "id_aset" => 2240, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "112", + "nama" => "PUSH BUTTON CONTROL PANEL", + ], + [ + "id_aset" => 2241, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "113", + "nama" => "RAK TERMINAL VENCING", + ], + [ + "id_aset" => 2242, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "114", + "nama" => "STANDARD TRUE SIGNAL/MASTER RACK", + ], + [ + "id_aset" => 2243, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "115", + "nama" => "MOTOR DRIVER", + ], + [ + "id_aset" => 2244, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "116", + "nama" => "ANALOG DELAY (PERALATAN STUDIO VIDEO DAN FILM)", + ], + [ + "id_aset" => 2245, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "117", + "nama" => "STANDARD POINT ANIMATION", + ], + [ + "id_aset" => 2246, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "118", + "nama" => "HEAD SET", + ], + [ + "id_aset" => 2247, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "119", + "nama" => "CHARACTER EFFECT INTERFACE", + ], + [ + "id_aset" => 2248, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "120", + "nama" => "LIGHTING HEAD BODY", + ], + [ + "id_aset" => 2249, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "121", + "nama" => "LIGHTING MECHANIC", + ], + [ + "id_aset" => 2250, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "122", + "nama" => "ALOS 321 FICHE READER", + ], + [ + "id_aset" => 2251, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "123", + "nama" => "ALOS 321 ALOS READER", + ], + [ + "id_aset" => 2252, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "124", + "nama" => "INSERTER JACKET FILMNES MODEL FRF-160 & 3500", + ], + [ + "id_aset" => 2253, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "125", + "nama" => '\"DIASO PRINTER', + ], + [ + "id_aset" => 2254, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "126", + "nama" => "DIASO PROCESSOR 404 DAN 404 D", + ], + [ + "id_aset" => 2255, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "127", + "nama" => "CAMERA UNDER WATER", + ], + [ + "id_aset" => 2256, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "128", + "nama" => "CAMERA DIGITAL", + ], + [ + "id_aset" => 2257, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "129", + "nama" => "TAS KAMERA", + ], + [ + "id_aset" => 2258, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "130", + "nama" => "LAMPU BLITZ KAMERA", + ], + [ + "id_aset" => 2259, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "131", + "nama" => "LENSA FILTER", + ], + [ + "id_aset" => 2260, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "132", + "nama" => "VIDEO CONFERENCE", + ], + [ + "id_aset" => 2261, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "133", + "nama" => "TURBO IDDR (INTELLIGENT DIGITAL DISK RECORDER)", + ], + [ + "id_aset" => 2262, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "134", + "nama" => "VIDEO ROUTER", + ], + [ + "id_aset" => 2263, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "135", + "nama" => "LCD MONITOR", + ], + [ + "id_aset" => 2264, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "136", + "nama" => "SDI RASTERISER", + ], + [ + "id_aset" => 2265, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "137", + "nama" => "AUDIO MONITORING UNIT", + ], + [ + "id_aset" => 2266, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "138", + "nama" => "FRAME SYNCHRONIZER", + ], + [ + "id_aset" => 2267, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "139", + "nama" => "AUDIO TRANSCODER", + ], + [ + "id_aset" => 2268, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "140", + "nama" => "AUDIO CONVERTER", + ], + [ + "id_aset" => 2269, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "141", + "nama" => "AUTOMATION MAIN", + ], + [ + "id_aset" => 2270, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "142", + "nama" => "RECORDING WORKSTATION", + ], + [ + "id_aset" => 2271, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "143", + "nama" => "EDITOR WORKSTATION", + ], + [ + "id_aset" => 2272, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "144", + "nama" => "ON AIR RECORDING", + ], + [ + "id_aset" => 2273, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "145", + "nama" => "CONNECTORS", + ], + [ + "id_aset" => 2274, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "146", + "nama" => "PATCH CORD", + ], + [ + "id_aset" => 2275, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "147", + "nama" => "AUDIO EMBEDDER", + ], + [ + "id_aset" => 2276, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "148", + "nama" => "VTR RECORDER", + ], + [ + "id_aset" => 2277, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "149", + "nama" => "ANALOG VIDEO ROUTER", + ], + [ + "id_aset" => 2278, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "150", + "nama" => "BROADBAND AMLIFIER", + ], + [ + "id_aset" => 2279, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "151", + "nama" => "SPLITTER", + ], + [ + "id_aset" => 2280, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "152", + "nama" => "RF CABLE", + ], + [ + "id_aset" => 2281, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "153", + "nama" => "F CONNECTOR", + ], + [ + "id_aset" => 2282, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "154", + "nama" => "TV CONNECTOR", + ], + [ + "id_aset" => 2283, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "155", + "nama" => "THERMO BIND MACHINE", + ], + [ + "id_aset" => 2284, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "156", + "nama" => "KAMERA STILE", + ], + [ + "id_aset" => 2285, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "157", + "nama" => "MINI DV", + ], + [ + "id_aset" => 2286, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "158", + "nama" => "MONOPOD", + ], + [ + "id_aset" => 2287, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "159", + "nama" => "CLIPP ON", + ], + [ + "id_aset" => 2288, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "160", + "nama" => "COMPUTER EDITING", + ], + [ + "id_aset" => 2289, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "161", + "nama" => "CUT EDITING", + ], + [ + "id_aset" => 2290, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "162", + "nama" => "DUPLICATOR VCD", + ], + [ + "id_aset" => 2291, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "163", + "nama" => "DUPLICATOR DVD", + ], + [ + "id_aset" => 2292, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "164", + "nama" => "VIDEO SPLITTER", + ], + [ + "id_aset" => 2293, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "165", + "nama" => "CAMERA CONFERENCE", + ], + [ + "id_aset" => 2294, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN STUDIO VIDEO DAN FILM LAINNYA", + ], + [ + "id_aset" => 2295, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN STUDIO GAMBAR", + ], + [ + "id_aset" => 2296, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "MEJA GAMBAR", + ], + [ + "id_aset" => 2297, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "LICHDRUCK APPARAAT", + ], + [ + "id_aset" => 2298, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "SABLON SET", + ], + [ + "id_aset" => 2299, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "ALAT TULIS GAMBAR", + ], + [ + "id_aset" => 2300, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "BUSUR GAMBAR", + ], + [ + "id_aset" => 2301, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "JANGKA GAMBAR", + ], + [ + "id_aset" => 2302, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN STUDIO GAMBAR LAINNYA", + ], + [ + "id_aset" => 2303, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN CETAK", + ], + [ + "id_aset" => 2304, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "MEJA MEMBUAT KLISE", + ], + [ + "id_aset" => 2305, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "MEJA CETAK TANGAN", + ], + [ + "id_aset" => 2306, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "MESIN CETAK LISTRIK SHEET", + ], + [ + "id_aset" => 2307, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "MESIN CETAK LISTRIK ROLL", + ], + [ + "id_aset" => 2308, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "MESIN CETAK ELEKTRONIK", + ], + [ + "id_aset" => 2309, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "MESIN CETAK", + ], + [ + "id_aset" => 2310, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "MESIN CETAK OFFSET SHEET", + ], + [ + "id_aset" => 2311, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "MESIN CETAK OFFSET ROLL", + ], + [ + "id_aset" => 2312, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "MESIN CETAK OFFSET MINI", + ], + [ + "id_aset" => 2313, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "MESIN PEMOTONG BIASA", + ], + [ + "id_aset" => 2314, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "MESIN PEMOTONG BIASA TIGA PISAU", + ], + [ + "id_aset" => 2315, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "MESIN JILID BUNDAR", + ], + [ + "id_aset" => 2316, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "MESIN JILID BESAR", + ], + [ + "id_aset" => 2317, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "MESIN JILID", + ], + [ + "id_aset" => 2318, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "015", + "nama" => "MESIN LIPAT", + ], + [ + "id_aset" => 2319, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "016", + "nama" => "MESIN PEMBUAT HURUF", + ], + [ + "id_aset" => 2320, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "017", + "nama" => "MESIN PENYUSUN HURUF BIASA", + ], + [ + "id_aset" => 2321, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "018", + "nama" => "MESIN PENYUSUN HURUF FOTO (FOTO TYPE SETTING)", + ], + [ + "id_aset" => 2322, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "019", + "nama" => "MESIN PELUBANG (PERALATAN CETAK)", + ], + [ + "id_aset" => 2323, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "020", + "nama" => "MESIN PROOF", + ], + [ + "id_aset" => 2324, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "021", + "nama" => "CAMERA VERTICAL", + ], + [ + "id_aset" => 2325, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "022", + "nama" => "MESIN PRES", + ], + [ + "id_aset" => 2326, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "023", + "nama" => "MESIN JAHIT KAWAT", + ], + [ + "id_aset" => 2327, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "024", + "nama" => "MESIN JAHIT BENANG", + ], + [ + "id_aset" => 2328, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "025", + "nama" => "MESIN PILUNG", + ], + [ + "id_aset" => 2329, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "026", + "nama" => "MESIN GARIS", + ], + [ + "id_aset" => 2330, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "027", + "nama" => "MESIN PEREKAM STENSIL FOLIO", + ], + [ + "id_aset" => 2331, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "028", + "nama" => "MESIN PEREKAM STENSIL DOUBLE FOLIO", + ], + [ + "id_aset" => 2332, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "029", + "nama" => "MESIN PLATE MAKER FOLIO", + ], + [ + "id_aset" => 2333, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "030", + "nama" => "MESIN PLATE MAKER DOUBLE FOLIO", + ], + [ + "id_aset" => 2334, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "031", + "nama" => "MESIN POTONG", + ], + [ + "id_aset" => 2335, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "032", + "nama" => "MESIN HANDPRESS", + ], + [ + "id_aset" => 2336, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "033", + "nama" => "MESIN STAHD", + ], + [ + "id_aset" => 2337, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "034", + "nama" => "MESIN KERTAS", + ], + [ + "id_aset" => 2338, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "035", + "nama" => "KACIP POTONG SUDUT", + ], + [ + "id_aset" => 2339, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "036", + "nama" => "ALAT PEMBUAT VORMSTAND", + ], + [ + "id_aset" => 2340, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "037", + "nama" => "MESIN PASET", + ], + [ + "id_aset" => 2341, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "038", + "nama" => "MESIN PRASISE KLISE", + ], + [ + "id_aset" => 2342, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "039", + "nama" => "MESIN PEMBOLONG FILM SETENGAH PLANO", + ], + [ + "id_aset" => 2343, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "040", + "nama" => "MESIN CETAK MAS", + ], + [ + "id_aset" => 2344, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "041", + "nama" => "MESIN CETAK STEREO TYPER", + ], + [ + "id_aset" => 2345, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "042", + "nama" => "MESIN CETAK BRAILLE", + ], + [ + "id_aset" => 2346, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "043", + "nama" => "MESIN FONDS", + ], + [ + "id_aset" => 2347, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "044", + "nama" => "MESIN FOLDING", + ], + [ + "id_aset" => 2348, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "045", + "nama" => "MESIN BARCODE", + ], + [ + "id_aset" => 2349, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "046", + "nama" => "MESIN PROFESIONAL VELOBINDER", + ], + [ + "id_aset" => 2350, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "047", + "nama" => "MESIN CACAH", + ], + [ + "id_aset" => 2351, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "048", + "nama" => "IMAGE SETTER", + ], + [ + "id_aset" => 2352, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "049", + "nama" => "MESIN SPARASI", + ], + [ + "id_aset" => 2353, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "050", + "nama" => "CAMERA HORIZONTAL", + ], + [ + "id_aset" => 2354, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "051", + "nama" => "ALAT COVER CREASING", + ], + [ + "id_aset" => 2355, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "052", + "nama" => "MESIN PEMBUAT ID CARD", + ], + [ + "id_aset" => 2356, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN CETAK LAINNYA", + ], + [ + "id_aset" => 2357, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH", + ], + [ + "id_aset" => 2358, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "AUTOGRAPH UNIT", + ], + [ + "id_aset" => 2359, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "AVIOGRAPH PLUS PLOTING TABLE", + ], + [ + "id_aset" => 2360, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "PLANITOP", + ], + [ + "id_aset" => 2361, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "POINT TRANTER DEVICE", + ], + [ + "id_aset" => 2362, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "TRESTIRIAL CAMERA", + ], + [ + "id_aset" => 2363, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "SLOHED TEMLET", + ], + [ + "id_aset" => 2364, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "SKETCH MASTER", + ], + [ + "id_aset" => 2365, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => + "RECTIFIER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2366, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "OPTICAL PANTOGRAPH", + ], + [ + "id_aset" => 2367, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "CONTACT PRINTER", + ], + [ + "id_aset" => 2368, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "PENGERING PHOTO", + ], + [ + "id_aset" => 2369, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "VACUM FRAME", + ], + [ + "id_aset" => 2370, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "COORDINATOGRAPH", + ], + [ + "id_aset" => 2371, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "014", + "nama" => "PEMOTONG FILM", + ], + [ + "id_aset" => 2372, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "015", + "nama" => "STREOSCOPE TANAH", + ], + [ + "id_aset" => 2373, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "016", + "nama" => "WATERPAS", + ], + [ + "id_aset" => 2374, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "017", + "nama" => + "THEODOLITE (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2375, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "018", + "nama" => "DISTOMAT", + ], + [ + "id_aset" => 2376, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "019", + "nama" => "B.T.M", + ], + [ + "id_aset" => 2377, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "020", + "nama" => "LEVEL", + ], + [ + "id_aset" => 2378, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "021", + "nama" => "JALON", + ], + [ + "id_aset" => 2379, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "022", + "nama" => "RAMBU/BAK UKUR", + ], + [ + "id_aset" => 2380, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "023", + "nama" => "KOMPAS GEOLOGI", + ], + [ + "id_aset" => 2381, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "024", + "nama" => "CLINOMETER", + ], + [ + "id_aset" => 2382, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "025", + "nama" => + "ALTIMETER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2383, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "026", + "nama" => "HOLIOMETER", + ], + [ + "id_aset" => 2384, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "027", + "nama" => + "TELESCOPE (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2385, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "028", + "nama" => "PASSER DOSS", + ], + [ + "id_aset" => 2386, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "029", + "nama" => "CURVERMETER", + ], + [ + "id_aset" => 2387, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "030", + "nama" => "ROLLMETER", + ], + [ + "id_aset" => 2388, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "031", + "nama" => "MEET BAND", + ], + [ + "id_aset" => 2389, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "032", + "nama" => "BUSUR DERAJAT", + ], + [ + "id_aset" => 2390, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "033", + "nama" => + "CHRONOMETER (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2391, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "034", + "nama" => "GAWANG LOKASI", + ], + [ + "id_aset" => 2392, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "035", + "nama" => + "KOMPAS (PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH)", + ], + [ + "id_aset" => 2393, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "036", + "nama" => "SEXTANT", + ], + [ + "id_aset" => 2394, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "037", + "nama" => "TEROPONG/KEKER", + ], + [ + "id_aset" => 2395, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "038", + "nama" => "GPS RECEIVER", + ], + [ + "id_aset" => 2396, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "039", + "nama" => "GROUND PARETRATING RADAR", + ], + [ + "id_aset" => 2397, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "040", + "nama" => "TEKEN SCHAAL/JANGKA TUSUK", + ], + [ + "id_aset" => 2398, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "041", + "nama" => "PANTOGRAPH", + ], + [ + "id_aset" => 2399, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "042", + "nama" => "PLANI METER", + ], + [ + "id_aset" => 2400, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "043", + "nama" => "PRISMA ROELAK", + ], + [ + "id_aset" => 2401, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "044", + "nama" => "PRISMA METER", + ], + [ + "id_aset" => 2402, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "045", + "nama" => "PRISMA UKUR", + ], + [ + "id_aset" => 2403, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "046", + "nama" => "RUITER PLAAT", + ], + [ + "id_aset" => 2404, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "047", + "nama" => "KAMERA UDARA", + ], + [ + "id_aset" => 2405, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "048", + "nama" => "STEREOPLOTTER", + ], + [ + "id_aset" => 2406, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "049", + "nama" => "PLANICOMP", + ], + [ + "id_aset" => 2407, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "050", + "nama" => "MEJA SINAR", + ], + [ + "id_aset" => 2408, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "051", + "nama" => "GRAVER", + ], + [ + "id_aset" => 2409, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "052", + "nama" => "PEN HOLDER", + ], + [ + "id_aset" => 2410, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN STUDIO PEMETAAN/PERALATAN UKUR TANAH LAINNYA", + ], + [ + "id_aset" => 2411, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT STUDIO LAINNYA", + ], + [ + "id_aset" => 2412, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT STUDIO LAINNYA", + ], + [ + "id_aset" => 2413, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI", + ], + [ + "id_aset" => 2414, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI TELEPHONE", + ], + [ + "id_aset" => 2415, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TELEPHONE (PABX)", + ], + [ + "id_aset" => 2416, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INTERMEDIATE TELEPHONE/KEY TELEPHONE", + ], + [ + "id_aset" => 2417, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PESAWAT TELEPHONE", + ], + [ + "id_aset" => 2418, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TELEPHONE MOBILE", + ], + [ + "id_aset" => 2419, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "PAGER", + ], + [ + "id_aset" => 2420, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "HANDY TALKY (HT)", + ], + [ + "id_aset" => 2421, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TELEX", + ], + [ + "id_aset" => 2422, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "SELECTIVE COLLING", + ], + [ + "id_aset" => 2423, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "PERALATAN SPECH PLAS", + ], + [ + "id_aset" => 2424, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "FACSIMILE", + ], + [ + "id_aset" => 2425, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "BIDDING PIT", + ], + [ + "id_aset" => 2426, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "LOCAL BATTERY TELEPHONE", + ], + [ + "id_aset" => 2427, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "SENHUB FIXED", + ], + [ + "id_aset" => 2428, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "SENHUB MOBILE", + ], + [ + "id_aset" => 2429, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "TELEPON LAPANGAN", + ], + [ + "id_aset" => 2430, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "SENTRAL TELEPON LAPANGAN", + ], + [ + "id_aset" => 2431, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "TELEPON SATELIT", + ], + [ + "id_aset" => 2432, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "018", + "nama" => "KOM DATA", + ], + [ + "id_aset" => 2433, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "019", + "nama" => "PDA", + ], + [ + "id_aset" => 2434, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "020", + "nama" => "TELEPON DIGITAL", + ], + [ + "id_aset" => 2435, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "021", + "nama" => "TELEPON ANALOG", + ], + [ + "id_aset" => 2436, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI TELEPHONE LAINNYA", + ], + [ + "id_aset" => 2437, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI RADIO SSB", + ], + [ + "id_aset" => 2438, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANCEIVER SSB PORTABLE", + ], + [ + "id_aset" => 2439, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANCEIVER SSB TRANSPORTABLE", + ], + [ + "id_aset" => 2440, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANCEIVER SSB STATIONERY", + ], + [ + "id_aset" => 2441, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI RADIO SSB LAINNYA", + ], + [ + "id_aset" => 2442, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI RADIO HF/FM", + ], + [ + "id_aset" => 2443, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANCEIVER HF PORTABLE", + ], + [ + "id_aset" => 2444, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANCEIVER HF TRANSPORTABLE", + ], + [ + "id_aset" => 2445, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANCEIVER HF STATIONERY", + ], + [ + "id_aset" => 2446, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "UNIT TRANCEIVER FM", + ], + [ + "id_aset" => 2447, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI RADIO HF/FM LAINNYA", + ], + [ + "id_aset" => 2448, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI RADIO VHF", + ], + [ + "id_aset" => 2449, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANCEIVER VHF PORTABLE", + ], + [ + "id_aset" => 2450, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANCEIVER VHF TRANSPORTABLE", + ], + [ + "id_aset" => 2451, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANCEIVER VHF STATIONARY", + ], + [ + "id_aset" => 2452, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI RADIO VHF LAINNYA", + ], + [ + "id_aset" => 2453, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI RADIO UHF", + ], + [ + "id_aset" => 2454, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANCEIVER UHF PORTABLE", + ], + [ + "id_aset" => 2455, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANCEIVER UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2456, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANCEIVER UHF STATIONARY", + ], + [ + "id_aset" => 2457, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI RADIO UHF LAINNYA", + ], + [ + "id_aset" => 2458, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI SOSIAL", + ], + [ + "id_aset" => 2459, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "PUBLIK ADDRESS (LAPANGAN)", + ], + [ + "id_aset" => 2460, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "WIRELESS AMPLIFIER", + ], + [ + "id_aset" => 2461, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "SLIDE PROJECTOR (LAPANGAN)", + ], + [ + "id_aset" => 2462, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "MULTIPLEX SYSTEM", + ], + [ + "id_aset" => 2463, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "FREQUENCY SYSTHESIZER UNIT", + ], + [ + "id_aset" => 2464, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "PATCHING BOARD", + ], + [ + "id_aset" => 2465, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI SOSIAL LAINNYA", + ], + [ + "id_aset" => 2466, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "ALAT-ALAT SANDI", + ], + [ + "id_aset" => 2467, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "MORSE KEYER", + ], + [ + "id_aset" => 2468, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "AUTOMATIC DEORSE KEYER", + ], + [ + "id_aset" => 2469, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "ALAT SEMBOYAN", + ], + [ + "id_aset" => 2470, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "004", + "nama" => "MESIN SANDI DAN KELENGKAPANNYA", + ], + [ + "id_aset" => 2471, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "005", + "nama" => + "FINGER PRINTER TIME AND ATTANDANCE ACCES CONTROL SYSTEM", + ], + [ + "id_aset" => 2472, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "006", + "nama" => "MESIN SANDI TEKS", + ], + [ + "id_aset" => 2473, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "007", + "nama" => "MESIN SANDI SUARA", + ], + [ + "id_aset" => 2474, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "008", + "nama" => "MESIN SANDI DATA", + ], + [ + "id_aset" => 2475, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "009", + "nama" => "MESIN SANDI BERBASIS SOFTWARE", + ], + [ + "id_aset" => 2476, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "010", + "nama" => "MESIN SANDI BERBASIS HARDWARE", + ], + [ + "id_aset" => 2477, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "011", + "nama" => "MESIN SANDI BERBASIS SOFTWARE DAN HARDWARE", + ], + [ + "id_aset" => 2478, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "012", + "nama" => "ALAT PEMBANGKIT KUNCI", + ], + [ + "id_aset" => 2479, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "013", + "nama" => "ALAT PENDISTRIBUSI KUNCI", + ], + [ + "id_aset" => 2480, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "014", + "nama" => "CRYPTHOPONE", + ], + [ + "id_aset" => 2481, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "015", + "nama" => "CRYTOFAX", + ], + [ + "id_aset" => 2482, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "016", + "nama" => "SERVER ENCRIPTION", + ], + [ + "id_aset" => 2483, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "017", + "nama" => "HANDPHONE ENCRIPTION", + ], + [ + "id_aset" => 2484, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "018", + "nama" => "GSM JAMMER", + ], + [ + "id_aset" => 2485, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "019", + "nama" => "CDMA JAMMER", + ], + [ + "id_aset" => 2486, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "ALAT-ALAT SANDI LAINNYA", + ], + [ + "id_aset" => 2487, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI KHUSUS", + ], + [ + "id_aset" => 2488, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "ALAT DF RADIO SSB", + ], + [ + "id_aset" => 2489, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "SUPER BROOM", + ], + [ + "id_aset" => 2490, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "ALAT DF RADIO HF/FM", + ], + [ + "id_aset" => 2491, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "004", + "nama" => "SCANLOCK PLUS CEBERUS", + ], + [ + "id_aset" => 2492, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "005", + "nama" => "ALAT DF RADIO VHF", + ], + [ + "id_aset" => 2493, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "006", + "nama" => "STELATH DIGITAL REPEATER", + ], + [ + "id_aset" => 2494, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "007", + "nama" => "ALAT DF RADIO UHF", + ], + [ + "id_aset" => 2495, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "008", + "nama" => "TRANKING", + ], + [ + "id_aset" => 2496, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "009", + "nama" => "TELEPON TAPING", + ], + [ + "id_aset" => 2497, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "010", + "nama" => "STELATH", + ], + [ + "id_aset" => 2498, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "011", + "nama" => "VISATELIT", + ], + [ + "id_aset" => 2499, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "012", + "nama" => "MAINFRAME (ALAT KOMUNIKASI KHUSUS)", + ], + [ + "id_aset" => 2500, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "013", + "nama" => "SAFE LIGHT FILTER", + ], + [ + "id_aset" => 2501, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "014", + "nama" => "ANTI SADAP TELEPON (SCANBLER)", + ], + [ + "id_aset" => 2502, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "015", + "nama" => "BILLINF SYSTEM", + ], + [ + "id_aset" => 2503, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "016", + "nama" => "ROOM MONITORING MC06", + ], + [ + "id_aset" => 2504, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "017", + "nama" => "WATCH TRANSMITER", + ], + [ + "id_aset" => 2505, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "018", + "nama" => "ASHTRAY", + ], + [ + "id_aset" => 2506, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "019", + "nama" => "NON DIRECTION BEACON (NDB)", + ], + [ + "id_aset" => 2507, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "020", + "nama" => "RADIO LINK", + ], + [ + "id_aset" => 2508, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "021", + "nama" => "LOCALIZER", + ], + [ + "id_aset" => 2509, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "022", + "nama" => "GLADE PATH", + ], + [ + "id_aset" => 2510, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "023", + "nama" => "MIDLE MARKER", + ], + [ + "id_aset" => 2511, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "024", + "nama" => "RADIO COMMUNICATION MATCHING SWITCH (RCMS)", + ], + [ + "id_aset" => 2512, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "025", + "nama" => "DIRECTION VERY OMNI RANGE (DVOR)", + ], + [ + "id_aset" => 2513, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "026", + "nama" => "INTEGRATED GROUND CAOMMUNICATION SYSTEM (SGRS)", + ], + [ + "id_aset" => 2514, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "027", + "nama" => "SWITCHING GROUND RECEIVER SYSTEM (SGRS)", + ], + [ + "id_aset" => 2515, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "028", + "nama" => "ALAT RX RADIO SSB", + ], + [ + "id_aset" => 2516, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "029", + "nama" => "ALAT RX RADIO HF/FM", + ], + [ + "id_aset" => 2517, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "030", + "nama" => "ALAT RX RADIO VHF", + ], + [ + "id_aset" => 2518, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "031", + "nama" => "ALAT RX RADIO UHF", + ], + [ + "id_aset" => 2519, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "032", + "nama" => "ALAT JAMMING RADIO SSB", + ], + [ + "id_aset" => 2520, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "033", + "nama" => "ALAT JAMMING RADIO HF/FM", + ], + [ + "id_aset" => 2521, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "034", + "nama" => "ALAT JAMMING RADIO VHF", + ], + [ + "id_aset" => 2522, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "035", + "nama" => "ALAT JAMMING RADIO UHF", + ], + [ + "id_aset" => 2523, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "036", + "nama" => "ALAT SPEKTRUM FREK MONITOR SSB", + ], + [ + "id_aset" => 2524, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "037", + "nama" => "ALAT SPEKTRUM FREK MONITOR HF/FM", + ], + [ + "id_aset" => 2525, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "038", + "nama" => "ALAT SPEKTRUM FREK MONITOR VHF", + ], + [ + "id_aset" => 2526, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "039", + "nama" => "ALAT SPEKTRUM FREK MONITOR UHF", + ], + [ + "id_aset" => 2527, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "040", + "nama" => "ALAT TRAFFIC ANALYSIS", + ], + [ + "id_aset" => 2528, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "041", + "nama" => "ALAT COUNTERSURVEILLANCE", + ], + [ + "id_aset" => 2529, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "042", + "nama" => "ALAT SURVEILLANCE", + ], + [ + "id_aset" => 2530, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "043", + "nama" => "ALAT JAMMING FREKUENSI", + ], + [ + "id_aset" => 2531, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "044", + "nama" => + "ALAT PENGENDALI PANCARAN GELOMBANG ELEKTROMAGNETIK (TEMPEST)", + ], + [ + "id_aset" => 2532, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI KHUSUS LAINNYA", + ], + [ + "id_aset" => 2533, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI DIGITAL DAN KONVENSIONAL", + ], + [ + "id_aset" => 2534, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "SYSTEM CONTROL NODE MULTI SITE SYSTEM", + ], + [ + "id_aset" => 2535, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "SITE BASE STATAION MULTI SITE SYSTEM", + ], + [ + "id_aset" => 2536, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "CONTROLL CENTER", + ], + [ + "id_aset" => 2537, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => "E2EENCRYPTION MANAGEMENT TOOLS", + ], + [ + "id_aset" => 2538, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "005", + "nama" => "NETWORK MONITORING SYSTEM", + ], + [ + "id_aset" => 2539, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "006", + "nama" => "SWITCHING MATRIX AND SERVER", + ], + [ + "id_aset" => 2540, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "007", + "nama" => "DIGITAL RECORDING SYSTEM", + ], + [ + "id_aset" => 2541, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "008", + "nama" => "OFFICIAL PHERIPHERAL", + ], + [ + "id_aset" => 2542, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "009", + "nama" => "MOBILE UNIT", + ], + [ + "id_aset" => 2543, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "010", + "nama" => "MOBILE GATEWAY", + ], + [ + "id_aset" => 2544, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "011", + "nama" => "CONVERT BODY", + ], + [ + "id_aset" => 2545, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "012", + "nama" => "REPEATER RX/TX", + ], + [ + "id_aset" => 2546, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "013", + "nama" => "REPEATER MULTIBAND COMBINER 4 IN 4OUT", + ], + [ + "id_aset" => 2547, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "014", + "nama" => "REPEATER MULTIBAND COMBINER 4 IN 2OUT", + ], + [ + "id_aset" => 2548, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "015", + "nama" => "REPEATER MULTIBAND COMBINER 2 IN 2OUT", + ], + [ + "id_aset" => 2549, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "016", + "nama" => "REPEATER CDMA 80PO MHZ", + ], + [ + "id_aset" => 2550, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "017", + "nama" => "REPEATER CDS 1800 MHZ", + ], + [ + "id_aset" => 2551, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI DIGITAL DAN KONVENSIONAL LAINNYA", + ], + [ + "id_aset" => 2552, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI SATELIT", + ], + [ + "id_aset" => 2553, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "FULLY SYSTEM HUB", + ], + [ + "id_aset" => 2554, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "VSAT SYSTEM FOR REMOTE TERMINAL", + ], + [ + "id_aset" => 2555, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "COMMOB (COMMUNICATION MOBILE) VSAT", + ], + [ + "id_aset" => 2556, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "WIRELESS BASE STATION + SURVEILLANCE MANPACK KIT", + ], + [ + "id_aset" => 2557, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "005", + "nama" => "FLYAWAY", + ], + [ + "id_aset" => 2558, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "006", + "nama" => "ENCRYPTION", + ], + [ + "id_aset" => 2559, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "007", + "nama" => "REMOTE DATA CONNECTION DISTRIBUTION", + ], + [ + "id_aset" => 2560, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "008", + "nama" => "REMOTE VOIP GATEWAY E1 CARD INTERFACE", + ], + [ + "id_aset" => 2561, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "009", + "nama" => "SPECTRUM ANALYZER FOR HUB STATION", + ], + [ + "id_aset" => 2562, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "010", + "nama" => "SPECTRUM ANALYZER PORTABLE FOR FIELD USE", + ], + [ + "id_aset" => 2563, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "011", + "nama" => "UPS 15 KVA FOR HUB STATION", + ], + [ + "id_aset" => 2564, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "012", + "nama" => "UPS 1 KVA FOR REMOTE STATION", + ], + [ + "id_aset" => 2565, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI SATELIT LAINNYA", + ], + [ + "id_aset" => 2566, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT KOMUNIKASI LAINNYA", + ], + [ + "id_aset" => 2567, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT KOMUNIKASI LAINNYA", + ], + [ + "id_aset" => 2568, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR", + ], + [ + "id_aset" => 2569, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR MF/MW", + ], + [ + "id_aset" => 2570, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR MF/MW PORTABLE", + ], + [ + "id_aset" => 2571, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR MF/MW TRANSPORTABLE", + ], + [ + "id_aset" => 2572, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR MF/MW STATIONARY", + ], + [ + "id_aset" => 2573, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR MF/MW LAINNYA", + ], + [ + "id_aset" => 2574, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR HF/SW", + ], + [ + "id_aset" => 2575, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR HF/SW PORTABLE", + ], + [ + "id_aset" => 2576, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR HF/SW TRANSPORTABLE", + ], + [ + "id_aset" => 2577, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR HF/SW STATIONARY", + ], + [ + "id_aset" => 2578, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR HF/SW LAINNYA", + ], + [ + "id_aset" => 2579, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR VHF/FM", + ], + [ + "id_aset" => 2580, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR VHF/FM PORTABLE", + ], + [ + "id_aset" => 2581, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR VHF/FM TRANSPORTABLE", + ], + [ + "id_aset" => 2582, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR VHF/FM STATIONARY", + ], + [ + "id_aset" => 2583, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR VHF/FM LAINNYA", + ], + [ + "id_aset" => 2584, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR UHF", + ], + [ + "id_aset" => 2585, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR UHF PORTABLE", + ], + [ + "id_aset" => 2586, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2587, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR UHF STATIONARY", + ], + [ + "id_aset" => 2588, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "PORTABLE REPORTER LINK", + ], + [ + "id_aset" => 2589, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR UHF LAINNYA", + ], + [ + "id_aset" => 2590, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR SHF", + ], + [ + "id_aset" => 2591, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR SHF PORTABLE", + ], + [ + "id_aset" => 2592, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR SHF TRANSPORTABLE", + ], + [ + "id_aset" => 2593, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR SHF STATIONARY", + ], + [ + "id_aset" => 2594, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "SATELLITE LINK ( UP/DOWN LINK )", + ], + [ + "id_aset" => 2595, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR SHF LAINNYA", + ], + [ + "id_aset" => 2596, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA MF/MW", + ], + [ + "id_aset" => 2597, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE MF/MW PORTABLE", + ], + [ + "id_aset" => 2598, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "ANTENE MF/MW TRANSPORTABLE", + ], + [ + "id_aset" => 2599, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "ANTENE MF/MW STATIONARY", + ], + [ + "id_aset" => 2600, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA MF/MW LAINNYA", + ], + [ + "id_aset" => 2601, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA HF/SW", + ], + [ + "id_aset" => 2602, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE HF/SW PORTABLE", + ], + [ + "id_aset" => 2603, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "ANTENE HF/SW TRANSPORTABLE", + ], + [ + "id_aset" => 2604, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "ANTENE HF/SW STATIONARY", + ], + [ + "id_aset" => 2605, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA HF/SW LAINNYA", + ], + [ + "id_aset" => 2606, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA VHF/FM", + ], + [ + "id_aset" => 2607, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE VHF/FM PORTABLE", + ], + [ + "id_aset" => 2608, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "ANTENE VHF/FM TRANSPORTABLE", + ], + [ + "id_aset" => 2609, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "ANTENE VHF/FM STATIONARY", + ], + [ + "id_aset" => 2610, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA VHF/FM LAINNYA", + ], + [ + "id_aset" => 2611, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA UHF", + ], + [ + "id_aset" => 2612, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE UHF PORTABLE", + ], + [ + "id_aset" => 2613, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "ANTENE UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2614, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "ANTENE UHF STATIONARY", + ], + [ + "id_aset" => 2615, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA UHF LAINNYA", + ], + [ + "id_aset" => 2616, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA SHF/PARABOLA", + ], + [ + "id_aset" => 2617, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE SHF PORTABLE", + ], + [ + "id_aset" => 2618, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "ANTENE SHF TRANSPORTABLE", + ], + [ + "id_aset" => 2619, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "ANTENE SHF STATIONARY", + ], + [ + "id_aset" => 2620, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "ANTENA ALL BAND", + ], + [ + "id_aset" => 2621, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "005", + "nama" => "ANTENA SSB", + ], + [ + "id_aset" => 2622, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA SHF/PARABOLA LAINNYA", + ], + [ + "id_aset" => 2623, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TRANSLATOR VHF/VHF", + ], + [ + "id_aset" => 2624, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "TRANSLATOR VHF/VHF PORTABLE", + ], + [ + "id_aset" => 2625, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "TRANSLATOR VHF/VHF TRANSPORTABLE", + ], + [ + "id_aset" => 2626, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "TRANSLATOR VHF/VHF STATIONARY", + ], + [ + "id_aset" => 2627, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TRANSLATOR VHF/VHF LAINNYA", + ], + [ + "id_aset" => 2628, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TRANSLATOR UHF/UHF", + ], + [ + "id_aset" => 2629, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "001", + "nama" => "TRANSLATOR UHF/UHF PORTABLE", + ], + [ + "id_aset" => 2630, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "002", + "nama" => "TRANSLATOR UHF/UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2631, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "003", + "nama" => "TRANSLATOR UHF/UHF STATIONARY", + ], + [ + "id_aset" => 2632, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TRANSLATOR UHF/UHF LAINNYA", + ], + [ + "id_aset" => 2633, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TRANSLATOR VHF/UHF", + ], + [ + "id_aset" => 2634, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "001", + "nama" => "TRANSLATOR VHF/UHF PORTABLE", + ], + [ + "id_aset" => 2635, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "002", + "nama" => "TRANSLATOR VHF/UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2636, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "003", + "nama" => "TRANSLATOR VHF/UHF STATIONARY", + ], + [ + "id_aset" => 2637, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TRANSLATOR VHF/UHF LAINNYA", + ], + [ + "id_aset" => 2638, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN TRANSLATOR UHF/VHF", + ], + [ + "id_aset" => 2639, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "001", + "nama" => "TRANSLATOR UHF/VHF PORTABLE", + ], + [ + "id_aset" => 2640, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "002", + "nama" => "TRANSLATOR UHF/VHF TRANSPORTABLE", + ], + [ + "id_aset" => 2641, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "003", + "nama" => "TRANSLATOR UHF/VHF STATIONARY", + ], + [ + "id_aset" => 2642, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN TRANSLATOR UHF/VHF LAINNYA", + ], + [ + "id_aset" => 2643, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN MICROWAVE F P U", + ], + [ + "id_aset" => 2644, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "001", + "nama" => "MICROWAVE F P U PORTABLE", + ], + [ + "id_aset" => 2645, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "002", + "nama" => "MICROWAVE F P U TRANSPORTABLE", + ], + [ + "id_aset" => 2646, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "003", + "nama" => "MICROWAVE F P U STATIONARY", + ], + [ + "id_aset" => 2647, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN MICROWAVE F P U LAINNYA", + ], + [ + "id_aset" => 2648, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN MICROWAVE TERESTRIAL", + ], + [ + "id_aset" => 2649, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "001", + "nama" => "MICROWAVE TERESTRIAL PORTABLE", + ], + [ + "id_aset" => 2650, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "002", + "nama" => "MICROWAVE TERESTRIAL TRANSPORTABLE", + ], + [ + "id_aset" => 2651, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "003", + "nama" => "MICROWAVE TERESTRIAL STATIONARY", + ], + [ + "id_aset" => 2652, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN MICROWAVE TERESTRIAL LAINNYA", + ], + [ + "id_aset" => 2653, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN MICROWAVE TVRO", + ], + [ + "id_aset" => 2654, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "001", + "nama" => "MICROWAVE TVRO PORTABLE", + ], + [ + "id_aset" => 2655, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "002", + "nama" => "MICROWAVE TVRO TRANSPORTABLE", + ], + [ + "id_aset" => 2656, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "003", + "nama" => "MICROWAVE TVRO STATIONARY", + ], + [ + "id_aset" => 2657, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN MICROWAVE TVRO LAINNYA", + ], + [ + "id_aset" => 2658, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN DUMMY LOAD", + ], + [ + "id_aset" => 2659, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "001", + "nama" => "DUMMY LOAD PENDINGIN UDARA", + ], + [ + "id_aset" => 2660, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "002", + "nama" => "DUMMY LOAD PENDINGIN AIR", + ], + [ + "id_aset" => 2661, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "003", + "nama" => "DUMMY LOAD PENDINGIN MINYAK", + ], + [ + "id_aset" => 2662, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "004", + "nama" => "DUMMY LOAD PENDINGIN GAS", + ], + [ + "id_aset" => 2663, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN DUMMY LOAD LAINNYA", + ], + [ + "id_aset" => 2664, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "000", + "nama" => "SWITCHER ANTENA", + ], + [ + "id_aset" => 2665, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "001", + "nama" => "SWITCHER COMBINATION", + ], + [ + "id_aset" => 2666, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "002", + "nama" => "SWITCHER MANUAL", + ], + [ + "id_aset" => 2667, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "003", + "nama" => "SWITCHER AUTOMATIC MOTOR", + ], + [ + "id_aset" => 2668, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "999", + "nama" => "SWITCHER ANTENA LAINNYA", + ], + [ + "id_aset" => 2669, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "000", + "nama" => "SWITCHER/MENARA ANTENA", + ], + [ + "id_aset" => 2670, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "001", + "nama" => "SELF SUPPORTING TOWER", + ], + [ + "id_aset" => 2671, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "002", + "nama" => "GUY TOWER", + ], + [ + "id_aset" => 2672, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "003", + "nama" => "MAST TOWER", + ], + [ + "id_aset" => 2673, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "004", + "nama" => "CONCRETE TOWER", + ], + [ + "id_aset" => 2674, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "999", + "nama" => "SWITCHER/MENARA ANTENA LAINNYA", + ], + [ + "id_aset" => 2675, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "000", + "nama" => "FEEDER", + ], + [ + "id_aset" => 2676, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "001", + "nama" => "OPEN WIRE", + ], + [ + "id_aset" => 2677, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "002", + "nama" => "COAXIAL FEEDER", + ], + [ + "id_aset" => 2678, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "003", + "nama" => "ANTENNA TUNING UNIT", + ], + [ + "id_aset" => 2679, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "004", + "nama" => "DEHYDRATOR", + ], + [ + "id_aset" => 2680, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "999", + "nama" => '\"FEEDER LAINNYA (ALAT STUDIO', + ], + [ + "id_aset" => 2681, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "000", + "nama" => "HUMIDITY CONTROL", + ], + [ + "id_aset" => 2682, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "001", + "nama" => "DEHUMIDIFIER (HUMIDITY CONTROL)", + ], + [ + "id_aset" => 2683, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "999", + "nama" => "HUMIDITY CONTROL LAINNYA", + ], + [ + "id_aset" => 2684, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "000", + "nama" => "PROGRAM INPUT EQUIPMENT", + ], + [ + "id_aset" => 2685, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "001", + "nama" => "RECEIVER STL/VHF ( FM)", + ], + [ + "id_aset" => 2686, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "002", + "nama" => "RECEIVER STL/UHF", + ], + [ + "id_aset" => 2687, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "003", + "nama" => "RECEIVER STL/SHF", + ], + [ + "id_aset" => 2688, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "004", + "nama" => "TVRO", + ], + [ + "id_aset" => 2689, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "005", + "nama" => "LINE AMPLIFIER", + ], + [ + "id_aset" => 2690, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "006", + "nama" => "S R O", + ], + [ + "id_aset" => 2691, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "007", + "nama" => "LINE EQUALIZER", + ], + [ + "id_aset" => 2692, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "008", + "nama" => "AUTOMATIC GAIN CONTROL", + ], + [ + "id_aset" => 2693, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "009", + "nama" => "COMPRESSOR AMPLIFIER", + ], + [ + "id_aset" => 2694, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "010", + "nama" => "EXPANDER AMPLIFIER", + ], + [ + "id_aset" => 2695, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "011", + "nama" => "ATTENUATOR", + ], + [ + "id_aset" => 2696, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "012", + "nama" => "AUDIO PROCESSOR AM", + ], + [ + "id_aset" => 2697, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "013", + "nama" => "STEREO GENERATOR FM", + ], + [ + "id_aset" => 2698, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "014", + "nama" => "DISTRIBUTOR AMPLIFIER", + ], + [ + "id_aset" => 2699, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "015", + "nama" => "SWITCHER/PATCH PANEL", + ], + [ + "id_aset" => 2700, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "016", + "nama" => "AUDIO MONITOR", + ], + [ + "id_aset" => 2701, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "017", + "nama" => "AM MONITOR", + ], + [ + "id_aset" => 2702, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "018", + "nama" => "FM MONITOR", + ], + [ + "id_aset" => 2703, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "019", + "nama" => "POWER DISTRIBUTION BOARD", + ], + [ + "id_aset" => 2704, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "020", + "nama" => "LIGHTNING PROTECTOR", + ], + [ + "id_aset" => 2705, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "021", + "nama" => "ALL BAND RECEIVER", + ], + [ + "id_aset" => 2706, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "022", + "nama" => "CHANGE OVER SWITCH", + ], + [ + "id_aset" => 2707, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "999", + "nama" => "PROGRAM INPUT EQUIPMENT LAINNYA", + ], + [ + "id_aset" => 2708, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENE PENERIMA VHF", + ], + [ + "id_aset" => 2709, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "001", + "nama" => "ANTENE PENERIMA VHF", + ], + [ + "id_aset" => 2710, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN ANTENA PENERIMA LF", + ], + [ + "id_aset" => 2711, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "003", + "nama" => "PERALATAN ANTENA PENERIMA MF", + ], + [ + "id_aset" => 2712, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "004", + "nama" => "PERALATAN ANTENA PENERIMA HF", + ], + [ + "id_aset" => 2713, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "005", + "nama" => "PERALATAN ANTENA PENERIMA MF+HF", + ], + [ + "id_aset" => 2714, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "006", + "nama" => "PERALATAN ANTENA PENERIMA VHF", + ], + [ + "id_aset" => 2715, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "007", + "nama" => "PERALATAN ANTENA PENERIMA UHF", + ], + [ + "id_aset" => 2716, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "008", + "nama" => "PERALATAN ANTENA PENERIMA SSHF", + ], + [ + "id_aset" => 2717, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENE PENERIMA VHF LAINNYA", + ], + [ + "id_aset" => 2718, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR LF", + ], + [ + "id_aset" => 2719, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "001", + "nama" => "PERALATAN PEMANCAR LF TRANSPORTABLE", + ], + [ + "id_aset" => 2720, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN PEMANCAR LF PORTABLE", + ], + [ + "id_aset" => 2721, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "003", + "nama" => "PERALATAN PEMANCAR LF STATIONARY", + ], + [ + "id_aset" => 2722, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR LF LAINNYA", + ], + [ + "id_aset" => 2723, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "26", + "sub_sub_kelompok" => "000", + "nama" => "UNIT PEMANCAR MF+HF", + ], + [ + "id_aset" => 2724, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "26", + "sub_sub_kelompok" => "001", + "nama" => "UNIT PEMANCAR MF+HF TRANSPORTABLE", + ], + [ + "id_aset" => 2725, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "26", + "sub_sub_kelompok" => "002", + "nama" => "UNIT PEMANCAR MF+HF PORTABLE", + ], + [ + "id_aset" => 2726, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "26", + "sub_sub_kelompok" => "003", + "nama" => "UNIT PEMANCAR MF+HF STATIONARY", + ], + [ + "id_aset" => 2727, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "26", + "sub_sub_kelompok" => "999", + "nama" => "UNIT PEMANCAR MF+HF LAINNYA", + ], + [ + "id_aset" => 2728, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "27", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR MF+HF", + ], + [ + "id_aset" => 2729, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "27", + "sub_sub_kelompok" => "001", + "nama" => "PERALATAN ANTENA PEMANCAR MF+HF TRANSPORTABLE", + ], + [ + "id_aset" => 2730, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "27", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN ANTENA PEMANCAR MF+HF PORTABLE", + ], + [ + "id_aset" => 2731, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "27", + "sub_sub_kelompok" => "003", + "nama" => "PERALATAN ANTENA PEMANCAR MF+HF STATIONARY", + ], + [ + "id_aset" => 2732, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "27", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR MF+HF LAINNYA", + ], + [ + "id_aset" => 2733, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PENERIMA", + ], + [ + "id_aset" => 2734, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "001", + "nama" => "PERALATAN PENERIMA LF", + ], + [ + "id_aset" => 2735, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN PENERIMA MF", + ], + [ + "id_aset" => 2736, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "003", + "nama" => "PERALATAN PENERIMA HF", + ], + [ + "id_aset" => 2737, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "004", + "nama" => "PERALATAN PENERIMA MF+HF", + ], + [ + "id_aset" => 2738, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "005", + "nama" => "PERALATAN PENERIMA UHF", + ], + [ + "id_aset" => 2739, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "006", + "nama" => "PERALATAN PENERIMA SHF", + ], + [ + "id_aset" => 2740, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "28", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PENERIMA LAINNYA", + ], + [ + "id_aset" => 2741, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "29", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA LF", + ], + [ + "id_aset" => 2742, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "29", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER LF TRANSPORTABLE", + ], + [ + "id_aset" => 2743, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "29", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER LF PORTABLE", + ], + [ + "id_aset" => 2744, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "29", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER LF STATIONARY", + ], + [ + "id_aset" => 2745, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "29", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA LF LAINNYA", + ], + [ + "id_aset" => 2746, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "30", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA MF", + ], + [ + "id_aset" => 2747, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "30", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER MF TRANSPORTABLE", + ], + [ + "id_aset" => 2748, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "30", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER MF PORTABLE", + ], + [ + "id_aset" => 2749, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "30", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER MF STATIONARY", + ], + [ + "id_aset" => 2750, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "30", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA MF LAINNYA", + ], + [ + "id_aset" => 2751, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA HF", + ], + [ + "id_aset" => 2752, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER HF TRANSPORTABLE", + ], + [ + "id_aset" => 2753, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER HF PORTABLE", + ], + [ + "id_aset" => 2754, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER HF STATIONARY", + ], + [ + "id_aset" => 2755, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "004", + "nama" => "RS SSB TRANCIEVER", + ], + [ + "id_aset" => 2756, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "005", + "nama" => "MINI RANGER", + ], + [ + "id_aset" => 2757, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "006", + "nama" => "ARTEMIS", + ], + [ + "id_aset" => 2758, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "007", + "nama" => "TELEROMETER", + ], + [ + "id_aset" => 2759, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "31", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA HF LAINNYA", + ], + [ + "id_aset" => 2760, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA MF+HF", + ], + [ + "id_aset" => 2761, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER MF+HF TRANSPORTABLE", + ], + [ + "id_aset" => 2762, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER MF+HF PORTABLE", + ], + [ + "id_aset" => 2763, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER MF+HF STATIONARY", + ], + [ + "id_aset" => 2764, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "004", + "nama" => + "DIFFERENTIAL OMEGA (PERALATAN PEMANCAR DAN PENERIMA MF+HF)", + ], + [ + "id_aset" => 2765, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "32", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA MF+HF LAINNYA", + ], + [ + "id_aset" => 2766, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "33", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA VHF", + ], + [ + "id_aset" => 2767, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "33", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER VHF TRANSPORTABLE", + ], + [ + "id_aset" => 2768, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "33", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER VHF PORTABLE", + ], + [ + "id_aset" => 2769, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "33", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER VHF STATIONARY", + ], + [ + "id_aset" => 2770, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "33", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA VHF LAINNYA", + ], + [ + "id_aset" => 2771, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA UHF", + ], + [ + "id_aset" => 2772, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2773, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER UHF PORTABLE", + ], + [ + "id_aset" => 2774, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER UHF STATIONARY", + ], + [ + "id_aset" => 2775, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "004", + "nama" => "ULTRA HIGHT FREQUENCE LINK", + ], + [ + "id_aset" => 2776, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "005", + "nama" => "AUTO ALARM TUSTEL (AAT)", + ], + [ + "id_aset" => 2777, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "006", + "nama" => "DISTRIBUTION BOARD AND SIGNAL UNIT", + ], + [ + "id_aset" => 2778, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "007", + "nama" => "REMOTE TERMINAL UNIT", + ], + [ + "id_aset" => 2779, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "008", + "nama" => "MULTIPLEX TERMINAL EQUIPMENT", + ], + [ + "id_aset" => 2780, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "009", + "nama" => "SIGNAL VELVOGER GROUNDING", + ], + [ + "id_aset" => 2781, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "010", + "nama" => "BRIDGE MERGER TESTING", + ], + [ + "id_aset" => 2782, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "011", + "nama" => "MESSAGE REPEATER", + ], + [ + "id_aset" => 2783, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "012", + "nama" => "ELECTRIC CLEANER", + ], + [ + "id_aset" => 2784, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "013", + "nama" => "AOTOMATIC AERLALE", + ], + [ + "id_aset" => 2785, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "014", + "nama" => "POWER AND AWR METER ROUND", + ], + [ + "id_aset" => 2786, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "015", + "nama" => "VOLTAGE REGULATOR", + ], + [ + "id_aset" => 2787, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "016", + "nama" => "GYRO COMPASS", + ], + [ + "id_aset" => 2788, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "017", + "nama" => "FREQUENCE SYNTHESIZER UNIT", + ], + [ + "id_aset" => 2789, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "018", + "nama" => "VODAS (VOICE DEVISE ANTI SINGING)", + ], + [ + "id_aset" => 2790, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "019", + "nama" => "ANEMOMETER (PERALATAN PEMANCAR DAN PENERIMA UHF)", + ], + [ + "id_aset" => 2791, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "020", + "nama" => "CLEAR VIEW SCREEN", + ], + [ + "id_aset" => 2792, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "021", + "nama" => "ARQ UNIT", + ], + [ + "id_aset" => 2793, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "022", + "nama" => "RADIO DIRECTION FINDER", + ], + [ + "id_aset" => 2794, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "023", + "nama" => "POWER TRANSMITTER", + ], + [ + "id_aset" => 2795, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "024", + "nama" => "TELE CONTROLLER", + ], + [ + "id_aset" => 2796, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "025", + "nama" => "LOCAL TERMINAL", + ], + [ + "id_aset" => 2797, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "026", + "nama" => "DIGITAL SELECTIVE CALLING (DSC)", + ], + [ + "id_aset" => 2798, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "34", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA UHF LAINNYA", + ], + [ + "id_aset" => 2799, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "35", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA SHF", + ], + [ + "id_aset" => 2800, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "35", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TRANSCEIVER SHF TRANSPORTABLE", + ], + [ + "id_aset" => 2801, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "35", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TRANSCEIVER SHF PORTABLE", + ], + [ + "id_aset" => 2802, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "35", + "sub_sub_kelompok" => "003", + "nama" => "UNIT TRANSCEIVER SHF STATIONARY", + ], + [ + "id_aset" => 2803, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "35", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR DAN PENERIMA SHF LAINNYA", + ], + [ + "id_aset" => 2804, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "36", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA LF", + ], + [ + "id_aset" => 2805, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "36", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER LF TRANSPORTABLE", + ], + [ + "id_aset" => 2806, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "36", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER LF PORTABLE", + ], + [ + "id_aset" => 2807, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "36", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER LF STATIONARY", + ], + [ + "id_aset" => 2808, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "36", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA LF LAINNYA", + ], + [ + "id_aset" => 2809, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "37", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA MF", + ], + [ + "id_aset" => 2810, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "37", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER MF TRANSPORTABLE", + ], + [ + "id_aset" => 2811, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "37", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER MF PORTABLE", + ], + [ + "id_aset" => 2812, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "37", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER MF STATIONARY", + ], + [ + "id_aset" => 2813, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "37", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA MF LAINNYA", + ], + [ + "id_aset" => 2814, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "38", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA HF", + ], + [ + "id_aset" => 2815, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "38", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER HF TRANSPORTABLE", + ], + [ + "id_aset" => 2816, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "38", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER HF PORTABLE", + ], + [ + "id_aset" => 2817, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "38", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER HF STATIONARY", + ], + [ + "id_aset" => 2818, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "38", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA HF LAINNYA", + ], + [ + "id_aset" => 2819, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "39", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA MF+HF", + ], + [ + "id_aset" => 2820, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "39", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER MF+ HF TRANSPORTABLE", + ], + [ + "id_aset" => 2821, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "39", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER MF+HF PORTABLE", + ], + [ + "id_aset" => 2822, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "39", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER MF+HF STATIONARY", + ], + [ + "id_aset" => 2823, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "39", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN ANTENA PEMANCAR DAN PENERIMA MF+HF LAINNYA", + ], + [ + "id_aset" => 2824, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "40", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA VHF", + ], + [ + "id_aset" => 2825, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "40", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER VHF TRANSPORTABLE", + ], + [ + "id_aset" => 2826, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "40", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER VHF PORTABLE", + ], + [ + "id_aset" => 2827, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "40", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER VHF STATIONARY", + ], + [ + "id_aset" => 2828, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "40", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA VHF LAINNYA", + ], + [ + "id_aset" => 2829, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "41", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA UHF", + ], + [ + "id_aset" => 2830, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "41", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER UHF TRANSPORTABLE", + ], + [ + "id_aset" => 2831, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "41", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER UHF PORTABLE", + ], + [ + "id_aset" => 2832, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "41", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER UHF STATIONARY", + ], + [ + "id_aset" => 2833, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "41", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA UHF LAINNYA", + ], + [ + "id_aset" => 2834, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "42", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA SHF", + ], + [ + "id_aset" => 2835, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "42", + "sub_sub_kelompok" => "001", + "nama" => "UNIT ANTENA TRANSCEIVER SHF TRANSPORTABLE", + ], + [ + "id_aset" => 2836, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "42", + "sub_sub_kelompok" => "002", + "nama" => "UNIT ANTENA TRANSCEIVER SHF PORTABLE", + ], + [ + "id_aset" => 2837, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "42", + "sub_sub_kelompok" => "003", + "nama" => "UNIT ANTENA TRANSCEIVER SHF STATIONARY", + ], + [ + "id_aset" => 2838, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "42", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ANTENA PEMANCAR DAN PENERIMA SHF LAINNYA", + ], + [ + "id_aset" => 2839, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "43", + "sub_sub_kelompok" => "000", + "nama" => + "PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI RENDAH", + ], + [ + "id_aset" => 2840, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "43", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PENERIMA SATELITE CUACA", + ], + [ + "id_aset" => 2841, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "43", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI RENDAH LAINNYA", + ], + [ + "id_aset" => 2842, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "44", + "sub_sub_kelompok" => "000", + "nama" => + "PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI TINGGI", + ], + [ + "id_aset" => 2843, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "44", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PENERIMA SATELITE CUACA GEO STASIMETER", + ], + [ + "id_aset" => 2844, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "44", + "sub_sub_kelompok" => "002", + "nama" => "ALAT PENERIMA SATELITE CUACA ORBIT POLAR", + ], + [ + "id_aset" => 2845, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "44", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN PENERIMA CUACA CITRA SATELITE RESOLUSI TINGGI LAINNYA", + ], + [ + "id_aset" => 2846, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PENERIMA DAN PENGIRIM GAMBAR KE PERMUKAAN", + ], + [ + "id_aset" => 2847, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "001", + "nama" => "SCANNER FACSIMILE", + ], + [ + "id_aset" => 2848, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "002", + "nama" => "ALDEN MINIFAX RECORDER", + ], + [ + "id_aset" => 2849, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "003", + "nama" => "UNIVERSAL GRAPHIC RECORDER", + ], + [ + "id_aset" => 2850, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "004", + "nama" => "WEATHER CHART RECORDER", + ], + [ + "id_aset" => 2851, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "45", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN PENERIMA DAN PENGIRIM GAMBAR KE PERMUKAAN LAINNYA", + ], + [ + "id_aset" => 2852, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PERLENGKAPAN RADIO", + ], + [ + "id_aset" => 2853, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "001", + "nama" => "BOX BATTERY", + ], + [ + "id_aset" => 2854, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "002", + "nama" => "CUTTON DUCK", + ], + [ + "id_aset" => 2855, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "003", + "nama" => "CARRING CASE", + ], + [ + "id_aset" => 2856, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "004", + "nama" => "HAND SET", + ], + [ + "id_aset" => 2857, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "005", + "nama" => "CONECCTOR", + ], + [ + "id_aset" => 2858, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "46", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PERLENGKAPAN RADIO LAINNYA", + ], + [ + "id_aset" => 2859, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "000", + "nama" => "SUMBER TENAGA", + ], + [ + "id_aset" => 2860, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "001", + "nama" => "BA-30", + ], + [ + "id_aset" => 2861, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "002", + "nama" => "GENSET", + ], + [ + "id_aset" => 2862, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "003", + "nama" => "SOLAR CELL", + ], + [ + "id_aset" => 2863, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "004", + "nama" => "CHARGER", + ], + [ + "id_aset" => 2864, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "47", + "sub_sub_kelompok" => "999", + "nama" => "SUMBER TENAGA LAINNYA", + ], + [ + "id_aset" => 2865, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PEMANCAR LAINNYA", + ], + [ + "id_aset" => 2866, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PEMANCAR LAINNYA", + ], + [ + "id_aset" => 2867, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KOMUNIKASI NAVIGASI", + ], + [ + "id_aset" => 2868, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => + "PERALATAN KOMUNIKASI NAVIGASI INSTRUMEN LANDING SYSTEM", + ], + [ + "id_aset" => 2869, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "STANDARD INSTRUMEN LANDING SYSTEM", + ], + [ + "id_aset" => 2870, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MICROWAVE LANDING SYSTEM", + ], + [ + "id_aset" => 2871, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "PERALATAN KOMUNIKASI NAVIGASI INSTRUMEN LANDING SYSTEM LAINNYA", + ], + [ + "id_aset" => 2872, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "VERY HIGHT FREQUENCE OMNI RANGE (VOR)", + ], + [ + "id_aset" => 2873, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "CONVENTIONAL VOR (CVOR)", + ], + [ + "id_aset" => 2874, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "DOOPLE VOR (DVOR)", + ], + [ + "id_aset" => 2875, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "VERY HIGHT FREQUENCE OMNI RANGE (VOR) LAINNYA", + ], + [ + "id_aset" => 2876, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "DISTANCE MEASURING EQUIPMENT (DME)", + ], + [ + "id_aset" => 2877, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "TRANSPONDER DME", + ], + [ + "id_aset" => 2878, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "ANTENA DME", + ], + [ + "id_aset" => 2879, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "BEACON", + ], + [ + "id_aset" => 2880, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "NDB", + ], + [ + "id_aset" => 2881, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "DB", + ], + [ + "id_aset" => 2882, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "RADAR BEACON", + ], + [ + "id_aset" => 2883, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => + "DIFFERENTIAL OMEGA (DISTANCE MEASURING EQUIPMENT (DME))", + ], + [ + "id_aset" => 2884, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "DIFFERENTIAL GPS", + ], + [ + "id_aset" => 2885, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "DISTANCE MEASURING EQUIPMENT (DME) LAINNYA", + ], + [ + "id_aset" => 2886, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "RADAR", + ], + [ + "id_aset" => 2887, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "PRIMARY SURVEILLANCE RADAR", + ], + [ + "id_aset" => 2888, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SECONDARY SURVEILLANCE RADAR", + ], + [ + "id_aset" => 2889, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "RADAR LAINNYA", + ], + [ + "id_aset" => 2890, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGATUR TELEKOMUNIKASI", + ], + [ + "id_aset" => 2891, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "MESSAGE SWITCHING CENTER (MSC)", + ], + [ + "id_aset" => 2892, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "AUTOMATIC MESSAGE SWITCHING CENTER (AMSC)", + ], + [ + "id_aset" => 2893, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "CURRENT CONSOLE REGULATOR", + ], + [ + "id_aset" => 2894, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "CONTROLLER CONSOLE PVC", + ], + [ + "id_aset" => 2895, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "NO BREAK CASINET", + ], + [ + "id_aset" => 2896, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "TELEGRAPHIC FRAME", + ], + [ + "id_aset" => 2897, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "MORDEN", + ], + [ + "id_aset" => 2898, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "RADIO CONSOLE", + ], + [ + "id_aset" => 2899, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "SUPERVISORI CONSOLE", + ], + [ + "id_aset" => 2900, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGATUR TELEKOMUNIKASI LAINNYA", + ], + [ + "id_aset" => 2901, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KOMUNIKASI UNTUK DOKUMENTASI", + ], + [ + "id_aset" => 2902, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "UNIT TAPE RECORDER", + ], + [ + "id_aset" => 2903, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "UNIT TIME ANNOUNCING", + ], + [ + "id_aset" => 2904, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "UNIT MASTER CLOCK", + ], + [ + "id_aset" => 2905, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "UNIT REPRODUCER", + ], + [ + "id_aset" => 2906, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "UNIT REMOTE CONTROL", + ], + [ + "id_aset" => 2907, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN KOMUNIKASI UNTUK DOKUMENTASI LAINNYA", + ], + [ + "id_aset" => 2908, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KOMUNIKASI NAVIGASI LAINNYA", + ], + [ + "id_aset" => 2909, + "golongan" => "3", + "bidang" => "06", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN KOMUNIKASI NAVIGASI LAINNYA", + ], + [ + "id_aset" => 2910, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "KOMPUTER", + ], + [ + "id_aset" => 2911, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "KOMPUTER UNIT", + ], + [ + "id_aset" => 2912, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "KOMPUTER JARINGAN", + ], + [ + "id_aset" => 2913, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "MAINFRAME (KOMPUTER JARINGAN)", + ], + [ + "id_aset" => 2914, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MINI KOMPUTER", + ], + [ + "id_aset" => 2915, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "LOCAL AREA NETWORK (LAN)", + ], + [ + "id_aset" => 2916, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "INTERNET", + ], + [ + "id_aset" => 2917, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "KOMPUTER WEDIS", + ], + [ + "id_aset" => 2918, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "KOMPUTER SYNERGIE", + ], + [ + "id_aset" => 2919, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "PC WORKSTATION", + ], + [ + "id_aset" => 2920, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "KOMPUTER JARINGAN LAINNYA", + ], + [ + "id_aset" => 2921, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERSONAL KOMPUTER", + ], + [ + "id_aset" => 2922, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "P.C UNIT", + ], + [ + "id_aset" => 2923, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "LAP TOP", + ], + [ + "id_aset" => 2924, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "NOTE BOOK", + ], + [ + "id_aset" => 2925, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "PALM TOP", + ], + [ + "id_aset" => 2926, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "CODE BREAKER SUPER KOMPUTER", + ], + [ + "id_aset" => 2927, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "THINCLIENT", + ], + [ + "id_aset" => 2928, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "NET BOOK", + ], + [ + "id_aset" => 2929, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "ULTRA MOBILE P.C.", + ], + [ + "id_aset" => 2930, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PERSONAL KOMPUTER LAINNYA", + ], + [ + "id_aset" => 2931, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "KOMPUTER UNIT LAINNYA", + ], + [ + "id_aset" => 2932, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "KOMPUTER UNIT LAINNYA", + ], + [ + "id_aset" => 2933, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KOMPUTER", + ], + [ + "id_aset" => 2934, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN MAINFRAME", + ], + [ + "id_aset" => 2935, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "CARD READER (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2936, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MAGNETIC TAPE UNIT (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2937, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "FLOPPY DISK UNIT (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2938, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "STORAGE MODUL DISK (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2939, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "CONSOLE UNIT (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2940, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "CPU (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2941, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "DISK PACK (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2942, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "HARD COPY CONSOLE", + ], + [ + "id_aset" => 2943, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "SERIAL PRINTER", + ], + [ + "id_aset" => 2944, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "LINE PRINTER", + ], + [ + "id_aset" => 2945, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "PLOTTER (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2946, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "HARD DISK", + ], + [ + "id_aset" => 2947, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "KEYBOARD (PERALATAN MAINFRAME)", + ], + [ + "id_aset" => 2948, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "STEAMER", + ], + [ + "id_aset" => 2949, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "DATA PATCH PANEL", + ], + [ + "id_aset" => 2950, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "016", + "nama" => "PAPER TAPE READER", + ], + [ + "id_aset" => 2951, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "017", + "nama" => "PANABOARD", + ], + [ + "id_aset" => 2952, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN MAINFRAME LAINNYA", + ], + [ + "id_aset" => 2953, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN MINI KOMPUTER", + ], + [ + "id_aset" => 2954, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "CARD READER (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2955, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MAGNETIC TAPE UNIT (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2956, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "FLOPPY DISK UNIT (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2957, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "STORAGE MODUL DISK (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2958, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "CONSOLE UNIT (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2959, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "CPU (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2960, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "DISK PACK (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2961, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "PLOTTER (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2962, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "SCANNER (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2963, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "011", + "nama" => "COMPUTER COMPATIBLE", + ], + [ + "id_aset" => 2964, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "012", + "nama" => "VIEWER (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2965, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "013", + "nama" => "DIGITIZER (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2966, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "014", + "nama" => "KEYBOARD (PERALATAN MINI KOMPUTER)", + ], + [ + "id_aset" => 2967, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "015", + "nama" => "AUTO SWITCH/DATA SWITCH", + ], + [ + "id_aset" => 2968, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "016", + "nama" => "CUT SHEET FEEDER", + ], + [ + "id_aset" => 2969, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "017", + "nama" => "SPEAKER KOMPUTER", + ], + [ + "id_aset" => 2970, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN MINI KOMPUTER LAINNYA", + ], + [ + "id_aset" => 2971, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PERSONAL KOMPUTER", + ], + [ + "id_aset" => 2972, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "CPU (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2973, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "MONITOR", + ], + [ + "id_aset" => 2974, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "PRINTER (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2975, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SCANNER (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2976, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "PLOTTER (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2977, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "VIEWER (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2978, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "EXTERNAL", + ], + [ + "id_aset" => 2979, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "DIGITIZER (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2980, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "KEYBOARD (PERALATAN PERSONAL KOMPUTER)", + ], + [ + "id_aset" => 2981, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "CD WRITTER", + ], + [ + "id_aset" => 2982, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "DVD WRITER", + ], + [ + "id_aset" => 2983, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "FIREWIRE CARD", + ], + [ + "id_aset" => 2984, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => "CAPTURE CARD", + ], + [ + "id_aset" => 2985, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "LAN CARD", + ], + [ + "id_aset" => 2986, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "EXTERNAL CD/ DVD DRIVE (ROM)", + ], + [ + "id_aset" => 2987, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "EXTERNAL FLOPPY DISK DRIVE", + ], + [ + "id_aset" => 2988, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "EXTERNAL/ PORTABLE HARDISK", + ], + [ + "id_aset" => 2989, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PERSONAL KOMPUTER LAINNYA", + ], + [ + "id_aset" => 2990, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN JARINGAN", + ], + [ + "id_aset" => 2991, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SERVER", + ], + [ + "id_aset" => 2992, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "ROUTER", + ], + [ + "id_aset" => 2993, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "HUB", + ], + [ + "id_aset" => 2994, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "MODEM", + ], + [ + "id_aset" => 2995, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "NETWARE INTERFACE EXTERNAL", + ], + [ + "id_aset" => 2996, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "REPEATER AND TRANSCIEVER", + ], + [ + "id_aset" => 2997, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "HEAD COPY TERMINAL", + ], + [ + "id_aset" => 2998, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "RACK MODEM", + ], + [ + "id_aset" => 2999, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "CARD PUNCH", + ], + [ + "id_aset" => 3000, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "HEAD COPY PRINTER", + ], + [ + "id_aset" => 3001, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "CHARACTER TERMINAL", + ], + [ + "id_aset" => 3002, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "GRAPHIC TERMINAL", + ], + [ + "id_aset" => 3003, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "TERMINAL", + ], + [ + "id_aset" => 3004, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "RAK SERVER", + ], + [ + "id_aset" => 3005, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "015", + "nama" => "FIREWALL", + ], + [ + "id_aset" => 3006, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "016", + "nama" => "SWITCH RAK", + ], + [ + "id_aset" => 3007, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "017", + "nama" => "WANSCALLER", + ], + [ + "id_aset" => 3008, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "018", + "nama" => "E-MAIL SECURITY", + ], + [ + "id_aset" => 3009, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "019", + "nama" => "CLIENT CLEARING HOUSE", + ], + [ + "id_aset" => 3010, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "020", + "nama" => "CAT 6 CABLE", + ], + [ + "id_aset" => 3011, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "021", + "nama" => "KABEL UTP", + ], + [ + "id_aset" => 3012, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "022", + "nama" => "WIRELESS PCI CARD", + ], + [ + "id_aset" => 3013, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "023", + "nama" => "WIRELESS ACCESS POINT", + ], + [ + "id_aset" => 3014, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "024", + "nama" => "SWITCH", + ], + [ + "id_aset" => 3015, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "025", + "nama" => "HUBBEL UTP", + ], + [ + "id_aset" => 3016, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "026", + "nama" => "ACCES POINT", + ], + [ + "id_aset" => 3017, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "027", + "nama" => "RACKMOUNT", + ], + [ + "id_aset" => 3018, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "028", + "nama" => "KVM KEYBOARD VIDEO MONITOR", + ], + [ + "id_aset" => 3019, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "029", + "nama" => "MOBILE MODEM GSM/ CDMA", + ], + [ + "id_aset" => 3020, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "030", + "nama" => "NETWORK CABLE TESTER", + ], + [ + "id_aset" => 3021, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "031", + "nama" => "JARINGAN SATPAS", + ], + [ + "id_aset" => 3022, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN JARINGAN LAINNYA", + ], + [ + "id_aset" => 3023, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN KOMPUTER LAINNYA", + ], + [ + "id_aset" => 3024, + "golongan" => "3", + "bidang" => "07", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN KOMPUTER LAINNYA", + ], + [ + "id_aset" => 3025, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGEBORAN", + ], + [ + "id_aset" => 3026, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGEBORAN MESIN", + ], + [ + "id_aset" => 3027, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BOR MESIN TUMBUK", + ], + [ + "id_aset" => 3028, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BOR MESIN TUMBUK PAKAI KABEL", + ], + [ + "id_aset" => 3029, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "BOR MESIN TUMBUK PAKAI SETANG BOR", + ], + [ + "id_aset" => 3030, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "BOR MESIN TUMBUK KOMBINASI 01 & 02", + ], + [ + "id_aset" => 3031, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BOR MESIN TUMBUK LAINNYA", + ], + [ + "id_aset" => 3032, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BOR MESIN PUTAR", + ], + [ + "id_aset" => 3033, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "ROTARY TABLE (BOR MESIN PUTAR)", + ], + [ + "id_aset" => 3034, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "SPINDLE", + ], + [ + "id_aset" => 3035, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "KOMBINASI 01 & 02", + ], + [ + "id_aset" => 3036, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "TOP DRIVE", + ], + [ + "id_aset" => 3037, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "WIKIE DRILL", + ], + [ + "id_aset" => 3038, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BOR MESIN PUTAR LAINNYA", + ], + [ + "id_aset" => 3039, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGEBORAN MESIN LAINNYA", + ], + [ + "id_aset" => 3040, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGEBORAN MESIN LAINNYA", + ], + [ + "id_aset" => 3041, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGEBORAN NON MESIN", + ], + [ + "id_aset" => 3042, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGKA", + ], + [ + "id_aset" => 3043, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BANGKA", + ], + [ + "id_aset" => 3044, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGKA LAINNYA", + ], + [ + "id_aset" => 3045, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PANTEK", + ], + [ + "id_aset" => 3046, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "PANTEK", + ], + [ + "id_aset" => 3047, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "SONDIR", + ], + [ + "id_aset" => 3048, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PANTEK LAINNYA", + ], + [ + "id_aset" => 3049, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PUTAR", + ], + [ + "id_aset" => 3050, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PUTAR", + ], + [ + "id_aset" => 3051, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "BAND HIDROLIK", + ], + [ + "id_aset" => 3052, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PUTAR LAINNYA", + ], + [ + "id_aset" => 3053, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN BANTU", + ], + [ + "id_aset" => 3054, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "DRAWWORK", + ], + [ + "id_aset" => 3055, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "DRILL PIPE", + ], + [ + "id_aset" => 3056, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "DRILL CILLAR", + ], + [ + "id_aset" => 3057, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "KELLY", + ], + [ + "id_aset" => 3058, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "CEMETING UNIT", + ], + [ + "id_aset" => 3059, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "ROTARY TABLE (PERALATAN BANTU)", + ], + [ + "id_aset" => 3060, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "TUBING SLIP", + ], + [ + "id_aset" => 3061, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "TUBING SPINDER", + ], + [ + "id_aset" => 3062, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "ALAT PANCING", + ], + [ + "id_aset" => 3063, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "SWIVEL", + ], + [ + "id_aset" => 3064, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "MUD TANK", + ], + [ + "id_aset" => 3065, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN BANTU LAINNYA", + ], + [ + "id_aset" => 3066, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGEBORAN NON MESIN LAINNYA", + ], + [ + "id_aset" => 3067, + "golongan" => "3", + "bidang" => "08", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGEBORAN NON MESIN LAINNYA", + ], + [ + "id_aset" => 3068, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"ALAT PRODUKSI', + ], + [ + "id_aset" => 3069, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "SUMUR", + ], + [ + "id_aset" => 3070, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN SUMUR MINYAK", + ], + [ + "id_aset" => 3071, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "ALAT PERAWAT SUMUR", + ], + [ + "id_aset" => 3072, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "AMERADA TEST", + ], + [ + "id_aset" => 3073, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "SONOLOG", + ], + [ + "id_aset" => 3074, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "PERFORMING UNIT", + ], + [ + "id_aset" => 3075, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "LOGGING UNIT", + ], + [ + "id_aset" => 3076, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "SAND PUMP", + ], + [ + "id_aset" => 3077, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN SUMUR MINYAK LAINNYA", + ], + [ + "id_aset" => 3078, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "SUMUR PEMBORAN", + ], + [ + "id_aset" => 3079, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SUMUR PEMBORAN PANAS BUMI", + ], + [ + "id_aset" => 3080, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "SUMUR PEMBORAN GAS", + ], + [ + "id_aset" => 3081, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "SUMUR PEMBORAN AIR", + ], + [ + "id_aset" => 3082, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "SUMUR PEMBORAN LAINNYA", + ], + [ + "id_aset" => 3083, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "SUMUR LAINNYA", + ], + [ + "id_aset" => 3084, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "SUMUR LAINNYA", + ], + [ + "id_aset" => 3085, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PRODUKSI", + ], + [ + "id_aset" => 3086, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "R I G", + ], + [ + "id_aset" => 3087, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "STANG BOR", + ], + [ + "id_aset" => 3088, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "R I G LAINNYA", + ], + [ + "id_aset" => 3089, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "PRODUKSI LAINNYA", + ], + [ + "id_aset" => 3090, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PRODUKSI LAINNYA", + ], + [ + "id_aset" => 3091, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PENGOLAHAN DAN PEMURNIAN", + ], + [ + "id_aset" => 3092, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN MINYAK", + ], + [ + "id_aset" => 3093, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "KAPASITAS KECIL (ALAT PENGOLAHAN MINYAK)", + ], + [ + "id_aset" => 3094, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "KAPASITAS SEDANG (ALAT PENGOLAHAN MINYAK)", + ], + [ + "id_aset" => 3095, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "KAPASITAS BESAR (ALAT PENGOLAHAN MINYAK)", + ], + [ + "id_aset" => 3096, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "CALON EVAPORATOR", + ], + [ + "id_aset" => 3097, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "CONDENSOR (ALAT PENGOLAHAN MINYAK)", + ], + [ + "id_aset" => 3098, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "COOLER (ALAT PENGOLAHAN MINYAK)", + ], + [ + "id_aset" => 3099, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "POMPA PROSO", + ], + [ + "id_aset" => 3100, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TURBINE", + ], + [ + "id_aset" => 3101, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "AIR DRYER", + ], + [ + "id_aset" => 3102, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "BOILER", + ], + [ + "id_aset" => 3103, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN MINYAK LAINNYA", + ], + [ + "id_aset" => 3104, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN AIR", + ], + [ + "id_aset" => 3105, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "KAPASITAS KECIL (ALAT PENGOLAHAN AIR)", + ], + [ + "id_aset" => 3106, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "KAPASITAS SEDANG (ALAT PENGOLAHAN AIR)", + ], + [ + "id_aset" => 3107, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "KAPASITAS BESAR (ALAT PENGOLAHAN AIR)", + ], + [ + "id_aset" => 3108, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN AIR LAINNYA", + ], + [ + "id_aset" => 3109, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN STEAM", + ], + [ + "id_aset" => 3110, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "KAPASITAS KECIL (ALAT PENGOLAHAN STEAM)", + ], + [ + "id_aset" => 3111, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "KAPASITAS SEDANG (ALAT PENGOLAHAN STEAM)", + ], + [ + "id_aset" => 3112, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "KAPASITAS BESAR (ALAT PENGOLAHAN STEAM)", + ], + [ + "id_aset" => 3113, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN STEAM LAINNYA", + ], + [ + "id_aset" => 3114, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PENGOLAHAN WAX", + ], + [ + "id_aset" => 3115, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "KAPASITAS KECIL (ALAT PENGOLAHAN WAX)", + ], + [ + "id_aset" => 3116, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "KAPASITAS SEDANG (ALAT PENGOLAHAN WAX)", + ], + [ + "id_aset" => 3117, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "KAPASITAS BESAR (ALAT PENGOLAHAN WAX)", + ], + [ + "id_aset" => 3118, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PENGOLAHAN WAX LAINNYA", + ], + [ + "id_aset" => 3119, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "PENGOLAHAN DAN PEMURNIAN LAINNYA", + ], + [ + "id_aset" => 3120, + "golongan" => "3", + "bidang" => "09", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PENGOLAHAN DAN PEMURNIAN LAINNYA", + ], + [ + "id_aset" => 3121, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN OLAH RAGA", + ], + [ + "id_aset" => 3122, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN OLAH RAGA", + ], + [ + "id_aset" => 3123, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN OLAH RAGA ATLETIK", + ], + [ + "id_aset" => 3124, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "LEMPAR CAKRAM", + ], + [ + "id_aset" => 3125, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "LEMPAR LEMBING", + ], + [ + "id_aset" => 3126, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TOLAK PELURU", + ], + [ + "id_aset" => 3127, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "ALAT LARI GAWANG", + ], + [ + "id_aset" => 3128, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "GALAH", + ], + [ + "id_aset" => 3129, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "MARTIL", + ], + [ + "id_aset" => 3130, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "MISTAR LOMPAT TINGGI", + ], + [ + "id_aset" => 3131, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "MATRAS LARI", + ], + [ + "id_aset" => 3132, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "009", + "nama" => "START BLOCK", + ], + [ + "id_aset" => 3133, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "010", + "nama" => "METER LINE", + ], + [ + "id_aset" => 3134, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "011", + "nama" => "BENDERA START", + ], + [ + "id_aset" => 3135, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "012", + "nama" => "PULL MASTER", + ], + [ + "id_aset" => 3136, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "013", + "nama" => "KOSTUM", + ], + [ + "id_aset" => 3137, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "014", + "nama" => "BAK LOMPAT TINGGI", + ], + [ + "id_aset" => 3138, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "015", + "nama" => "BAK LOMPAT JAUH", + ], + [ + "id_aset" => 3139, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN ATLETIK LAINNYA", + ], + [ + "id_aset" => 3140, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN PERMAINAN", + ], + [ + "id_aset" => 3141, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "ALAT TENIS MEJA", + ], + [ + "id_aset" => 3142, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "ALAT VOLLEY", + ], + [ + "id_aset" => 3143, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "ALAT BILYARD", + ], + [ + "id_aset" => 3144, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "ALAT BADMINTON", + ], + [ + "id_aset" => 3145, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "SEPATU RODA", + ], + [ + "id_aset" => 3146, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "BOLA KAKI", + ], + [ + "id_aset" => 3147, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "ALAT BASKET", + ], + [ + "id_aset" => 3148, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "BOLA BASKET", + ], + [ + "id_aset" => 3149, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "KERANJANG BOLA/RING", + ], + [ + "id_aset" => 3150, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "KOSTUM BASKET", + ], + [ + "id_aset" => 3151, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "011", + "nama" => "KOSTUM SEPAK BOLA", + ], + [ + "id_aset" => 3152, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "012", + "nama" => "SEPATU BOLA + KAOS KAKI", + ], + [ + "id_aset" => 3153, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "013", + "nama" => "RAKET TENIS", + ], + [ + "id_aset" => 3154, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "014", + "nama" => "NET TENIS", + ], + [ + "id_aset" => 3155, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "015", + "nama" => "BOLA TENIS", + ], + [ + "id_aset" => 3156, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "016", + "nama" => "ROOT", + ], + [ + "id_aset" => 3157, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN PERMAINAN LAINNYA", + ], + [ + "id_aset" => 3158, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN SENAM", + ], + [ + "id_aset" => 3159, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PALANG SEJAJAR", + ], + [ + "id_aset" => 3160, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "PALANG KUDA", + ], + [ + "id_aset" => 3161, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "MATRAS", + ], + [ + "id_aset" => 3162, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "GELANG-GELANG", + ], + [ + "id_aset" => 3163, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "PERALATAN FITNES", + ], + [ + "id_aset" => 3164, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "KUDA PELANA", + ], + [ + "id_aset" => 3165, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "BALANCE BEEM", + ], + [ + "id_aset" => 3166, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "008", + "nama" => "MULTI STATION", + ], + [ + "id_aset" => 3167, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "009", + "nama" => "ARGOCYCLE", + ], + [ + "id_aset" => 3168, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "010", + "nama" => "TREADMILL", + ], + [ + "id_aset" => 3169, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "011", + "nama" => "ORBITREK", + ], + [ + "id_aset" => 3170, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "012", + "nama" => "HENG UP BOARD", + ], + [ + "id_aset" => 3171, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "013", + "nama" => "SIT UP BOARD", + ], + [ + "id_aset" => 3172, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "014", + "nama" => "BECK UP BOARD", + ], + [ + "id_aset" => 3173, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "015", + "nama" => "DAMBLE SET", + ], + [ + "id_aset" => 3174, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "016", + "nama" => "BARBLE SET", + ], + [ + "id_aset" => 3175, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "017", + "nama" => "RAK DAMBLE SET", + ], + [ + "id_aset" => 3176, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "018", + "nama" => "RAK DARBLE SET", + ], + [ + "id_aset" => 3177, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "019", + "nama" => "MASSAGE CHAIR", + ], + [ + "id_aset" => 3178, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "020", + "nama" => "MASSAGE FOOT", + ], + [ + "id_aset" => 3179, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN SENAM LAINNYA", + ], + [ + "id_aset" => 3180, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "PARALATAN OLAH RAGA AIR", + ], + [ + "id_aset" => 3181, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SKI AIR", + ], + [ + "id_aset" => 3182, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SKI DIVING", + ], + [ + "id_aset" => 3183, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "SELANCAR", + ], + [ + "id_aset" => 3184, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "PERAHU KARET (PARALATAN OLAH RAGA AIR)", + ], + [ + "id_aset" => 3185, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "005", + "nama" => "PERAHU LAYAR", + ], + [ + "id_aset" => 3186, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "006", + "nama" => "ALAT ARUNG JERAM", + ], + [ + "id_aset" => 3187, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "007", + "nama" => "ALAT DAYUNG", + ], + [ + "id_aset" => 3188, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "008", + "nama" => "KACA MATA AIR", + ], + [ + "id_aset" => 3189, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "009", + "nama" => "FULL FOOT FIN", + ], + [ + "id_aset" => 3190, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "010", + "nama" => "ALAT UKUR KEDALAMAN", + ], + [ + "id_aset" => 3191, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "011", + "nama" => "BOUYANCE KOMPENSATOR", + ], + [ + "id_aset" => 3192, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "012", + "nama" => "HP KOMPRESSOR", + ], + [ + "id_aset" => 3193, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "013", + "nama" => "KOMPAS SELAM", + ], + [ + "id_aset" => 3194, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "014", + "nama" => "PISAU SELAM", + ], + [ + "id_aset" => 3195, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "015", + "nama" => "PERAYU KAYAK 1", + ], + [ + "id_aset" => 3196, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "016", + "nama" => "PERAYU KAYAK 2", + ], + [ + "id_aset" => 3197, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "017", + "nama" => "PERAHU CANO CANADIAN 1", + ], + [ + "id_aset" => 3198, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "018", + "nama" => "PERAHU CANO CANADIAN 2", + ], + [ + "id_aset" => 3199, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "019", + "nama" => "PERAHU TRADISIONAL/PERAHU NAGA", + ], + [ + "id_aset" => 3200, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "020", + "nama" => "ROOWING/SINGLE SCOOL", + ], + [ + "id_aset" => 3201, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "021", + "nama" => "ROOWING/DOUBLE SCOOL", + ], + [ + "id_aset" => 3202, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "022", + "nama" => "PAPAN JUMPING + TALI + HELM", + ], + [ + "id_aset" => 3203, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "023", + "nama" => "PAPAN SLALOM + TALI + HELM", + ], + [ + "id_aset" => 3204, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "024", + "nama" => "PAPAN TRICK + TALI + HELM", + ], + [ + "id_aset" => 3205, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "025", + "nama" => "JAMPING TRACK", + ], + [ + "id_aset" => 3206, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "026", + "nama" => "MOTOR PENARIK/SPEED BOAT", + ], + [ + "id_aset" => 3207, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "027", + "nama" => "PELAMPUNG LINTASAN", + ], + [ + "id_aset" => 3208, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "028", + "nama" => "OPTIMIST", + ], + [ + "id_aset" => 3209, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "029", + "nama" => "ENTERPRISE", + ], + [ + "id_aset" => 3210, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "030", + "nama" => "KELAS 420", + ], + [ + "id_aset" => 3211, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "031", + "nama" => "KELAS 470", + ], + [ + "id_aset" => 3212, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "032", + "nama" => "FIREBALL", + ], + [ + "id_aset" => 3213, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "033", + "nama" => "SELANCAR ANGIN", + ], + [ + "id_aset" => 3214, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "034", + "nama" => "HOBBY CAT", + ], + [ + "id_aset" => 3215, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "035", + "nama" => "KIIL BOAT", + ], + [ + "id_aset" => 3216, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "PARALATAN OLAH RAGA AIR LAINNYA", + ], + [ + "id_aset" => 3217, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN OLAH RAGA UDARA", + ], + [ + "id_aset" => 3218, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "GANTOLE", + ], + [ + "id_aset" => 3219, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BALON UDARA", + ], + [ + "id_aset" => 3220, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "PAYUNG UDARA (PARASUT)", + ], + [ + "id_aset" => 3221, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "ALAT TERBANG LAYANG", + ], + [ + "id_aset" => 3222, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN OLAH RAGA UDARA LAINNYA", + ], + [ + "id_aset" => 3223, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "PERALATAN OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 3224, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "CATUR", + ], + [ + "id_aset" => 3225, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "SARUNG TINJU", + ], + [ + "id_aset" => 3226, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "SEPEDA OLAH RAGA", + ], + [ + "id_aset" => 3227, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 3228, + "golongan" => "3", + "bidang" => "10", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "PERALATAN OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 3229, + "golongan" => "4", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "GEDUNG DAN BANGUNAN", + ], + [ + "id_aset" => 3230, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG", + ], + [ + "id_aset" => 3231, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA", + ], + [ + "id_aset" => 3232, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG KANTOR", + ], + [ + "id_aset" => 3233, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG KANTOR PERMANEN", + ], + [ + "id_aset" => 3234, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG KANTOR SEMI PERMANEN", + ], + [ + "id_aset" => 3235, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG KANTOR DARURAT", + ], + [ + "id_aset" => 3236, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "RUMAH PANEL", + ], + [ + "id_aset" => 3237, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG KANTOR LAINNYA", + ], + [ + "id_aset" => 3238, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GUDANG", + ], + [ + "id_aset" => 3239, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GUDANG TERTUTUP PERMANEN", + ], + [ + "id_aset" => 3240, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GUDANG TERTUTUP SEMI PERMANEN", + ], + [ + "id_aset" => 3241, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GUDANG TERTUTUP DARURAT", + ], + [ + "id_aset" => 3242, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN GUDANG TERBUKA PERMANEN", + ], + [ + "id_aset" => 3243, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN GUDANG TERBUKA SEMI PERMANEN", + ], + [ + "id_aset" => 3244, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN GUDANG TERBUKA DARURAT", + ], + [ + "id_aset" => 3245, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GUDANG LAINNYA", + ], + [ + "id_aset" => 3246, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG UNTUK BENGKEL", + ], + [ + "id_aset" => 3247, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN BENGKEL PERMANEN", + ], + [ + "id_aset" => 3248, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN BENGKEL SEMI PERMANEN", + ], + [ + "id_aset" => 3249, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN BENGKEL DARURAT", + ], + [ + "id_aset" => 3250, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG UNTUK BENGKEL LAINNYA", + ], + [ + "id_aset" => 3251, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG INSTALASI", + ], + [ + "id_aset" => 3252, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "GEDUNG INSTALASI STUDIO", + ], + [ + "id_aset" => 3253, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "GEDUNG INSTALASI PEMANCAR", + ], + [ + "id_aset" => 3254, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG INSTALASI LAINNYA", + ], + [ + "id_aset" => 3255, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG LABORATORIUM", + ], + [ + "id_aset" => 3256, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG LABORATORIUM PERMANEN", + ], + [ + "id_aset" => 3257, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG LABORATORIUM SEMI PERMANEN", + ], + [ + "id_aset" => 3258, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG LABORATORIUM DARURAT", + ], + [ + "id_aset" => 3259, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG LABORATORIUM LAINNYA", + ], + [ + "id_aset" => 3260, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN KESEHATAN", + ], + [ + "id_aset" => 3261, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN POSYANDU", + ], + [ + "id_aset" => 3262, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN POLINDES (PONDOK BERSALIN DESA)", + ], + [ + "id_aset" => 3263, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN APOTIK", + ], + [ + "id_aset" => 3264, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN TOKO KHUSUS OBAT/JAMU", + ], + [ + "id_aset" => 3265, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN KESEHATAN LAINNYA", + ], + [ + "id_aset" => 3266, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT IBADAH", + ], + [ + "id_aset" => 3267, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG TEMPAT IBADAH PERMANEN", + ], + [ + "id_aset" => 3268, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG TEMPAT IBADAH SEMI PERMANEN", + ], + [ + "id_aset" => 3269, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG TEMPAT IBADAH DARURAT", + ], + [ + "id_aset" => 3270, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT IBADAH LAINNYA", + ], + [ + "id_aset" => 3271, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT PERTEMUAN", + ], + [ + "id_aset" => 3272, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG PERTEMUAN PERMANEN", + ], + [ + "id_aset" => 3273, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG PERTEMUAN SEMI PERMANEN", + ], + [ + "id_aset" => 3274, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG PERTEMUAN DARURAT", + ], + [ + "id_aset" => 3275, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT PERTEMUAN LAINNYA", + ], + [ + "id_aset" => 3276, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT PENDIDIKAN", + ], + [ + "id_aset" => 3277, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG PENDIDIKAN PERMANEN", + ], + [ + "id_aset" => 3278, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG PENDIDIKAN SEMI PERMANEN", + ], + [ + "id_aset" => 3279, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG PENDIDIKAN DARURAT", + ], + [ + "id_aset" => 3280, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN GEDUNG PENDIDIKAN DAN LATIHAN", + ], + [ + "id_aset" => 3281, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT PENDIDIKAN LAINNYA", + ], + [ + "id_aset" => 3282, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT OLAH RAGA", + ], + [ + "id_aset" => 3283, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "GEDUNG OLAH RAGA TETUTUP PERMANEN", + ], + [ + "id_aset" => 3284, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "GEDUNG OLAH RAGA TERTUTUP SEMI PERMANEN", + ], + [ + "id_aset" => 3285, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG OLAH RAGA TERTUTUP DARURAT", + ], + [ + "id_aset" => 3286, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN OLAH RAGA TERBUKA PERMANEN", + ], + [ + "id_aset" => 3287, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN OLAH RAGA TERBUKA SEMI PERMANEN", + ], + [ + "id_aset" => 3288, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN OLAH RAGA TERBUKA DARURAT", + ], + [ + "id_aset" => 3289, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN GEDUNG OLAH RAGA KOLAM RENANG", + ], + [ + "id_aset" => 3290, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 3291, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG PERTOKOAN/KOPERASI/PASAR", + ], + [ + "id_aset" => 3292, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "GEDUNG PERTOKOAN/KOPERASI/PASAR PERMANEN", + ], + [ + "id_aset" => 3293, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "GEDUNG PERTOKOAN/KOPERASI/PASAR SEMI PERMANEN", + ], + [ + "id_aset" => 3294, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG PERTOKOAN/KOPERASI/PASAR DARURAT", + ], + [ + "id_aset" => 3295, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG PERTOKOAN/KOPERASI/PASAR LAINNYA", + ], + [ + "id_aset" => 3296, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG GARASI/POOL", + ], + [ + "id_aset" => 3297, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "001", + "nama" => "GEDUNG GARASI/POOL PERMANEN", + ], + [ + "id_aset" => 3298, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "002", + "nama" => "GEDUNG GARASI/POOL SEMI PERMANEN", + ], + [ + "id_aset" => 3299, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG GARASI/POOL DARURAT", + ], + [ + "id_aset" => 3300, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "12", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG GARASI/POOL LAINNYA", + ], + [ + "id_aset" => 3301, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG PEMOTONG HEWAN", + ], + [ + "id_aset" => 3302, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "001", + "nama" => "GEDUNG PEMOTONG HEWAN PERMANEN", + ], + [ + "id_aset" => 3303, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "002", + "nama" => "GEDUNG PEMOTONG HEWAN SEMI PERMANEN", + ], + [ + "id_aset" => 3304, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG PEMOTONG HEWAN DARURAT", + ], + [ + "id_aset" => 3305, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "13", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG PEMOTONG HEWAN LAINNYA", + ], + [ + "id_aset" => 3306, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG PERPUSTAKAAN", + ], + [ + "id_aset" => 3307, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG PERPUSTAKAAN PERMANEN", + ], + [ + "id_aset" => 3308, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG PERPUSTAKAAN SEMI PERMANEN", + ], + [ + "id_aset" => 3309, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG PERPUSTAKAAN DARURAT", + ], + [ + "id_aset" => 3310, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "14", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG PERPUSTAKAAN LAINNYA", + ], + [ + "id_aset" => 3311, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG MUSIUM", + ], + [ + "id_aset" => 3312, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG MUSIUM PERMANEN", + ], + [ + "id_aset" => 3313, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG MUSIUM SEMI PERMANEN", + ], + [ + "id_aset" => 3314, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG MUSIUM DARURAT", + ], + [ + "id_aset" => 3315, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "15", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG MUSIUM LAINNYA", + ], + [ + "id_aset" => 3316, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TERMINAL/PELABUHAN", + ], + [ + "id_aset" => 3317, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG TERMINAL/PELABUHAN PERMANEN", + ], + [ + "id_aset" => 3318, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG TERMINAL/PELABUHAN SEMI PERMANEN", + ], + [ + "id_aset" => 3319, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG TERMINAL/PELABUHAN DARURAT", + ], + [ + "id_aset" => 3320, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN HALTE/SHELTER", + ], + [ + "id_aset" => 3321, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "16", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TERMINAL/PELABUHAN LAINNYA", + ], + [ + "id_aset" => 3322, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN TERBUKA", + ], + [ + "id_aset" => 3323, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN LANTAI JEMUR PERMANEN", + ], + [ + "id_aset" => 3324, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN LANTAI JEMUR SEMI PERMANEN", + ], + [ + "id_aset" => 3325, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN LANTAI JEMUR DARURAT", + ], + [ + "id_aset" => 3326, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "17", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN TERBUKA LAINNYA", + ], + [ + "id_aset" => 3327, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENAMPUNG SEKAM", + ], + [ + "id_aset" => 3328, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN PENAMPUNG SEKAM PERMANEN", + ], + [ + "id_aset" => 3329, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PENAMPUNG SEKAM SEMI PERMANEN", + ], + [ + "id_aset" => 3330, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PENAMPUNG SEKAM DARURAT", + ], + [ + "id_aset" => 3331, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "18", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENAMPUNG SEKAM LAINNYA", + ], + [ + "id_aset" => 3332, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN TEMPAT PELELANGAN IKAN (TPI)", + ], + [ + "id_aset" => 3333, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN TPI PERMANEN", + ], + [ + "id_aset" => 3334, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN TPI SEMI PERMANEN", + ], + [ + "id_aset" => 3335, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN TPI DARURAT", + ], + [ + "id_aset" => 3336, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "19", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN TEMPAT PELELANGAN IKAN (TPI) LAINNYA", + ], + [ + "id_aset" => 3337, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN INDUSTRI", + ], + [ + "id_aset" => 3338, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN INDUSTRI MAKANAN", + ], + [ + "id_aset" => 3339, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN INDUSTRI MINUMAN", + ], + [ + "id_aset" => 3340, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN INDUSTRI ALAT RT", + ], + [ + "id_aset" => 3341, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN INDUSTRI PAKAIAN/GARMENT", + ], + [ + "id_aset" => 3342, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN INDUSTRI BAJA/BESI/LOGAM", + ], + [ + "id_aset" => 3343, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN INDUSTRI PENGEMASAN", + ], + [ + "id_aset" => 3344, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN INDUSTRI BENGKEL", + ], + [ + "id_aset" => 3345, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "008", + "nama" => "BANGUNAN INDUSTRI PENYULINGAN MINYAK", + ], + [ + "id_aset" => 3346, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "009", + "nama" => "BANGUNAN INDUSTRI KIMIA DAN PUPUK", + ], + [ + "id_aset" => 3347, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "010", + "nama" => "BANGUNAN INDUSTRI OBAT-OBATAN", + ], + [ + "id_aset" => 3348, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "011", + "nama" => "BANGUNAN INDUSTRI SEMEN", + ], + [ + "id_aset" => 3349, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "012", + "nama" => "BANGUNAN INDUSTRI BATU-BATA/BATAKO", + ], + [ + "id_aset" => 3350, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "013", + "nama" => "BANGUNAN INDUSTRI GENTENG", + ], + [ + "id_aset" => 3351, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "014", + "nama" => "BANGUNAN INDUSTRI PERCETAKAN", + ], + [ + "id_aset" => 3352, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "015", + "nama" => "BANGUNAN INDUSTRI TEKSTIL", + ], + [ + "id_aset" => 3353, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "016", + "nama" => "BANGUNAN INDUSTRI ALAT OLAH RAGA", + ], + [ + "id_aset" => 3354, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "017", + "nama" => "BANGUNAN INDUSTRI KENDARAAN/OTOMOTIF", + ], + [ + "id_aset" => 3355, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "018", + "nama" => "BANGUNAN INDUSTRI KERAMIK/MARMER", + ], + [ + "id_aset" => 3356, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "019", + "nama" => "BANGUNAN PABRIK ES", + ], + [ + "id_aset" => 3357, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "020", + "nama" => "BANGUNAN PASAR IKAN HIGIENIS/ PIH", + ], + [ + "id_aset" => 3358, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "021", + "nama" => "BANGUNAN DEPO PASAR IKAN", + ], + [ + "id_aset" => 3359, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "022", + "nama" => "BANGUNAN PASAR/ RAISER IKAN HIAS", + ], + [ + "id_aset" => 3360, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "20", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN INDUSTRI LAINNYA", + ], + [ + "id_aset" => 3361, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PETERNAKAN/PERIKANAN", + ], + [ + "id_aset" => 3362, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN UNTUK KANDANG", + ], + [ + "id_aset" => 3363, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN KOLAM/BAK IKAN", + ], + [ + "id_aset" => 3364, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PEMBESAR IKAN", + ], + [ + "id_aset" => 3365, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "21", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PETERNAKAN/PERIKANAN LAINNYA", + ], + [ + "id_aset" => 3366, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA", + ], + [ + "id_aset" => 3367, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA PERMANEN", + ], + [ + "id_aset" => 3368, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA SEMI PERMANEN", + ], + [ + "id_aset" => 3369, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA DARURAT", + ], + [ + "id_aset" => 3370, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "004", + "nama" => "GEDUNG PENGUJIAN KENDARAAN LAINNYA", + ], + [ + "id_aset" => 3371, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "22", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN LAINNYA", + ], + [ + "id_aset" => 3372, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN FASILITAS UMUM", + ], + [ + "id_aset" => 3373, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN TEMPAT PARKIR", + ], + [ + "id_aset" => 3374, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN TEMPAT BERMAIN ANAK", + ], + [ + "id_aset" => 3375, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PENERANGAN JALAN", + ], + [ + "id_aset" => 3376, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN PENERANGAN TAMAN", + ], + [ + "id_aset" => 3377, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "23", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN FASILITAS UMUM LAINNYA", + ], + [ + "id_aset" => 3378, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PARKIR", + ], + [ + "id_aset" => 3379, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN PARKIR TERBUKA PERMANEN", + ], + [ + "id_aset" => 3380, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PARKIR TERBUKA SEMI PERMANEN", + ], + [ + "id_aset" => 3381, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PARKIR TERBUKA DARURAT", + ], + [ + "id_aset" => 3382, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN PARKIR TERTUTUP PERMANEN", + ], + [ + "id_aset" => 3383, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN PARKIR TERTUTUP SEMI PERMANEN", + ], + [ + "id_aset" => 3384, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN PARKIR TERTUTUP DARURAT", + ], + [ + "id_aset" => 3385, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "24", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PARKIR LAINNYA", + ], + [ + "id_aset" => 3386, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "000", + "nama" => "TAMAN", + ], + [ + "id_aset" => 3387, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "001", + "nama" => "TAMAN PERMANEN", + ], + [ + "id_aset" => 3388, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "002", + "nama" => "TAMAN SEMI PERMANEN", + ], + [ + "id_aset" => 3389, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "25", + "sub_sub_kelompok" => "999", + "nama" => "TAMAN LAINNYA", + ], + [ + "id_aset" => 3390, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA", + ], + [ + "id_aset" => 3391, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT KERJA LAINNYA", + ], + [ + "id_aset" => 3392, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "HOTEL", + ], + [ + "id_aset" => 3393, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "HOTEL PERMANEN", + ], + [ + "id_aset" => 3394, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "HOTEL SEMI PERMANEN", + ], + [ + "id_aset" => 3395, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "HOTEL LAINNYA", + ], + [ + "id_aset" => 3396, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "MOTEL", + ], + [ + "id_aset" => 3397, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "MOTEL PERMANEN", + ], + [ + "id_aset" => 3398, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MOTEL SEMI PERMANEN", + ], + [ + "id_aset" => 3399, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "MOTEL LAINNYA", + ], + [ + "id_aset" => 3400, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "PANTI ASUHAN", + ], + [ + "id_aset" => 3401, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "PANTI ASUHAN", + ], + [ + "id_aset" => 3402, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "PANTI ASUHAN LAINNYA", + ], + [ + "id_aset" => 3403, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN GEDUNG TEMPAT TINGGAL LAINNYA", + ], + [ + "id_aset" => 3404, + "golongan" => "4", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN GEDUNG TEMPAT TINGGAL LAINNYA", + ], + [ + "id_aset" => 3405, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "MONUMEN", + ], + [ + "id_aset" => 3406, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "CANDI/TUGU PERINGATAN/PRASASTI", + ], + [ + "id_aset" => 3407, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "CANDI", + ], + [ + "id_aset" => 3408, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "CANDI", + ], + [ + "id_aset" => 3409, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "CANDI LAINNYA", + ], + [ + "id_aset" => 3410, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TUGU", + ], + [ + "id_aset" => 3411, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "TUGU KEMERDEKAAN", + ], + [ + "id_aset" => 3412, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "TUGU PEMBANGUNAN", + ], + [ + "id_aset" => 3413, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TUGU PERINGATAN LAINNYA", + ], + [ + "id_aset" => 3414, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENINGGALAN", + ], + [ + "id_aset" => 3415, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "ISTANA PENINGGALAN", + ], + [ + "id_aset" => 3416, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "RUMAH ADAT", + ], + [ + "id_aset" => 3417, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "RUMAH PENINGGALAN SEJARAH", + ], + [ + "id_aset" => 3418, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "MAKAM BERSEJARAH", + ], + [ + "id_aset" => 3419, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENINGGALAN LAINNYA", + ], + [ + "id_aset" => 3420, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "CANDI/TUGU PERINGATAN/PRASASTI LAINNYA", + ], + [ + "id_aset" => 3421, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENINGGALAN LAINNYA", + ], + [ + "id_aset" => 3422, + "golongan" => "4", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "CANDI/TUGU PERINGATAN/PRASASTI LAINNYA", + ], + [ + "id_aset" => 3423, + "golongan" => "5", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JALAN", + ], + [ + "id_aset" => 3424, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JALAN DAN JEMBATAN", + ], + [ + "id_aset" => 3425, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JALAN", + ], + [ + "id_aset" => 3426, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JALAN DESA", + ], + [ + "id_aset" => 3427, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JALAN DESA", + ], + [ + "id_aset" => 3428, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JALAN DESA LAINNYA", + ], + [ + "id_aset" => 3429, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JALAN KHUSUS", + ], + [ + "id_aset" => 3430, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JALAN KHUSUS INSPEKSI", + ], + [ + "id_aset" => 3431, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JALAN KHUSUS KOMPLEKS", + ], + [ + "id_aset" => 3432, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JALAN KHUSUS PROYEK", + ], + [ + "id_aset" => 3433, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "JALAN KHUSUS QUARRY", + ], + [ + "id_aset" => 3434, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "JALAN KHUSUS LORI", + ], + [ + "id_aset" => 3435, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "JALAN KHUSUS BADAN HUKUM", + ], + [ + "id_aset" => 3436, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "JALAN KHUSUS PERORANGAN", + ], + [ + "id_aset" => 3437, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "JALAN KHUSUS LAINNYA", + ], + [ + "id_aset" => 3438, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "JALAN KHUSUS PEJALAN KAKI (TROTOAR)", + ], + [ + "id_aset" => 3439, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "LAINNYA (JALAN KHUSUS)", + ], + [ + "id_aset" => 3440, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JALAN LAINNYA", + ], + [ + "id_aset" => 3441, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JALAN LAINNYA", + ], + [ + "id_aset" => 3442, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN", + ], + [ + "id_aset" => 3443, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN PADA JALAN DESA", + ], + [ + "id_aset" => 3444, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JEMBATAN PADA JALAN DESA", + ], + [ + "id_aset" => 3445, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN PADA JALAN DESA LAINNYA", + ], + [ + "id_aset" => 3446, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN PADA JALAN KHUSUS", + ], + [ + "id_aset" => 3447, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JEMBATAN PADA JALAN KHUSUS INSPEKSI", + ], + [ + "id_aset" => 3448, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JEMBATAN PADA JALAN KHUSUS KOMPLEKS", + ], + [ + "id_aset" => 3449, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JEMBATAN PADA JALAN KHUSUS PROYEK", + ], + [ + "id_aset" => 3450, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "JEMBATAN PADA JALAN KHUSUS QUARRY", + ], + [ + "id_aset" => 3451, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "JEMBATAN PADA JALAN KHUSUS LORI", + ], + [ + "id_aset" => 3452, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "JEMBATAN PADA JALAN KHUSUS BADAN HUKUM", + ], + [ + "id_aset" => 3453, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "JEMBATAN PADA JALAN KHUSUS PERORANGAN", + ], + [ + "id_aset" => 3454, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN PADA JALAN KHUSUS LAINNYA", + ], + [ + "id_aset" => 3455, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN PENYEBERANGAN", + ], + [ + "id_aset" => 3456, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "JEMBATAN PENYEBERANGAN ORANG", + ], + [ + "id_aset" => 3457, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "JEMBATAN PENYEBERANGAN KENDARAAN", + ], + [ + "id_aset" => 3458, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "JEMBATAN GANTUNG", + ], + [ + "id_aset" => 3459, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN PENYEBERANGAN LAINNYA", + ], + [ + "id_aset" => 3460, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN LABUH/SANDAR PADA TERMINAL", + ], + [ + "id_aset" => 3461, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "DERMAGA", + ], + [ + "id_aset" => 3462, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "KADE", + ], + [ + "id_aset" => 3463, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "EMBARKASI/DEBARKASI", + ], + [ + "id_aset" => 3464, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "JEMBATAN PANTAI", + ], + [ + "id_aset" => 3465, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN LABUH/SANDAR PADA TERMINAL LAINNYA", + ], + [ + "id_aset" => 3466, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN PENGUKUR", + ], + [ + "id_aset" => 3467, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "JEMBATAN TIMBANG", + ], + [ + "id_aset" => 3468, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "JEMBATAN KIR/PENGUJIAN", + ], + [ + "id_aset" => 3469, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN PENGUKUR LAINNYA", + ], + [ + "id_aset" => 3470, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JEMBATAN LAINNYA", + ], + [ + "id_aset" => 3471, + "golongan" => "5", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JEMBATAN LAINNYA", + ], + [ + "id_aset" => 3472, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR", + ], + [ + "id_aset" => 3473, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR IRIGASI", + ], + [ + "id_aset" => 3474, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK IRIGASI", + ], + [ + "id_aset" => 3475, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => '\"WADUK DENGAN BENDUNGAN', + ], + [ + "id_aset" => 3476, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => '\"WADUK DENGAN BENDUNGAN', + ], + [ + "id_aset" => 3477, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "WADUK DENGAN MENARA PENGAMBILAN", + ], + [ + "id_aset" => 3478, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => '\"WADUK DENGAN TANGGUL', + ], + [ + "id_aset" => 3479, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => + "WADUK DENGAN TANGGUL DAN PINTU PENGUKUR WADUK LAPANGAN", + ], + [ + "id_aset" => 3480, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK IRIGASI LAINNYA", + ], + [ + "id_aset" => 3481, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN IRIGASI", + ], + [ + "id_aset" => 3482, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BENDUNG", + ], + [ + "id_aset" => 3483, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BENDUNG DENGAN PINTU BILAS", + ], + [ + "id_aset" => 3484, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BENDUNG DENGAN POMPA", + ], + [ + "id_aset" => 3485, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN PENGAMBILAN BEBAS", + ], + [ + "id_aset" => 3486, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => + "BANGUNAN PENGAMBILAN BEBAS DGN POMPA (BGNAN PENGAMBILAN IRIGASI)", + ], + [ + "id_aset" => 3487, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "SUMUR DENGAN POMPA (BANGUNAN PENGAMBILAN IRIGASI)", + ], + [ + "id_aset" => 3488, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMBILAN IRIGASI LAINNYA", + ], + [ + "id_aset" => 3489, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA IRIGASI", + ], + [ + "id_aset" => 3490, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN MUKA (BANGUNAN PEMBAWA IRIGASI)", + ], + [ + "id_aset" => 3491, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN INDUK (BANGUNAN PEMBAWA IRIGASI)", + ], + [ + "id_aset" => 3492, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "SALURAN SEKUNDER (BANGUNAN PEMBAWA IRIGASI)", + ], + [ + "id_aset" => 3493, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SALURAN TERSIER (BANGUNAN PEMBAWA IRIGASI)", + ], + [ + "id_aset" => 3494, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "SALURAN KWARTER", + ], + [ + "id_aset" => 3495, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "SALURAN PASANG TERTUTUP/TEROWONGAN", + ], + [ + "id_aset" => 3496, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "007", + "nama" => "SALURAN SUPLESI", + ], + [ + "id_aset" => 3497, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA IRIGASI LAINNYA", + ], + [ + "id_aset" => 3498, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG IRIGASI", + ], + [ + "id_aset" => 3499, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN INDUK PEMBUANG (BANGUNAN PEMBUANG IRIGASI)", + ], + [ + "id_aset" => 3500, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => + "SALURAN SEKUNDER PEMBUANG (BANGUNAN PEMBUANG IRIGASI)", + ], + [ + "id_aset" => 3501, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => + "SALURAN TERSIER PEMBUANG (BANGUNAN PEMBUANG IRIGASI)", + ], + [ + "id_aset" => 3502, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG IRIGASI LAINNYA", + ], + [ + "id_aset" => 3503, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN IRIGASI", + ], + [ + "id_aset" => 3504, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TANGGUL BANJIR (BANGUNAN PENGAMAN IRIGASI)", + ], + [ + "id_aset" => 3505, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN IRIGASI)", + ], + [ + "id_aset" => 3506, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN IRIGASI LAINNYA", + ], + [ + "id_aset" => 3507, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP IRIGASI", + ], + [ + "id_aset" => 3508, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN BAGI", + ], + [ + "id_aset" => 3509, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN BAGI DAN SADAP (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3510, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN SADAP (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3511, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN GOT MIRING", + ], + [ + "id_aset" => 3512, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN TERJUN (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3513, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN TALANG (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3514, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN SYPHON (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3515, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3516, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "BANGUNAN PELIMPAH SAMPAH", + ], + [ + "id_aset" => 3517, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "BANGUNAN PENGELUARAN/PINTU", + ], + [ + "id_aset" => 3518, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "BANGUNAN BOX TERSIER (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3519, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "012", + "nama" => "BANGUNAN PENGUKUR", + ], + [ + "id_aset" => 3520, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "013", + "nama" => "BANGUNAN MANDI HEWAN", + ], + [ + "id_aset" => 3521, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "014", + "nama" => "BANGUNAN PERTEMUAN SALURAN", + ], + [ + "id_aset" => 3522, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "015", + "nama" => "BANGUNAN PELENGKAP DALAM PETAK TERSIER", + ], + [ + "id_aset" => 3523, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "016", + "nama" => "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP IRIGASI)", + ], + [ + "id_aset" => 3524, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP IRIGASI LAINNYA", + ], + [ + "id_aset" => 3525, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN SAWAH IRIGASI", + ], + [ + "id_aset" => 3526, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN SAWAH IRIGASI TEHNIS", + ], + [ + "id_aset" => 3527, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN SAWAH IRIGASI SEMI TEHNIS", + ], + [ + "id_aset" => 3528, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN SAWAH IRIGASI NON TEHNIS", + ], + [ + "id_aset" => 3529, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN SAWAH IRIGASI LAINNYA", + ], + [ + "id_aset" => 3530, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR IRIGASI LAINNYA", + ], + [ + "id_aset" => 3531, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN AIR IRIGASI LAINNYA", + ], + [ + "id_aset" => 3532, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAIRAN PASANG SURUT", + ], + [ + "id_aset" => 3533, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK PASANG SURUT", + ], + [ + "id_aset" => 3534, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "WADUK PASANG SURUT", + ], + [ + "id_aset" => 3535, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3536, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN PASANG SURUT", + ], + [ + "id_aset" => 3537, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN BENDUNG DENGAN POMPA", + ], + [ + "id_aset" => 3538, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN PENGAMBILAN BEBAS DGN POMPA (BGNAN PENGAMBILAN PSG SURUT", + ], + [ + "id_aset" => 3539, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMBILAN PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3540, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA PASANG SURUT", + ], + [ + "id_aset" => 3541, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN MUKA (BANGUNAN PEMBAWA PASANG SURUT)", + ], + [ + "id_aset" => 3542, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN INDUK (BANGUNAN PEMBAWA PASANG SURUT)", + ], + [ + "id_aset" => 3543, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "SALURAN SEKUNDER (BANGUNAN PEMBAWA PASANG SURUT)", + ], + [ + "id_aset" => 3544, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SALURAN TERSIER (BANGUNAN PEMBAWA PASANG SURUT)", + ], + [ + "id_aset" => 3545, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "SALURAN PENYIMPAN AIR", + ], + [ + "id_aset" => 3546, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "006", + "nama" => "SALURAN LALU LINTAS AIR", + ], + [ + "id_aset" => 3547, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3548, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "SALURAN PEMBUANG PASANG SURUT", + ], + [ + "id_aset" => 3549, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => + "SALURAN INDUK PEMBUANG (SALURAN PEMBUANG PASANG SURUT)", + ], + [ + "id_aset" => 3550, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => + "SALURAN SEKUNDER PEMBUANG (SALURAN PEMBUANG PASANG SURUT)", + ], + [ + "id_aset" => 3551, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => + "SALURAN TERSIER PEMBUANG (SALURAN PEMBUANG PASANG SURUT)", + ], + [ + "id_aset" => 3552, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "SALURAN PENGUMPUL AIR", + ], + [ + "id_aset" => 3553, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "SALURAN PEMBUANG PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3554, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN PASANG SURUT", + ], + [ + "id_aset" => 3555, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => + "BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN PASANG SURUT)", + ], + [ + "id_aset" => 3556, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PEMASUKAN/PEMBUANG", + ], + [ + "id_aset" => 3557, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "KOLAM PASANG", + ], + [ + "id_aset" => 3558, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3559, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP PASANG SURUT", + ], + [ + "id_aset" => 3560, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PASANG SURUT)", + ], + [ + "id_aset" => 3561, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN JEMBATAN PENGHALANG (BANGUNAN PELENGKAP PASANG SURUT)", + ], + [ + "id_aset" => 3562, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PENUTUP PENANGKIS KOTORAN", + ], + [ + "id_aset" => 3563, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => + "BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PASANG SURUT)", + ], + [ + "id_aset" => 3564, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => + "BANGUNAN PENGUKUR CURAH HUJAN (BANGUNAN PELENGKAP PASANG SURUT)", + ], + [ + "id_aset" => 3565, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3566, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN SAWAH PASANG SURUT", + ], + [ + "id_aset" => 3567, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN SAWAH PASANG SURUT TEKNIS", + ], + [ + "id_aset" => 3568, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN SAWAH PASANG SURUT SEMI TEKNIS", + ], + [ + "id_aset" => 3569, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN SAWAH PASANG SURUT NON TEKNIS", + ], + [ + "id_aset" => 3570, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN SAWAH PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3571, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAIRAN PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3572, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAIRAN PASANG SURUT LAINNYA", + ], + [ + "id_aset" => 3573, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGEMBANGAN RAWA DAN POLDER", + ], + [ + "id_aset" => 3574, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3575, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN WADUK", + ], + [ + "id_aset" => 3576, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3577, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3578, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "WADUK PENGAMBILAN RAWA", + ], + [ + "id_aset" => 3579, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMBILAN PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3580, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3581, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN MUKA (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3582, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN INDUK (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3583, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => + "SALURAN SEKUNDER (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3584, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => + "SALURAN TERSIER (BANGUNAN PEMBAWA PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3585, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3586, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3587, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => + "SALURAN INDUK PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3588, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => + "SALURAN SEKUNDER PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3589, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => + "SALURAN TERSIER PEMBUANG (BANGUNAN PEMBUANG PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3590, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3591, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3592, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "TANGGUL KELILING", + ], + [ + "id_aset" => 3593, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN PINTU AIR/KLEP (BANGUNAN PENGAMAN PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3594, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3595, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3596, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => + "BANGUNAN BAGI DAN SADAP (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3597, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN SADAP (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3598, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => + "BANGUNAN TERJUN (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3599, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => + "BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3600, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => + "BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3601, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => + "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3602, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => + "BANGUNAN JEMBATAN PENGHALANG (BGNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3603, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => + "BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3604, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => + "BANGUNAN PENGUKUR CURAH HUJAN (BGNAN PELENGKAP PENGEMBANGAN RAWA)", + ], + [ + "id_aset" => 3605, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "010", + "nama" => "BANGUNAN PENUTUP SUNGAI", + ], + [ + "id_aset" => 3606, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "011", + "nama" => "BANGUNAN STASIUN POMPA PEMASUKAN/PEMBUANG", + ], + [ + "id_aset" => 3607, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3608, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN SAWAH PENGEMBANGAN RAWA", + ], + [ + "id_aset" => 3609, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN SAWAH RAWA TEKNIS", + ], + [ + "id_aset" => 3610, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN SAWAH RAWA SEMI TEKNIS", + ], + [ + "id_aset" => 3611, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN SAWAH RAWA NON TEKNIS", + ], + [ + "id_aset" => 3612, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN SAWAH PENGEMBANGAN RAWA LAINNYA", + ], + [ + "id_aset" => 3613, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGEMBANGAN RAWA DAN POLDER LAINNYA", + ], + [ + "id_aset" => 3614, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGEMBANGAN RAWA DAN POLDER LAINNYA", + ], + [ + "id_aset" => 3615, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => + "BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM", + ], + [ + "id_aset" => 3616, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => + "BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM", + ], + [ + "id_aset" => 3617, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNA WASUK PENGAMAN SUNGAI/PANTAI", + ], + [ + "id_aset" => 3618, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => '\"WADUK DENGAN TANGGUL', + ], + [ + "id_aset" => 3619, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA", + ], + [ + "id_aset" => 3620, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN PENGAMAN SUNGAI/PANTAI", + ], + [ + "id_aset" => 3621, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN PENGAMBILAN PENGAMANAN SUNGAI", + ], + [ + "id_aset" => 3622, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PENGAMBILAN PENGAMANAN PANTAI", + ], + [ + "id_aset" => 3623, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMBILAN PENGAMAN SUNGAI/PANTAI LAINNYA", + ], + [ + "id_aset" => 3624, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA PENGAMAN SUNGAI/PANTAI", + ], + [ + "id_aset" => 3625, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN PEMBAWA PENGAMAN SUNGAI", + ], + [ + "id_aset" => 3626, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PEMBAWA PENGAMAN PANTAI", + ], + [ + "id_aset" => 3627, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA PENGAMAN SUNGAI/PANTAI LAINNYA", + ], + [ + "id_aset" => 3628, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG PENGAMAN SUNGAI", + ], + [ + "id_aset" => 3629, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN BANJIR", + ], + [ + "id_aset" => 3630, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN DRAINAGE", + ], + [ + "id_aset" => 3631, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG PENGAMAN SUNGAI LAINNYA", + ], + [ + "id_aset" => 3632, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI", + ], + [ + "id_aset" => 3633, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => + "TANGGUL BANJIR (BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI)", + ], + [ + "id_aset" => 3634, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "PINTU PENGATUR BANJIR", + ], + [ + "id_aset" => 3635, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "COUPURE/SODETAN", + ], + [ + "id_aset" => 3636, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "KANTONG PASIR/LAHAR/LUMPUR", + ], + [ + "id_aset" => 3637, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "CHEKDAM/PENAHAN SEDIMEN", + ], + [ + "id_aset" => 3638, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "KRIB PENGAMAN SUNGAI/PANTAI", + ], + [ + "id_aset" => 3639, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN PENGUAT TEBING/PANTAI", + ], + [ + "id_aset" => 3640, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "BANGUNAN PELIMPAH BANJIR", + ], + [ + "id_aset" => 3641, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "DAM KONSOLIDASI", + ], + [ + "id_aset" => 3642, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "010", + "nama" => "PERALATAN SARINGAN SAMPAH ( POND SCREEN )", + ], + [ + "id_aset" => 3643, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "011", + "nama" => "KLEP PENGATUR BANJIR", + ], + [ + "id_aset" => 3644, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "012", + "nama" => "BANGUNAN PEMECAH GELOMBANG", + ], + [ + "id_aset" => 3645, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "013", + "nama" => "BANGUNAN PELANTARAN PANTAI", + ], + [ + "id_aset" => 3646, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN PENGAMANAN SUNGAI/PANTAI LAINNYA", + ], + [ + "id_aset" => 3647, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP PENGAMAN SUNGAI", + ], + [ + "id_aset" => 3648, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => + "BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGAMAN SUNGAI)", + ], + [ + "id_aset" => 3649, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP PENGAMAN SUNGAI)", + ], + [ + "id_aset" => 3650, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => + "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGAMAN SUNGAI)", + ], + [ + "id_aset" => 3651, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => + "BANGUNAN PENGUKUR MUKA AIR (BANGUNAN PELENGKAP PENGAMAN SUNGAI)", + ], + [ + "id_aset" => 3652, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => + "BANGUNAN PENGUKUR CURAH HUJAN (BGNAN PELENGKAP PENGAMAN SUNGAI)", + ], + [ + "id_aset" => 3653, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => "STASIUN POS PENJAGA/PENGAMAT", + ], + [ + "id_aset" => 3654, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN DERMAGA", + ], + [ + "id_aset" => 3655, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "008", + "nama" => "BANGUNAN STASIUN POMPA PEMBUANG", + ], + [ + "id_aset" => 3656, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "009", + "nama" => "WARNING SYSTEM", + ], + [ + "id_aset" => 3657, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP PENGAMAN SUNGAI LAINNYA", + ], + [ + "id_aset" => 3658, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => + "BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA", + ], + [ + "id_aset" => 3659, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => + "BANGUNAN PENGAMAN SUNGAI/PANTAI & PENANGGULANGAN BENCANA ALAM LAINNYA", + ], + [ + "id_aset" => 3660, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH", + ], + [ + "id_aset" => 3661, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3662, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "EMBUNG/WADUK LAPANGAN", + ], + [ + "id_aset" => 3663, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3664, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3665, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => + "SUMUR DENGAN POMPA (BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3666, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "SUMUR ARTETIS", + ], + [ + "id_aset" => 3667, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "BANGUNAN PENGAMBILAN PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3668, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3669, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => + "SALURAN TERSIER (BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3670, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN KUARTIER", + ], + [ + "id_aset" => 3671, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3672, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3673, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN PEMBUANG", + ], + [ + "id_aset" => 3674, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3675, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3676, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "BAK PENAMPUNG/KOLAM/ MENARA PENAMPUNGAN", + ], + [ + "id_aset" => 3677, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN KLIMATOLOGI", + ], + [ + "id_aset" => 3678, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN HIDROMETRI", + ], + [ + "id_aset" => 3679, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "SUMUR PENGAMATAN", + ], + [ + "id_aset" => 3680, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3681, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR", + ], + [ + "id_aset" => 3682, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => + "BANGUNAN TERJUN (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3683, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN TALANG (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3684, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => + "BANGUNAN SYPHON (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3685, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "004", + "nama" => + "BANGUNAN GORONG-GORONG (BGNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3686, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "005", + "nama" => + "BANGUNAN BOX TERSIER (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3687, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "006", + "nama" => + "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR)", + ], + [ + "id_aset" => 3688, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP PENGEMBANGAN SUMBER AIR LAINNYA", + ], + [ + "id_aset" => 3689, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN SAWAH IRIGASI AIR TANAH", + ], + [ + "id_aset" => 3690, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN SAWAH IRIGASI AIR TANAH TEKNIS", + ], + [ + "id_aset" => 3691, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN SAWAH IRIGASI AIR TANAH SEMI TEKNIS", + ], + [ + "id_aset" => 3692, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN SAWAH IRIGASI AIR TANAH NON TEKNIS", + ], + [ + "id_aset" => 3693, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN SAWAH IRIGASI AIR TANAH LAINNYA", + ], + [ + "id_aset" => 3694, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => + "BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH LAINNYA", + ], + [ + "id_aset" => 3695, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "05", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => + "BANGUNAN PENGEMBANGAN SUMBER AIR DAN AIR TANAH LAINNYA", + ], + [ + "id_aset" => 3696, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3697, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3698, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "WADUK PENYIMPANAN AIR BAKU", + ], + [ + "id_aset" => 3699, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "WADUK PENYIMPANAN AIR HUJAN", + ], + [ + "id_aset" => 3700, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "BAK PENYIMPANAN/TOWER AIR BAKU", + ], + [ + "id_aset" => 3701, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3702, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMBILAN AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3703, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN PENGAMBILAN DARI WADUK", + ], + [ + "id_aset" => 3704, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN PENGAMBILAN DARI SUNGAI", + ], + [ + "id_aset" => 3705, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN PENGAMBILAN DARI DANAU", + ], + [ + "id_aset" => 3706, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN PENGAMBILAN DARI RAWA", + ], + [ + "id_aset" => 3707, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN PENGAMBILAN DARI AIR LAUT", + ], + [ + "id_aset" => 3708, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN PENGAMBILAN DARI SUMBER AIR", + ], + [ + "id_aset" => 3709, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN PENGAMBILAN DARI SUMUR ARTETIS", + ], + [ + "id_aset" => 3710, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMBILAN AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3711, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3712, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN PEMBAWA AIR BAKU TERBUKA", + ], + [ + "id_aset" => 3713, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN PEMBAWA AIR BAKU TERTUTUP", + ], + [ + "id_aset" => 3714, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3715, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3716, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN PEMBUANG AIR CUCIAN AIR BAKU", + ], + [ + "id_aset" => 3717, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN PEMBUANG AIR CUCIAN INSTALASI", + ], + [ + "id_aset" => 3718, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3719, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU", + ], + [ + "id_aset" => 3720, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => + "BANGUNAN TALANG (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)", + ], + [ + "id_aset" => 3721, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => + "BANGUNAN SYPHON (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)", + ], + [ + "id_aset" => 3722, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => + "BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)", + ], + [ + "id_aset" => 3723, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => + "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU)", + ], + [ + "id_aset" => 3724, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN PENAMPUNG AIR BAKU", + ], + [ + "id_aset" => 3725, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "BANGUNAN HIDRAN UMUM", + ], + [ + "id_aset" => 3726, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN MANDI CUCI KAKUS (MCK)", + ], + [ + "id_aset" => 3727, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "BANGUNAN MENARA/BAK PENAMPUNG/RESERVOIR AIR MINUM", + ], + [ + "id_aset" => 3728, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "BANGUNAN BUSTER PUMP", + ], + [ + "id_aset" => 3729, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3730, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3731, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "06", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN AIR BERSIH/AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3732, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR KOTOR", + ], + [ + "id_aset" => 3733, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBAWA AIR KOTOR", + ], + [ + "id_aset" => 3734, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN PENGUMPUL AIR HUJAN", + ], + [ + "id_aset" => 3735, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN PENGUMPUL AIR BUANGAN DOMESTIK", + ], + [ + "id_aset" => 3736, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "SALURAN PENGUMPUL AIR BUANGAN INDUSTRI", + ], + [ + "id_aset" => 3737, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "SALURAN PENGUMPUL AIR BUANGAN PERTANIAN", + ], + [ + "id_aset" => 3738, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBAWA AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3739, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN WADUK AIR KOTOR", + ], + [ + "id_aset" => 3740, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "WADUK AIR HUJAN", + ], + [ + "id_aset" => 3741, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "WADUK AIR BUANGAN DOMESTIK", + ], + [ + "id_aset" => 3742, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "WADUK AIR BUANGAN INDUSTRI", + ], + [ + "id_aset" => 3743, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "WADUK AIR BUANGAN PERTANIAN", + ], + [ + "id_aset" => 3744, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN WADUK AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3745, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PEMBUANG AIR KOTOR", + ], + [ + "id_aset" => 3746, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "SALURAN PEMBUANG AIR BUANGAN AIR HUJAN", + ], + [ + "id_aset" => 3747, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "SALURAN PEMBUANG AIR BUANGAN DOMESTIK", + ], + [ + "id_aset" => 3748, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "SALURAN PEMBUANG AIR BUANGAN AIR INDUSTRI", + ], + [ + "id_aset" => 3749, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "SALURAN PEMBUANG AIR BUANGAN AIR PERTANIAN", + ], + [ + "id_aset" => 3750, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PEMBUANG AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3751, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENGAMAN AIR KOTOR", + ], + [ + "id_aset" => 3752, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN POMPA AIR HUJAN", + ], + [ + "id_aset" => 3753, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN POMPA AIR BUANGAN DOMESTIK", + ], + [ + "id_aset" => 3754, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "BANGUNAN POMPA AIR BUANGAN INDUSTRI", + ], + [ + "id_aset" => 3755, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN POMPA AIR BUANGAN PERTANIAN", + ], + [ + "id_aset" => 3756, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENGAMAN AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3757, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PELENGKAP AIR KOTOR", + ], + [ + "id_aset" => 3758, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN TALANG (BANGUNAN PELENGKAP AIR KOTOR)", + ], + [ + "id_aset" => 3759, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN SYPHON (BANGUNAN PELENGKAP AIR KOTOR)", + ], + [ + "id_aset" => 3760, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => + "BANGUNAN GORONG-GORONG (BANGUNAN PELENGKAP AIR KOTOR)", + ], + [ + "id_aset" => 3761, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "BANGUNAN JEMBATAN (BANGUNAN PELENGKAP AIR KOTOR)", + ], + [ + "id_aset" => 3762, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "BANGUNAN BAK KONTROL/MAN HOLE", + ], + [ + "id_aset" => 3763, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "006", + "nama" => "SALURAN AIR KOTOR SAMBUNGAN DARI RUMAH", + ], + [ + "id_aset" => 3764, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "007", + "nama" => "BANGUNAN (BOX) CULVERT", + ], + [ + "id_aset" => 3765, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "008", + "nama" => "MULTIPLE PIPA ARCHES", + ], + [ + "id_aset" => 3766, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "009", + "nama" => "BANGUNAN PLAT DEKER", + ], + [ + "id_aset" => 3767, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PELENGKAP AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3768, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3769, + "golongan" => "5", + "bidang" => "02", + "kelompok" => "07", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3770, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI", + ], + [ + "id_aset" => 3771, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BERSIH / AIR BAKU", + ], + [ + "id_aset" => 3772, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR PERMUKAAN", + ], + [ + "id_aset" => 3773, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR PERMUKAAN KAPASITAS KECIL", + ], + [ + "id_aset" => 3774, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR PERMUKAAN KAPASITAS SEDANG", + ], + [ + "id_aset" => 3775, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR PERMUKAAN KAPASITAS BESAR", + ], + [ + "id_aset" => 3776, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR PERMUKAAN LAINNYA", + ], + [ + "id_aset" => 3777, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR SUMBER / MATA AIR", + ], + [ + "id_aset" => 3778, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR SUMBER / MATA AIR KAPASITAS KECIL", + ], + [ + "id_aset" => 3779, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR SUMBER / MATA AIR KAPASITAS SEDANG", + ], + [ + "id_aset" => 3780, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR SUMBER / MATA AIR KAPASITAS BESAR", + ], + [ + "id_aset" => 3781, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR SUMBER / MATA AIR LAINNYA", + ], + [ + "id_aset" => 3782, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR TANAH DALAM", + ], + [ + "id_aset" => 3783, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR TANAH DALAM KAPASITAS KECIL", + ], + [ + "id_aset" => 3784, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR TANAH DALAM KAPASITAS SEDANG", + ], + [ + "id_aset" => 3785, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR TANAH DALAM KAPASITAS BESAR", + ], + [ + "id_aset" => 3786, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR TANAH DALAM LAINNYA", + ], + [ + "id_aset" => 3787, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR TANAH DANGKAL", + ], + [ + "id_aset" => 3788, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR TANAH DANGKAL KAPASITAS KECIL", + ], + [ + "id_aset" => 3789, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR TANAH DANGKAL KAPASITAS SEDANG", + ], + [ + "id_aset" => 3790, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR TANAH DANGKAL KAPASITAS BESAR", + ], + [ + "id_aset" => 3791, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR TANAH DANGKAL LAINNYA", + ], + [ + "id_aset" => 3792, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BERSIH / AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3793, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "SISTEM PENGOLAHAN AIR SEDERHANA (SIPAS)", + ], + [ + "id_aset" => 3794, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN RUMAH TANGGA (JARUT)", + ], + [ + "id_aset" => 3795, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "PENAMPUNGAN AIR HUJAN (PAH)", + ], + [ + "id_aset" => 3796, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "004", + "nama" => "SUMUR GALI (SGL)", + ], + [ + "id_aset" => 3797, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "005", + "nama" => "SUMUR RESAPAN", + ], + [ + "id_aset" => 3798, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR BERSIH / AIR BAKU LAINNYA LAINNYA", + ], + [ + "id_aset" => 3799, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BERSIH / AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3800, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR BERSIH / AIR BAKU LAINNYA", + ], + [ + "id_aset" => 3801, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR KOTOR", + ], + [ + "id_aset" => 3802, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BUANGAN DOMESTIK", + ], + [ + "id_aset" => 3803, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR BUANGAN DOMESTIK KAPASITAS KECIL", + ], + [ + "id_aset" => 3804, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR BUANGAN DOMESTIK KAPASITAS SEDANG", + ], + [ + "id_aset" => 3805, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR BUANGAN DOMESTIK KAPASITAS BESAR", + ], + [ + "id_aset" => 3806, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR BUANGAN DOMESTIK LAINNYA", + ], + [ + "id_aset" => 3807, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BUANGAN INDUSTRI", + ], + [ + "id_aset" => 3808, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR BUANGAN INDUSTRI KAPASITAS KECIL", + ], + [ + "id_aset" => 3809, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR BUANGAN INDUSTRI KAPASITAS SEDANG", + ], + [ + "id_aset" => 3810, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR BUANGAN INDUSTRI KAPASITAS BESAR", + ], + [ + "id_aset" => 3811, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR BUANGAN INDUSTRI LAINNYA", + ], + [ + "id_aset" => 3812, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR BUANGAN PERTANIAN", + ], + [ + "id_aset" => 3813, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI AIR BUANGAN PERTANIAN KAPASITAS KECIL", + ], + [ + "id_aset" => 3814, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AIR BUANGAN PERTANIAN KAPASITAS SEDANG", + ], + [ + "id_aset" => 3815, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI AIR BUANGAN PERTANIAN KAPASITAS BESAR", + ], + [ + "id_aset" => 3816, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR BUANGAN PERTANIAN LAINNYA", + ], + [ + "id_aset" => 3817, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3818, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI AIR KOTOR LAINNYA", + ], + [ + "id_aset" => 3819, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN SAMPAH", + ], + [ + "id_aset" => 3820, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN SAMPAH ORGANIK", + ], + [ + "id_aset" => 3821, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => + "INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM PEMBAKARAN", + ], + [ + "id_aset" => 3822, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM KOMPOS", + ], + [ + "id_aset" => 3823, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => + "INSTALASI PENGOLAHAN SAMPAH ORGANIK SISTEM PENIMBUNAN", + ], + [ + "id_aset" => 3824, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PENGOLAHAN SAMPAH ORGANIK LAINNYA", + ], + [ + "id_aset" => 3825, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN SAMPAH NON ORGANIK", + ], + [ + "id_aset" => 3826, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => + "INSTALASI PENGOLAHAN SAMPAH NON ORGANIK DAUR ULANG LOGAM", + ], + [ + "id_aset" => 3827, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => + "INSTALASI PENGOLAHAN SAMPAH NON ORGANIK DAUR ULANG NON LOGAM", + ], + [ + "id_aset" => 3828, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PENGOLAHAN SAMPAH NON ORGANIK LAINNYA", + ], + [ + "id_aset" => 3829, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "BANGUNAN PENAMPUNG SAMPAH", + ], + [ + "id_aset" => 3830, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "BANGUNAN TEMPAT PENAMPUNG SAMPAH RUMAH TANGGA", + ], + [ + "id_aset" => 3831, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "BANGUNAN TEMPAT MENAMPUNG SAMPAH LINGKUNGAN", + ], + [ + "id_aset" => 3832, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "BANGUNAN PENAMPUNG SAMPAH LAINNYA", + ], + [ + "id_aset" => 3833, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN SAMPAH LAINNYA", + ], + [ + "id_aset" => 3834, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PENGOLAHAN SAMPAH LAINNYA", + ], + [ + "id_aset" => 3835, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN", + ], + [ + "id_aset" => 3836, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN", + ], + [ + "id_aset" => 3837, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGAWETAN KAYU", + ], + [ + "id_aset" => 3838, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGERINGAN KAYU", + ], + [ + "id_aset" => 3839, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PENGERJAAN KAYU", + ], + [ + "id_aset" => 3840, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PERKAPURAN", + ], + [ + "id_aset" => 3841, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PEMBUATAN BATU", + ], + [ + "id_aset" => 3842, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN PEMBUATAN AGREGA", + ], + [ + "id_aset" => 3843, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERCONTOHAN LAINNYA", + ], + [ + "id_aset" => 3844, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS", + ], + [ + "id_aset" => 3845, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGAWETAN KAYU", + ], + [ + "id_aset" => 3846, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGERINGAN KAYU", + ], + [ + "id_aset" => 3847, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PENGERJAAN KAYU", + ], + [ + "id_aset" => 3848, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PERKAPURAN", + ], + [ + "id_aset" => 3849, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PEMBUATAN BATU CETA", + ], + [ + "id_aset" => 3850, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS PEMBUATAN AGREGAT", + ], + [ + "id_aset" => 3851, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PENGOLAHAN BAHAN BANGUNAN PERINTIS LAINNYA", + ], + [ + "id_aset" => 3852, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN", + ], + [ + "id_aset" => 3853, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN", + ], + [ + "id_aset" => 3854, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN TERAPAN LAINNYA", + ], + [ + "id_aset" => 3855, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN LAINNYA", + ], + [ + "id_aset" => 3856, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PENGOLAHAN BAHAN BANGUNAN LAINNYA", + ], + [ + "id_aset" => 3857, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK", + ], + [ + "id_aset" => 3858, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA AIR (PLTA)", + ], + [ + "id_aset" => 3859, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTA KAPASITAS KECIL", + ], + [ + "id_aset" => 3860, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTA KAPASITAS SEDANG", + ], + [ + "id_aset" => 3861, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTA KAPASITAS BESAR", + ], + [ + "id_aset" => 3862, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA AIR (PLTA) LAINNYA", + ], + [ + "id_aset" => 3863, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA DIESEL (PLTD)", + ], + [ + "id_aset" => 3864, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTD KAPASITAS KECIL", + ], + [ + "id_aset" => 3865, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTD KAPASITAS SEDANG", + ], + [ + "id_aset" => 3866, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTD KAPASITAS BESAR", + ], + [ + "id_aset" => 3867, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA DIESEL (PLTD) LAINNYA", + ], + [ + "id_aset" => 3868, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA MIKRO HIDRO (PLTM)", + ], + [ + "id_aset" => 3869, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTM KAPASITAS KECIL", + ], + [ + "id_aset" => 3870, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTM KAPASITAS SEDANG", + ], + [ + "id_aset" => 3871, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTM KAPASITAS BESAR", + ], + [ + "id_aset" => 3872, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA MIKRO HIDRO (PLTM) LAINNYA", + ], + [ + "id_aset" => 3873, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA ANGIN (PLTAN)", + ], + [ + "id_aset" => 3874, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTAN KAPASITAS KECIL", + ], + [ + "id_aset" => 3875, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTAN KAPASITAS SEDANG", + ], + [ + "id_aset" => 3876, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTAN KAPASITAS BESAR", + ], + [ + "id_aset" => 3877, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA ANGIN (PLTAN) LAINNYA", + ], + [ + "id_aset" => 3878, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA UAP (PLTU)", + ], + [ + "id_aset" => 3879, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTU KAPASITAS KECIL", + ], + [ + "id_aset" => 3880, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTU KAPASITAS SEDANG", + ], + [ + "id_aset" => 3881, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTU KAPASITAS BESAR", + ], + [ + "id_aset" => 3882, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "05", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA UAP (PLTU) LAINNYA", + ], + [ + "id_aset" => 3883, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA NUKLIR (PLTN)", + ], + [ + "id_aset" => 3884, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTN KAPASITAS KECIL", + ], + [ + "id_aset" => 3885, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTN KAPASITAS SEDANG", + ], + [ + "id_aset" => 3886, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTN KAPASITAS BESAR", + ], + [ + "id_aset" => 3887, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "06", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA NUKLIR (PLTN) LAINNYA", + ], + [ + "id_aset" => 3888, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA GAS (PLTG)", + ], + [ + "id_aset" => 3889, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTG KAPASITAS KECIL", + ], + [ + "id_aset" => 3890, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTG KAPASITAS SEDANG", + ], + [ + "id_aset" => 3891, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTG KAPASITAS BESAR", + ], + [ + "id_aset" => 3892, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "07", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA GAS (PLTG) LAINNYA", + ], + [ + "id_aset" => 3893, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "000", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA PANAS BUMI (PLTP)", + ], + [ + "id_aset" => 3894, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTP KAPASITAS KECIL", + ], + [ + "id_aset" => 3895, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTP KAPASITAS SEDANG", + ], + [ + "id_aset" => 3896, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTP KAPASITAS BESAR", + ], + [ + "id_aset" => 3897, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "08", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA PANAS BUMI (PLTP) LAINNYA", + ], + [ + "id_aset" => 3898, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA SURYA (PLTS)", + ], + [ + "id_aset" => 3899, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTS KAPASITAS KECIL", + ], + [ + "id_aset" => 3900, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTS KAPASITAS SEDANG", + ], + [ + "id_aset" => 3901, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTS KAPASITAS BESAR", + ], + [ + "id_aset" => 3902, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "09", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA SURYA (PLTS) LAIINNYA", + ], + [ + "id_aset" => 3903, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK TENAGA BIOGAS (PLTB)", + ], + [ + "id_aset" => 3904, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTB KAPASITAS KECIL", + ], + [ + "id_aset" => 3905, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTB KAPASITAS SEDANG", + ], + [ + "id_aset" => 3906, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTB KAPASITAS BESAR", + ], + [ + "id_aset" => 3907, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "10", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA BIOGAS (PLTB) LAINNYA", + ], + [ + "id_aset" => 3908, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "000", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA SAMUDERA / GELOMBANG SAMUDERA", + ], + [ + "id_aset" => 3909, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PLTSM KAPASITAS KECIL", + ], + [ + "id_aset" => 3910, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PLTSM KAPASITAS SEDANG", + ], + [ + "id_aset" => 3911, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PLTSM KAPASITAS BESAR", + ], + [ + "id_aset" => 3912, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "11", + "sub_sub_kelompok" => "999", + "nama" => + "INSTALASI PEMBANGKIT LISTRIK TENAGA SAMUDERA / GELOMBANG SAMUDERA LAINNYA", + ], + [ + "id_aset" => 3913, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PEMBANGKIT LISTRIK LAINNYA", + ], + [ + "id_aset" => 3914, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "05", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PEMBANGKIT LISTRIK LAINNYA", + ], + [ + "id_aset" => 3915, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI GARDU LISTRIK", + ], + [ + "id_aset" => 3916, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI GARDU LISTRIK INDUK", + ], + [ + "id_aset" => 3917, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI GARDU LISTRIK INDUK KAPASITAS KECIL", + ], + [ + "id_aset" => 3918, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI GARDU LISTRIK INDUK KAPASITAS SEDANG", + ], + [ + "id_aset" => 3919, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI GARDU LISTRIK INDUK KAPASITAS BESAR", + ], + [ + "id_aset" => 3920, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI GARDU LISTRIK INDUK LAINNYA", + ], + [ + "id_aset" => 3921, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI GARDU LISTRIK DISTRIBUSI", + ], + [ + "id_aset" => 3922, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS KECIL", + ], + [ + "id_aset" => 3923, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS SEDANG", + ], + [ + "id_aset" => 3924, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI GARDU LISTRIK DISTRIBUSI KAPASITAS BESAR", + ], + [ + "id_aset" => 3925, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI GARDU LISTRIK DISTRIBUSI LAINNYA", + ], + [ + "id_aset" => 3926, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI PUSAT PENGATUR LISTRIK", + ], + [ + "id_aset" => 3927, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS KECIL", + ], + [ + "id_aset" => 3928, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS SEDANG", + ], + [ + "id_aset" => 3929, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI PUSAT PENGATUR LISTRIK KAPASITAS BESAR", + ], + [ + "id_aset" => 3930, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI PUSAT PENGATUR LISTRIK LAINNYA", + ], + [ + "id_aset" => 3931, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI GARDU LISTRIK LAINNYA", + ], + [ + "id_aset" => 3932, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "06", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI GARDU LISTRIK LAINNYA", + ], + [ + "id_aset" => 3933, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI LAIN", + ], + [ + "id_aset" => 3934, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "INSTALASI LAIN", + ], + [ + "id_aset" => 3935, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "INSTALASI GENERATING SET", + ], + [ + "id_aset" => 3936, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "INSTALASI AC", + ], + [ + "id_aset" => 3937, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "INSTALASI BUILDING AUTOMATION SYSTEM (BAS)", + ], + [ + "id_aset" => 3938, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "INSTALASI KOMPUTER", + ], + [ + "id_aset" => 3939, + "golongan" => "5", + "bidang" => "03", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "INSTALASI LAIN-LAIN", + ], + [ + "id_aset" => 3940, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN", + ], + [ + "id_aset" => 3941, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN AIR MINUM", + ], + [ + "id_aset" => 3942, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN PEMBAWA", + ], + [ + "id_aset" => 3943, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN PEMBAWA KAPASITAS KECIL", + ], + [ + "id_aset" => 3944, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN PEMBAWA KAPASITAS SEDANG", + ], + [ + "id_aset" => 3945, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN PEMBAWA KAPASITAS BESAR", + ], + [ + "id_aset" => 3946, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN PEMBAWA LAINNYA", + ], + [ + "id_aset" => 3947, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN INDUK DISTRIBUSI", + ], + [ + "id_aset" => 3948, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN INDUK DISTRIBUSI KAPASITAS KECIL", + ], + [ + "id_aset" => 3949, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN INDUK DISTRIBUSI KAPASITAS SEDANG", + ], + [ + "id_aset" => 3950, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN INDUK DISTRIBUSI KAPASITAS BESAR", + ], + [ + "id_aset" => 3951, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN INDUK DISTRIBUSI LAINNYA", + ], + [ + "id_aset" => 3952, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN CABANG DISTRIBUSI", + ], + [ + "id_aset" => 3953, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN CABANG DISTRIBUSI KAPASITAS KECIL", + ], + [ + "id_aset" => 3954, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN CABANG DISTRIBUSI KAPASITAS SEDANG", + ], + [ + "id_aset" => 3955, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN CABANG DISTRIBUSI KAPASITAS BESAR", + ], + [ + "id_aset" => 3956, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN CABANG DISTRIBUSI LAINNYA", + ], + [ + "id_aset" => 3957, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN SAMBUNGAN KE RUMAH", + ], + [ + "id_aset" => 3958, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN SAMBUNGAN KE RUMAH KAPASITAS KECIL", + ], + [ + "id_aset" => 3959, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN SAMBUNGAN KE RUMAH KAPASITAS SEDANG", + ], + [ + "id_aset" => 3960, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN SAMBUNGAN KE RUMAH KAPASITAS BESAR", + ], + [ + "id_aset" => 3961, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN SAMBUNGAN KE RUMAH LAINNYA", + ], + [ + "id_aset" => 3962, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN AIR MINUM LAINNYA", + ], + [ + "id_aset" => 3963, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN AIR MINUM LAINNYA", + ], + [ + "id_aset" => 3964, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN LISTRIK", + ], + [ + "id_aset" => 3965, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TRANSMISI", + ], + [ + "id_aset" => 3966, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN TRANSMISI TEGANGAN DIATAS 300 KVA", + ], + [ + "id_aset" => 3967, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN TRANSMISI TEGANGAN 100 S/D 300 KVA", + ], + [ + "id_aset" => 3968, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN TRANSMISI TEGANGAN DIBAWAH 100 KVA", + ], + [ + "id_aset" => 3969, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN TRANSMISI LAINNYA", + ], + [ + "id_aset" => 3970, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN DISTRIBUSI", + ], + [ + "id_aset" => 3971, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN DISTRIBUSI TEGANGAN DIATAS 20 KVA", + ], + [ + "id_aset" => 3972, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN DISTRIBUSI TEGANGAN 1 S/D 20 KVA", + ], + [ + "id_aset" => 3973, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN DISTRIBUSI TEGANGAN DIBAWAH 1 KVA", + ], + [ + "id_aset" => 3974, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN DISTRIBUSI LAINNYA", + ], + [ + "id_aset" => 3975, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN LISTRIK LAINNYA", + ], + [ + "id_aset" => 3976, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN LISTRIK LAINNYA", + ], + [ + "id_aset" => 3977, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TELEPON", + ], + [ + "id_aset" => 3978, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TELEPON DIATAS TANAH", + ], + [ + "id_aset" => 3979, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN TELEPON DIATAS TANAH KAPASITAS KECIL", + ], + [ + "id_aset" => 3980, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN TELEPON DIATAS TANAH KAPASITAS SEDANG", + ], + [ + "id_aset" => 3981, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN TELEPON DIATAS TANAH KAPASITAS BESAR", + ], + [ + "id_aset" => 3982, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN TELEPON DIATAS TANAH LAINNYA", + ], + [ + "id_aset" => 3983, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TELEPON DIBAWAH TANAH", + ], + [ + "id_aset" => 3984, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN TELEPON DIBAWAH TANAH KAPASITAS KECIL", + ], + [ + "id_aset" => 3985, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN TELEPON DIBAWAH TANAH KAPASITAS SEDANG", + ], + [ + "id_aset" => 3986, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN TELEPON DIBAWAH TANAH KAPASITAS BESAR", + ], + [ + "id_aset" => 3987, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN TELEPON DIBAWAH TANAH LAINNYA", + ], + [ + "id_aset" => 3988, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TELEPON DIDALAM AIR", + ], + [ + "id_aset" => 3989, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN TELEPON DIDALAM AIR KAPASITAS KECIL", + ], + [ + "id_aset" => 3990, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN TELEPON DIDALAM AIR KAPASITAS SEDANG", + ], + [ + "id_aset" => 3991, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN TELEPON DIDALAM AIR KAPASITAS BESAR", + ], + [ + "id_aset" => 3992, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN TELEPON DIDALAM AIR LAINNYA", + ], + [ + "id_aset" => 3993, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN DENGAN MEDIA UDARA", + ], + [ + "id_aset" => 3994, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN SATELIT", + ], + [ + "id_aset" => 3995, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN RADIO", + ], + [ + "id_aset" => 3996, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN DENGAN MEDIA UDARA LAINNYA", + ], + [ + "id_aset" => 3997, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN TELEPON LAINNYA", + ], + [ + "id_aset" => 3998, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN TELEPON LAINNYA", + ], + [ + "id_aset" => 3999, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN GAS", + ], + [ + "id_aset" => 4000, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN PIPA GAS TRANSMISI", + ], + [ + "id_aset" => 4001, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN PIPA BAJA", + ], + [ + "id_aset" => 4002, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN PIPA GAS TRANSMISI LAINNYA", + ], + [ + "id_aset" => 4003, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN PIPA DISTRIBUSI", + ], + [ + "id_aset" => 4004, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN PIPA DISTRIBUSI TEKANAN TINGGI", + ], + [ + "id_aset" => 4005, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN PIPA DISTRIBUSI TEKANAN MENENGAH PIPA BAJA", + ], + [ + "id_aset" => 4006, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN PIPA DISTRIBUSI TEKANAN MENENGAH PIPA PE", + ], + [ + "id_aset" => 4007, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "JARINGAN PIPA DISTRIBUSI TEKANAN RENDAH PIPA BAJA", + ], + [ + "id_aset" => 4008, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "JARINGAN PIPA DISTRIBUSI TEKANAN RENDAH PIPA PC", + ], + [ + "id_aset" => 4009, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN PIPA DISTRIBUSI LAINNYA", + ], + [ + "id_aset" => 4010, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN PIPA DINAS", + ], + [ + "id_aset" => 4011, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN PIPA DINAS PIPA BAJA", + ], + [ + "id_aset" => 4012, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN PIPA DINAS PIPA PE", + ], + [ + "id_aset" => 4013, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN PIPA DINAS LAINNYA", + ], + [ + "id_aset" => 4014, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN BBM", + ], + [ + "id_aset" => 4015, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "001", + "nama" => "JARINGAN BBM BENSIN", + ], + [ + "id_aset" => 4016, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "002", + "nama" => "JARINGAN BBM SOLAR", + ], + [ + "id_aset" => 4017, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "003", + "nama" => "JARINGAN BBM MINYAK TANAH", + ], + [ + "id_aset" => 4018, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "04", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN BBM LAINNYA", + ], + [ + "id_aset" => 4019, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "JARINGAN GAS LAINNYA", + ], + [ + "id_aset" => 4020, + "golongan" => "5", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "JARINGAN GAS LAINNYA", + ], + [ + "id_aset" => 4021, + "golongan" => "6", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ASET TETAP LAINNYA", + ], + [ + "id_aset" => 4022, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BAHAN PERPUSTAKAAN", + ], + [ + "id_aset" => 4023, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BAHAN PERPUSTAKAAN TERCETAK", + ], + [ + "id_aset" => 4024, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BUKU", + ], + [ + "id_aset" => 4025, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "MONOGRAF", + ], + [ + "id_aset" => 4026, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "REFERENSI", + ], + [ + "id_aset" => 4027, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BUKU LAINNYA", + ], + [ + "id_aset" => 4028, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "SERIAL", + ], + [ + "id_aset" => 4029, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SURAT KABAR", + ], + [ + "id_aset" => 4030, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MAJALAH", + ], + [ + "id_aset" => 4031, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "BULETIN", + ], + [ + "id_aset" => 4032, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "LAPORAN", + ], + [ + "id_aset" => 4033, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "SERIAL LAINNYA", + ], + [ + "id_aset" => 4034, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "TERCETAK LAINNYA", + ], + [ + "id_aset" => 4035, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BAHAN PERPUSTAKAAN TERCETAK LAINNYA", + ], + [ + "id_aset" => 4036, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BAHAN PERPUSTAKAAN TEREKAM DAN BENTUK MIKRO", + ], + [ + "id_aset" => 4037, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "AUDIO VISUAL", + ], + [ + "id_aset" => 4038, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "KASET", + ], + [ + "id_aset" => 4039, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "VIDEO", + ], + [ + "id_aset" => 4040, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "CD/VCD/DVD/LD", + ], + [ + "id_aset" => 4041, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "PITA FILM", + ], + [ + "id_aset" => 4042, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "PITA SUARA", + ], + [ + "id_aset" => 4043, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "PIRINGAN HITAM", + ], + [ + "id_aset" => 4044, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "028", + "nama" => "PETA DIGITAL", + ], + [ + "id_aset" => 4045, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "AUDIO VISUAL LAINNYA", + ], + [ + "id_aset" => 4046, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "BENTUK MIKRO (MICROFORM)", + ], + [ + "id_aset" => 4047, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "MIKROFILM", + ], + [ + "id_aset" => 4048, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "MIKROFISCH", + ], + [ + "id_aset" => 4049, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "SLIDE", + ], + [ + "id_aset" => 4050, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "BENTUK MIKRO/MIKROFORM LAINNYA", + ], + [ + "id_aset" => 4051, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "TEREKAM DAN BENTUK MIKRO LAINNYA", + ], + [ + "id_aset" => 4052, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BAHAN PERPUSTAKAAN TEREKAM DAN BENTUK MIKRO LAINNYA", + ], + [ + "id_aset" => 4053, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"KARTOGRAFI', + ], + [ + "id_aset" => 4054, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BAHAN KARTOGRAFI", + ], + [ + "id_aset" => 4055, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PETA (MAP)", + ], + [ + "id_aset" => 4056, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "ATLAS", + ], + [ + "id_aset" => 4057, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "BLUE PRINT", + ], + [ + "id_aset" => 4058, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "BOLA DUNIA (GLOBE)", + ], + [ + "id_aset" => 4059, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "BAHAN KARTOGRAFI LAINNYA", + ], + [ + "id_aset" => 4060, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "NASKAH (MANUSKRIP) / ASLI", + ], + [ + "id_aset" => 4061, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "NASKAH/MANUSKRIP BERBAHAN KERTAS", + ], + [ + "id_aset" => 4062, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "NASKAH/MANUSKRIP BERBAHAN DAUN", + ], + [ + "id_aset" => 4063, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "NASKAH/MANUSKRIP BERBAHAN KAYU", + ], + [ + "id_aset" => 4064, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "NASKAH/MANUSKRIP BERBAHAN BAMBU", + ], + [ + "id_aset" => 4065, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "NASKAH/MANUSKRIP BERBAHAN KULIT KAYU", + ], + [ + "id_aset" => 4066, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "NASKAH/MANUSKRIP BERBAHAN KULIT BINATANG", + ], + [ + "id_aset" => 4067, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "NASKAH/MANUSKRIP BERBAHAN TULANG/TANDUK", + ], + [ + "id_aset" => 4068, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "NASKAH/MANUSKRIP BERBAHAN TEMPURUNG", + ], + [ + "id_aset" => 4069, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "NASKAH/MANUSKRIP BERBAHAN LAINNYA", + ], + [ + "id_aset" => 4070, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "LUKISAN DAN UKIRAN", + ], + [ + "id_aset" => 4071, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "LUKISAN KANVAS", + ], + [ + "id_aset" => 4072, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => '\"LUKISAN BATU', + ], + [ + "id_aset" => 4073, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "UKIRAN KAYU DAN SEJENISNYA", + ], + [ + "id_aset" => 4074, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "004", + "nama" => "UKIRAN LOGAM DAN SEJENISNYA", + ], + [ + "id_aset" => 4075, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "005", + "nama" => "UKIRAN BATU DAN SEJENISNYA", + ], + [ + "id_aset" => 4076, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "UKIRAN DAN LUKISAN LAINNYA", + ], + [ + "id_aset" => 4077, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => '\"KARTOGRAFI', + ], + [ + "id_aset" => 4078, + "golongan" => "6", + "bidang" => "01", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => '\"KARTOGRAFI', + ], + [ + "id_aset" => 4079, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BARANG BERCORAK KESENIAN/KEBUDAYAAN/OLAHRAGA", + ], + [ + "id_aset" => 4080, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BARANG BERCORAK KESENIAN", + ], + [ + "id_aset" => 4081, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ALAT MUSIK", + ], + [ + "id_aset" => 4082, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "ALAT MUSIK TRADISIONAL/DAERAH", + ], + [ + "id_aset" => 4083, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "ALAT MUSIK MODERN/BAND", + ], + [ + "id_aset" => 4084, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ALAT MUSIK LAINNYA", + ], + [ + "id_aset" => 4085, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "LUKISAN", + ], + [ + "id_aset" => 4086, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "LUKISAN CAT AIR", + ], + [ + "id_aset" => 4087, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "SULAMAN / TEMPELAN", + ], + [ + "id_aset" => 4088, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "LUKISAN CAT MINYAK", + ], + [ + "id_aset" => 4089, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "LUKISAN BULU", + ], + [ + "id_aset" => 4090, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "SENI RELIEF", + ], + [ + "id_aset" => 4091, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "LUKISAN LAINNYA", + ], + [ + "id_aset" => 4092, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "ALAT PERAGA KESENIAN", + ], + [ + "id_aset" => 4093, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "WAYANG GOLEK", + ], + [ + "id_aset" => 4094, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "WAYANG KULIT", + ], + [ + "id_aset" => 4095, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "ALAT PERAGA KESENIAN LAINNYA", + ], + [ + "id_aset" => 4096, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "BARANG BERCORAK KESENIAN LAINNYA", + ], + [ + "id_aset" => 4097, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "BARANG BERCORAK KESENIAN LAINNYA", + ], + [ + "id_aset" => 4098, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BERCORAK KEBUDAYAAN", + ], + [ + "id_aset" => 4099, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "PAHATAN", + ], + [ + "id_aset" => 4100, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PAHATAN BATU", + ], + [ + "id_aset" => 4101, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "PAHATAN KAYU", + ], + [ + "id_aset" => 4102, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PAHATAN LOGAM", + ], + [ + "id_aset" => 4103, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "PAHATAN LAINNYA", + ], + [ + "id_aset" => 4104, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => '\"MAKET', + ], + [ + "id_aset" => 4105, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "MAKET/MINIATUR/REPLIKA", + ], + [ + "id_aset" => 4106, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "FOTO DOKUMEN", + ], + [ + "id_aset" => 4107, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "NASKAH KUNO", + ], + [ + "id_aset" => 4108, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "004", + "nama" => "MATA UANG/ NUMISMATIK", + ], + [ + "id_aset" => 4109, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "005", + "nama" => "PERHIASAN", + ], + [ + "id_aset" => 4110, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "006", + "nama" => "BARANG KERAMIK/ GERABAH", + ], + [ + "id_aset" => 4111, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "007", + "nama" => "ARCA/ PATUNG", + ], + [ + "id_aset" => 4112, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "008", + "nama" => "BENDA KUNO/ UNIK", + ], + [ + "id_aset" => 4113, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "009", + "nama" => "FOSIL", + ], + [ + "id_aset" => 4114, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "010", + "nama" => "MUMY", + ], + [ + "id_aset" => 4115, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "MAKET DAN FOTO DOKUMEN LAINNYA", + ], + [ + "id_aset" => 4116, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "ALAT BERCORAK KEBUDAYAAN LAINNYA", + ], + [ + "id_aset" => 4117, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "ALAT BERCORAK KEBUDAYAAN LAINNYA", + ], + [ + "id_aset" => 4118, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANDA PENGHARGAAN BIDANG OLAH RAGA", + ], + [ + "id_aset" => 4119, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANDA PENGHARGAAN", + ], + [ + "id_aset" => 4120, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PIALA", + ], + [ + "id_aset" => 4121, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "MEDALI", + ], + [ + "id_aset" => 4122, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PIAGAM", + ], + [ + "id_aset" => 4123, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANDA PENGHARGAAN LAINNYA", + ], + [ + "id_aset" => 4124, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "TANDA PENGHARGAAN BIDANG OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 4125, + "golongan" => "6", + "bidang" => "02", + "kelompok" => "03", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "TANDA PENGHARGAAN BIDANG OLAH RAGA LAINNYA", + ], + [ + "id_aset" => 4126, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN", + ], + [ + "id_aset" => 4127, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN PIARAAN", + ], + [ + "id_aset" => 4128, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN PENGAMAN", + ], + [ + "id_aset" => 4129, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "ANJING PELACAK", + ], + [ + "id_aset" => 4130, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "ANJING PENJAGA", + ], + [ + "id_aset" => 4131, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "HEWAN PENGAMAN LAINNYA", + ], + [ + "id_aset" => 4132, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN PENGANGKUT", + ], + [ + "id_aset" => 4133, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "GAJAH", + ], + [ + "id_aset" => 4134, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "KUDA (HEWAN PENGANGKUT)", + ], + [ + "id_aset" => 4135, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "HEWAN PENGANGKUT LAINNYA", + ], + [ + "id_aset" => 4136, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN PIARAAN LAINNYA", + ], + [ + "id_aset" => 4137, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "01", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "HEWAN PIARAAN LAINNYA", + ], + [ + "id_aset" => 4138, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TERNAK", + ], + [ + "id_aset" => 4139, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TERNAK POTONG", + ], + [ + "id_aset" => 4140, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BABI", + ], + [ + "id_aset" => 4141, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "DOMBA", + ], + [ + "id_aset" => 4142, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "KAMBING", + ], + [ + "id_aset" => 4143, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "KERBAU", + ], + [ + "id_aset" => 4144, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "SAPI POTONG", + ], + [ + "id_aset" => 4145, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TERNAK POTONG LAINNYA", + ], + [ + "id_aset" => 4146, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "000", + "nama" => "TERNAK PERAH", + ], + [ + "id_aset" => 4147, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "001", + "nama" => "SAPI PERAH", + ], + [ + "id_aset" => 4148, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "002", + "nama" => "DOMBA PERAH", + ], + [ + "id_aset" => 4149, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "003", + "nama" => "KAMBING PERAH", + ], + [ + "id_aset" => 4150, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "02", + "sub_sub_kelompok" => "999", + "nama" => "TERNAK PERAH LAINNYA", + ], + [ + "id_aset" => 4151, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "000", + "nama" => "TERNAK UNGGAS", + ], + [ + "id_aset" => 4152, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "001", + "nama" => "AYAM", + ], + [ + "id_aset" => 4153, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "002", + "nama" => "BURUNG", + ], + [ + "id_aset" => 4154, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "003", + "nama" => "ITIK", + ], + [ + "id_aset" => 4155, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "03", + "sub_sub_kelompok" => "999", + "nama" => "TERNAK UNGGAS LAINNYA", + ], + [ + "id_aset" => 4156, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "000", + "nama" => "TERNAK LAINNYA", + ], + [ + "id_aset" => 4157, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "02", + "sub_kelompok" => "99", + "sub_sub_kelompok" => "999", + "nama" => "TERNAK LAINNYA", + ], + [ + "id_aset" => 4158, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN LAINNYA", + ], + [ + "id_aset" => 4159, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "HEWAN LAINNYA", + ], + [ + "id_aset" => 4160, + "golongan" => "6", + "bidang" => "03", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "HEWAN LAINNYA", + ], + [ + "id_aset" => 4161, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "IKAN", + ], + [ + "id_aset" => 4162, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "IKAN BERSIRIP (PISCES/IKAN BERSIRIP)", + ], + [ + "id_aset" => 4163, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "IKAN BUDIDAYA", + ], + [ + "id_aset" => 4164, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "IKAN AIR TAWAR BUDIDAYA", + ], + [ + "id_aset" => 4165, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "IKAN AIR LAUT BUDIDAYA", + ], + [ + "id_aset" => 4166, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "IKAN AIR PAYAU BUDIDAYA", + ], + [ + "id_aset" => 4167, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "IKAN HIAS AIR TAWAR BUDIDAYA", + ], + [ + "id_aset" => 4168, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "IKAN HIAS AIR PAYAU/LAUT BUDIDAYA", + ], + [ + "id_aset" => 4169, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "IKAN BUDIDAYA LAINNYA", + ], + [ + "id_aset" => 4170, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"CRUSTEA (UDANG', + ], + [ + "id_aset" => 4171, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => '\"CRUSTEA BUDIDAYA (UDANG', + ], + [ + "id_aset" => 4172, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "UDANG", + ], + [ + "id_aset" => 4173, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "RAJUNGAN", + ], + [ + "id_aset" => 4174, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "KEPITING", + ], + [ + "id_aset" => 4175, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "02", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => '\"CRUSTEA (UDANG', + ], + [ + "id_aset" => 4176, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"MOLLUSCA (KERANG', + ], + [ + "id_aset" => 4177, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => '\"MOLLUSCA BUDIDAYA (KERANG', + ], + [ + "id_aset" => 4178, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "KERANG", + ], + [ + "id_aset" => 4179, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TIRAM", + ], + [ + "id_aset" => 4180, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "CUMI-CUMI", + ], + [ + "id_aset" => 4181, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "GURITA", + ], + [ + "id_aset" => 4182, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "SIPUT", + ], + [ + "id_aset" => 4183, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "03", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => '\"MOLLUSCA (KERANG', + ], + [ + "id_aset" => 4184, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "COELENTERATA (UBUR-UBUR DAN SEBANGSANYA)", + ], + [ + "id_aset" => 4185, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "COELENTERATA BUDIDAYA (UBUR-UBUR DAN SEBANGSANYA)", + ], + [ + "id_aset" => 4186, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "UBUR-UBUR BUDIDAYA", + ], + [ + "id_aset" => 4187, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "04", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "COELENTERATA (UBUR-UBUR DAN SEBANGSANYA) LAINNYA", + ], + [ + "id_aset" => 4188, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "05", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"ECHINODERMATA (TRIPANG', + ], + [ + "id_aset" => 4189, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => '\"ECHINODERMATA BUDIDAYA (TRIPANG', + ], + [ + "id_aset" => 4190, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TERIPANG", + ], + [ + "id_aset" => 4191, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "BULU BABI", + ], + [ + "id_aset" => 4192, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "05", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => '\"ECHINODERMATA (TRIPANG', + ], + [ + "id_aset" => 4193, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "06", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "AMPHIBIA (KODOK DAN SEBANGSANYA)", + ], + [ + "id_aset" => 4194, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "AMPHIBIA BUDIDAYA (KODOK DAN SEBANGSANYA)", + ], + [ + "id_aset" => 4195, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "KODOK", + ], + [ + "id_aset" => 4196, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "SEBANGSA KODOK", + ], + [ + "id_aset" => 4197, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "06", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "AMPHIBIA (KODOK DAN SEBANGSANYA) LAINNYA", + ], + [ + "id_aset" => 4198, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"REPTILIA (BUAYA', + ], + [ + "id_aset" => 4199, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => '\"REPTILIA BUDIDAYA (BUAYA', + ], + [ + "id_aset" => 4200, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PENYU", + ], + [ + "id_aset" => 4201, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "KURA-KURA", + ], + [ + "id_aset" => 4202, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "BIAWAK", + ], + [ + "id_aset" => 4203, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "ULAR AIR", + ], + [ + "id_aset" => 4204, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "07", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => '\"REPTILIA (BUAYA', + ], + [ + "id_aset" => 4205, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => '\"MAMMALIA (PAUS', + ], + [ + "id_aset" => 4206, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => '\"MAMMALIA BUDIDAYA (PAUS', + ], + [ + "id_aset" => 4207, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "PAUS", + ], + [ + "id_aset" => 4208, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "LUMBA-LUMBA", + ], + [ + "id_aset" => 4209, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "PESUT", + ], + [ + "id_aset" => 4210, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "DUYUNG", + ], + [ + "id_aset" => 4211, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "08", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => '\"MAMMALIA (PAUS', + ], + [ + "id_aset" => 4212, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "09", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => + "ALGAE (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR)", + ], + [ + "id_aset" => 4213, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => + "ALGAE BUDIDAYA (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR)", + ], + [ + "id_aset" => 4214, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "RUMPUT LAUT", + ], + [ + "id_aset" => 4215, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR", + ], + [ + "id_aset" => 4216, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "09", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => + "ALGAE (RUMPUT LAUT DAN TUMBUH-TUMBUHAN LAIN YANG HIDUP DI DALAM AIR) LAINNYA", + ], + [ + "id_aset" => 4217, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "10", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "BIOTA PERAIRAN LAINNYA", + ], + [ + "id_aset" => 4218, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "10", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "BUDIDAYA BIOTA PERAIRAN LAINNYA", + ], + [ + "id_aset" => 4219, + "golongan" => "6", + "bidang" => "04", + "kelompok" => "10", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "BIOTA PERAIRAN LAINNYA", + ], + [ + "id_aset" => 4220, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAMAN", + ], + [ + "id_aset" => 4221, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "TANAMAN", + ], + [ + "id_aset" => 4222, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "TANAMAN", + ], + [ + "id_aset" => 4223, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAMAN KERAS", + ], + [ + "id_aset" => 4224, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "TANAMAN INDUSTRI", + ], + [ + "id_aset" => 4225, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "TANAMAN PERKEBUNAN", + ], + [ + "id_aset" => 4226, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => "TANAMAN HORTIKULTURA", + ], + [ + "id_aset" => 4227, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "TANAMAN PANGAN", + ], + [ + "id_aset" => 4228, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "006", + "nama" => "TANAMAN HIAS", + ], + [ + "id_aset" => 4229, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "007", + "nama" => "TANAMAN OBAT", + ], + [ + "id_aset" => 4230, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "008", + "nama" => "TANAMAN PLASMA", + ], + [ + "id_aset" => 4231, + "golongan" => "6", + "bidang" => "05", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "TANAMAN LAINNYA", + ], + [ + "id_aset" => 4232, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ASET TETAP DALAM RENOVASI", + ], + [ + "id_aset" => 4233, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "ASET TETAP DALAM RENOVASI", + ], + [ + "id_aset" => 4234, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "ASET TETAP DALAM RENOVASI", + ], + [ + "id_aset" => 4235, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH DALAM RENOVASI", + ], + [ + "id_aset" => 4236, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN DAN MESIN DALAM RENOVASI", + ], + [ + "id_aset" => 4237, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG DAN BANGUNAN DALAM RENOVASI", + ], + [ + "id_aset" => 4238, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => '\"JALAN', + ], + [ + "id_aset" => 4239, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "ASET TETAP LAINNYA DALAM RENOVASI", + ], + [ + "id_aset" => 4240, + "golongan" => "6", + "bidang" => "06", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "ASET TETAP DALAM RENOVASI LAINNYA", + ], + [ + "id_aset" => 4241, + "golongan" => "7", + "bidang" => "00", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "KONSTRUKSI DALAM PENGERJAAN", + ], + [ + "id_aset" => 4242, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "00", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "KONSTRUKSI DALAM PENGERJAAN", + ], + [ + "id_aset" => 4243, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "00", + "sub_sub_kelompok" => "000", + "nama" => "KONSTRUKSI DALAM PENGERJAAN", + ], + [ + "id_aset" => 4244, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "000", + "nama" => "KONSTRUKSI DALAM PENGERJAAN", + ], + [ + "id_aset" => 4245, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "001", + "nama" => "TANAH DALAM PENGERJAAN", + ], + [ + "id_aset" => 4246, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "002", + "nama" => "PERALATAN DAN MESIN DALAM PENGERJAAN", + ], + [ + "id_aset" => 4247, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "003", + "nama" => "GEDUNG DAN BANGUNAN DALAM PENGERJAAN", + ], + [ + "id_aset" => 4248, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "004", + "nama" => '\"JALAN', + ], + [ + "id_aset" => 4249, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "005", + "nama" => "ASET TETAP LAINNYA DALAM PENGERJAAN", + ], + [ + "id_aset" => 4250, + "golongan" => "7", + "bidang" => "01", + "kelompok" => "01", + "sub_kelompok" => "01", + "sub_sub_kelompok" => "999", + "nama" => "KONSTRUKSI DALAM PENGERJAAN LAINNYA", + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_buku_admin() + { + DB::statement(" + CREATE TABLE `kader_pemberdayaan_masyarakat` ( + `id` int(12) unsigned NOT NULL AUTO_INCREMENT, + `penduduk_id` int(12) NOT NULL, + `kursus` text DEFAULT NULL, + `bidang` text DEFAULT NULL, + `keterangan` text DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_keuangan() + { + DB::statement(" + CREATE TABLE `keuangan_manual_ref_bidang` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Kd_Bid` varchar(50) NOT NULL, + `Nama_Bidang` varchar(250) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("keuangan_manual_ref_bidang")->insert([ + [ + "id" => 1, + "Kd_Bid" => "00.0000.01", + "Nama_Bidang" => "BIDANG PENYELENGGARAN PEMERINTAHAN DESA", + ], + [ + "id" => 2, + "Kd_Bid" => "00.0000.02", + "Nama_Bidang" => "BIDANG PELAKSANAAN PEMBANGUNAN DESA", + ], + [ + "id" => 3, + "Kd_Bid" => "00.0000.03", + "Nama_Bidang" => "BIDANG PEMBINAAN KEMASYARAKATAN", + ], + [ + "id" => 4, + "Kd_Bid" => "00.0000.04", + "Nama_Bidang" => "BIDANG PEMBERDAYAAN MASYARAKAT", + ], + [ + "id" => 5, + "Kd_Bid" => "00.0000.05", + "Nama_Bidang" => + "BIDANG PENANGGULANGAN BENCANA, DARURAT DAN MENDESAK DESA", + ], + ]); + + DB::statement(" + CREATE TABLE `keuangan_manual_ref_kegiatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ID_Keg` varchar(100) NOT NULL, + `Nama_Kegiatan` varchar(250) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("keuangan_manual_ref_kegiatan")->insert([ + [ + "id" => 1, + "ID_Keg" => "01.01.01.", + "Nama_Kegiatan" => + "Penyediaan Penghasilan Tetap dan Tunjangan Kepala Desa", + ], + [ + "id" => 2, + "ID_Keg" => "01.01.02.", + "Nama_Kegiatan" => + "Penyediaan Penghasilan Tetap dan Tunjangan Perangkat Desa", + ], + [ + "id" => 3, + "ID_Keg" => "01.01.03.", + "Nama_Kegiatan" => + "Penyediaan Jaminan Sosial bagi Kepala Desa dan Perangkat Desa", + ], + [ + "id" => 4, + "ID_Keg" => "01.01.04.", + "Nama_Kegiatan" => + "Penyediaan Operasional Pemerintah Desa (ATK, Honor PKPKD dan PPKD dll)", + ], + [ + "id" => 5, + "ID_Keg" => "01.01.05.", + "Nama_Kegiatan" => "Penyediaan Tunjangan BPD", + ], + [ + "id" => 6, + "ID_Keg" => "01.01.06.", + "Nama_Kegiatan" => + "Penyediaan Operasional BPD (rapat, ATK, Makan Minum, Pakaian Seragam, Listrik dll)", + ], + [ + "id" => 7, + "ID_Keg" => "01.01.07.", + "Nama_Kegiatan" => "Penyediaan Insentif/Operasional RT/RW", + ], + [ + "id" => 8, + "ID_Keg" => "01.01.92", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Siltap dan Operasional Pemerintahan Desa", + ], + [ + "id" => 9, + "ID_Keg" => "01.02.01.", + "Nama_Kegiatan" => + "Penyediaan Sarana (Aset Tetap) Perkantoran/Pemerintahan", + ], + [ + "id" => 10, + "ID_Keg" => "01.02.02.", + "Nama_Kegiatan" => "Pemeliharaan Gedung/Prasarana Kantor Desa", + ], + [ + "id" => 11, + "ID_Keg" => "01.02.03.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Gedung/Prasarana Kantor Desa **)", + ], + [ + "id" => 12, + "ID_Keg" => "01.02.90", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Sarana Prasarana Pemerintahan Desa", + ], + [ + "id" => 13, + "ID_Keg" => "01.03.01.", + "Nama_Kegiatan" => + "Pelayanan Administrasi Umum dan Kependudukan", + ], + [ + "id" => 14, + "ID_Keg" => "01.03.02.", + "Nama_Kegiatan" => + "Penyusunan, Pendataan, dan Pemutakhiran Profil Desa **)", + ], + [ + "id" => 15, + "ID_Keg" => "01.03.03.", + "Nama_Kegiatan" => + "Pengelolaan Adminstrasi dan Kearsipan Pemerintahan Desa", + ], + [ + "id" => 16, + "ID_Keg" => "01.03.04.", + "Nama_Kegiatan" => + "Penyuluhan dan Penyadaran Masyarakat tentang Kependudukan dan Capil", + ], + [ + "id" => 17, + "ID_Keg" => "01.03.05.", + "Nama_Kegiatan" => + "Pemetaan dan Analisis Kemiskinan Desa secara Partisipatif", + ], + [ + "id" => 18, + "ID_Keg" => "01.03.90", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Administrasi Kependudukan, Capil, Statistik dan Kearsipan", + ], + [ + "id" => 19, + "ID_Keg" => "01.04.01.", + "Nama_Kegiatan" => + "Penyelenggaraan Musyawarah Perencanaan Desa/Pembahasan APBDes (Reguler)", + ], + [ + "id" => 20, + "ID_Keg" => "01.04.02.", + "Nama_Kegiatan" => + "Penyelenggaraan Musyawaran Desa Lainnya (Musdus, rembug desa Non Reguler)", + ], + [ + "id" => 21, + "ID_Keg" => "01.04.03.", + "Nama_Kegiatan" => + "Penyusunan Dokumen Perencanaan Desa (RPJMDesa/RKPDesa dll)", + ], + [ + "id" => 22, + "ID_Keg" => "01.04.04.", + "Nama_Kegiatan" => + "Penyusunan Dokumen Keuangan Desa (APBDes, APBDes Perubahan, LPJ dll)", + ], + [ + "id" => 23, + "ID_Keg" => "01.04.05.", + "Nama_Kegiatan" => + "Pengelolaan Administrasi/ Inventarisasi/Penilaian Aset Desa", + ], + [ + "id" => 24, + "ID_Keg" => "01.04.06.", + "Nama_Kegiatan" => + "Penyusunan Kebijakan Desa (Perdes/Perkades selain Perencanaan/Keuangan)", + ], + [ + "id" => 25, + "ID_Keg" => "01.04.07.", + "Nama_Kegiatan" => + "Penyusunan Laporan Kepala Desa, LPPDesa dan Informasi Kepada Masyarakat", + ], + [ + "id" => 26, + "ID_Keg" => "01.04.08.", + "Nama_Kegiatan" => "Pengembangan Sistem Informasi Desa", + ], + [ + "id" => 27, + "ID_Keg" => "01.04.09.", + "Nama_Kegiatan" => + "Koordinasi/Kerjasama Penyelenggaraan Pemerintahan & Pembangunan Desa", + ], + [ + "id" => 28, + "ID_Keg" => "01.04.10.", + "Nama_Kegiatan" => + "Dukungan & Sosialisasi Pelaksanaan Pilkades, Pemilihan Ka. Kewilayahan & BPD", + ], + [ + "id" => 29, + "ID_Keg" => "01.04.11.", + "Nama_Kegiatan" => + "Penyelenggaran Lomba antar Kewilayahan & Pengiriman Kontingen dlm Lomdes", + ], + [ + "id" => 30, + "ID_Keg" => "01.04.97", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Tata Praja Pemerintahan, Perencanaan, Keuangan & Pelaporan", + ], + [ + "id" => 31, + "ID_Keg" => "01.05.01.", + "Nama_Kegiatan" => "Sertifikasi Tanah Kas Desa", + ], + [ + "id" => 32, + "ID_Keg" => "01.05.02.", + "Nama_Kegiatan" => + "Administrasi Pertanahan (Pendaftaran Tanah dan Pemberian Registrasi Agenda Pertanahan)", + ], + [ + "id" => 33, + "ID_Keg" => "01.05.03.", + "Nama_Kegiatan" => + "Fasilitasi Sertifikasi Tanah untuk Masyarakat Miskin", + ], + [ + "id" => 34, + "ID_Keg" => "01.05.04.", + "Nama_Kegiatan" => "Kegiatan Mediasi Konflik Pertanahan", + ], + [ + "id" => 35, + "ID_Keg" => "01.05.05.", + "Nama_Kegiatan" => "Kegiatan Penyuluhan Pertanahan", + ], + [ + "id" => 36, + "ID_Keg" => "01.05.06.", + "Nama_Kegiatan" => "Adminstrasi Pajak Bumi dan Bangunan (PBB)", + ], + [ + "id" => 37, + "ID_Keg" => "01.05.07.", + "Nama_Kegiatan" => + "Penentuan/Penegasan Batas/patok Tanah Kas Desa", + ], + [ + "id" => 38, + "ID_Keg" => "01.05.94", + "Nama_Kegiatan" => "Lain-lain Sub Bidang Pertanahan", + ], + [ + "id" => 39, + "ID_Keg" => "02.01.01", + "Nama_Kegiatan" => + "Penyelenggaran PAUD/TK/TPA/TKA/TPQ/Madrasah NonFormal Milik Desa (Honor, Pakaian dll)", + ], + [ + "id" => 40, + "ID_Keg" => "02.01.02.", + "Nama_Kegiatan" => + "Dukungan Penyelenggaran PAUD (APE, Sarana PAUD dst)", + ], + [ + "id" => 41, + "ID_Keg" => "02.01.03.", + "Nama_Kegiatan" => + "Penyuluhan dan Pelatihan Pendidikan Bagi Masyarakat", + ], + [ + "id" => 42, + "ID_Keg" => "02.01.04.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana Prasarana Perpustakaan/Taman Bacaan/Sanggar Belajar Milik Desa", + ], + [ + "id" => 43, + "ID_Keg" => "02.01.05.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana Prasarana PAUD/TK/TPA/TKA/TPQ/Madrasah Nonformal Milik Desa", + ], + [ + "id" => 44, + "ID_Keg" => "02.01.08.", + "Nama_Kegiatan" => + "Pengelolaan Perpustakaan Milik Desa (Pengadaan Buku, Honor, Taman Baca)", + ], + [ + "id" => 45, + "ID_Keg" => "02.01.09.", + "Nama_Kegiatan" => + "Pengembangan dan Pembinaan Sanggar Seni dan Belajar", + ], + [ + "id" => 46, + "ID_Keg" => "02.01.10.", + "Nama_Kegiatan" => + "Dukungan Pendidikan bagi Siswa Miskin/Berprestasi", + ], + [ + "id" => 47, + "ID_Keg" => "02.01.92", + "Nama_Kegiatan" => "Lain-lain Kegiatan Sub Bidang Pendidikan", + ], + [ + "id" => 48, + "ID_Keg" => "02.02.01.", + "Nama_Kegiatan" => + "Penyelenggaraan Pos Kesehatan Desa/Polindes Milik Desa (obat, Insentif, KB, dsb)", + ], + [ + "id" => 49, + "ID_Keg" => "02.02.02.", + "Nama_Kegiatan" => + "Penyelenggaraan Posyandu (Mkn Tambahan, Kls Bumil, Lamsia, Insentif)", + ], + [ + "id" => 50, + "ID_Keg" => "02.02.03.", + "Nama_Kegiatan" => + "Penyuluhan dan Pelatihan Bidang Kesehatan (Untuk Masy, Tenaga dan Kader Kesehatan dll)", + ], + [ + "id" => 51, + "ID_Keg" => "02.02.04.", + "Nama_Kegiatan" => "Penyelenggaraan Desa Siaga Kesehatan", + ], + [ + "id" => 52, + "ID_Keg" => "02.02.05.", + "Nama_Kegiatan" => + "Pembinaan Palang Merah Remaja (PMR) Tingkat Desa", + ], + [ + "id" => 53, + "ID_Keg" => "02.02.06.", + "Nama_Kegiatan" => + "Pengasuhan Bersama atau Bina Keluarga Balita (BKB)", + ], + [ + "id" => 54, + "ID_Keg" => "02.02.07.", + "Nama_Kegiatan" => + "Pembinaan dan Pengawasan Upaya Kesehatan Tradisional", + ], + [ + "id" => 55, + "ID_Keg" => "02.02.08.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana Prasarana Posyandu/Polindes/PKD", + ], + [ + "id" => 56, + "ID_Keg" => "02.03.01.", + "Nama_Kegiatan" => "Pemeliharaan Jalan Desa", + ], + [ + "id" => 57, + "ID_Keg" => "02.03.02.", + "Nama_Kegiatan" => + "Pemeliharaan Jalan Lingkungan Pemukiman/Gang", + ], + [ + "id" => 58, + "ID_Keg" => "02.03.03.", + "Nama_Kegiatan" => "Pemeliharaan Jalan Usaha Tani", + ], + [ + "id" => 59, + "ID_Keg" => "02.03.04.", + "Nama_Kegiatan" => "Pemeliharaan Jembatan Desa", + ], + [ + "id" => 60, + "ID_Keg" => "02.03.05.", + "Nama_Kegiatan" => + "Pemeliharaan Prasarana Jalan Desa (Gorong-gorong/Selokan/Parit/Drainase dll)", + ], + [ + "id" => 61, + "ID_Keg" => "02.03.06.", + "Nama_Kegiatan" => + "Pemeliharaan Gedung/Prasarana Balai Desa/Balai Kemasyarakatan", + ], + [ + "id" => 62, + "ID_Keg" => "02.03.07.", + "Nama_Kegiatan" => + "Pemeliharaan Pemakaman /Situs Bersejarah/Petilasan Milik Desa", + ], + [ + "id" => 63, + "ID_Keg" => "02.03.08.", + "Nama_Kegiatan" => "Pemeliharaan Embung Milik Desa", + ], + [ + "id" => 64, + "ID_Keg" => "02.03.09.", + "Nama_Kegiatan" => "Pemelharaan Monumen/Gapura/Batas Desa", + ], + [ + "id" => 65, + "ID_Keg" => "02.03.10.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitas/Peningkatan/Pengerasan Jalan Desa **)", + ], + [ + "id" => 66, + "ID_Keg" => "02.03.12.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan/Pengerasan Jalan Usaha Tani **)", + ], + [ + "id" => 67, + "ID_Keg" => "02.03.13.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan/Pengerasan Jembatan Milik Desa **)", + ], + [ + "id" => 68, + "ID_Keg" => "02.03.14.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Prasarana Jalan Desa (Gorong, selokan dll)", + ], + [ + "id" => 69, + "ID_Keg" => "02.03.15.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Balai Desa/Balai Kemasyarakatan **)", + ], + [ + "id" => 70, + "ID_Keg" => "02.03.17.", + "Nama_Kegiatan" => + "Pembuatan/Pemutakhiran Peta Wilayah dan Sosial Desa **)", + ], + [ + "id" => 71, + "ID_Keg" => "02.03.18.", + "Nama_Kegiatan" => + "Penyusunan Dokumen Perencanaan Tata Ruang Desa", + ], + [ + "id" => 72, + "ID_Keg" => "02.03.19.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Embung Desa **)", + ], + [ + "id" => 73, + "ID_Keg" => "02.03.20.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Monumen/Gapura/Batas Desa **)", + ], + [ + "id" => 74, + "ID_Keg" => "02.04.01.", + "Nama_Kegiatan" => + "Dukungan Pelaksanaan Program Pembangunan/Rehab Rumah Tidak Layak Huni GAKIN", + ], + [ + "id" => 75, + "ID_Keg" => "02.04.90", + "Nama_Kegiatan" => + "Dukungan Pelaksanaan Program Jambanisasi untuk Keluarga Miskin", + ], + [ + "id" => 76, + "ID_Keg" => "02.04.02.", + "Nama_Kegiatan" => "Pemeliharaan Sumur Resapan Milik Desa", + ], + [ + "id" => 77, + "ID_Keg" => "02.04.03.", + "Nama_Kegiatan" => + "Pemeliharaan Sumber Air Bersih Milik Desa (Mata Air, Penampung Air, Sumur Bor dll)", + ], + [ + "id" => 78, + "ID_Keg" => "02.04.04.", + "Nama_Kegiatan" => + "Pemeliharaan Sambungan Air Bersih ke Rumah Tangga (Pipanisasi dll)", + ], + [ + "id" => 79, + "ID_Keg" => "02.04.05.", + "Nama_Kegiatan" => + "Pemeliharaan Sanitasi Pemukiman (Gorong-gorong, Selokan, Parit diluar Prasarana Jalan))", + ], + [ + "id" => 80, + "ID_Keg" => "02.04.06.", + "Nama_Kegiatan" => + "Pemeliharaan Fasilitas Jamban Umum/MCK Umum dll", + ], + [ + "id" => 81, + "ID_Keg" => "02.04.08.", + "Nama_Kegiatan" => + "Pemeliharaan Sistem Pembuangan Air Limbah (Drainase, Air limbah Rumah Tangga)", + ], + [ + "id" => 82, + "ID_Keg" => "02.04.09.", + "Nama_Kegiatan" => + "Pemeliharaan Taman/Taman Bermain Anak Milik Desa", + ], + [ + "id" => 83, + "ID_Keg" => "02.04.10.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sumur Resapan **)", + ], + [ + "id" => 84, + "ID_Keg" => "02.04.11.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sumber Air Bersih Milik Desa **)", + ], + [ + "id" => 85, + "ID_Keg" => "02.04.12.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sambungan Air Bersih ke Rumah Tangga **)", + ], + [ + "id" => 86, + "ID_Keg" => "02.04.13.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sanitasi Permukiman **)", + ], + [ + "id" => 87, + "ID_Keg" => "02.04.14.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitas/Peningkatan Fasilitas Jamban Umum/MCK umum, dll **)", + ], + [ + "id" => 88, + "ID_Keg" => "02.04.15.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Fasilitas Pengelolaan Sampah **)", + ], + [ + "id" => 89, + "ID_Keg" => "02.04.16.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sistem Pembuangan Air Limbah **)", + ], + [ + "id" => 90, + "ID_Keg" => "02.04.17.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Taman/Taman Bermain Anak Milik Desa **)", + ], + [ + "id" => 91, + "ID_Keg" => "02.04.94", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Perumahan Rakyat dan Kawasan Pemukiman", + ], + [ + "id" => 92, + "ID_Keg" => "02.05.01.", + "Nama_Kegiatan" => "Pengelolaan Hutan Milik Desa", + ], + [ + "id" => 93, + "ID_Keg" => "02.05.02.", + "Nama_Kegiatan" => "Pengelolaan Lingkungan Hidup Milik Desa", + ], + [ + "id" => 94, + "ID_Keg" => "02.05.92", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Kehutanan dan Lingkungan Hidup", + ], + [ + "id" => 95, + "ID_Keg" => "02.06.01.", + "Nama_Kegiatan" => "Pembuatan Rambu-rambu di Jalan Desa", + ], + [ + "id" => 96, + "ID_Keg" => "02.06.02.", + "Nama_Kegiatan" => + "Penyelenggaraan Informasi Publik Desa (Poster, Baliho Dll)", + ], + [ + "id" => 97, + "ID_Keg" => "02.06.03.", + "Nama_Kegiatan" => + "Pembuatan dan Pengelolaan Jaringan/Instalasi Komunikasi dan Informasi Lokal Desa", + ], + [ + "id" => 98, + "ID_Keg" => "02.06.92", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Perhubungan, Komunikasi dan Informatika", + ], + [ + "id" => 99, + "ID_Keg" => "02.07.01.", + "Nama_Kegiatan" => + "Pemeiliharaan Sarana dan Prasarana Energi Alternatif Desa", + ], + [ + "id" => 100, + "ID_Keg" => "02.07.02.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sarana & Prasarana Energi Alternatif Desa", + ], + [ + "id" => 101, + "ID_Keg" => "02.07.93", + "Nama_Kegiatan" => + "Pembangunan/pengadaan instalasi biogas/mesin pakan ternak/kandang ternak**", + ], + [ + "id" => 102, + "ID_Keg" => "02.08.01.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana dan Prasarana Pariwisata Milik Desa", + ], + [ + "id" => 103, + "ID_Keg" => "02.08.02.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sarana dan Prasarana Pariwisata Milik **)", + ], + [ + "id" => 104, + "ID_Keg" => "02.08.03.", + "Nama_Kegiatan" => "Pengembangan Pariwisata Tingkat Desa", + ], + [ + "id" => 105, + "ID_Keg" => "02.08.91", + "Nama_Kegiatan" => "Lain-Lain Kegiatan Sub Bidang Pariwisata", + ], + [ + "id" => 106, + "ID_Keg" => "03.01.01.", + "Nama_Kegiatan" => "Pengadaan/Penyelenggaran Pos Keamanan Desa", + ], + [ + "id" => 107, + "ID_Keg" => "03.01.02.", + "Nama_Kegiatan" => + "Penguatan & Peningkatan Kapasitas Tenaga Keamanan/Ketertiban oleh Pemdes", + ], + [ + "id" => 108, + "ID_Keg" => "03.01.03.", + "Nama_Kegiatan" => + "Koordinasi Pembinaan Keamanan, Ketertiban & Perlindungan Masy. Skala Lokal Desa", + ], + [ + "id" => 109, + "ID_Keg" => "03.01.04.", + "Nama_Kegiatan" => + "Persiapan Kesiapsiagaan/Tanggap Bencana Skala Lokal Desa", + ], + [ + "id" => 110, + "ID_Keg" => "03.01.05.", + "Nama_Kegiatan" => + "Penyediaan Pos Kesiapsiagaan Bencana Skala Lokal Desa", + ], + [ + "id" => 111, + "ID_Keg" => "03.01.06.", + "Nama_Kegiatan" => + "Bantuan Hukum Untuk Aparatur Desa dan Masyarakat Miskin", + ], + [ + "id" => 112, + "ID_Keg" => "03.01.92", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Ketenteraman, Ketertiban Umum dan Perlindungan Masyarakat", + ], + [ + "id" => 113, + "ID_Keg" => "03.02.01.", + "Nama_Kegiatan" => + "Pembinaan Group Kesenian dan Kebudayaan Tingkat Desa", + ], + [ + "id" => 114, + "ID_Keg" => "03.02.02.", + "Nama_Kegiatan" => + "Pengiriman Kontingen Group Kesenian & Kebudayaan (Wakil Desa tkt. Kec/Kab/Kot)", + ], + [ + "id" => 115, + "ID_Keg" => "03.02.03.", + "Nama_Kegiatan" => + "Penyelenggaran Festival Kesenian, Adat/Kebudayaan, dan Kegamaan (HUT RI, Raya Keagamaan dll)", + ], + [ + "id" => 116, + "ID_Keg" => "03.02.04.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana Prasarana Kebudayaan, Rumah Adat dan Kegamaan Milik Desa", + ], + [ + "id" => 117, + "ID_Keg" => "03.02.05.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi Sarana Prasarana Kebudayaan/Rumah Adat/Kegamaan Milik Desa **)", + ], + [ + "id" => 118, + "ID_Keg" => "03.02.95", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Kebudayaan dan Keagamaan", + ], + [ + "id" => 119, + "ID_Keg" => "03.03.01.", + "Nama_Kegiatan" => + "Pengiriman Kontingen Kepemudaan & Olahraga Sebagai Wakil Desa tkt Kec/Kab/Kota", + ], + [ + "id" => 120, + "ID_Keg" => "03.03.02.", + "Nama_Kegiatan" => + "Penyelenggaraan Pelatihan Kepemudaan Tingkat Desa", + ], + [ + "id" => 121, + "ID_Keg" => "03.03.03.", + "Nama_Kegiatan" => + "Penyelenggaraan Festival/Lomba Kepemudaan dan Olaraga Tingkat Desa", + ], + [ + "id" => 122, + "ID_Keg" => "03.03.04.", + "Nama_Kegiatan" => + "Pemeliharaan Sarana dan Prasarana Kepemudaan dan Olahraga Milik Desa", + ], + [ + "id" => 123, + "ID_Keg" => "03.03.05.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Sarana dan Prasarana Kepemudaan & Olahraga Milik Desa", + ], + [ + "id" => 124, + "ID_Keg" => "03.03.06.", + "Nama_Kegiatan" => + "Pembinaan Karangtaruna/Klub Kepemudaan/Olahraga Tingkat Desa", + ], + [ + "id" => 125, + "ID_Keg" => "03.03.90", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Kepemudaan dan Olahraga", + ], + [ + "id" => 126, + "ID_Keg" => "03.04.01.", + "Nama_Kegiatan" => "Pembinaan Lembaga Adat", + ], + [ + "id" => 127, + "ID_Keg" => "03.04.02.", + "Nama_Kegiatan" => "Pembinaan LKMD/LPM/LPMD", + ], + [ + "id" => 128, + "ID_Keg" => "03.04.03.", + "Nama_Kegiatan" => "Pembinaan PKK", + ], + [ + "id" => 129, + "ID_Keg" => "03.04.04.", + "Nama_Kegiatan" => "Pelatihan Pembinaan Lembaga Kemasyarakatan", + ], + [ + "id" => 130, + "ID_Keg" => "03.04.92", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Kelembagaan Masyarakat", + ], + [ + "id" => 131, + "ID_Keg" => "04.01.01.", + "Nama_Kegiatan" => + "Pemeliharaan Karamba/Kolam Perikanan Darat Milik Desa", + ], + [ + "id" => 132, + "ID_Keg" => "04.01.02.", + "Nama_Kegiatan" => + "Pemeliharaan Pelabuhan Perikanan Sungai/Kecil Milik Desa", + ], + [ + "id" => 133, + "ID_Keg" => "04.01.03.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Karamba/Kolam Perikanan Darat Milik Desa", + ], + [ + "id" => 134, + "ID_Keg" => "04.01.04.", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Pelabuhan Perikanan Sungai/Kecil Milik Desa", + ], + [ + "id" => 135, + "ID_Keg" => "04.01.05.", + "Nama_Kegiatan" => "Bantuan Perikanan (Bibit/Pakan/dll)", + ], + [ + "id" => 136, + "ID_Keg" => "04.01.06.", + "Nama_Kegiatan" => + "Bimtek/Pelatihan/Pengenalan TTG untuk Perikanan Darat/Nelayan **)", + ], + [ + "id" => 137, + "ID_Keg" => "04.01.94", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Kelautan dan Perikanan", + ], + [ + "id" => 138, + "ID_Keg" => "04.02.01.", + "Nama_Kegiatan" => + "Peningkatan Produksi Tanaman Pangan (alat produksi/pengelolaan/penggilingan)", + ], + [ + "id" => 139, + "ID_Keg" => "04.02.02.", + "Nama_Kegiatan" => + "Peningkatan Produksi Peternakan (alat produksi/pengelolaan/kandang)", + ], + [ + "id" => 140, + "ID_Keg" => "04.02.03.", + "Nama_Kegiatan" => + "Penguatan Ketahanan Pangan Tingkat Desa (Lumbung Desa dll)", + ], + [ + "id" => 141, + "ID_Keg" => "04.02.04.", + "Nama_Kegiatan" => + "Pemeliharaan Saluran Irigasi Tersier/Sederhana", + ], + [ + "id" => 142, + "ID_Keg" => "04.02.05.", + "Nama_Kegiatan" => + "Pelatihan/Bimtek/Pengenalan Tekonologi Tepat Guna untuk Pertanian/Peternakan", + ], + [ + "id" => 143, + "ID_Keg" => "04.02.06", + "Nama_Kegiatan" => + "Pembangunan Saluran Irigasi Tersier/Sederhana", + ], + [ + "id" => 144, + "ID_Keg" => "04.02.94", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Pertanian dan Peternakan", + ], + [ + "id" => 145, + "ID_Keg" => "04.03.01.", + "Nama_Kegiatan" => "Peningkatan Kapasitas Kepala Desa", + ], + [ + "id" => 146, + "ID_Keg" => "04.03.02.", + "Nama_Kegiatan" => "Peningkatan Kapatitas Perangkat Desa", + ], + [ + "id" => 147, + "ID_Keg" => "04.03.03.", + "Nama_Kegiatan" => "Peningkatan Kapasitas BPD", + ], + [ + "id" => 148, + "ID_Keg" => "04.03.90", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Peningkatan Kapasitas Aparatur Desa", + ], + [ + "id" => 149, + "ID_Keg" => "04.04.01.", + "Nama_Kegiatan" => + "Pelatihan dan Penyuluhan Pemberdayaan Perempuan", + ], + [ + "id" => 150, + "ID_Keg" => "04.04.02.", + "Nama_Kegiatan" => "Pelatihan dan Penyuluhan Perlindungan Anak", + ], + [ + "id" => 151, + "ID_Keg" => "04.04.03.", + "Nama_Kegiatan" => + "Pelatihan dan Penguatan Penyandang Difable (Penyandang Disabilitas)", + ], + [ + "id" => 152, + "ID_Keg" => "04.04.94", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Pemberdayaan Perempuan, Perlindungan Anak dan Keluarga", + ], + [ + "id" => 153, + "ID_Keg" => "04.05.01.", + "Nama_Kegiatan" => "Pelatihan Manajemen Koperasi/KUD/UMKM", + ], + [ + "id" => 154, + "ID_Keg" => "04.05.02.", + "Nama_Kegiatan" => + "Pengembangan Sarana Prasarana Usaha Mikro, Kecil, Menengah dan Koperasi", + ], + [ + "id" => 155, + "ID_Keg" => "04.05.03.", + "Nama_Kegiatan" => + "Pengadaan Teknologi Tepat Guna Untuk Pengembangan Ekonomi Pedesaan Non Pertanian", + ], + [ + "id" => 156, + "ID_Keg" => "04.05.93", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Koperasi, Usaha Micro Kecil dan Menengah (UMKM)", + ], + [ + "id" => 157, + "ID_Keg" => "04.06.01.", + "Nama_Kegiatan" => + "Pembentukan BUM Desa (Persiapan dan Pembentukan Awal BUMDesa)", + ], + [ + "id" => 158, + "ID_Keg" => "04.06.02.", + "Nama_Kegiatan" => + "Pelatihan Pengelolaan BUM Desa (Pelatihan yg dilaksanakan oleh Pemdes)", + ], + [ + "id" => 159, + "ID_Keg" => "04.06.92", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Dukungan Penanaman Modal", + ], + [ + "id" => 160, + "ID_Keg" => "04.07.01.", + "Nama_Kegiatan" => "Pemeliharaan Pasar Desa/Kios Milik Desa", + ], + [ + "id" => 161, + "ID_Keg" => "04.07.02.", + "Nama_Kegiatan" => + "Pembangunan/Rehab Pasar Desa/Kios Milik Desa", + ], + [ + "id" => 162, + "ID_Keg" => "04.07.03.", + "Nama_Kegiatan" => "Pengembangan Industri Kecil Tingkat Desa", + ], + [ + "id" => 163, + "ID_Keg" => "04.07.04.", + "Nama_Kegiatan" => + "Pembentukan/Fasilitasi/Pelatihan/Pendampingan kelompok usaha ekonomi produktif", + ], + [ + "id" => 164, + "ID_Keg" => "04.07.92", + "Nama_Kegiatan" => + "Lain-lain Sub Bidang Perdagangan dan Perindustrian", + ], + [ + "id" => 165, + "ID_Keg" => "05.01.01.", + "Nama_Kegiatan" => "Kegiatan Penanggulanan Bencana", + ], + [ + "id" => 166, + "ID_Keg" => "05.02.01.", + "Nama_Kegiatan" => "Penanganan Keadaan Darurat", + ], + [ + "id" => 167, + "ID_Keg" => "05.03.01.", + "Nama_Kegiatan" => "Penanganan Keadaan Mendesak", + ], + [ + "id" => 168, + "ID_Keg" => "01.01.90", + "Nama_Kegiatan" => "Penyediaan Tali Asih Kepala Desa", + ], + [ + "id" => 169, + "ID_Keg" => "01.01.91", + "Nama_Kegiatan" => "Penyediaan Tali Asih Perangkat Desa", + ], + [ + "id" => 170, + "ID_Keg" => "01.04.90", + "Nama_Kegiatan" => + "Penyusunan dan Penetapan Standar Satuan Harga Desa", + ], + [ + "id" => 171, + "ID_Keg" => "01.04.91", + "Nama_Kegiatan" => + "Pengisian/Penjaringan/Penyaringan Kepala Desa ", + ], + [ + "id" => 172, + "ID_Keg" => "01.04.92", + "Nama_Kegiatan" => "Pengisian/Penjaringan/Penyaringan BPD**", + ], + [ + "id" => 173, + "ID_Keg" => "01.04.93", + "Nama_Kegiatan" => + "Penyelenggaraan Pemilihan Kepala Desa Antar Waktu", + ], + [ + "id" => 174, + "ID_Keg" => "01.04.94", + "Nama_Kegiatan" => "Penyelenggaraan Pengisian Perangkat Desa ", + ], + [ + "id" => 175, + "ID_Keg" => "01.04.95", + "Nama_Kegiatan" => + "Penyelenggaraan Evaluasi Tingkat Perkembangan Desa ", + ], + [ + "id" => 176, + "ID_Keg" => "01.04.96", + "Nama_Kegiatan" => + "Sosialisasi berbagai peraturan perundang-undangan di tingkat Desa", + ], + [ + "id" => 177, + "ID_Keg" => "01.05.90", + "Nama_Kegiatan" => "Pengadaan/Pelepasan Tanah Kas Desa**", + ], + [ + "id" => 178, + "ID_Keg" => "01.05.91", + "Nama_Kegiatan" => + "Kompensasi/Ganti Rugi Lahan terdampak Pembangunan", + ], + [ + "id" => 179, + "ID_Keg" => "01.05.92", + "Nama_Kegiatan" => "Penetapan dan penegasan batas Desa", + ], + [ + "id" => 180, + "ID_Keg" => "01.05.93", + "Nama_Kegiatan" => "Penyusunan tata ruang Desa dan peta Desa", + ], + [ + "id" => 181, + "ID_Keg" => "02.01.90", + "Nama_Kegiatan" => + "Pengelolaan dan Pembinaan Anak Sekolah Melalui Pemberian Makanan Tambahan Anak Sekolah (PMTAS)", + ], + [ + "id" => 182, + "ID_Keg" => "02.01.91", + "Nama_Kegiatan" => + "Dukungan Sarana Prasana Pendidikan PAUD/TK/TPA/TKA/TPQ/Madrasah Non-Formal Bukan Milik Desa (dalam bentuk barang)", + ], + [ + "id" => 183, + "ID_Keg" => "02.02.90", + "Nama_Kegiatan" => + "Pengadaan/pembangunan/pengembangan/ pemeliharaan Sarana dan Prasarana Kesehatan/ Air Bersih /sanitasi/kebersihan lingkungan/jambanisasi/mandi, cuci, kakus (MCK) **", + ], + [ + "id" => 184, + "ID_Keg" => "02.02.91", + "Nama_Kegiatan" => + "Pemantauan dan Pencegahan Penyalahgunaan Narkoba dan Zat Adiktif Di Desa", + ], + [ + "id" => 185, + "ID_Keg" => "02.02.92", + "Nama_Kegiatan" => + "Fasilitasi Pelayanan Pencegahan dan Penanggulangan Penyakit Endemik, Menular dan Tidak Menular", + ], + [ + "id" => 186, + "ID_Keg" => "02.02.93", + "Nama_Kegiatan" => + "Pembangunan/Pengelolaan/Pemanfaatan Tanaman Obat Keluarga/Apotek Desa", + ], + [ + "id" => 187, + "ID_Keg" => "02.02.94", + "Nama_Kegiatan" => + "Fasilitasi Kegiatan Palang Merah Indonesia (PMI)", + ], + [ + "id" => 188, + "ID_Keg" => "02.02.95", + "Nama_Kegiatan" => + "Pengadaan/pembangunan/pengembangan/ pemeliharaan sarana prasarana alat bantu penyandang disabilitas/panti rehabilitasi penyandang disabilitas**", + ], + [ + "id" => 189, + "ID_Keg" => "02.02.96", + "Nama_Kegiatan" => + "Fasilitasi Pelayanan Kesehatan Bagi Masyarakat Miskin", + ], + [ + "id" => 190, + "ID_Keg" => "02.02.97", + "Nama_Kegiatan" => + "Penyelenggaraan Promosi Kesehatan dan Gerakan Hidup Bersih dan Sehat", + ], + [ + "id" => 191, + "ID_Keg" => "02.02.98", + "Nama_Kegiatan" => + "Pengadaan/pembangunan/pengembangan/pemeliharaan sarana prasarana mobil/kapal motor untuk ambulance Desa**", + ], + [ + "id" => 192, + "ID_Keg" => "02.02.99", + "Nama_Kegiatan" => "Lain-lain Kegiatan Sub Bidang Kesehatan", + ], + [ + "id" => 193, + "ID_Keg" => "02.03.90", + "Nama_Kegiatan" => + "Pembangunan/pemeliharaan jalan/talud pengaman tebing/saluran irigasi/energi baru dan terbarukan/ pembangkit listrik tenaga mikrohidro/lapangan Desa / taman Desa/lingkungan permukiman masyarakat Desa**", + ], + [ + "id" => 194, + "ID_Keg" => "02.03.91", + "Nama_Kegiatan" => + "Pembangunan/Pengadaan/pengembangan/pemeliharaan sarana dan prasarana Jasa dan Industri Kecil/industri rumah tangga/mesin jahit/peralatan bengkel kendaraan bermotor/mesin bubut untuk mebeler; /pemasara", + ], + [ + "id" => 195, + "ID_Keg" => "02.03.92", + "Nama_Kegiatan" => + "Pembangunan kolam ikan dan pembenihan ikan/perahu penangkap ikan tempat pelelangan ikan/tempat pendaratan kapal penangkap ikan/cold storage (gudang pendingin)/gudang penyimpan sarana produksi (saprota", + ], + [ + "id" => 196, + "ID_Keg" => "02.03.93", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Pemeliharaan/Peningkatan Sarana Prasarana Olah Raga/ Gedung Serba Guna", + ], + [ + "id" => 197, + "ID_Keg" => "02.03.94", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Gedung/Prasarana Balai Desa/Balai Kemasyarakatan", + ], + [ + "id" => 198, + "ID_Keg" => "02.03.95", + "Nama_Kegiatan" => + "Pembangunan/pengembangan/pemeliharaan/pengelolaan sarana dan prasarana pasar Desa**", + ], + [ + "id" => 199, + "ID_Keg" => "02.03.96", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Pekerjaan Umum dan Tata Ruang", + ], + [ + "id" => 200, + "ID_Keg" => "02.04.91", + "Nama_Kegiatan" => + "Penyediaan Kendaraan Pengangkut Sampah, Gerobak Sampah, Tong Sampah, Mesin Pengolah Sampah", + ], + [ + "id" => 201, + "ID_Keg" => "02.04.92", + "Nama_Kegiatan" => + "Pemeliharaan Jaringan Listrik/ Penerangan Desa", + ], + [ + "id" => 202, + "ID_Keg" => "02.04.93", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Jaringan Listrik/ Penerangan Desa", + ], + [ + "id" => 203, + "ID_Keg" => "02.05.90", + "Nama_Kegiatan" => + "Pembuatan terasering/pembersihan daerah aliran sungai/plesengan sungai**", + ], + [ + "id" => 204, + "ID_Keg" => "02.05.91", + "Nama_Kegiatan" => + "Penanganan kebakaran hutan dan lahan/pencegahan abrasi pantai", + ], + [ + "id" => 205, + "ID_Keg" => "02.06.90", + "Nama_Kegiatan" => + "Pembangunan/Pengembangan/pemeliharaan sarana dan prasarana transportasi/informasi/ komunikasi/terminal Desa", + ], + [ + "id" => 206, + "ID_Keg" => "02.06.91", + "Nama_Kegiatan" => + "Pengadaan/pembangunan/pengembangan/pemeliharaan jaringan internet untuk warga Desa/website Desa/peralatan pengeras suara (loudspeaker)/telepon umum/ radio Single Side Band (SSB) ", + ], + [ + "id" => 207, + "ID_Keg" => "02.07.90", + "Nama_Kegiatan" => + "Pengembangan dan Pengelolaan Sarana dan Prasarana Energi Alternatif tingkat Desa", + ], + [ + "id" => 208, + "ID_Keg" => "02.07.91", + "Nama_Kegiatan" => + "Pembangunan sarana dan prasarana Teknologi Tepat Guna", + ], + [ + "id" => 209, + "ID_Keg" => "02.07.92", + "Nama_Kegiatan" => + "Pengadaan/pemanfaatan/pemeliharaan penggilingan padi/peraut kelapa/ penepung biji-bijian/pencacah pakan terna/sangrai/ pemotong/pengiris buah dan sayuran/pompa air/traktor mini**", + ], + [ + "id" => 210, + "ID_Keg" => "02.07.94", + "Nama_Kegiatan" => + "Lain-lain Kegiatan Sub Bidang Energi dan Sumber Daya Mineral", + ], + [ + "id" => 211, + "ID_Keg" => "02.08.90", + "Nama_Kegiatan" => + "Pengadaan/pembangunan/pengembangan/pemeliharaan sarana dan prasarana Desa wisata/ pondok wisata/panggung hiburan/ kios cenderamata/kios warung makan/wahana permainan anak/wahana permainan outbound/ ta", + ], + [ + "id" => 212, + "ID_Keg" => "03.01.90", + "Nama_Kegiatan" => + "Dukungan Pembinaan Keamanan, Ketertiban, dan Ketentraman Wilayah dan Masyarakat Desa (Seragam dan Op Linmas, BABINSA, BABINKAMTIBMAS)", + ], + [ + "id" => 213, + "ID_Keg" => "03.01.91", + "Nama_Kegiatan" => "Pembentukan tim keamanan Desa", + ], + [ + "id" => 214, + "ID_Keg" => "03.02.90", + "Nama_Kegiatan" => + "Melestarikan Dan Mengembangkan Gotong Royong Masyarakat Desa (BBGRM)", + ], + [ + "id" => 215, + "ID_Keg" => "03.02.91", + "Nama_Kegiatan" => + "Dukungan Pengelolaan Sarana dan Prasarana Kebudayaan/Rumah Adat/Keagamaan di Desa **", + ], + [ + "id" => 216, + "ID_Keg" => "03.02.92", + "Nama_Kegiatan" => + "Penyelenggaraan Sedekah Bumi/Sedekah Laut/Apitan", + ], + [ + "id" => 217, + "ID_Keg" => "03.02.93", + "Nama_Kegiatan" => + "Partisipasi Perayaan Hari Besar Nasional lainnya", + ], + [ + "id" => 218, + "ID_Keg" => "03.02.94", + "Nama_Kegiatan" => "Pembinaan kerukunan umat beragama", + ], + [ + "id" => 219, + "ID_Keg" => "03.04.90", + "Nama_Kegiatan" => + "Pembentukan/Pembinaan Lembaga Kemasyarakatan", + ], + [ + "id" => 220, + "ID_Keg" => "03.04.91", + "Nama_Kegiatan" => + "Pembentukan dan Dukungan Fasilitasi Kader Pembangunan dan Pemberdayaan Masyarakat", + ], + [ + "id" => 221, + "ID_Keg" => "04.01.90", + "Nama_Kegiatan" => + "Pelaksanaan Penanggulangan Hama dan Penyakit Secara Terpadu", + ], + [ + "id" => 222, + "ID_Keg" => "04.01.91", + "Nama_Kegiatan" => "Pengelolaan Balai Benih Ikan Milik Desa", + ], + [ + "id" => 223, + "ID_Keg" => "04.01.92", + "Nama_Kegiatan" => + "Pemeliharaan Tambatan Perahu/Tempat Pelelangan Ikan (TPI) Milik Desa**", + ], + [ + "id" => 224, + "ID_Keg" => "04.01.93", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Tambatan Perahu/Tempat Pelelangan Ikan (TPI) Milik Desa**", + ], + [ + "id" => 225, + "ID_Keg" => "04.02.90", + "Nama_Kegiatan" => + "Peningkatan Produksi Tanaman Perkebunan (Alat Produksi dan pengolahan perkebunan)", + ], + [ + "id" => 226, + "ID_Keg" => "04.02.91", + "Nama_Kegiatan" => + "Pembangunan/Rehabilitasi/Peningkatan Balai Pertemuan Kelompok Tani", + ], + [ + "id" => 227, + "ID_Keg" => "04.02.92", + "Nama_Kegiatan" => "Pembangunan/Peningkatan Irigasi Tersier", + ], + [ + "id" => 228, + "ID_Keg" => "04.02.93", + "Nama_Kegiatan" => "Pelatihan kelompok tani", + ], + [ + "id" => 229, + "ID_Keg" => "04.04.90", + "Nama_Kegiatan" => + "Fasiilitasi Penguatan Kelembagaan Pengarusutamaan Gender dan Anak", + ], + [ + "id" => 230, + "ID_Keg" => "04.04.92", + "Nama_Kegiatan" => + "Peningkatan Kapasitas Kelompok Pemerhati dan Perlindungan Anak", + ], + [ + "id" => 231, + "ID_Keg" => "04.04.93", + "Nama_Kegiatan" => + "Fasilitasi terhadap kelompok-kelompok rentan, kelompok masyarakat miskin, perempuan, anak dan difabel/ Pemberian bantuan sosial/pemberian santunan kepada keluarga fakir miskin/analisis kemiskinan seca", + ], + [ + "id" => 232, + "ID_Keg" => "04.04.91", + "Nama_Kegiatan" => + "Fasilitasi Upaya Perlindungan Perempuan dan Anak Terhadap Tindakan Kekerasan", + ], + [ + "id" => 233, + "ID_Keg" => "04.05.90", + "Nama_Kegiatan" => "Pengembangan/ Promosi Produk Unggulan Desa", + ], + [ + "id" => 234, + "ID_Keg" => "04.05.91", + "Nama_Kegiatan" => + "Pembentukan dan pengembangan usaha ekonomi masyarakat dan/atau koperasi", + ], + [ + "id" => 235, + "ID_Keg" => "04.05.92", + "Nama_Kegiatan" => + "Bantuan sarana produksi, distribusi dan pemasaran untuk usaha ekonomi masyarakat**", + ], + [ + "id" => 236, + "ID_Keg" => "04.06.90", + "Nama_Kegiatan" => + "Pembangunan Kantor BUM Desa/Sarana Prasarana BUM Desa (menjadi aset desa)**", + ], + [ + "id" => 237, + "ID_Keg" => "04.06.91", + "Nama_Kegiatan" => + "Pelaksanaan Audit Keuangan BUM Desa, Evaluasi Perkembangan BUM Desa ", + ], + [ + "id" => 238, + "ID_Keg" => "04.07.90", + "Nama_Kegiatan" => "Pelatihan usaha ekonomi dan Perdagangan", + ], + [ + "id" => 239, + "ID_Keg" => "04.07.91", + "Nama_Kegiatan" => + "Sosialisasi Teknologi Tepat Guna/Posyantekdes dan/atau antar Desa/percontohan Teknologi Tepat Guna untuk produksi pertanian/pengembangan sumber energi perdesaan/pengemban", + ], + ]); + + DB::statement(" + CREATE TABLE `keuangan_manual_ref_rek1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Akun` varchar(100) NOT NULL, + `Nama_Akun` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("keuangan_manual_ref_rek1")->insert([ + ["id" => 1, "Akun" => "1.", "Nama_Akun" => "ASET"], + ["id" => 2, "Akun" => "2.", "Nama_Akun" => "KEWAJIBAN"], + ["id" => 3, "Akun" => "3.", "Nama_Akun" => "EKUITAS"], + ["id" => 4, "Akun" => "4.", "Nama_Akun" => "PENDAPATAN"], + ["id" => 5, "Akun" => "5.", "Nama_Akun" => "BELANJA"], + ["id" => 6, "Akun" => "6.", "Nama_Akun" => "PEMBIAYAAN"], + ["id" => 7, "Akun" => "7.", "Nama_Akun" => "NON ANGGARAN"], + ]); + + DB::statement(" + CREATE TABLE `keuangan_manual_ref_rek2` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Akun` varchar(100) NOT NULL, + `Kelompok` varchar(100) NOT NULL, + `Nama_Kelompok` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("keuangan_manual_ref_rek2")->insert([ + [ + "id" => 1, + "Akun" => "1.", + "Kelompok" => "1.1.", + "Nama_Kelompok" => "Aset Lancar", + ], + [ + "id" => 2, + "Akun" => "1.", + "Kelompok" => "1.2.", + "Nama_Kelompok" => "Investasi", + ], + [ + "id" => 3, + "Akun" => "1.", + "Kelompok" => "1.3.", + "Nama_Kelompok" => "Aset Tetap", + ], + [ + "id" => 4, + "Akun" => "1.", + "Kelompok" => "1.4.", + "Nama_Kelompok" => "Dana Cadangan", + ], + [ + "id" => 5, + "Akun" => "1.", + "Kelompok" => "1.5.", + "Nama_Kelompok" => "Aset Tidak Lancar Lainnya", + ], + [ + "id" => 6, + "Akun" => "2.", + "Kelompok" => "2.1.", + "Nama_Kelompok" => "Kewajiban Jangka Pendek", + ], + [ + "id" => 7, + "Akun" => "3.", + "Kelompok" => "3.1.", + "Nama_Kelompok" => "Ekuitas", + ], + [ + "id" => 8, + "Akun" => "4.", + "Kelompok" => "4.1.", + "Nama_Kelompok" => "Pendapatan Asli Desa", + ], + [ + "id" => 9, + "Akun" => "4.", + "Kelompok" => "4.2.", + "Nama_Kelompok" => "Pendapatan Transfer", + ], + [ + "id" => 10, + "Akun" => "4.", + "Kelompok" => "4.3.", + "Nama_Kelompok" => "Pendapatan Lain-lain", + ], + [ + "id" => 11, + "Akun" => "5.", + "Kelompok" => "5.1.", + "Nama_Kelompok" => "Belanja Pegawai", + ], + [ + "id" => 12, + "Akun" => "5.", + "Kelompok" => "5.2.", + "Nama_Kelompok" => "Belanja Barang dan Jasa", + ], + [ + "id" => 13, + "Akun" => "5.", + "Kelompok" => "5.3.", + "Nama_Kelompok" => "Belanja Modal", + ], + [ + "id" => 14, + "Akun" => "5.", + "Kelompok" => "5.4.", + "Nama_Kelompok" => "Belanja Tidak Terduga", + ], + [ + "id" => 15, + "Akun" => "6.", + "Kelompok" => "6.1.", + "Nama_Kelompok" => "Penerimaan Pembiayaan", + ], + [ + "id" => 16, + "Akun" => "6.", + "Kelompok" => "6.2.", + "Nama_Kelompok" => "Pengeluaran Pembiayaan", + ], + [ + "id" => 17, + "Akun" => "7.", + "Kelompok" => "7.1.", + "Nama_Kelompok" => "Perhitungan Fihak Ketiga", + ], + ]); + + DB::statement(" + CREATE TABLE `keuangan_manual_ref_rek3` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Kelompok` varchar(100) NOT NULL, + `Jenis` varchar(100) NOT NULL, + `Nama_Jenis` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("keuangan_manual_ref_rek3")->insert([ + [ + "id" => 1, + "Kelompok" => "1.1.", + "Jenis" => "1.1.1.", + "Nama_Jenis" => "Kas dan Bank", + ], + [ + "id" => 2, + "Kelompok" => "1.1.", + "Jenis" => "1.1.2.", + "Nama_Jenis" => "Piutang", + ], + [ + "id" => 3, + "Kelompok" => "1.1.", + "Jenis" => "1.1.3.", + "Nama_Jenis" => "Persediaan", + ], + [ + "id" => 4, + "Kelompok" => "1.2.", + "Jenis" => "1.2.1.", + "Nama_Jenis" => "Penyertaan Modal Pemerintah Desa", + ], + [ + "id" => 5, + "Kelompok" => "1.3.", + "Jenis" => "1.3.1.", + "Nama_Jenis" => "Tanah", + ], + [ + "id" => 6, + "Kelompok" => "1.3.", + "Jenis" => "1.3.2.", + "Nama_Jenis" => "Peralatan dan Mesin", + ], + [ + "id" => 7, + "Kelompok" => "1.3.", + "Jenis" => "1.3.3.", + "Nama_Jenis" => "Gedung dan Bangunan", + ], + [ + "id" => 8, + "Kelompok" => "1.3.", + "Jenis" => "1.3.4.", + "Nama_Jenis" => "Jalan, Irigasi dan Jaringan", + ], + [ + "id" => 9, + "Kelompok" => "1.3.", + "Jenis" => "1.3.5.", + "Nama_Jenis" => "Aset Tetap Lainnya", + ], + [ + "id" => 10, + "Kelompok" => "1.3.", + "Jenis" => "1.3.6.", + "Nama_Jenis" => "Konstruksi Dalam Pengerjaan", + ], + [ + "id" => 11, + "Kelompok" => "1.3.", + "Jenis" => "1.3.7.", + "Nama_Jenis" => "Aset Tak Berwujud", + ], + [ + "id" => 12, + "Kelompok" => "1.3.", + "Jenis" => "1.3.8.", + "Nama_Jenis" => "Akumulasi Penyusutan Aktiva Tetap", + ], + [ + "id" => 13, + "Kelompok" => "1.4.", + "Jenis" => "1.4.1.", + "Nama_Jenis" => "Dana Cadangan", + ], + [ + "id" => 14, + "Kelompok" => "1.5.", + "Jenis" => "1.5.1.", + "Nama_Jenis" => "Tagihan Piutang Penjualan Angsuran", + ], + [ + "id" => 15, + "Kelompok" => "1.5.", + "Jenis" => "1.5.2.", + "Nama_Jenis" => "Tagihan Tuntutan Ganti Kerugian Daerah", + ], + [ + "id" => 16, + "Kelompok" => "1.5.", + "Jenis" => "1.5.3.", + "Nama_Jenis" => "Kemitraan dengan Pihak Ketiga", + ], + [ + "id" => 17, + "Kelompok" => "1.5.", + "Jenis" => "1.5.4.", + "Nama_Jenis" => "Aktiva Tidak Berwujud", + ], + [ + "id" => 18, + "Kelompok" => "1.5.", + "Jenis" => "1.5.5.", + "Nama_Jenis" => "Aset Lain-lain", + ], + [ + "id" => 19, + "Kelompok" => "2.1.", + "Jenis" => "2.1.1.", + "Nama_Jenis" => "Hutang Perhitungan Pihak Ketiga", + ], + [ + "id" => 20, + "Kelompok" => "2.1.", + "Jenis" => "2.1.2.", + "Nama_Jenis" => "Hutang Bunga", + ], + [ + "id" => 21, + "Kelompok" => "2.1.", + "Jenis" => "2.1.3.", + "Nama_Jenis" => "Hutang Pajak", + ], + [ + "id" => 22, + "Kelompok" => "2.1.", + "Jenis" => "2.1.4.", + "Nama_Jenis" => "Pendapatan Diterima Dimuka", + ], + [ + "id" => 23, + "Kelompok" => "2.1.", + "Jenis" => "2.1.5.", + "Nama_Jenis" => "Bagian Lancar Hutang Jangka Panjang", + ], + [ + "id" => 24, + "Kelompok" => "2.1.", + "Jenis" => "2.1.6.", + "Nama_Jenis" => "Hutang Jangka Pendek Lainnya", + ], + [ + "id" => 25, + "Kelompok" => "3.1.", + "Jenis" => "3.1.1.", + "Nama_Jenis" => "Ekuitas", + ], + [ + "id" => 26, + "Kelompok" => "3.1.", + "Jenis" => "3.1.2.", + "Nama_Jenis" => "Ekuitas SAL", + ], + [ + "id" => 27, + "Kelompok" => "4.1.", + "Jenis" => "4.1.1.", + "Nama_Jenis" => "Hasil Usaha Desa", + ], + [ + "id" => 28, + "Kelompok" => "4.1.", + "Jenis" => "4.1.2.", + "Nama_Jenis" => "Hasil Aset Desa", + ], + [ + "id" => 29, + "Kelompok" => "4.1.", + "Jenis" => "4.1.3.", + "Nama_Jenis" => "Swadaya, Partisipasi dan Gotong Royong", + ], + [ + "id" => 30, + "Kelompok" => "4.1.", + "Jenis" => "4.1.4.", + "Nama_Jenis" => "Lain-Lain Pendapatan Asli Desa", + ], + [ + "id" => 31, + "Kelompok" => "4.2.", + "Jenis" => "4.2.1.", + "Nama_Jenis" => "Dana Desa", + ], + [ + "id" => 32, + "Kelompok" => "4.2.", + "Jenis" => "4.2.2.", + "Nama_Jenis" => "Bagi Hasil Pajak dan Retribusi", + ], + [ + "id" => 33, + "Kelompok" => "4.2.", + "Jenis" => "4.2.3.", + "Nama_Jenis" => "Alokasi Dana Desa", + ], + [ + "id" => 34, + "Kelompok" => "4.2.", + "Jenis" => "4.2.4.", + "Nama_Jenis" => "Bantuan Keuangan Provinsi", + ], + [ + "id" => 35, + "Kelompok" => "4.2.", + "Jenis" => "4.2.5.", + "Nama_Jenis" => "Bantuan Keuangan Kabupaten/Kota", + ], + [ + "id" => 36, + "Kelompok" => "4.3.", + "Jenis" => "4.3.1.", + "Nama_Jenis" => "Penerimaan dari Hasil Kerjasama Antar Desa", + ], + [ + "id" => 37, + "Kelompok" => "4.3.", + "Jenis" => "4.3.2.", + "Nama_Jenis" => + "Penerimaan dari Hasil Kerjasama dengan Pihak Ketiga", + ], + [ + "id" => 38, + "Kelompok" => "4.3.", + "Jenis" => "4.3.3.", + "Nama_Jenis" => + "Penerimaan Bantuan dari Perusahaan yang Berlokasi di Desa", + ], + [ + "id" => 39, + "Kelompok" => "4.3.", + "Jenis" => "4.3.4.", + "Nama_Jenis" => "Hibah dan Sumbangan dari Pihak Ketiga", + ], + [ + "id" => 40, + "Kelompok" => "4.3.", + "Jenis" => "4.3.5.", + "Nama_Jenis" => + "Koreksi Kesalahan Belanja Tahun-tahun Sebelumnya", + ], + [ + "id" => 41, + "Kelompok" => "4.3.", + "Jenis" => "4.3.6.", + "Nama_Jenis" => "Bunga Bank", + ], + [ + "id" => 42, + "Kelompok" => "4.3.", + "Jenis" => "4.3.9.", + "Nama_Jenis" => "Lain-lain Pendapatan Desa Yang Sah", + ], + [ + "id" => 43, + "Kelompok" => "5.1.", + "Jenis" => "5.1.1.", + "Nama_Jenis" => "Penghasilan Tetap dan Tunjangan Kepala Desa", + ], + [ + "id" => 44, + "Kelompok" => "5.1.", + "Jenis" => "5.1.2.", + "Nama_Jenis" => + "Penghasilan Tetap dan Tunjangan Perangkat Desa", + ], + [ + "id" => 45, + "Kelompok" => "5.1.", + "Jenis" => "5.1.3.", + "Nama_Jenis" => "Jaminan Sosial Kepala Desa dan Perangkat Desa", + ], + [ + "id" => 46, + "Kelompok" => "5.1.", + "Jenis" => "5.1.4.", + "Nama_Jenis" => "Tunjangan BPD", + ], + [ + "id" => 47, + "Kelompok" => "5.2.", + "Jenis" => "5.2.1.", + "Nama_Jenis" => "Belanja Barang Perlengkapan", + ], + [ + "id" => 48, + "Kelompok" => "5.2.", + "Jenis" => "5.2.2.", + "Nama_Jenis" => "Belanja Jasa Honorarium", + ], + [ + "id" => 49, + "Kelompok" => "5.2.", + "Jenis" => "5.2.3.", + "Nama_Jenis" => "Belanja Perjalanan Dinas", + ], + [ + "id" => 50, + "Kelompok" => "5.2.", + "Jenis" => "5.2.4.", + "Nama_Jenis" => "Belanja Jasa Sewa", + ], + [ + "id" => 51, + "Kelompok" => "5.2.", + "Jenis" => "5.2.5.", + "Nama_Jenis" => "Belanja Operasional Perkantoran", + ], + [ + "id" => 52, + "Kelompok" => "5.2.", + "Jenis" => "5.2.6.", + "Nama_Jenis" => "Belanja Pemeliharaan", + ], + [ + "id" => 53, + "Kelompok" => "5.2.", + "Jenis" => "5.2.7.", + "Nama_Jenis" => + "Belanja Barang dan Jasa yang Diserahkan kepada Masyarakat", + ], + [ + "id" => 54, + "Kelompok" => "5.3.", + "Jenis" => "5.3.1.", + "Nama_Jenis" => "Belanja Modal Pengadaan Tanah", + ], + [ + "id" => 55, + "Kelompok" => "5.3.", + "Jenis" => "5.3.2.", + "Nama_Jenis" => + "Belanja Modal Pengadaan Peralatan, Mesin dan Alat Berat", + ], + [ + "id" => 56, + "Kelompok" => "5.3.", + "Jenis" => "5.3.3.", + "Nama_Jenis" => "Belanja Modal Kendaraan", + ], + [ + "id" => 57, + "Kelompok" => "5.3.", + "Jenis" => "5.3.4.", + "Nama_Jenis" => "Belanja Modal Gedung, Bangunan dan Taman", + ], + [ + "id" => 58, + "Kelompok" => "5.3.", + "Jenis" => "5.3.5.", + "Nama_Jenis" => "Belanja Modal Jalan/Prasarana Jalan", + ], + [ + "id" => 59, + "Kelompok" => "5.3.", + "Jenis" => "5.3.6.", + "Nama_Jenis" => "Belanja Modal Jembatan", + ], + [ + "id" => 60, + "Kelompok" => "5.3.", + "Jenis" => "5.3.7.", + "Nama_Jenis" => + "Belanja Modal Irigasi/Embung/Drainase/Air Limbah/Persampahan", + ], + [ + "id" => 61, + "Kelompok" => "5.3.", + "Jenis" => "5.3.8.", + "Nama_Jenis" => "Belanja Modal Jaringan/Instalasi", + ], + [ + "id" => 62, + "Kelompok" => "5.3.", + "Jenis" => "5.3.9.", + "Nama_Jenis" => "Belanja Modal Lainnya", + ], + [ + "id" => 63, + "Kelompok" => "5.4.", + "Jenis" => "5.4.1.", + "Nama_Jenis" => "Belanja Tidak Terduga", + ], + [ + "id" => 64, + "Kelompok" => "6.1.", + "Jenis" => "6.1.1.", + "Nama_Jenis" => "SILPA Tahun Sebelumnya", + ], + [ + "id" => 65, + "Kelompok" => "6.1.", + "Jenis" => "6.1.2.", + "Nama_Jenis" => "Pencairan Dana Cadangan", + ], + [ + "id" => 66, + "Kelompok" => "6.1.", + "Jenis" => "6.1.3.", + "Nama_Jenis" => "Hasil Penjualan Kekayaan Desa Yang Dipisahkan", + ], + [ + "id" => 67, + "Kelompok" => "6.1.", + "Jenis" => "6.1.9.", + "Nama_Jenis" => "Penerimaan Pembiayaan Lainnya", + ], + [ + "id" => 68, + "Kelompok" => "6.2.", + "Jenis" => "6.2.1.", + "Nama_Jenis" => "Pembentukan Dana Cadangan", + ], + [ + "id" => 69, + "Kelompok" => "6.2.", + "Jenis" => "6.2.2.", + "Nama_Jenis" => "Penyertaan Modal Desa", + ], + [ + "id" => 70, + "Kelompok" => "6.2.", + "Jenis" => "6.2.9.", + "Nama_Jenis" => "Pengeluaran Pembiayaan Lainnya", + ], + [ + "id" => 71, + "Kelompok" => "7.1.", + "Jenis" => "7.1.1.", + "Nama_Jenis" => "Perhitungan PFK - Potongan Pajak", + ], + [ + "id" => 72, + "Kelompok" => "7.1.", + "Jenis" => "7.1.2.", + "Nama_Jenis" => "Perhitungan PFK - Potongan Pajak Daerah", + ], + [ + "id" => 73, + "Kelompok" => "7.1.", + "Jenis" => "7.1.3.", + "Nama_Jenis" => "Perhitungan PFK - Uang Muka dan Jaminan", + ], + ]); + + DB::statement(" + CREATE TABLE `keuangan_manual_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Tahun` varchar(100) NOT NULL, + `Kd_Akun` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Nilai_Anggaran` varchar(100) NOT NULL, + `Nilai_Realisasi` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_manual_rinci_tpl` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `Tahun` varchar(100) NOT NULL, + `Kd_Akun` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Nilai_Anggaran` varchar(100) NOT NULL, + `Nilai_Realisasi` varchar(100) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_master` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `versi_database` varchar(50) NOT NULL, + `tahun_anggaran` varchar(250) NOT NULL, + `aktif` int(2) NOT NULL DEFAULT 1, + `tanggal_impor` date NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_surat() + { + DB::statement(" + CREATE TABLE `klasifikasi_surat` ( + `id` int(4) NOT NULL AUTO_INCREMENT, + `kode` varchar(50) NOT NULL, + `nama` varchar(250) NOT NULL, + `uraian` mediumtext NOT NULL, + `enabled` int(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + DB::table("klasifikasi_surat")->insert([ + [ + "id" => 1, + "kode" => "000", + "nama" => "UMUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2, + "kode" => "001", + "nama" => "Lambang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 3, + "kode" => "001.1", + "nama" => "Garuda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 4, + "kode" => "001.2", + "nama" => "Bendera Kebangsaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 5, + "kode" => "001.3", + "nama" => "Lagu Kebangsaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 6, + "kode" => "001.4", + "nama" => "Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 7, + "kode" => "001.31", + "nama" => "Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 8, + "kode" => "001.32", + "nama" => "Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 9, + "kode" => "002", + "nama" => "Tanda Kehormatan/Penghargaan untuk pegawai ", + "uraian" => "lihat 861.1", + "enabled" => 1, + ], + [ + "id" => 10, + "kode" => "002.1", + "nama" => "Bintang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 11, + "kode" => "002.2", + "nama" => "Satyalencana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 12, + "kode" => "002.3", + "nama" => "Samkarya Nugraha", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 13, + "kode" => "002.4", + "nama" => "Monumen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 14, + "kode" => "002.5", + "nama" => "Penghargaan Secara Adat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 15, + "kode" => "002.6", + "nama" => "Penghargaan lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 16, + "kode" => "003", + "nama" => "Hari Raya/Besar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 17, + "kode" => "003.1", + "nama" => "Nasional 17 Agustus, Hari Pahlawan, dan sebagainya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 18, + "kode" => "003.2", + "nama" => "Hari Raya Keagamaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 19, + "kode" => "003.3", + "nama" => "Hari Ulang Tahun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 20, + "kode" => "003.4", + "nama" => "Hari-hari Besar Internasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 21, + "kode" => "004", + "nama" => "Ucapan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 22, + "kode" => "004.1", + "nama" => "Ucapan Terima Kasih", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 23, + "kode" => "004.2", + "nama" => "Ucapan Selamat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 24, + "kode" => "004.3", + "nama" => "Ucapan Belasungkawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 25, + "kode" => "004.4", + "nama" => "Ucapan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 26, + "kode" => "005", + "nama" => "Undangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 27, + "kode" => "006", + "nama" => "Tanda Jabatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 28, + "kode" => "006.1", + "nama" => "Pamong Praja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 29, + "kode" => "006.2", + "nama" => "Tanda Pengenal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 30, + "kode" => "006.3", + "nama" => "Pejabat lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 31, + "kode" => "007", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 32, + "kode" => "008", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 33, + "kode" => "009", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 34, + "kode" => "010", + "nama" => "URUSAN DALAM ", + "uraian" => + "Gedung Kantor/Termasuk Instalasi Prasarana Fisik Pamong", + "enabled" => 1, + ], + [ + "id" => 35, + "kode" => "011", + "nama" => "Kantor Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 36, + "kode" => "012", + "nama" => "Rumah Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 37, + "kode" => "012.1", + "nama" => "Tanah Untuk Rumah Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 38, + "kode" => "012.2", + "nama" => "Perabot Rumah Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 39, + "kode" => "012.3", + "nama" => "Rumah Dinas Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 40, + "kode" => "012.4", + "nama" => "Rumah Dinas Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 41, + "kode" => "012.5", + "nama" => "Rumah Dinas Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 42, + "kode" => "012.6", + "nama" => "Rumah/Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 43, + "kode" => "012.7", + "nama" => "Rumah Pejabat Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 44, + "kode" => "013", + "nama" => "Mess/Guest House", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 45, + "kode" => "014", + "nama" => "Rumah Susun/Apartemen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 46, + "kode" => "015", + "nama" => "Penerangan Listrik/Jasa Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 47, + "kode" => "016", + "nama" => "Telepon/Faximile/Internet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 48, + "kode" => "017", + "nama" => "Keamanan/Ketertiban Kantor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 49, + "kode" => "018", + "nama" => "Kebersihan Kantor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 50, + "kode" => "019", + "nama" => "Protokol", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 51, + "kode" => "019.1", + "nama" => "Upacara Bendera", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 52, + "kode" => "019.2", + "nama" => "Tata Tempat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 53, + "kode" => "019.21", + "nama" => "Pemasangan Gambar Presiden/Wakil Presiden", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 54, + "kode" => "019.3", + "nama" => "Audiensi / Menghadap Pimpinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 55, + "kode" => "019.4", + "nama" => "Alamat-Alamat Kantor Pejabat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 56, + "kode" => "019.5", + "nama" => "Bandir/Umbul-Umbul/Spanduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 57, + "kode" => "020", + "nama" => "PERALATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 58, + "kode" => "020.1", + "nama" => "Penawaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 59, + "kode" => "021", + "nama" => "Alat Tulis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 60, + "kode" => "022", + "nama" => "Mesin Kantor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 61, + "kode" => "023", + "nama" => "Perabot Kantor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 62, + "kode" => "024", + "nama" => "Alat Angkutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 63, + "kode" => "025", + "nama" => "Pakaian Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 64, + "kode" => "026", + "nama" => "Senjata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 65, + "kode" => "027", + "nama" => "Pengadaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 66, + "kode" => "028", + "nama" => "Inventaris", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 67, + "kode" => "029", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 68, + "kode" => "030", + "nama" => "KEKAYAAN DAERAH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 69, + "kode" => "031", + "nama" => "Sumber Daya Alam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 70, + "kode" => "032", + "nama" => "Asset Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 71, + "kode" => "033", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 72, + "kode" => "034", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 73, + "kode" => "035", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 74, + "kode" => "036", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 75, + "kode" => "040", + "nama" => "PERPUSTAKAAN DOKUMENTASI / KEARSIPAN / SANDI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 76, + "kode" => "041", + "nama" => "Perpustakaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 77, + "kode" => "041.1", + "nama" => "Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 78, + "kode" => "041.2", + "nama" => "Khusus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 79, + "kode" => "041.3", + "nama" => "Perguruan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 80, + "kode" => "041.4", + "nama" => "Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 81, + "kode" => "041.5", + "nama" => "Keliling", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 82, + "kode" => "042", + "nama" => "Dokumentasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 83, + "kode" => "043", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 84, + "kode" => "044", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 85, + "kode" => "045", + "nama" => "Kearsipan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 86, + "kode" => "045.1", + "nama" => "Pola Klasifikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 87, + "kode" => "045.2", + "nama" => "Penataan Berkas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 88, + "kode" => "045.3", + "nama" => "Penyusutan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 89, + "kode" => "045.31", + "nama" => "Jadwal Retensi Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 90, + "kode" => "045.32", + "nama" => "Pemindahan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 91, + "kode" => "045.33", + "nama" => "Penilaian Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 92, + "kode" => "045.34", + "nama" => "Pemusnahan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 93, + "kode" => "045.35", + "nama" => "Penyerahan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 94, + "kode" => "045.36", + "nama" => "Berita Acara Penyusutan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 95, + "kode" => "045.37", + "nama" => "Daftar Pencarian Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 96, + "kode" => "045.4", + "nama" => "Pembinaan Kearsipan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 97, + "kode" => "045.41", + "nama" => "Bimbingan Teknis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 98, + "kode" => "045.5", + "nama" => "Pemeliharaan /Perawatan Arsip", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 99, + "kode" => "045.6", + "nama" => "Pengawetan/Fumigasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 100, + "kode" => "046", + "nama" => "Sandi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 101, + "kode" => "047", + "nama" => "Website", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 102, + "kode" => "048", + "nama" => "Pengelolaan Data", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 103, + "kode" => "049", + "nama" => "Jaringan Komunikasi Data", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 104, + "kode" => "050", + "nama" => "PERENCANAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 105, + "kode" => "050.1", + "nama" => "Repelita/8 Sukses", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 106, + "kode" => "050.11", + "nama" => "Pelita Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 107, + "kode" => "050.12", + "nama" => "Bantuan Pembangunan Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 108, + "kode" => "050.13", + "nama" => "Bappeda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 109, + "kode" => "051", + "nama" => "Proyek Bidang Pemerintahan, ", + "uraian" => + "Klasifikasikan Disini : Proyek Prasaran Fisik Pemerintahan, Tambahkan Perincian 100 Pada 051 Contoh: Proyek Kepenjaraan 051.86", + "enabled" => 1, + ], + [ + "id" => 110, + "kode" => "052", + "nama" => "Bidang Politik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 111, + "kode" => "053", + "nama" => "Bidang Keamanan Dan Ketertiban", + "uraian" => + "Tambahkan Perincian 300 Pada 053 Contoh: Proyek Ketataprajaan 053.311 ", + "enabled" => 1, + ], + [ + "id" => 112, + "kode" => "054", + "nama" => "Bidang Kesejahteraan Rakyat ", + "uraian" => + "Tambahkan Peincian 400 pada 054 Contoh: Proyek Resettlement Desa 054.671", + "enabled" => 1, + ], + [ + "id" => 113, + "kode" => "055", + "nama" => "Bidang Perekonomian ", + "uraian" => + "Tambahkan Perincian 500 Pada 055 Contoh: Proyek Pasar 055.112", + "enabled" => 1, + ], + [ + "id" => 114, + "kode" => "056", + "nama" => "Bidang Pekerjaan Umum ", + "uraian" => + "Tambahkan Perincian 600 pada 056 Contoh: Proyek Jembatan 056.3", + "enabled" => 1, + ], + [ + "id" => 115, + "kode" => "057", + "nama" => "Bidang Pengawasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 116, + "kode" => "058", + "nama" => "Bidang Kepegawaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 117, + "kode" => "059", + "nama" => "Bidang Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 118, + "kode" => "060", + "nama" => "ORGANISASI / KETATALAKSANAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 119, + "kode" => "060.1", + "nama" => "Program Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 120, + "kode" => "061", + "nama" => + "Organisasi Instansi Pemerintah (struktur organisasi)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 121, + "kode" => "061.1", + "nama" => "Susunan dan Tata Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 122, + "kode" => "061.2", + "nama" => "Tata Tertib Kantor, Jam Kerja di Bulan Puasa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 123, + "kode" => "062", + "nama" => "Organisasi Badan Non Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 124, + "kode" => "063", + "nama" => "Organisasi Badan Internasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 125, + "kode" => "064", + "nama" => "Organisasi Semi Pemerintah, BKS-AKSI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 126, + "kode" => "065", + "nama" => "Ketatalaksanaan / Tata Naskah / Sistem", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 127, + "kode" => "066", + "nama" => "Stempel Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 128, + "kode" => "067", + "nama" => "Pelayanan Umum / Pelayanan Publik / Analisis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 129, + "kode" => "068", + "nama" => "Komputerisasi / Siskomdagri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 130, + "kode" => "069", + "nama" => "Standar Pelayanan Minimal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 131, + "kode" => "070", + "nama" => "PENELITIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 132, + "kode" => "071", + "nama" => "Riset", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 133, + "kode" => "072", + "nama" => "Survey", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 134, + "kode" => "073", + "nama" => "Kajian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 135, + "kode" => "074", + "nama" => "Kerjasama Penelitian Dengan Perguruan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 136, + "kode" => "075", + "nama" => "Kementerian Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 137, + "kode" => "076", + "nama" => "Non Kementerian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 138, + "kode" => "077", + "nama" => "Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 139, + "kode" => "078", + "nama" => "Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 140, + "kode" => "079", + "nama" => "Kecamatan /Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 141, + "kode" => "080", + "nama" => "KONFERENSI / RAPAT / SEMINAR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 142, + "kode" => "081", + "nama" => "Gubernur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 143, + "kode" => "082", + "nama" => "Bupati / Walikota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 144, + "kode" => "083", + "nama" => "Komponen, Eselon Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 145, + "kode" => "084", + "nama" => "Instansi Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 146, + "kode" => "085", + "nama" => "Internasional Di Dalam Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 147, + "kode" => "086", + "nama" => "Internasional Di Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 148, + "kode" => "087", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 149, + "kode" => "088", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 150, + "kode" => "089", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 151, + "kode" => "090", + "nama" => "PERJALANAN DINAS", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 152, + "kode" => "091", + "nama" => "Perjalanan Presiden/Wakil Presiden Ke Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 153, + "kode" => "092", + "nama" => "Perjalanan Menteri Ke Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 154, + "kode" => "093", + "nama" => "Perjalanan Pejabat Tinggi (Pejabat Eselon 1)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 155, + "kode" => "094", + "nama" => "Perjalanan Pegawai Termasuk Pemanggilan Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 156, + "kode" => "095", + "nama" => "Perjalanan Tamu Asing Ke Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 157, + "kode" => "096", + "nama" => "Perjalanan Presiden/Wakil Presiden Ke Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 158, + "kode" => "097", + "nama" => "Perjalanan Menteri Ke Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 159, + "kode" => "098", + "nama" => "Perjalanan Pejabat Tinggi Ke Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 160, + "kode" => "099", + "nama" => "Perjalanan Pegawai ke Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 161, + "kode" => "100", + "nama" => "PEMERINTAHAN", + "uraian" => + "Meliputi: Tata Praja, Legislatif, Yudikatif, Hubungan luar", + "enabled" => 1, + ], + [ + "id" => 162, + "kode" => "101", + "nama" => "negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 163, + "kode" => "102", + "nama" => "GDN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 164, + "kode" => "103", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 165, + "kode" => "104", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 166, + "kode" => "105", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 167, + "kode" => "110", + "nama" => "PEMERINTAHAN PUSAT", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 168, + "kode" => "111", + "nama" => "Presiden", + "uraian" => + "Meliputi: pencalonan, pengangkatan, pelantikan, sumpah, dan serah jabatan", + "enabled" => 1, + ], + [ + "id" => 169, + "kode" => "111.1", + "nama" => "Pertanggung jawaban presiden kpd MPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 170, + "kode" => "111.2", + "nama" => "Amanat Presiden/Amanat Kenegaraan/Pidato", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 171, + "kode" => "112", + "nama" => "Wakil Presiden", + "uraian" => + "Meliputi: pencalonan, pengangkatan, pelantikan, sumpah, dan serah jabatan", + "enabled" => 1, + ], + [ + "id" => 172, + "kode" => "112.1", + "nama" => "Pertanggung jawaban wakil presiden kepada MPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 173, + "kode" => "112.2", + "nama" => "Amanat Wakil Presiden/Amanat Kenegaraan/Pidato", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 174, + "kode" => "113", + "nama" => "Susunan Kabinet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 175, + "kode" => "113.1", + "nama" => "Reshuffle", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 176, + "kode" => "113.2", + "nama" => "Penunjukan Menteri ad interim", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 177, + "kode" => "113.3", + "nama" => "Sidang Kabinet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 178, + "kode" => "114", + "nama" => "Kementerian Dalam Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 179, + "kode" => "114.1", + "nama" => "Amanat Menteri Dalam Negeri/Sambutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 180, + "kode" => "115", + "nama" => "Kementerian lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 181, + "kode" => "116", + "nama" => "Lembaga Tinggi Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 182, + "kode" => "117", + "nama" => "Lembaga Non Kementerian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 183, + "kode" => "118", + "nama" => "Otonomi/Desentralisasi/Dekonsentrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 184, + "kode" => "119", + "nama" => "Kerjasama Antar Kementerian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 185, + "kode" => "120", + "nama" => "PEMERINTAH PROVINSI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 186, + "kode" => "120.04", + "nama" => "Laporan daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 187, + "kode" => "120.42", + "nama" => "Monografi tambahkan kode wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 188, + "kode" => "120.1", + "nama" => "Koordinasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 189, + "kode" => "120.2", + "nama" => "Instansi Tingkat Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 190, + "kode" => "120.21", + "nama" => "Dinas Otonomi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 191, + "kode" => "120.22", + "nama" => "Instansi Vertikal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 192, + "kode" => "120.23", + "nama" => "Kerjasama antar Provinsi/Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 193, + "kode" => "121", + "nama" => "Gubernur tambahkan kode wilayah, ", + "uraian" => + "Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.", + "enabled" => 1, + ], + [ + "id" => 194, + "kode" => "122", + "nama" => "Wakil Gubernur tambahkan kode wilayah, ", + "uraian" => + "Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.", + "enabled" => 1, + ], + [ + "id" => 195, + "kode" => "123", + "nama" => "Sekretaris Wilayah tambahkan kode wilayah, ", + "uraian" => + "Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan, Pemberhentian, Serah Terima Jabatan dan sebagainya.", + "enabled" => 1, + ], + [ + "id" => 196, + "kode" => "124", + "nama" => "Pembentukan/Pemekaran Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 197, + "kode" => "124.1", + "nama" => + "Pembinaan/Perubahan Nama kepada: Daerah, Kota,Benda, Geografis, Gunung, Sungai, Pulau, Selat, Batas laut, dan sebagainya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 198, + "kode" => "124.2", + "nama" => "Pemekaran Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 199, + "kode" => "124.3", + "nama" => "Forum Koordinasi lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 200, + "kode" => "125", + "nama" => "Pembentukan Pemekaran Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 201, + "kode" => "125.1", + "nama" => + "Pembinaan/Perubahan Nama Kepada: Daerah, Kota, Benda, Geografis, Gunung, Sungai, Pulau, Selat, Batas Laut, dan sebagainya.", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 202, + "kode" => "125.2", + "nama" => "Pembentukan Wialayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 203, + "kode" => "125.3", + "nama" => "Pemindahan Ibukota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 204, + "kode" => "125.4", + "nama" => "Perubahan batas Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 205, + "kode" => "125.5", + "nama" => "Pemekaran Wialayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 206, + "kode" => "126", + "nama" => "Pembagian Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 207, + "kode" => "127", + "nama" => "Penyerahan Urusan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 208, + "kode" => "128", + "nama" => "Swaparaja/Penataan Wilayah/Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 209, + "kode" => "129", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 210, + "kode" => "130", + "nama" => "PEMERINTAH KABUPATEN / KOTA", + "uraian" => + "Bupati /Walikota, Tambahkan Kode Wilayah, Meliputi: Pencalonan,Pengangkatan, Meninggal, Pelantikan,", + "enabled" => 1, + ], + [ + "id" => 211, + "kode" => "131", + "nama" => "Pemberhentian, Serah Terima Jabatan, dsb", + "uraian" => + "Sambutan / Pengarahan / Amanat Wakil Bupati /Walikota, Tambahkan Kode Wilayah, Meliputi: Pencalonan, Pengangkatan, Meninggal, Pelantikan,", + "enabled" => 1, + ], + [ + "id" => 212, + "kode" => "132", + "nama" => + "Pemberhentian, Serah Terima Jabatan, Sekretaris Daerah Kabupaten/Kota, Tambahkan Kode Wilayah, ", + "uraian" => "Meliputi: Pencalonan, Pengangkatan, Meninggal,", + "enabled" => 1, + ], + [ + "id" => 213, + "kode" => "133", + "nama" => "Pelantikan, Pemberhentian, Serah Terima Jabatan,.", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 214, + "kode" => "134", + "nama" => "Forum Koordinasi Pemerintah Di Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 215, + "kode" => "134.1", + "nama" => "Muspida", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 216, + "kode" => "134.2", + "nama" => "Forum PAN (Panitian Anggaran Nasional)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 217, + "kode" => "134.3", + "nama" => "Forum Koordinasi Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 218, + "kode" => "134.4", + "nama" => "Kerjasama antar Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 219, + "kode" => "135", + "nama" => "Pembentukan / Pemekaran Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 220, + "kode" => "135.1", + "nama" => "Pemindahan Ibukota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 221, + "kode" => "135.2", + "nama" => "Pembentukan Wilayah Pembantu Bupati/Walikota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 222, + "kode" => "135.3", + "nama" => "Pemabagian Wilayah Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 223, + "kode" => "135.4", + "nama" => "Perubahan Batas Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 224, + "kode" => "135.5", + "nama" => "Pemekaran Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 225, + "kode" => "135.6", + "nama" => "Permasalahan Batas Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 226, + "kode" => "135.7", + "nama" => + "Pembentukan Ibukota Kabupaten/Kota Pemberian dan Penggantian Nama Kabupaten/Kota, Daerah,", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 227, + "kode" => "135.8", + "nama" => "Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 228, + "kode" => "136", + "nama" => "Pembagian Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 229, + "kode" => "137", + "nama" => "Penyerahan Urusan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 230, + "kode" => "138", + "nama" => "Pemerintah Wilayah Kecamatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 231, + "kode" => "138.1", + "nama" => "Sambutan / Pengarahan / Amanat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 232, + "kode" => "138.2", + "nama" => "Pembentukan Kecamatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 233, + "kode" => "138.3", + "nama" => "Pemekaran Kecamatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 234, + "kode" => "138.4", + "nama" => "Perluasan/Perubahan Batas Wilayah Kecamatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 235, + "kode" => "138.5", + "nama" => "Pembentukan Perwakilan Kecamatan/Kemantren", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 236, + "kode" => "138.6", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 237, + "kode" => "138.7", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 238, + "kode" => "139", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 239, + "kode" => "140", + "nama" => "PEMERINTAHAN DESA / KELURAHAN", + "uraian" => + "Pamong Desa, Meliputi: Pencalonan, Pemilihan, Meninggal,", + "enabled" => 1, + ], + [ + "id" => 240, + "kode" => "141", + "nama" => "Pengangkatan, Pemberhenian, dan sebagainya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 241, + "kode" => "142", + "nama" => "Penghasilan Pamong Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 242, + "kode" => "143", + "nama" => "Kekayaan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 243, + "kode" => "144", + "nama" => "Dewan Tingkat Desa, Dewan Marga, Rembug Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 244, + "kode" => "145", + "nama" => "Administrasi Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 245, + "kode" => "146", + "nama" => "Kewilayahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 246, + "kode" => "146.1", + "nama" => "Pembentukan Desa/Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 247, + "kode" => "146.2", + "nama" => "Pemekaran Desa/Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 248, + "kode" => "146.3", + "nama" => + "Perubahan Batas Wilayah / Perluasan Desa / Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 249, + "kode" => "146.4", + "nama" => "Perubahan Nama Desa / Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 250, + "kode" => "146.5", + "nama" => "Kerjasama Antar Desa / Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 251, + "kode" => "147", + "nama" => "Lembaga-lembaga Tingkat Desa", + "uraian" => + "Jangan Klasifikasikan Disini, Lihat 410 Dengan Perinciannya", + "enabled" => 1, + ], + [ + "id" => 252, + "kode" => "148", + "nama" => "Perangkat Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 253, + "kode" => "148.1", + "nama" => "Kepala Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 254, + "kode" => "148.2", + "nama" => "Sekretaris Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 255, + "kode" => "148.3", + "nama" => "Staf Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 256, + "kode" => "149.1", + "nama" => "Dewan Kelurahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 257, + "kode" => "149.2", + "nama" => "Rukun Tetangga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 258, + "kode" => "149.3", + "nama" => "Rukun Warga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 259, + "kode" => "149.4", + "nama" => "Rukun Kampung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 260, + "kode" => "150", + "nama" => "LEGISLATIF MPR / DPR / DPD", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 261, + "kode" => "151", + "nama" => "Keanggotaan MPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 262, + "kode" => "151.1", + "nama" => "Pencalonan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 263, + "kode" => "151.2", + "nama" => "Pemberhentian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 264, + "kode" => "151.3", + "nama" => "Recall", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 265, + "kode" => "151.4", + "nama" => "Pelanggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 266, + "kode" => "152", + "nama" => "Persidangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 267, + "kode" => "153", + "nama" => "Kesejahteraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 268, + "kode" => "153.1", + "nama" => "Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 269, + "kode" => "153.2", + "nama" => "Penghargaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 270, + "kode" => "154", + "nama" => "Hak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 271, + "kode" => "155", + "nama" => "Keanggotaan DPR ", + "uraian" => + "Pencalonan Pengangkatan Persidangan Sidang Pleno Dengar Pendapat/Rapat Komisi", + "enabled" => 1, + ], + [ + "id" => 272, + "kode" => "156", + "nama" => "Reses", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 273, + "kode" => "157", + "nama" => "Kesejahteraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 274, + "kode" => "157.1", + "nama" => "Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 275, + "kode" => "157.2", + "nama" => "Penghargaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 276, + "kode" => "158", + "nama" => "Jawaban Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 277, + "kode" => "159", + "nama" => "Hak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 278, + "kode" => "160", + "nama" => "DPRD PROVINSI TAMBAHKAN KODE WILAYAH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 279, + "kode" => "161", + "nama" => "Keanggotaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 280, + "kode" => "161.1", + "nama" => "Pencalonan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 281, + "kode" => "161.2", + "nama" => "Pengangkatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 282, + "kode" => "161.3", + "nama" => "Pemberhentian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 283, + "kode" => "161.4", + "nama" => "Recall", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 284, + "kode" => "161.5", + "nama" => "Meninggal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 285, + "kode" => "161.6", + "nama" => "Pelanggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 286, + "kode" => "162", + "nama" => "Persidangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 287, + "kode" => "162.1", + "nama" => "Reses", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 288, + "kode" => "163", + "nama" => "Kesejahteraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 289, + "kode" => "163.1", + "nama" => "Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 290, + "kode" => "163.2", + "nama" => "Penghargaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 291, + "kode" => "164", + "nama" => "Hak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 292, + "kode" => "165", + "nama" => "Sekretaris DPRD Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 293, + "kode" => "166", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 294, + "kode" => "167", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 295, + "kode" => "168", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 296, + "kode" => "169", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 297, + "kode" => "170", + "nama" => "DPRD KABUPATEN TAMBAHKAN KODE WILAYAH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 298, + "kode" => "171", + "nama" => "Keanggotaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 299, + "kode" => "171.1", + "nama" => "Pencalonan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 300, + "kode" => "171.2", + "nama" => "Pengangkatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 301, + "kode" => "171.3", + "nama" => "Pemberhentian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 302, + "kode" => "171.4", + "nama" => "Recall", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 303, + "kode" => "171.5", + "nama" => "Pelanggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 304, + "kode" => "172", + "nama" => "Persidangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 305, + "kode" => "173", + "nama" => "Kesejahteraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 306, + "kode" => "173.1", + "nama" => "Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 307, + "kode" => "173.2", + "nama" => "Penghargaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 308, + "kode" => "174", + "nama" => "Hak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 309, + "kode" => "175", + "nama" => "Sekretaris DPRD Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 310, + "kode" => "176", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 311, + "kode" => "177", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 312, + "kode" => "178", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 313, + "kode" => "180", + "nama" => "HUKUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 314, + "kode" => "180.1", + "nama" => "Kontitusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 315, + "kode" => "180.11", + "nama" => "Dasar Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 316, + "kode" => "180.12", + "nama" => "Undang-Undang Dasar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 317, + "kode" => "180.2", + "nama" => "GBHN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 318, + "kode" => "180.3", + "nama" => "Amnesti, Abolisi dan Grasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 319, + "kode" => "181", + "nama" => "Perdata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 320, + "kode" => "181.1", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 321, + "kode" => "181.2", + "nama" => "Rumah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 322, + "kode" => "181.3", + "nama" => "Utang/Piutang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 323, + "kode" => "181.31", + "nama" => "Gadai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 324, + "kode" => "181.32", + "nama" => "Hipotik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 325, + "kode" => "181.4", + "nama" => "Notariat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 326, + "kode" => "182", + "nama" => "Pidana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 327, + "kode" => "182.1", + "nama" => "Penyidik Pegawai Negeri Sipil (PPNS)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 328, + "kode" => "183", + "nama" => "Peradilan", + "uraian" => + "Peradilan Agama Islam 451.6, Peradilan Perkara Tanah 593.71", + "enabled" => 1, + ], + [ + "id" => 329, + "kode" => "183.1", + "nama" => "Bantuan Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 330, + "kode" => "184", + "nama" => "Hukum Internasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 331, + "kode" => "185", + "nama" => "Imigrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 332, + "kode" => "185.1", + "nama" => "Visa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 333, + "kode" => "185.2", + "nama" => "Pasport", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 334, + "kode" => "185.3", + "nama" => "Exit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 335, + "kode" => "185.4", + "nama" => "Reentry", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 336, + "kode" => "185.5", + "nama" => "Lintas Batas/Batas Antar Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 337, + "kode" => "186", + "nama" => "Kepenjaraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 338, + "kode" => "187", + "nama" => "Kejaksaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 339, + "kode" => "188", + "nama" => "Peraturan Perundang-Undangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 340, + "kode" => "188.1", + "nama" => "TAP MPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 341, + "kode" => "188.2", + "nama" => "Undang-Undang Dasar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 342, + "kode" => "188.3", + "nama" => "Peraturan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 343, + "kode" => "188.31", + "nama" => "Peraturan Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 344, + "kode" => "188.32", + "nama" => "Peraturan Menteri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 345, + "kode" => "188.33", + "nama" => "Peraturan Lembaga Non Departemen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 346, + "kode" => "188.34", + "nama" => "Peraturan Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 347, + "kode" => "188.341", + "nama" => "Peraturan Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 348, + "kode" => "188.342", + "nama" => "Peraturan Kabupaten/Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 349, + "kode" => "188.4", + "nama" => "Keputusan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 350, + "kode" => "188.41", + "nama" => "Presiden", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 351, + "kode" => "188.42", + "nama" => "Menteri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 352, + "kode" => "188.43", + "nama" => "Lembaga Non Departemen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 353, + "kode" => "188.44", + "nama" => "Gubernur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 354, + "kode" => "188.45", + "nama" => "Bupati/Walikota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 355, + "kode" => "188.5", + "nama" => "Instruksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 356, + "kode" => "188.51", + "nama" => "Presiden", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 357, + "kode" => "188.52", + "nama" => "Menteri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 358, + "kode" => "188.53", + "nama" => "Lembaga Non Departemen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 359, + "kode" => "188.54", + "nama" => "Gubernur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 360, + "kode" => "188.55", + "nama" => "Bupati/Walikota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 361, + "kode" => "189", + "nama" => "Hukum Adat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 362, + "kode" => "189.1", + "nama" => "Tokoh Adat/Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 363, + "kode" => "190", + "nama" => "HUBUNGAN LUAR NEGERI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 364, + "kode" => "191", + "nama" => "Perwakilan Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 365, + "kode" => "192", + "nama" => "Tamu Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 366, + "kode" => "193", + "nama" => "Kerjasama Dengan Negara Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 367, + "kode" => "193.1", + "nama" => "Asean", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 368, + "kode" => "193.2", + "nama" => "Bantuan Luar Negeri/Hibah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 369, + "kode" => "194", + "nama" => "Perwakilan RI Di Luar Negeri/Hibah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 370, + "kode" => "195", + "nama" => "PBB", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 371, + "kode" => "196", + "nama" => "Laporan Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 372, + "kode" => "197", + "nama" => "Hutang Luar Negeri PHLN/LOAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 373, + "kode" => "198", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 374, + "kode" => "199", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 375, + "kode" => "200", + "nama" => "POLITIK", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 376, + "kode" => "201", + "nama" => "Kebijaksanaan umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 377, + "kode" => "202", + "nama" => "Orde baru", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 378, + "kode" => "203", + "nama" => "Reformasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 379, + "kode" => "204", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 380, + "kode" => "205", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 381, + "kode" => "206", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 382, + "kode" => "210", + "nama" => "KEPARTAIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 383, + "kode" => "211", + "nama" => "Lambang partai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 384, + "kode" => "212", + "nama" => "Kartu tanda anggota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 385, + "kode" => "213", + "nama" => "Bantuan keuangan parpol", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 386, + "kode" => "214", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 387, + "kode" => "215", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 388, + "kode" => "216", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 389, + "kode" => "220", + "nama" => "ORGANISASI KEMASYARAKATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 390, + "kode" => "221", + "nama" => "Berdasarkan perjuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 391, + "kode" => "221.1", + "nama" => "Perintis kemerdekaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 392, + "kode" => "221.2", + "nama" => "angkatan 45", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 393, + "kode" => "221.3", + "nama" => "Veteran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 394, + "kode" => "222", + "nama" => "Berdasarkan Kekaryaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 395, + "kode" => "222.1", + "nama" => "PEPABRI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 396, + "kode" => "222.2", + "nama" => "Wredatama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 397, + "kode" => "223", + "nama" => "Berdasarkan kerohanian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 398, + "kode" => "224", + "nama" => "Lembaga adat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 399, + "kode" => "225", + "nama" => "Lembaga Swadaya Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 400, + "kode" => "226", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 401, + "kode" => "230", + "nama" => "ORGANISASI PROFESI DAN FUNGSIONAL", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 402, + "kode" => "231", + "nama" => "Ikatan Dokter Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 403, + "kode" => "232", + "nama" => "Persatuan Guru Republik Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 404, + "kode" => "233", + "nama" => "PERSATUAN SARJANA HUKUM INDONESIA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 405, + "kode" => "234", + "nama" => "Persatuan Advokat Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 406, + "kode" => "235", + "nama" => "Lembaga Bantuan Hukum Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 407, + "kode" => "236", + "nama" => "Korps Pegawai Republik Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 408, + "kode" => "237", + "nama" => "Persatuan Wartawan Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 409, + "kode" => "238", + "nama" => "Ikatan Cendikiawan Muslim Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 410, + "kode" => "239", + "nama" => "Organisasi Profesi Dan Fungsional Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 411, + "kode" => "240", + "nama" => "ORGANISASI PEMUDA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 412, + "kode" => "241", + "nama" => "Komite Nasional Pemuda Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 413, + "kode" => "242", + "nama" => "Organisasi Mahasiswa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 414, + "kode" => "243", + "nama" => "Organisasi Pelajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 415, + "kode" => "244", + "nama" => "Gerakan Pemuda Ansor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 416, + "kode" => "245", + "nama" => "Gerakan Pemuda Islam Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 417, + "kode" => "246", + "nama" => "Gerakan Pemuda Marhaenis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 418, + "kode" => "247", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 419, + "kode" => "248", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 420, + "kode" => "250", + "nama" => "ORGANISASI BURUH, TANI, NELAYAN DAN ANGKUTAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 421, + "kode" => "251", + "nama" => "Federasi Buruh Seluruh Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 422, + "kode" => "252", + "nama" => "Organisasi Buruh Internasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 423, + "kode" => "253", + "nama" => "Himpunan Kerukunan Tani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 424, + "kode" => "254", + "nama" => "Himpunan Nelayan Seluruh Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 425, + "kode" => "255", + "nama" => "Keluarga Sopir Proporsional Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 426, + "kode" => "256", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 427, + "kode" => "257", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 428, + "kode" => "258", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 429, + "kode" => "260", + "nama" => "ORGANISASI WANITA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 430, + "kode" => "261", + "nama" => "Dharma Wanita", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 431, + "kode" => "262", + "nama" => "Persatuan Wanita Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 432, + "kode" => "263", + "nama" => "Pemberdayaan Perempuan (wanita)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 433, + "kode" => "264", + "nama" => "Kongres Wanita", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 434, + "kode" => "265", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 435, + "kode" => "266", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 436, + "kode" => "267", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 437, + "kode" => "268", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 438, + "kode" => "269", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 439, + "kode" => "270", + "nama" => "PEMILIHAN UMUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 440, + "kode" => "271", + "nama" => "Pencalonan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 441, + "kode" => "272", + "nama" => "Nomor Urut Partai / Tanda Gambar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 442, + "kode" => "273", + "nama" => "Kampanye", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 443, + "kode" => "274", + "nama" => "Petugas Pemilu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 444, + "kode" => "275", + "nama" => "Pemilih / Daftar Pemilih", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 445, + "kode" => "276", + "nama" => "Sarana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 446, + "kode" => "276.1", + "nama" => "TPS", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 447, + "kode" => "276.2", + "nama" => "Kendaraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 448, + "kode" => "276.3", + "nama" => "Surat Suara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 449, + "kode" => "276.4", + "nama" => "Kotak Suara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 450, + "kode" => "276.5", + "nama" => "Dana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 451, + "kode" => "277", + "nama" => "Pemungutan Suara / Perhitungan Suara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 452, + "kode" => "278", + "nama" => "Penetapan Hasil Pemilu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 453, + "kode" => "279", + "nama" => "Penetapan Perolehan Jumlah Kursi Dan Calon Terpilih", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 454, + "kode" => "280", + "nama" => "Pengucapan Sumpah Janji MPR,DPR,DPD", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 455, + "kode" => "281", + "nama" => "", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 456, + "kode" => "282", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 457, + "kode" => "283", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 458, + "kode" => "284", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 459, + "kode" => "300", + "nama" => "KEAMANAN / KETERTIBAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 460, + "kode" => "301", + "nama" => "Keamanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 461, + "kode" => "302", + "nama" => "Ketertiban", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 462, + "kode" => "303", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 463, + "kode" => "310", + "nama" => "PERTAHANAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 464, + "kode" => "311", + "nama" => "Darat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 465, + "kode" => "312", + "nama" => "Laut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 466, + "kode" => "313", + "nama" => "Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 467, + "kode" => "314", + "nama" => "Perbatasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 468, + "kode" => "315", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 469, + "kode" => "316", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 470, + "kode" => "317", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 471, + "kode" => "320", + "nama" => "KEMILITERAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 472, + "kode" => "321", + "nama" => "Latihan Militer", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 473, + "kode" => "322", + "nama" => "Wajib Militer", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 474, + "kode" => "323", + "nama" => "Operasi Militer", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 475, + "kode" => "324", + "nama" => "Kekaryaan TNI Pejabat Sipil dari TNI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 476, + "kode" => "324.1", + "nama" => "TMD", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 477, + "kode" => "325", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 478, + "kode" => "326", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 479, + "kode" => "327", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 480, + "kode" => "328", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 481, + "kode" => "330", + "nama" => "KEAMANAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 482, + "kode" => "331", + "nama" => "Kepolisian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 483, + "kode" => "331.1", + "nama" => "Polisi Pamong Praja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 484, + "kode" => "331.2", + "nama" => "Kamra", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 485, + "kode" => "331.3", + "nama" => "Kamling", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 486, + "kode" => "331.4", + "nama" => "Jaga Wana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 487, + "kode" => "332", + "nama" => "Huru-Hara / Demonstrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 488, + "kode" => "333", + "nama" => "Senjata Api Tajam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 489, + "kode" => "334", + "nama" => "Bahan Peledak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 490, + "kode" => "335", + "nama" => "Perjudian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 491, + "kode" => "336", + "nama" => "Surat-Surat Kaleng", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 492, + "kode" => "337", + "nama" => "Pengaduan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 493, + "kode" => "338", + "nama" => "Himbauan / Larangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 494, + "kode" => "339", + "nama" => "Teroris", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 495, + "kode" => "340", + "nama" => "PERTAHANAN SIPIL", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 496, + "kode" => "341", + "nama" => "Perlindungan Sipil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 497, + "kode" => "342", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 498, + "kode" => "343", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 499, + "kode" => "344", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 500, + "kode" => "350", + "nama" => "KEJAHATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 501, + "kode" => "351", + "nama" => "Makar / Pemberontak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 502, + "kode" => "352", + "nama" => "Pembunuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 503, + "kode" => "353", + "nama" => "Penganiayaan, Pencurian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 504, + "kode" => "354", + "nama" => "Subversi / Penyelundupan / Narkotika", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 505, + "kode" => "355", + "nama" => "Pemalsuan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 506, + "kode" => "356", + "nama" => + "Korupsi / Penyelewengan / Penyalahgunaan Jabatan / KKN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 507, + "kode" => "357", + "nama" => "Pemerkosaan / Perbuatan Cabul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 508, + "kode" => "358", + "nama" => "Kenakalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 509, + "kode" => "359", + "nama" => "Kejahatan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 510, + "kode" => "360", + "nama" => "BENCANA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 511, + "kode" => "361", + "nama" => "Gunung Berapi / Gempa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 512, + "kode" => "362", + "nama" => "Banjir / Tanah Longsor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 513, + "kode" => "363", + "nama" => "Angin Topan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 514, + "kode" => "364", + "nama" => "Kebakaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 515, + "kode" => "364.1", + "nama" => "Pemadam Kebakaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 516, + "kode" => "365", + "nama" => "Kekeringan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 517, + "kode" => "366", + "nama" => "Tsunami", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 518, + "kode" => "367", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 519, + "kode" => "368", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 520, + "kode" => "370", + "nama" => "KECELAKAAN / SAR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 521, + "kode" => "371", + "nama" => "Darat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 522, + "kode" => "372", + "nama" => "Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 523, + "kode" => "373", + "nama" => "Laut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 524, + "kode" => "374", + "nama" => "Sungai / Danau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 525, + "kode" => "375", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 526, + "kode" => "376", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 527, + "kode" => "377", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 528, + "kode" => "380", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 529, + "kode" => "381", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 530, + "kode" => "382", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 531, + "kode" => "383", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 532, + "kode" => "390", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 533, + "kode" => "391", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 534, + "kode" => "392", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 535, + "kode" => "393", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 536, + "kode" => "400", + "nama" => "KESEJAHTERAAN RAKYAT", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 537, + "kode" => "401", + "nama" => "Keluarga Miskin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 538, + "kode" => "402", + "nama" => "PNPM Mandiri Pedesaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 539, + "kode" => "403", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 540, + "kode" => "404", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 541, + "kode" => "410", + "nama" => "PEMBANGUNAN DESA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 542, + "kode" => "411", + "nama" => "Pembinaan Usaha Gotong Royong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 543, + "kode" => "411.1", + "nama" => "Swadaya Gotong Royong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 544, + "kode" => "411.11", + "nama" => "Penataan Gotong Royong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 545, + "kode" => "411.12", + "nama" => "Gotong Royong Dinamis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 546, + "kode" => "411.13", + "nama" => "Gotong Royong Statis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 547, + "kode" => "411.14", + "nama" => "Pungutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 548, + "kode" => "411.2", + "nama" => "Lembaga Sosial Desa (LSD)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 549, + "kode" => "411.21", + "nama" => "Pembinaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 550, + "kode" => "411.22", + "nama" => "Klasifikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 551, + "kode" => "411.23", + "nama" => "Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 552, + "kode" => "411.24", + "nama" => "Musyawarah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 553, + "kode" => "411.3", + "nama" => "Latihan Kerja Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 554, + "kode" => "411.31", + "nama" => "Kader Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 555, + "kode" => "411.32", + "nama" => "Kuliah Kerja Nyata (KKN)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 556, + "kode" => "411.33", + "nama" => "Pusat Latihan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 557, + "kode" => "411.34", + "nama" => "Kursus-Kursus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 558, + "kode" => "411.35", + "nama" => "Kurikulum / Sylabus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 559, + "kode" => "411.36", + "nama" => "Ketrampilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 560, + "kode" => "411.37", + "nama" => "Pramuka", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 561, + "kode" => "411.4", + "nama" => "Pembinaan Kesejahteraan Keluarga (PKK)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 562, + "kode" => "411.41", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 563, + "kode" => "411.42", + "nama" => "Pembinaan Organisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 564, + "kode" => "411.43", + "nama" => "Kegiatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 565, + "kode" => "411.5", + "nama" => "Penyuluhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 566, + "kode" => "411.51", + "nama" => "Publikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 567, + "kode" => "411.52", + "nama" => "Peragaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 568, + "kode" => "411.53", + "nama" => "Sosio Drama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 569, + "kode" => "411.54", + "nama" => "Siaran Pedesaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 570, + "kode" => "411.55", + "nama" => "Penyuluhan Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 571, + "kode" => "411.6", + "nama" => "Kelembagaan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 572, + "kode" => "411.61", + "nama" => "Kelompok Tani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 573, + "kode" => "411.62", + "nama" => "Rukun Tani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 574, + "kode" => "411.63", + "nama" => "Subak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 575, + "kode" => "411.64", + "nama" => "Dharma Tirta", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 576, + "kode" => "412", + "nama" => "Perekonomian Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 577, + "kode" => "412.1", + "nama" => "Produksi Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 578, + "kode" => "412.11", + "nama" => "Pengolahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 579, + "kode" => "412.12", + "nama" => "Pemasaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 580, + "kode" => "412.2", + "nama" => "Keuangan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 581, + "kode" => "412.21", + "nama" => "Perkreditan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 582, + "kode" => "412.22", + "nama" => "Inventarisasi Data", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 583, + "kode" => "412.23", + "nama" => "Perkembangan / Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 584, + "kode" => "412.24", + "nama" => "Bantuan / Stimulans", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 585, + "kode" => "412.25", + "nama" => "Petunjuk / Pembinaan Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 586, + "kode" => "412.3", + "nama" => "Koperasi Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 587, + "kode" => "412.31", + "nama" => "Badan Usaha Unit Desa (BUUD)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 588, + "kode" => "412.32", + "nama" => "Koperasi Usaha Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 589, + "kode" => "412.4", + "nama" => "Penataan Bantuan Pembangunan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 590, + "kode" => "412.41", + "nama" => "Jumlah Desa Yang Diberi Bantuan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 591, + "kode" => "412.42", + "nama" => "Pengarahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 592, + "kode" => "412.43", + "nama" => "Pusat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 593, + "kode" => "412.44", + "nama" => "Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 594, + "kode" => "412.5", + "nama" => "Alokasi Bantuan Pembangunan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 595, + "kode" => "412.51", + "nama" => "Pusat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 596, + "kode" => "412.52", + "nama" => "Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 597, + "kode" => "412.6", + "nama" => "Pelaksanaan Bantuan Pembangunan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 598, + "kode" => "412.61", + "nama" => "Bantuan Langsung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 599, + "kode" => "412.62", + "nama" => "Bantuan Keserasian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 600, + "kode" => "412.63", + "nama" => "Bantuan Juara Lomba Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 601, + "kode" => "413", + "nama" => "Prasarana Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 602, + "kode" => "413.1", + "nama" => "Prasarana Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 603, + "kode" => "413.11", + "nama" => "Pembinaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 604, + "kode" => "413.12", + "nama" => "Bimbingan Teknis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 605, + "kode" => "413.2", + "nama" => "Pemukiman Kembali Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 606, + "kode" => "413.21", + "nama" => "Lokasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 607, + "kode" => "413.22", + "nama" => "Diskusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 608, + "kode" => "413.23", + "nama" => "Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 609, + "kode" => "413.3", + "nama" => "Masyarakat Pradesa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 610, + "kode" => "413.31", + "nama" => "Pembinaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 611, + "kode" => "413.32", + "nama" => "Penyuluhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 612, + "kode" => "413.4", + "nama" => "Pemugaran Perumahan Dan Lingkungan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 613, + "kode" => "413.41", + "nama" => "Rumah Sehat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 614, + "kode" => "413.42", + "nama" => "Proyek Perintis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 615, + "kode" => "413.43", + "nama" => "Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 616, + "kode" => "413.44", + "nama" => "Pengembangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 617, + "kode" => "413.45", + "nama" => "Perbaikan Kampung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 618, + "kode" => "414", + "nama" => "Pengembangan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 619, + "kode" => "414.1", + "nama" => "Tingkat Perkembangan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 620, + "kode" => "414.11", + "nama" => "Jumlah Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 621, + "kode" => "414.12", + "nama" => "Pemekaran Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 622, + "kode" => "414.13", + "nama" => "Pembentukan Desa Baru", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 623, + "kode" => "414.14", + "nama" => "Evaluasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 624, + "kode" => "414.15", + "nama" => "Bagan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 625, + "kode" => "414.2", + "nama" => "Unit Desa Kerja Pembangunan (UDKP)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 626, + "kode" => "414.21", + "nama" => "Penyuluhan Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 627, + "kode" => "414.22", + "nama" => "Lokasi UDKP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 628, + "kode" => "414.23", + "nama" => "Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 629, + "kode" => "414.24", + "nama" => "Bimbingan/Pembinaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 630, + "kode" => "414.25", + "nama" => "Evaluasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 631, + "kode" => "414.3", + "nama" => "Tata Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 632, + "kode" => "414.31", + "nama" => "Inventarisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 633, + "kode" => "414.32", + "nama" => "Penyusunan Pola Tata Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 634, + "kode" => "414.33", + "nama" => "Aplikasi Tata Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 635, + "kode" => "414.34", + "nama" => "Pemetaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 636, + "kode" => "414.35", + "nama" => "Pedoman Pelaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 637, + "kode" => "414.36", + "nama" => "Evaluasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 638, + "kode" => "414.4", + "nama" => "Perlombaan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 639, + "kode" => "414.41", + "nama" => "Pedoman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 640, + "kode" => "414.42", + "nama" => "Penilaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 641, + "kode" => "414.43", + "nama" => "Kejuaraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 642, + "kode" => "414.44", + "nama" => "Piagam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 643, + "kode" => "415", + "nama" => "Koordinasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 644, + "kode" => "415.1", + "nama" => "Sektor Khusus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 645, + "kode" => "415.2", + "nama" => "Rapat Koordinasi Horizontal (RKH)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 646, + "kode" => "415.3", + "nama" => "Tim Koordinasi Pusat (TKP)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 647, + "kode" => "415.4", + "nama" => "Kerjasama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 648, + "kode" => "415.41", + "nama" => "Luar Negeri (UNICEF)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 649, + "kode" => "415.42", + "nama" => "Perguruan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 650, + "kode" => "415.43", + "nama" => "Kementerian / Lembaga Non Kementerian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 651, + "kode" => "416", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 652, + "kode" => "417", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 653, + "kode" => "418", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 654, + "kode" => "420", + "nama" => "PENDIDIKAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 655, + "kode" => "420.1", + "nama" => + "Pendidikan Khusus Klasifikasi Disini Pendidikan Putra/I Irja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 656, + "kode" => "421", + "nama" => "Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 657, + "kode" => "421.1", + "nama" => "Pra Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 658, + "kode" => "421.2", + "nama" => "Sekolah Dasar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 659, + "kode" => "421.3", + "nama" => "Sekolah Menengah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 660, + "kode" => "421.4", + "nama" => "Sekolah Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 661, + "kode" => "421.5", + "nama" => "Sekolah Kejuruan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 662, + "kode" => "421.6", + "nama" => "Kegiatan Sekolah, Dies Natalis Lustrum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 663, + "kode" => "421.7", + "nama" => "Kegiatan Pelajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 664, + "kode" => "421.71", + "nama" => "Reuni Darmawisata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 665, + "kode" => "421.72", + "nama" => "Pelajar Teladan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 666, + "kode" => "421.73", + "nama" => "Resimen Mahasiswa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 667, + "kode" => "421.8", + "nama" => "Sekolah Pendidikan Luar Biasa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 668, + "kode" => "421.9", + "nama" => "Pendidikan Luar Sekolah / Pemberantasan Buta Huruf", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 669, + "kode" => "422", + "nama" => "Administrasi Sekolah", + "uraian" => + "Persyaratan Masuk Sekolah, Testing, Ujian, Pendaftaran,", + "enabled" => 1, + ], + [ + "id" => 670, + "kode" => "422.1", + "nama" => "Mapras, Perpeloncoan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 671, + "kode" => "422.2", + "nama" => "Tahun Pelajaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 672, + "kode" => "422.3", + "nama" => "Hari Libur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 673, + "kode" => "422.4", + "nama" => "Uang Sekolah, Klasifikasi Disini SPP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 674, + "kode" => "422.5", + "nama" => "Beasiswa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 675, + "kode" => "423", + "nama" => "Metode Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 676, + "kode" => "423.1", + "nama" => "Kuliah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 677, + "kode" => "423.2", + "nama" => "Ceramah, Simposium", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 678, + "kode" => "423.3", + "nama" => "Diskusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 679, + "kode" => "423.4", + "nama" => "Kuliah Lapangan, Widyawisata, KKN, Studi Tur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 680, + "kode" => "423.5", + "nama" => "Kurikulum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 681, + "kode" => "423.6", + "nama" => "Karya Tulis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 682, + "kode" => "423.7", + "nama" => "Ujian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 683, + "kode" => "424", + "nama" => "Tenaga Pengajar, Guru, Dosen, Dekan, Rektor", + "uraian" => "Klasifikasi Disini: Guru Teladan", + "enabled" => 1, + ], + [ + "id" => 684, + "kode" => "425", + "nama" => "Sarana Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 685, + "kode" => "425.1", + "nama" => "Gedung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 686, + "kode" => "425.11", + "nama" => "Gedung Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 687, + "kode" => "425.12", + "nama" => "Kampus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 688, + "kode" => "425.13", + "nama" => "Pusat Kegiatan Mahasiswa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 689, + "kode" => "425.2", + "nama" => "Buku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 690, + "kode" => "425.3", + "nama" => "Perlengkapan Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 691, + "kode" => "426", + "nama" => "Keolahragaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 692, + "kode" => "426.1", + "nama" => "Cabang Olah Raga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 693, + "kode" => "426.2", + "nama" => "Sarana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 694, + "kode" => "426.21", + "nama" => "Gedung Olah Raga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 695, + "kode" => "426.22", + "nama" => "Stadion", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 696, + "kode" => "426.23", + "nama" => "Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 697, + "kode" => "426.24", + "nama" => "Kolam renang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 698, + "kode" => "426.3", + "nama" => "Pesta Olah Raga, ", + "uraian" => "Klasifikasi Disini: PON, Porsade, Olimpiade, dsb", + "enabled" => 1, + ], + [ + "id" => 699, + "kode" => "426.4", + "nama" => "KONI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 700, + "kode" => "427", + "nama" => + "Kepramukaan Meliputi: Organisasi Dan Kegiatan Remaja", + "uraian" => "Klasifikasi Disini: Gelanggang Remaja", + "enabled" => 1, + ], + [ + "id" => 701, + "kode" => "428", + "nama" => "Kepramukaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 702, + "kode" => "429", + "nama" => "Pendidikan Kedinasan Untuk Depdagri, Lihat 890", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 703, + "kode" => "430", + "nama" => "KEBUDAYAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 704, + "kode" => "431", + "nama" => "Kesenian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 705, + "kode" => "431.1", + "nama" => "Cabang Kesenian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 706, + "kode" => "431.2", + "nama" => "Sarana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 707, + "kode" => "431.21", + "nama" => "Gedung Kesenian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 708, + "kode" => "432", + "nama" => "Kepurbakalaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 709, + "kode" => "432.1", + "nama" => "Museum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 710, + "kode" => "432.2", + "nama" => "Peninggalan Kuno", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 711, + "kode" => "432.21", + "nama" => "Candi Termasuk Pemugaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 712, + "kode" => "432.22", + "nama" => "Benda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 713, + "kode" => "433", + "nama" => "Sejarah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 714, + "kode" => "434", + "nama" => "Bahasa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 715, + "kode" => "435", + "nama" => "Usaha Pertunjukan, Hiburan, Kesenangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 716, + "kode" => "436", + "nama" => "Kepercayaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 717, + "kode" => "437", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 718, + "kode" => "438", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 719, + "kode" => "439", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 720, + "kode" => "440", + "nama" => "KESEHATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 721, + "kode" => "441", + "nama" => "Pembinaan Kesehatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 722, + "kode" => "441.1", + "nama" => "Gizi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 723, + "kode" => "441.2", + "nama" => "Mata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 724, + "kode" => "441.3", + "nama" => "Jiwa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 725, + "kode" => "441.4", + "nama" => "Kanker", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 726, + "kode" => "441.5", + "nama" => "Usaha Kegiatan Sekolah (UKS)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 727, + "kode" => "441.6", + "nama" => "Perawatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 728, + "kode" => "441.7", + "nama" => "Penyuluhan Kesehatan Masyarakat (PKM)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 729, + "kode" => "441.8", + "nama" => "Pekan Imunisasi Nasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 730, + "kode" => "442", + "nama" => "Obat-obatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 731, + "kode" => "442.1", + "nama" => "Pengadaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 732, + "kode" => "442.2", + "nama" => "Penyimpanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 733, + "kode" => "443", + "nama" => "Penyakit Menular", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 734, + "kode" => "443.1", + "nama" => "Pencegahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 735, + "kode" => "443.2", + "nama" => + "Pemberantasan dan Pencegahan Penyakit Menular Langsung (P2ML)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 736, + "kode" => "443.21", + "nama" => "Kusta", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 737, + "kode" => "443.22", + "nama" => "Kelamin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 738, + "kode" => "443.23", + "nama" => "Frambosia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 739, + "kode" => "443.24", + "nama" => "TBC / AIDS / HIV", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 740, + "kode" => "443.3", + "nama" => "Epidemiologi dan Karantina (Epidka)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 741, + "kode" => "443.31", + "nama" => "Kholera", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 742, + "kode" => "443.32", + "nama" => "Imunisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 743, + "kode" => "443.33", + "nama" => "Survailense", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 744, + "kode" => "443.34", + "nama" => "Rabies (Anjing Gila) Antraks", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 745, + "kode" => "443.4", + "nama" => + "Pemberantasan & Pencegahan Penyakit Menular Sumber Binatang (P2B)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 746, + "kode" => "443.41", + "nama" => "Malaria", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 747, + "kode" => "443.42", + "nama" => "Dengue Faemorrhagic Fever (Demam Berdarah HDF)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 748, + "kode" => "443.43", + "nama" => "Filaria", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 749, + "kode" => "443.44", + "nama" => "Serangga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 750, + "kode" => "443.5", + "nama" => "Hygiene Sanitasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 751, + "kode" => "443.51", + "nama" => + "Tempat-tempat Pembuatan Dan Penjualan Makanan dan Minuman (TPPMM)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 752, + "kode" => "443.52", + "nama" => "Sarana Air Minum Dan Jamban Keluarga (Samijaga)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 753, + "kode" => "443.53", + "nama" => "Pestisida", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 754, + "kode" => "444", + "nama" => "Gizi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 755, + "kode" => "444.1", + "nama" => " Kekurangan Makanan Bahaya Kelaparan, Busung Lapar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 756, + "kode" => "444.2", + "nama" => "Keracunan Makanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 757, + "kode" => "444.3", + "nama" => "Menu Makanan Rakyat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 758, + "kode" => "444.4", + "nama" => "Badan Perbaikan Gizi Daerah (BPGD)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 759, + "kode" => "444.5", + "nama" => "Program Makanan Tambahn Anak Sekolah (PMT-AS)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 760, + "kode" => "445", + "nama" => + "Rumah Sakit, Balai Kesehatan, PUSKESMAS, PUSKESMAS, Keliling, Poliklinik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 761, + "kode" => "446", + "nama" => "Tenaga Medis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 762, + "kode" => "448", + "nama" => "Pengobatan Tadisional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 763, + "kode" => "448.1", + "nama" => "Pijat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 764, + "kode" => "448.2", + "nama" => "Tusuk Jarum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 765, + "kode" => "448.3", + "nama" => "Jamu Tradisional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 766, + "kode" => "448.4", + "nama" => "Dukun / Paranormal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 767, + "kode" => "450", + "nama" => "AGAMA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 768, + "kode" => "451", + "nama" => "Islam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 769, + "kode" => "451.1", + "nama" => "Peribadatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 770, + "kode" => "451.11", + "nama" => "Sholat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 771, + "kode" => "451.12", + "nama" => "Zakat Fitrah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 772, + "kode" => "451.13", + "nama" => "Puasa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 773, + "kode" => "451.14", + "nama" => "MTQ", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 774, + "kode" => "451.2", + "nama" => "Rumah Ibadah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 775, + "kode" => "451.3", + "nama" => "Tokoh Agama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 776, + "kode" => "451.4", + "nama" => "Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 777, + "kode" => "451.41", + "nama" => "Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 778, + "kode" => "451.42", + "nama" => "Menengah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 779, + "kode" => "451.43", + "nama" => "Dasar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 780, + "kode" => "451.44", + "nama" => "Pondok Pesantren", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 781, + "kode" => "451.45", + "nama" => "Gedung Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 782, + "kode" => "451.46", + "nama" => "Tenaga Pengajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 783, + "kode" => "451.47", + "nama" => "Buku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 784, + "kode" => "451.48", + "nama" => "Dakwah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 785, + "kode" => "451.49", + "nama" => "Organisasi / Lembaga Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 786, + "kode" => "451.5", + "nama" => "Harta Agama Wakaf, Baitulmal, dsb", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 787, + "kode" => "451.6", + "nama" => "Peradilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 788, + "kode" => "451.7", + "nama" => "Organisasi Keagamaan Bukan Politik Majelis Ulama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 789, + "kode" => "451.8", + "nama" => "Mazhab", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 790, + "kode" => "452", + "nama" => "Protestan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 791, + "kode" => "452.1", + "nama" => "Peribadatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 792, + "kode" => "452.2", + "nama" => "Rumah Ibadah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 793, + "kode" => "452.3", + "nama" => "Tokoh Agama, Rohaniawan, Pendeta, Domine", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 794, + "kode" => "452.4", + "nama" => "Mazhab", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 795, + "kode" => "452.5", + "nama" => "Organisasi Gerejani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 796, + "kode" => "453", + "nama" => "Katolik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 797, + "kode" => "453.1", + "nama" => "Peribadatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 798, + "kode" => "453.2", + "nama" => "Rumah Ibadah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 799, + "kode" => "453.3", + "nama" => "Tokoh Agama, Rohaniawan, Pendeta, Pastor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 800, + "kode" => "453.4", + "nama" => "Mazhab", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 801, + "kode" => "453.5", + "nama" => "Organisasi Gerejani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 802, + "kode" => "454", + "nama" => "Hindu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 803, + "kode" => "454.1", + "nama" => "Peribadatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 804, + "kode" => "454.2", + "nama" => "Rumah Ibadah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 805, + "kode" => "454.3", + "nama" => "Tokoh Agama, Rohaniawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 806, + "kode" => "454.4", + "nama" => "Mazhab", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 807, + "kode" => "454.5", + "nama" => "Organisasi Keagamaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 808, + "kode" => "455", + "nama" => "Budha", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 809, + "kode" => "455.1", + "nama" => "Peribadatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 810, + "kode" => "455.2", + "nama" => "Rumah Ibadah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 811, + "kode" => "455.3", + "nama" => "Tokoh Agama, Rohaniawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 812, + "kode" => "455.4", + "nama" => "Mazhab", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 813, + "kode" => "455.5", + "nama" => "Organisasi Keagamaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 814, + "kode" => "456", + "nama" => "Urusan Haji", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 815, + "kode" => "456.1", + "nama" => "ONH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 816, + "kode" => "456.2", + "nama" => "Manasik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 817, + "kode" => "457", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 818, + "kode" => "458", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 819, + "kode" => "458", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 820, + "kode" => "460", + "nama" => "SOSIAL", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 821, + "kode" => "461", + "nama" => "Rehabilitasi Penderita Cacat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 822, + "kode" => "461.1", + "nama" => "Cacat Maat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 823, + "kode" => "461.2", + "nama" => "Cacat Tubuh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 824, + "kode" => "461.3", + "nama" => "Cacat Mental", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 825, + "kode" => "461.4", + "nama" => "Bisul/Tuli", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 826, + "kode" => "462", + "nama" => "Tuna Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 827, + "kode" => "462.1", + "nama" => "Gelandangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 828, + "kode" => "462.2", + "nama" => "Pengemis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 829, + "kode" => "462.3", + "nama" => "Tuna Susila", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 830, + "kode" => "462.4", + "nama" => "Anak Nakal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 831, + "kode" => "463", + "nama" => "Kesejahteraan Anak / Keluarga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 832, + "kode" => "463.1", + "nama" => "Anak Putus Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 833, + "kode" => "463.2", + "nama" => "Ibu Teladan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 834, + "kode" => "463.3", + "nama" => "Anak Asuh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 835, + "kode" => "464", + "nama" => "Pembinaan Pahlawan", + "uraian" => "Pahlawan Meliputi: Penghargaan Kepada Pahlawan,", + "enabled" => 1, + ], + [ + "id" => 836, + "kode" => "464.1", + "nama" => "Tunjangan Kepada Pahlawan Dan Jandanya", + "uraian" => + "Perintis Kemerdekaan Meliputi: Pembinaan, Penghargaan", + "enabled" => 1, + ], + [ + "id" => 837, + "kode" => "464.2", + "nama" => "Dan Tunjangan Kepada Perintis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 838, + "kode" => "464.3", + "nama" => "Cacat Veteran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 839, + "kode" => "465", + "nama" => "Kesejahteraan Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 840, + "kode" => "465.1", + "nama" => "Lanjut Usia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 841, + "kode" => "465.2", + "nama" => "Korban Kekacauan, Pengungsi, Repatriasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 842, + "kode" => "466", + "nama" => "Sumbangan Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 843, + "kode" => "466.1", + "nama" => "Korban Bencana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 844, + "kode" => "466.2", + "nama" => "Pencarian Dana Untuk Sumbangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 845, + "kode" => "466.3", + "nama" => + "Meliputi: Penyelenggaraan Undian, Ketangkasan, Bazar, dsb", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 846, + "kode" => "466.4", + "nama" => "Panti Asuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 847, + "kode" => "466.5", + "nama" => "Panti Jompo", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 848, + "kode" => "467", + "nama" => " Bimbingan Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 849, + "kode" => "467.1", + "nama" => + "Masyarakat Suku Terasing Meliputi: Bimbingan, Pendidikan, Kesehatan, Pemukiman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 850, + "kode" => "468", + "nama" => "PMI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 851, + "kode" => "469", + "nama" => "Makam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 852, + "kode" => "469.1", + "nama" => "Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 853, + "kode" => "469.2", + "nama" => + "Pahlawan Meliputi: Penghargaan Kepada Pahlawan, Tunjangan Kpd Pahlawan Dan Jandanya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 854, + "kode" => "469.3", + "nama" => "Khusus Keluarga Raja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 855, + "kode" => "469.4", + "nama" => "Krematorium", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 856, + "kode" => "470", + "nama" => "KEPENDUDUKAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 857, + "kode" => "471", + "nama" => "Pendaftaran Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 858, + "kode" => "471.1", + "nama" => "Identitas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 859, + "kode" => "471.11", + "nama" => "Biodata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 860, + "kode" => "471.12", + "nama" => "Nomor Induk Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 861, + "kode" => "471.13", + "nama" => "Kartu Tanda Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 862, + "kode" => "471.14", + "nama" => "Kartu Keluarga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 863, + "kode" => "471.15", + "nama" => "Advokasi Indentitas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 864, + "kode" => "471.2", + "nama" => "Perpindahan Penduduk Dalam Wilayah Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 865, + "kode" => "471.21", + "nama" => "Perpindahan Penduduk WNI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 866, + "kode" => "471.22", + "nama" => "Perpindahan Penduduk WNA Dalam Wilayah Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 867, + "kode" => "471.23", + "nama" => "Perpindahan Penduduk WNA dan WNI Tinggal Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 868, + "kode" => "471.24", + "nama" => "Daerah Terbelakan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 869, + "kode" => "471.25", + "nama" => "Bedol Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 870, + "kode" => "471.3", + "nama" => "Perpindahan Penduduk Antar Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 871, + "kode" => "471.31", + "nama" => "Penduduk Indonesia Ke Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 872, + "kode" => "471.32", + "nama" => "Orang Asing Tinggal Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 873, + "kode" => "471.33", + "nama" => "Orang Asing Tinggal Tetap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 874, + "kode" => "471.34", + "nama" => + "Perpindahan Penduduk Antar Negara Di Wilayah Pembatasan Antar Negara (Pelintas Batas Tradisional)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 875, + "kode" => "471.4", + "nama" => "Pendaftaran Pengungsi Dan Penduduk Rentan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 876, + "kode" => "471.41", + "nama" => "Akibat Bencana Alam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 877, + "kode" => "471.42", + "nama" => "Akibat Kerusuhan Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 878, + "kode" => "471.43", + "nama" => "Pendaftaran Penduduk Daerah Terbelakang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 879, + "kode" => "471.44", + "nama" => "Pendaftaran Penduduk Rentan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 880, + "kode" => "472", + "nama" => "Pencatatan Sipil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 881, + "kode" => "472.1", + "nama" => "Kelahiran, Kematian Dan Advokasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 882, + "kode" => "472.11", + "nama" => "Kelahiran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 883, + "kode" => "472.12", + "nama" => "Kematian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 884, + "kode" => "472.13", + "nama" => "Advokasi Kelahiran Dan Kematian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 885, + "kode" => "472.2", + "nama" => "Perkawinan, Peceraian Dan Advokasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 886, + "kode" => "472.3", + "nama" => "Perkawinan Agama Islam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 887, + "kode" => "472.4", + "nama" => "Perkawinan Agama Non Islam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 888, + "kode" => "472.5", + "nama" => "Perceraian Agama Islam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 889, + "kode" => "472.6", + "nama" => "Perceraian Agama Non Islam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 890, + "kode" => "472.7", + "nama" => "Advokasi Perkawinan Dan Perceraian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 891, + "kode" => "472.3", + "nama" => + "Pengangkatan, Pengakuan, Dan Pengesahan Anak Serta Perubahan Dan Pembatalan Akta Dan Advokasi Pengangkatan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 892, + "kode" => "472.31", + "nama" => "Pengangkatan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 893, + "kode" => "472.32", + "nama" => "Pengakuan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 894, + "kode" => "472.33", + "nama" => "Pengesahan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 895, + "kode" => "472.34", + "nama" => "Perubahan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 896, + "kode" => "472.35", + "nama" => "Pembatalan Anak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 897, + "kode" => "472.36", + "nama" => + "Advokasi Pengurusan Pengangkatan, Pengakuan Dan Pengesahan Anak Serta Perubahan Dan Pembatalan Akta", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 898, + "kode" => "472.4", + "nama" => "Pencatatan Kewarganegaraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 899, + "kode" => "472.41", + "nama" => "Akibat Perkawinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 900, + "kode" => "472.42", + "nama" => "Akibat Kelahiran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 901, + "kode" => "472.43", + "nama" => "Non Perkawinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 902, + "kode" => "472.44", + "nama" => "Non Kelahiran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 903, + "kode" => "472.45", + "nama" => "Perubahan WNI ke WNA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 904, + "kode" => "473", + "nama" => "Informasi Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 905, + "kode" => "473.1", + "nama" => "Teknologi Informasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 906, + "kode" => "473.11", + "nama" => "Perangkat Keras", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 907, + "kode" => "473.12", + "nama" => "Perangkat Lunak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 908, + "kode" => "473.13", + "nama" => "Jaringan Komunikasi Data", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 909, + "kode" => "473.2", + "nama" => "Kelembagaan Dan Sumber Daya Informasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 910, + "kode" => "473.21", + "nama" => "Daerah Maju", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 911, + "kode" => "473.22", + "nama" => "Daerah Berkembang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 912, + "kode" => "473.23", + "nama" => "Daerah Terbelakang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 913, + "kode" => "473.3", + "nama" => "Pengolahan Data Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 914, + "kode" => "473.31", + "nama" => "Pendaftaran Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 915, + "kode" => "473.32", + "nama" => "Kejadian Vital Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 916, + "kode" => "473.33", + "nama" => "Penduduk Non Registrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 917, + "kode" => "473.4", + "nama" => "Pelayanan Informasi Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 918, + "kode" => "473.41", + "nama" => "Media Elektronik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 919, + "kode" => "473.42", + "nama" => "Media Cetak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 920, + "kode" => "473.43", + "nama" => "Outlet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 921, + "kode" => "474", + "nama" => "Perkembangan Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 922, + "kode" => "474.1", + "nama" => "Pengarahan Kuantitas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 923, + "kode" => "474.11", + "nama" => "Struktur Jumlah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 924, + "kode" => "474.12", + "nama" => "Komposisi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 925, + "kode" => "474.13", + "nama" => "Fertilitas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 926, + "kode" => "474.14", + "nama" => "Kesehatan Reproduksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 927, + "kode" => "474.15", + "nama" => "Morbiditas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 928, + "kode" => "474.16", + "nama" => "Mortalitas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 929, + "kode" => "474.2", + "nama" => "Pengembangan Kuantitas Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 930, + "kode" => "474.21", + "nama" => "Anak dan Remaja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 931, + "kode" => "474.22", + "nama" => "Penduduk Usia Produktif", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 932, + "kode" => "474.23", + "nama" => "Penduduk Lanjut Usia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 933, + "kode" => "474.24", + "nama" => "Gender", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 934, + "kode" => "474.3", + "nama" => "Penataan Persebaran Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 935, + "kode" => "474.31", + "nama" => "Migrasi Antar Wilayah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 936, + "kode" => "474.32", + "nama" => "Migrasi Internasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 937, + "kode" => "474.33", + "nama" => "Urbanisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 938, + "kode" => "474.34", + "nama" => "Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 939, + "kode" => "474.35", + "nama" => "Migrasi Non Permanen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 940, + "kode" => "474.4", + "nama" => "Perlindungan Pemberdayaan Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 941, + "kode" => "474.41", + "nama" => "Pengembangan Sistem Pelindungan Penduduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 942, + "kode" => "474.42", + "nama" => "Pelayanan Kelembagaan Ekonomi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 943, + "kode" => "474.43", + "nama" => "Pelayanan Kelembagaan Sosial Budaya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 944, + "kode" => "474.44", + "nama" => "Partisipasi Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 945, + "kode" => "474.5", + "nama" => "Pengembangan Wawasan Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 946, + "kode" => "474.51", + "nama" => "Pendidikan Jalur Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 947, + "kode" => "474.52", + "nama" => "Pendidikan Jalur Luar Sekolah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 948, + "kode" => "474.53", + "nama" => "Pendidikan Jalur Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 949, + "kode" => "474.54", + "nama" => "Pembangunan Berwawasan Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 950, + "kode" => "475", + "nama" => "Proyeksi Dan Penyerasian Kebijakan Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 951, + "kode" => "475.1", + "nama" => "Indikator Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 952, + "kode" => "475.11", + "nama" => + "Perumusan Penetapan Dan Pengembangan Indikator Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 953, + "kode" => "475.12", + "nama" => "Pemanfaatan Indikator Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 954, + "kode" => "475.13", + "nama" => "Sosialisasi Indikator Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 955, + "kode" => "475.2", + "nama" => "Proyeksi Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 956, + "kode" => "475.21", + "nama" => "Penyusunan Dan Pengembangan Proyeksi Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 957, + "kode" => "475.22", + "nama" => "Pemanfaatan Proyeksi Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 958, + "kode" => "475.3", + "nama" => "Analisis Dampak Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 959, + "kode" => "475.31", + "nama" => "Penyusunan Dan Pengembangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 960, + "kode" => "475.32", + "nama" => "Pemanfaatan Analisis Dampak Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 961, + "kode" => "475.4", + "nama" => "Penyerasian Kebijakan Lembaga Non Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 962, + "kode" => "475.41", + "nama" => "Lembaga Internasioanal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 963, + "kode" => "475.42", + "nama" => "Lembaga Masyarakat Dan Nirlaba", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 964, + "kode" => "475.43", + "nama" => "Lembaga Usaha Swasta", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 965, + "kode" => "475.5", + "nama" => "Penyerasian Kebijakan Lembaga Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 966, + "kode" => "475.51", + "nama" => "Lembaga Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 967, + "kode" => "475.52", + "nama" => "Pemerintah Provinsidan Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 968, + "kode" => "475.53", + "nama" => "Pemerintah Kabupaten", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 969, + "kode" => "475.6", + "nama" => "Analisis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 970, + "kode" => "476", + "nama" => "Monitoring", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 971, + "kode" => "477", + "nama" => "Evaluasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 972, + "kode" => "478", + "nama" => "Dokumentasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 973, + "kode" => "479", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 974, + "kode" => "480", + "nama" => "MEDIA MASSA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 975, + "kode" => "481", + "nama" => "Penerbitan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 976, + "kode" => "481.1", + "nama" => "Surat Kabar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 977, + "kode" => "481.2", + "nama" => "Majalah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 978, + "kode" => "481.3", + "nama" => "Buku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 979, + "kode" => "481.4", + "nama" => "Penerjemahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 980, + "kode" => "482", + "nama" => "Radio", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 981, + "kode" => "482.1", + "nama" => "RRI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 982, + "kode" => "482.11", + "nama" => "Siaran Pedesaan Jgn Diklasifikasikan Disini", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 983, + "kode" => "482.2", + "nama" => "Non RRI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 984, + "kode" => "482.3", + "nama" => "Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 985, + "kode" => "483", + "nama" => "Televisi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 986, + "kode" => "484", + "nama" => "Film", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 987, + "kode" => "485", + "nama" => "Pers", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 988, + "kode" => "485.1", + "nama" => "Kewartawanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 989, + "kode" => "485.2", + "nama" => "Wawancara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 990, + "kode" => "485.3", + "nama" => "Informasi Nasional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 991, + "kode" => "486", + "nama" => "Grafika", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 992, + "kode" => "487", + "nama" => "Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 993, + "kode" => "487.1", + "nama" => "Pameran Non Komersil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 994, + "kode" => "488", + "nama" => "Operation Room", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 995, + "kode" => "489", + "nama" => "Hubungan Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 996, + "kode" => "490", + "nama" => "Pengaduan Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 997, + "kode" => "491", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 998, + "kode" => "492", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 999, + "kode" => "500", + "nama" => "PEREKONOMIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1000, + "kode" => "500.1", + "nama" => "Dewan Stabilisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1001, + "kode" => "501", + "nama" => "Pengadaan Pangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1002, + "kode" => "502", + "nama" => + "Pengadaan Sandang Perizinan Pada Umumnya Untuk Perizinan Suatu Bidang,", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1003, + "kode" => "503", + "nama" => "Kalsifikasikan Masalahnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1004, + "kode" => "504", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1005, + "kode" => "505", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1006, + "kode" => "506", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1007, + "kode" => "510", + "nama" => "PERDAGANGAN", + "uraian" => "Klasifikasikan Disini: Tata Niaga", + "enabled" => 1, + ], + [ + "id" => 1008, + "kode" => "510.1", + "nama" => "Promosi Perdagangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1009, + "kode" => "510.11", + "nama" => "Pekan Raya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1010, + "kode" => "510.12", + "nama" => "Iklan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1011, + "kode" => "510.13", + "nama" => "Pameran Non Komersil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1012, + "kode" => "510.2", + "nama" => "Pelelangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1013, + "kode" => "510.3", + "nama" => "Tera", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1014, + "kode" => "511", + "nama" => "Pemasaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1015, + "kode" => "511.1", + "nama" => + "Sembilan Bahan Pokok, Tambahkan Kode Wilayah : Beras, Garam, Tanah, Minyak Goreng", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1016, + "kode" => "511.2", + "nama" => "Pasar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1017, + "kode" => "511.3", + "nama" => "Pertokoan, Kaki Lima, Kios", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1018, + "kode" => "512", + "nama" => "Ekspor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1019, + "kode" => "513", + "nama" => "Impor", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1020, + "kode" => "514", + "nama" => "Perdagangan Antar Pulau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1021, + "kode" => "515", + "nama" => "Perdagangan Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1022, + "kode" => "516", + "nama" => "Pergudangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1023, + "kode" => "517", + "nama" => "Aneka Usaha Perdagangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1024, + "kode" => "518", + "nama" => "Koperasi untuk BUUD, KUD lihat ( 412.31-412.32)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1025, + "kode" => "519", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1026, + "kode" => "520", + "nama" => "PERTANIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1027, + "kode" => "521", + "nama" => "Tanaman Pangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1028, + "kode" => "521.1", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1029, + "kode" => "521.11", + "nama" => "Bimas / Inmas Termasuk Kredit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1030, + "kode" => "521.12", + "nama" => "Penyuluhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1031, + "kode" => "521.2", + "nama" => "Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1032, + "kode" => "521.21", + "nama" => "Padi / Panen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1033, + "kode" => "521.22", + "nama" => "Palawija", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1034, + "kode" => "521.23", + "nama" => "Jagung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1035, + "kode" => "521.24", + "nama" => "Ketela Pohon / Ubi-Ubian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1036, + "kode" => "521.25", + "nama" => "Hortikultura", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1037, + "kode" => "521.26", + "nama" => "Sayuran / Buah-Buahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1038, + "kode" => "521.27", + "nama" => "Tanaman Hias", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1039, + "kode" => "521.28", + "nama" => "Pembudidayaan Rumput Laut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1040, + "kode" => "521.3", + "nama" => "Saran Usaha Pertanian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1041, + "kode" => "521.31", + "nama" => "Peralatan Meliputi: Traktor Dan Peralatan Lainya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1042, + "kode" => "521.32", + "nama" => "Pembibitan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1043, + "kode" => "521.33", + "nama" => "Pupuk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1044, + "kode" => "521.4", + "nama" => "Perlindungan Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1045, + "kode" => "521.41", + "nama" => + "Penyakit, Penyakit Daun, Penyakit Batang Hama, Serangga, Wereng, Walang Sangit, Tungru, Tikus Dan Sejenisnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1046, + "kode" => "521.42", + "nama" => + "Pemberantasan Hama Meliputi: Penyemprotan, Penyiangan, Geropyokan, Sparayer,", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1047, + "kode" => "521.43", + "nama" => "Pemberantasan Melalui Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1048, + "kode" => "521.44", + "nama" => "Pestisida", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1049, + "kode" => "521.5", + "nama" => "Tanah Pertanian Pangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1050, + "kode" => "521.51", + "nama" => "Persawahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1051, + "kode" => "521.52", + "nama" => "Perladangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1052, + "kode" => "521.53", + "nama" => "Kebun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1053, + "kode" => "521.54", + "nama" => "Rumpun Ikan Laut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1054, + "kode" => "521.55", + "nama" => "KTA/Lahan Kritis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1055, + "kode" => "521.6", + "nama" => "Pengusaha Petani", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1056, + "kode" => "521.7", + "nama" => "Bina Usaha", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1057, + "kode" => "521.71", + "nama" => "Pasca Panen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1058, + "kode" => "521.72", + "nama" => "Pemasaran Hasil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1059, + "kode" => "522", + "nama" => "Kehutanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1060, + "kode" => "522.1", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1061, + "kode" => "522.11", + "nama" => "Hak Pengusahaan Hutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1062, + "kode" => "522.12", + "nama" => "Tata Guna Hutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1063, + "kode" => "522.13", + "nama" => "Perpetaan Hutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1064, + "kode" => "522.14", + "nama" => "Tumpangsari", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1065, + "kode" => "522.2", + "nama" => "Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1066, + "kode" => "522.21", + "nama" => "Kayu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1067, + "kode" => "522.22", + "nama" => "Non Kayu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1068, + "kode" => "522.3", + "nama" => "Sarana Usaha Kehutanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1069, + "kode" => "522.4", + "nama" => "Penghijauan, Reboisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1070, + "kode" => "522.5", + "nama" => "Kelestarian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1071, + "kode" => "522.51", + "nama" => "Cagar Alam, Marga Satwa, Suaka Marga Satwa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1072, + "kode" => "522.52", + "nama" => "Berburu Meliputi Larangan Dan Ijin Berburu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1073, + "kode" => "522.53", + "nama" => "Kebun Binatang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1074, + "kode" => "522.54", + "nama" => "Konservasi Lahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1075, + "kode" => "522.6", + "nama" => "Penyakit/Hama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1076, + "kode" => "522.7", + "nama" => "Jenis-jenis Hutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1077, + "kode" => "522.71", + "nama" => "Hutan Hidup", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1078, + "kode" => "522.72", + "nama" => "Hutan Wisata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1079, + "kode" => "522.73", + "nama" => "Hutan Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1080, + "kode" => "522.74", + "nama" => "Hutan Lindung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1081, + "kode" => "523", + "nama" => "Perikanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1082, + "kode" => "523.1", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1083, + "kode" => "523.11", + "nama" => "Penyuluhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1084, + "kode" => "523.12", + "nama" => "Teknologi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1085, + "kode" => "523.2", + "nama" => "Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1086, + "kode" => "523.21", + "nama" => "Pelelangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1087, + "kode" => "523.3", + "nama" => "Usaha Perikanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1088, + "kode" => "523.31", + "nama" => "Pembibitan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1089, + "kode" => "523.32", + "nama" => "Daerah Penagkapan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1090, + "kode" => "523.33", + "nama" => + "Pertambakan Meliputi: ( Tambak Ikan Air Deras, Tambak Udang dll )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1091, + "kode" => "523.34", + "nama" => "Jaring Terapung", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1092, + "kode" => "523.4", + "nama" => "Sarana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1093, + "kode" => "523.41", + "nama" => "Peralatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1094, + "kode" => "523.42", + "nama" => "Kapal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1095, + "kode" => "523.43", + "nama" => "Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1096, + "kode" => "523.5", + "nama" => "Pengusaha", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1097, + "kode" => "523.6", + "nama" => "Nelayan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1098, + "kode" => "524", + "nama" => "Peternakan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1099, + "kode" => "524.1", + "nama" => "Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1100, + "kode" => "524.11", + "nama" => "Susu Ternak Rakyat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1101, + "kode" => "524.12", + "nama" => "Telur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1102, + "kode" => "524.13", + "nama" => "Daging", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1103, + "kode" => "524.14", + "nama" => "Kulit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1104, + "kode" => "524.2", + "nama" => "Sarana Usaha Ternak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1105, + "kode" => "524.21", + "nama" => "Pembibitan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1106, + "kode" => "524.22", + "nama" => "Kandang Ternak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1107, + "kode" => "524.3", + "nama" => "Kesehatan Hewan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1108, + "kode" => "524.31", + "nama" => "Penyakit Hewan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1109, + "kode" => "524.32", + "nama" => "Pos Kesehatan Hewan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1110, + "kode" => "524.33", + "nama" => "Tesi Pullorum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1111, + "kode" => "524.34", + "nama" => "Karantina", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1112, + "kode" => "524.35", + "nama" => + "Pemberantasan Penyakit Hewan Termasuk Usaha Pencegahannya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1113, + "kode" => "524.4", + "nama" => "Perunggasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1114, + "kode" => "524.5", + "nama" => "Pengembangan Ternak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1115, + "kode" => "524.51", + "nama" => "Inseminasi Buatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1116, + "kode" => "524.52", + "nama" => "Pembibitan / Bibit Unggul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1117, + "kode" => "524.53", + "nama" => "Penyebaran Ternak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1118, + "kode" => "524.6", + "nama" => "Makanan Ternak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1119, + "kode" => "524.7", + "nama" => "Tempat Pemotongan Hewan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1120, + "kode" => "524.8", + "nama" => "Data Peternakan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1121, + "kode" => "525", + "nama" => "Perkebunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1122, + "kode" => "525.1", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1123, + "kode" => "525.2", + "nama" => "Produksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1124, + "kode" => "525.21", + "nama" => "Karet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1125, + "kode" => "525.22", + "nama" => "The", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1126, + "kode" => "525.23", + "nama" => "Tembakau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1127, + "kode" => "525.24", + "nama" => "Tebu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1128, + "kode" => "525.25", + "nama" => "Cengkeh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1129, + "kode" => "525.26", + "nama" => "Kopra", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1130, + "kode" => "525.27", + "nama" => "Kopi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1131, + "kode" => "525.28", + "nama" => "Coklat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1132, + "kode" => "525.29", + "nama" => "Aneka Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1133, + "kode" => "526", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1134, + "kode" => "527", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1135, + "kode" => "528", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1136, + "kode" => "530", + "nama" => "PERINDUSTRIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1137, + "kode" => "530.08", + "nama" => "Undang-Undang Gangguan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1138, + "kode" => "531", + "nama" => "Industri Logam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1139, + "kode" => "532", + "nama" => "Industri Mesin/Elektronik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1140, + "kode" => "533", + "nama" => "Industri Kimia/Farmasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1141, + "kode" => "534", + "nama" => "Industri Tekstil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1142, + "kode" => "535", + "nama" => "Industri Makanan / Minuman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1143, + "kode" => "536", + "nama" => "Aneka Industri / Perusahaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1144, + "kode" => "537", + "nama" => "Aneka Kerajinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1145, + "kode" => "538", + "nama" => "Usaha Negara / BUMN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1146, + "kode" => "538.1", + "nama" => "Perjan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1147, + "kode" => "538.2", + "nama" => "Perum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1148, + "kode" => "538.3", + "nama" => "Persero / PT, CV", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1149, + "kode" => "539", + "nama" => "Perusahaan Daerah / BUMD/BULD", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1150, + "kode" => "540", + "nama" => "PERTAMBANGAN / KESAMUDRAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1151, + "kode" => "541", + "nama" => "Minyak Bumi / Bensin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1152, + "kode" => "541.1", + "nama" => "Pengusahaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1153, + "kode" => "542", + "nama" => "Gas bumi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1154, + "kode" => "542.1", + "nama" => "Eksploitasi / Pengeboran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1155, + "kode" => "542.11", + "nama" => "Kontrak Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1156, + "kode" => "542.2", + "nama" => "Penogolahan,", + "uraian" => "Meliputi :Tangki, Pompa, Tanker", + "enabled" => 1, + ], + [ + "id" => 1157, + "kode" => "543", + "nama" => "Aneka Tambang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1158, + "kode" => "543.1", + "nama" => "Timah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1159, + "kode" => "543.2", + "nama" => "Alumunium, Boxit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1160, + "kode" => "543.3", + "nama" => "Besi Termasuk Besi Tua", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1161, + "kode" => "543.4", + "nama" => "Tembaga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1162, + "kode" => "543.5", + "nama" => "Batu Bara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1163, + "kode" => "544", + "nama" => "Logam Mulia,Emas,Intan,Perak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1164, + "kode" => "545", + "nama" => "Logam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1165, + "kode" => "546", + "nama" => "Geologi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1166, + "kode" => "546.1", + "nama" => "Vulkanologi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1167, + "kode" => "546.11", + "nama" => "Pengawasan Gunung Berapi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1168, + "kode" => "546.2", + "nama" => "Sumur Artesis, Air Bawah Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1169, + "kode" => "547", + "nama" => "Hidrologi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1170, + "kode" => "548", + "nama" => "Kesamudraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1171, + "kode" => "549", + "nama" => "Pesisir Pantai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1172, + "kode" => "550", + "nama" => "PERHUBUNGAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1173, + "kode" => "551", + "nama" => "Perhubungan Darat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1174, + "kode" => "551.1", + "nama" => "Lalu Lintas Jalan Raya, Sungai, Danau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1175, + "kode" => "551.11", + "nama" => "Keamanan Lalu Lintas, Rambu-Rambu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1176, + "kode" => "551.2", + "nama" => "Angkutan Jalan Raya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1177, + "kode" => "551.21", + "nama" => "Perizinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1178, + "kode" => "551.22", + "nama" => "Terminal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1179, + "kode" => "551.23", + "nama" => "Alat Angkutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1180, + "kode" => "551.3", + "nama" => "Angkutan Sungai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1181, + "kode" => "551.31", + "nama" => "Perizinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1182, + "kode" => "551.32", + "nama" => "Terminal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1183, + "kode" => "551.33", + "nama" => "Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1184, + "kode" => "551.4", + "nama" => "Angkutan Danau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1185, + "kode" => "551.41", + "nama" => "Perizinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1186, + "kode" => "551.42", + "nama" => "Terminal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1187, + "kode" => "551.43", + "nama" => "Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1188, + "kode" => "551.5", + "nama" => "Feri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1189, + "kode" => "551.51", + "nama" => "Perizinan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1190, + "kode" => "551.52", + "nama" => "Terminal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1191, + "kode" => "551.53", + "nama" => "Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1192, + "kode" => "551.6", + "nama" => "Perkereta-Apian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1193, + "kode" => "552", + "nama" => "Perhubungan Laut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1194, + "kode" => "552.1", + "nama" => "Lalu Lintas Angkutan Laut, Pelayanan Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1195, + "kode" => "552.11", + "nama" => "Keamanan Lalu Lintas, Rambu-Rambu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1196, + "kode" => "552.12", + "nama" => "Pelayaran Dalam Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1197, + "kode" => "552.13", + "nama" => "Pelayaran Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1198, + "kode" => "552.2", + "nama" => "Perkapalan Alat Angkutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1199, + "kode" => "552.3", + "nama" => "Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1200, + "kode" => "552.4", + "nama" => "Pengerukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1201, + "kode" => "552.5", + "nama" => "Penjagaan Pantai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1202, + "kode" => "553", + "nama" => "Perhubungan Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1203, + "kode" => "553.1", + "nama" => "Lalu Lintas Udara / Keamanan Lalu Lintas Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1204, + "kode" => "553.2", + "nama" => "Pelabuhan Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1205, + "kode" => "553.3", + "nama" => "Alat Angkutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1206, + "kode" => "554", + "nama" => "Pos", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1207, + "kode" => "555", + "nama" => "Telekomunikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1208, + "kode" => "555.1", + "nama" => "Telepon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1209, + "kode" => "555.2", + "nama" => "Telegram", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1210, + "kode" => "555.3", + "nama" => "Telex / SSB, Faximile", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1211, + "kode" => "555.4", + "nama" => "Satelit, Internet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1212, + "kode" => "555.5", + "nama" => "Stasiun Bumi, Parabola", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1213, + "kode" => "556", + "nama" => "Pariwisata dan Rekreasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1214, + "kode" => "556.1", + "nama" => "Obyek Kepariwisataan Taman Mini Indonesia Indah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1215, + "kode" => "556.2", + "nama" => "Perhotelan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1216, + "kode" => "556.3", + "nama" => "Travel service", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1217, + "kode" => "556.4", + "nama" => "Tempat Rekreasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1218, + "kode" => "557", + "nama" => "Meteorologi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1219, + "kode" => "557.1", + "nama" => "Ramalan Cuaca", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1220, + "kode" => "557.2", + "nama" => "Curah Hujan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1221, + "kode" => "557.3", + "nama" => "Kemarau Panjang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1222, + "kode" => "558", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1223, + "kode" => "559", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1224, + "kode" => "560", + "nama" => "TENAGA KERJA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1225, + "kode" => "560.1", + "nama" => "Pengangguran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1226, + "kode" => "561", + "nama" => "Upah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1227, + "kode" => "562", + "nama" => "Penempatan Tenaga Kerja, TKI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1228, + "kode" => "563", + "nama" => "Latihan Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1229, + "kode" => "564", + "nama" => "Tenaga Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1230, + "kode" => "564.1", + "nama" => "Butsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1231, + "kode" => "564.2", + "nama" => "Padat Karya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1232, + "kode" => "565", + "nama" => "Perselisihan Perburuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1233, + "kode" => "566", + "nama" => "Keselamatan Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1234, + "kode" => "567", + "nama" => "Pemutusan Hubungan Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1235, + "kode" => "568", + "nama" => "kesejahteraan Buruh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1236, + "kode" => "569", + "nama" => "Tenaga Orang Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1237, + "kode" => "570", + "nama" => "PERMODALAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1238, + "kode" => "571", + "nama" => "Modal Domestik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1239, + "kode" => "572", + "nama" => "Modal Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1240, + "kode" => "573", + "nama" => "Modal Patungan (Joint Venture) / Penyertaan Modal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1241, + "kode" => "574", + "nama" => "Pasar Uang Dan Modal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1242, + "kode" => "575", + "nama" => "Saham", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1243, + "kode" => "576", + "nama" => "Belanja Modal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1244, + "kode" => "577", + "nama" => "Modal Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1245, + "kode" => "580", + "nama" => "PERBANKAN / MONETER", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1246, + "kode" => "581", + "nama" => "Kredit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1247, + "kode" => "582", + "nama" => "Investasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1248, + "kode" => "583", + "nama" => "Pembukaan ,Perubahan,Penutupan Rekening, Deposito", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1249, + "kode" => "584", + "nama" => "Bank Pembangunan Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1250, + "kode" => "585", + "nama" => "Asuransi Dana Kecelakaan Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1251, + "kode" => "586", + "nama" => "Alat Pembayaran, Cek, Giro, Wesel, Transfer", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1252, + "kode" => "587", + "nama" => "Fiskal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1253, + "kode" => "588", + "nama" => "Hutang Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1254, + "kode" => "589", + "nama" => "Moneter", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1255, + "kode" => "590", + "nama" => "AGRARIA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1256, + "kode" => "591", + "nama" => "Tataguna Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1257, + "kode" => "591.1", + "nama" => "Pemetaan dan Pengukuran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1258, + "kode" => "591.2", + "nama" => "Perpetaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1259, + "kode" => "591.3", + "nama" => "penyediaan Data", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1260, + "kode" => "591.4", + "nama" => "Fatwa Tata Guna Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1261, + "kode" => "591.5", + "nama" => "Tanah Kritis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1262, + "kode" => "592", + "nama" => "Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1263, + "kode" => "592.1", + "nama" => "Redistribusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1264, + "kode" => "592.11", + "nama" => "Pendaftaran Pemilikan Dan Pengurusan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1265, + "kode" => "592.12", + "nama" => "Penentuan Tanah Obyek Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1266, + "kode" => "592.13", + "nama" => "Pembagian Tanah Obyek Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1267, + "kode" => "592.14", + "nama" => "Sengketa Redistribusi Tanah Obyek Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1268, + "kode" => "592.2", + "nama" => "Ganti Rugi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1269, + "kode" => "592.21", + "nama" => "Ganti Rugi Tanah Kelebihan", + "uraian" => + "Meliputi : Sengketa Ganti Rugi Tanah Kelebihan Tanah", + "enabled" => 1, + ], + [ + "id" => 1270, + "kode" => "592.22", + "nama" => "Ganti Rugi Tanah Absentee", + "uraian" => "Meliputi : Sengketa Ganti Rugi Tanah Absentee", + "enabled" => 1, + ], + [ + "id" => 1271, + "kode" => "592.23", + "nama" => "Ganti Rugi Tanah Partikelir", + "uraian" => "Meliputi : Sengketa Ganti Rugi Tanah Partikelir", + "enabled" => 1, + ], + [ + "id" => 1272, + "kode" => "592.3", + "nama" => "Bagi Hasil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1273, + "kode" => "592.31", + "nama" => "Penetapan Imbangan Bagi Hasil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1274, + "kode" => "592.32", + "nama" => "Pelaksanaan Perjanjian Bagi Hasil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1275, + "kode" => "592.33", + "nama" => "Sengketa Perjanjian Bagi Hasil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1276, + "kode" => "592.4", + "nama" => "Gadai Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1277, + "kode" => "592.41", + "nama" => "Pendaftaran Pemilikan Dan Pengurusan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1278, + "kode" => "592.42", + "nama" => "Pelaksanaan Gadai Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1279, + "kode" => "592.43", + "nama" => "Sengketa Gadai Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1280, + "kode" => "592.5", + "nama" => "Bimbingan dan Penyuluhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1281, + "kode" => "592.6", + "nama" => "Pengembangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1282, + "kode" => "592.7", + "nama" => "Yayasan Dana Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1283, + "kode" => "593", + "nama" => "Pengurusan Hak-Hak Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1284, + "kode" => "593.01", + "nama" => "Penyusunan Program Dan Bimbingan Teknis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1285, + "kode" => "593.1", + "nama" => "Sewa Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1286, + "kode" => "593.11", + "nama" => + "Sewa Tanah Untuk Tanaman Tertentu, Tebu, Tembakau, Rosela, Chorcorus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1287, + "kode" => "593.2", + "nama" => "Hak Milik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1288, + "kode" => "593.21", + "nama" => "Perorangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1289, + "kode" => "593.22", + "nama" => "Badan Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1290, + "kode" => "593.3", + "nama" => "Hak Pakai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1291, + "kode" => "593.31", + "nama" => "Perorangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1292, + "kode" => "593.311", + "nama" => "Warga Negara Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1293, + "kode" => "593.312", + "nama" => "Warga Negara Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1294, + "kode" => "593.32", + "nama" => "Badan Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1295, + "kode" => "593.321", + "nama" => "Badan Hukum Indonesia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1296, + "kode" => "593.322", + "nama" => + "Badan Hukum Asing, Kedutaan, Konsulat Kantor Dagang Asing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1297, + "kode" => "593.33", + "nama" => "Tanah Gedung-Gedung Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1298, + "kode" => "593.4", + "nama" => "Guna Usaha", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1299, + "kode" => "593.41", + "nama" => "Perkebunan Besar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1300, + "kode" => "593.42", + "nama" => "Perkebunan Rakyat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1301, + "kode" => "593.43", + "nama" => "Peternakan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1302, + "kode" => "593.44", + "nama" => "Perikanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1303, + "kode" => "593.45", + "nama" => "Kehutanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1304, + "kode" => "593.5", + "nama" => "Hak Guna Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1305, + "kode" => "593.51", + "nama" => "Perorangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1306, + "kode" => "593.52", + "nama" => "Badan Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1307, + "kode" => "593.53", + "nama" => "P3MB (Panitia Pelaksana Penguasaan Milik Belanda)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1308, + "kode" => "593.54", + "nama" => "Badan Hukum Asing Belanda-Prrk No 5165", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1309, + "kode" => "593.55", + "nama" => "Pemulihan Hak (Pen Pres 4/1960)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1310, + "kode" => "593.6", + "nama" => "Hak Pengelolaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1311, + "kode" => "593.61", + "nama" => + "PN Perumnas, Bonded Ware House, Industrial Estate, Real Estate", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1312, + "kode" => "593.62", + "nama" => "Perusahaan Daerah Pembangunan Perumahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1313, + "kode" => "593.7", + "nama" => "Sengketa Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1314, + "kode" => "593.71", + "nama" => "Peradilan Perkara Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1315, + "kode" => "593.8", + "nama" => "Pencabutan dan Pembebasan Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1316, + "kode" => "593.81", + "nama" => "Pencabutan Hak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1317, + "kode" => "593.82", + "nama" => "Pembebasan Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1318, + "kode" => "593.83", + "nama" => "Ganti Rugi Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1319, + "kode" => "594", + "nama" => "Pendaftaran Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1320, + "kode" => "594.1", + "nama" => "Pengukuran / Pemetaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1321, + "kode" => "594.11", + "nama" => "Fotogrametri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1322, + "kode" => "594.12", + "nama" => "Terristris", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1323, + "kode" => "594.13", + "nama" => "Triangulasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1324, + "kode" => "594.14", + "nama" => "Peralatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1325, + "kode" => "594.2", + "nama" => "Dana Pengukuran (Permen Agraria No. 61/1965)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1326, + "kode" => "594.3", + "nama" => "Sertifikat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1327, + "kode" => "594.4", + "nama" => "Pejabat Pembuat Akta Tanah (PPAT)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1328, + "kode" => "595", + "nama" => "Lahan Transmigrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1329, + "kode" => "595.1", + "nama" => "Tataguna Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1330, + "kode" => "595.2", + "nama" => "Landreform", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1331, + "kode" => "595.3", + "nama" => "Pengurusan Hak-Hak Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1332, + "kode" => "595.4", + "nama" => "Pendaftaran Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1333, + "kode" => "596", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1334, + "kode" => "597", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1335, + "kode" => "598", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1336, + "kode" => "599", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1337, + "kode" => "600", + "nama" => "PEKERJAAN UMUM DAN KETENAGAKERJAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1338, + "kode" => "601", + "nama" => "Tata Bangunan Konstruksi Dan Industri Konstruksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1339, + "kode" => "602", + "nama" => "Kontraktor Pemborong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1340, + "kode" => "602.1", + "nama" => "Tender", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1341, + "kode" => "602.2", + "nama" => "Pennunjukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1342, + "kode" => "602.3", + "nama" => "Prakualifikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1343, + "kode" => "602.31", + "nama" => "Daftar Rekanan Mampu (DRM)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1344, + "kode" => "602.32", + "nama" => "Tanda Daftar Rekanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1345, + "kode" => "603", + "nama" => "Arsitektur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1346, + "kode" => "604", + "nama" => "Bahan Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1347, + "kode" => "604.1", + "nama" => + "Tanah Dan Batu Seperti: Batu Belah, Steen Slaag, Split dsb", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1348, + "kode" => "604.2", + "nama" => "Aspal, Aspal Buatan, Aspal Alam (butas)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1349, + "kode" => "604.3", + "nama" => "Besi Dan Logam Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1350, + "kode" => "604.31", + "nama" => "Besi Beton", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1351, + "kode" => "604.32", + "nama" => "Besi Profil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1352, + "kode" => "604.33", + "nama" => "Paku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1353, + "kode" => "604.34", + "nama" => "Alumunium, Profil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1354, + "kode" => "604.4", + "nama" => "Bahan-Bahan Pelindung Dan Pengawet ", + "uraian" => "(Cat, Tech Til, Pengawet Kayu)", + "enabled" => 1, + ], + [ + "id" => 1355, + "kode" => "604.5", + "nama" => "Semen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1356, + "kode" => "604.6", + "nama" => "Kayu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1357, + "kode" => "604.7", + "nama" => "Bahan Penutup Atap ", + "uraian" => "(Genting, Asbes Gelombang, Seng Dan Sebagainya)", + "enabled" => 1, + ], + [ + "id" => 1358, + "kode" => "604.8", + "nama" => "Alat-Alat Penggantung Dan Pengunci", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1359, + "kode" => "604.9", + "nama" => "Bahan-Bahan Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1360, + "kode" => "605", + "nama" => "Instalasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1361, + "kode" => "605.1", + "nama" => "Instalasi Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1362, + "kode" => "605.2", + "nama" => "Instalasi Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1363, + "kode" => "605.3", + "nama" => "Instalasi Air Sanitasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1364, + "kode" => "605.4", + "nama" => "Instalasi Pengatur Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1365, + "kode" => "605.5", + "nama" => "Instalasi Akustik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1366, + "kode" => "605.6", + "nama" => "Instalasi Cahaya / Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1367, + "kode" => "606", + "nama" => "Konstruksi Pencegahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1368, + "kode" => "606.1", + "nama" => "Konstruksi Pencegahan Terhadap Kebakaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1369, + "kode" => "606.2", + "nama" => "Konstruksi Pencegahan Terhadap Gempa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1370, + "kode" => "606.3", + "nama" => "Konstruksi Penegahan Terhadap Angin Udara/Panas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1371, + "kode" => "606.4", + "nama" => "Konstruksi Pencegahan Terhadap Kegaduhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1372, + "kode" => "606.5", + "nama" => "Konstruksi Pencegahan Terhadap Gas/Explosive", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1373, + "kode" => "606.6", + "nama" => "Konstruksi Pencegahan Terhadap Serangga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1374, + "kode" => "606.7", + "nama" => "Konstruksi Pencegahan Terhadap Radiasi Atom", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1375, + "kode" => "607", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1376, + "kode" => "608", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1377, + "kode" => "609", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1378, + "kode" => "610", + "nama" => "PENGAIRAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1379, + "kode" => "611", + "nama" => "Irigasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1380, + "kode" => "611.1", + "nama" => "Bangunan Waduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1381, + "kode" => "611.11", + "nama" => "Bendungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1382, + "kode" => "611.12", + "nama" => "Tanggul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1383, + "kode" => "611.13", + "nama" => "Pelimpahan Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1384, + "kode" => "611.14", + "nama" => "Menara Pengambilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1385, + "kode" => "611.2", + "nama" => "Bangunan Pengambilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1386, + "kode" => "611.21", + "nama" => "Bendungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1387, + "kode" => "611.22", + "nama" => "Bendungan Dengan Pintu Bilas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1388, + "kode" => "611.23", + "nama" => "Bendungan Dengan Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1389, + "kode" => "611.24", + "nama" => "Pengambilan Bebas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1390, + "kode" => "611.25", + "nama" => "Pengambilan Bebas Dengan Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1391, + "kode" => "611.26", + "nama" => "Sumur Dengan Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1392, + "kode" => "611.27", + "nama" => "Kantung Lumpur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1393, + "kode" => "611.28", + "nama" => "Slit Ekstrator", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1394, + "kode" => "611.29", + "nama" => "Escope Channel", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1395, + "kode" => "611.3", + "nama" => "Bangunan Pembawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1396, + "kode" => "611.31", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1397, + "kode" => "611.311", + "nama" => "Saluran Induk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1398, + "kode" => "611.312", + "nama" => "Saluran Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1399, + "kode" => "611.313", + "nama" => "Suplesi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1400, + "kode" => "611.314", + "nama" => "Tersier", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1401, + "kode" => "611.315", + "nama" => "Saluran Kwarter", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1402, + "kode" => "611.316", + "nama" => "Saluran Pasangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1403, + "kode" => "611.317", + "nama" => "Saluran Tertutup / Terowongan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1404, + "kode" => "611.32", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1405, + "kode" => "611.321", + "nama" => "Bangunan Bagi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1406, + "kode" => "611.322", + "nama" => "Bangunan Bagi Dan Sadap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1407, + "kode" => "611.323", + "nama" => "Bangunan Sadap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1408, + "kode" => "611.324", + "nama" => "Bangunan Check", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1409, + "kode" => "611.325", + "nama" => "Bangunan Terjun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1410, + "kode" => "611.33", + "nama" => "Box Tersier", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1411, + "kode" => "611.34", + "nama" => "Got Miring", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1412, + "kode" => "611.35", + "nama" => "Talang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1413, + "kode" => "611.36", + "nama" => "Syphon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1414, + "kode" => "611.37", + "nama" => "Gorong-Gorong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1415, + "kode" => "611.38", + "nama" => "Pelimpah Samping", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1416, + "kode" => "611.4", + "nama" => "Bangunan Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1417, + "kode" => "611.41", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1418, + "kode" => "611.411", + "nama" => "Saluran Pembuang Induk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1419, + "kode" => "611.412", + "nama" => "Saluran Pembuang Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1420, + "kode" => "611.413", + "nama" => "Saluran Tersier", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1421, + "kode" => "611.42", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1422, + "kode" => "611.421", + "nama" => "Bangunan Outlet", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1423, + "kode" => "611.422", + "nama" => "Bangunan Terjun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1424, + "kode" => "611.423", + "nama" => "Bangunan Penahan Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1425, + "kode" => "611.43", + "nama" => "Gorong-Gorong Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1426, + "kode" => "611.44", + "nama" => "Talang Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1427, + "kode" => "611.45", + "nama" => "Syphon Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1428, + "kode" => "611.5", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1429, + "kode" => "611.51", + "nama" => "Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1430, + "kode" => "611.511", + "nama" => "Jalan Inspeksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1431, + "kode" => "611.512", + "nama" => "Jalan Logistik Waduk Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1432, + "kode" => "611.52", + "nama" => "Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1433, + "kode" => "611.521", + "nama" => "Jembatan Inspeksi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1434, + "kode" => "611.522", + "nama" => "Jembatan Hewan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1435, + "kode" => "611.53", + "nama" => "Tangga Cuci", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1436, + "kode" => "611.54", + "nama" => "Kubangan Kerbau", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1437, + "kode" => "611.55", + "nama" => "Waduk Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1438, + "kode" => "611.56", + "nama" => "Bangunan Penunjang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1439, + "kode" => "611.57", + "nama" => "Jaringan Telepon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1440, + "kode" => "611.58", + "nama" => "Stasiun Agro", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1441, + "kode" => "612", + "nama" => "Folder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1442, + "kode" => "612.1", + "nama" => "Tanggul Keliling", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1443, + "kode" => "612.11", + "nama" => "Tanggul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1444, + "kode" => "612.12", + "nama" => "Bangunan Penutup Sungai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1445, + "kode" => "612.13", + "nama" => "Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1446, + "kode" => "612.2", + "nama" => "Bangunan Pembawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1447, + "kode" => "612.21", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1448, + "kode" => "612.211", + "nama" => "Saluran Muka", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1449, + "kode" => "612.212", + "nama" => "Saluran Pembawa Waduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1450, + "kode" => "612.213", + "nama" => "Saluran Pembawa Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1451, + "kode" => "612.22", + "nama" => "Stasiun Pompa Pemasukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1452, + "kode" => "612.23", + "nama" => "Bangunan Bagi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1453, + "kode" => "612.24", + "nama" => "Gorong-Gorong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1454, + "kode" => "612.25", + "nama" => "Syphon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1455, + "kode" => "612.3", + "nama" => "Bangunan Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1456, + "kode" => "612.31", + "nama" => "Stasiun Pompa Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1457, + "kode" => "612.32", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1458, + "kode" => "612.321", + "nama" => "Saluran Pembuang Induk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1459, + "kode" => "612.322", + "nama" => "Saluran Pembuang Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1460, + "kode" => "612.33", + "nama" => "Pintu Air Pembuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1461, + "kode" => "612.34", + "nama" => "Gorong-Gorong Pembuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1462, + "kode" => "612.35", + "nama" => "Syphon Pembuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1463, + "kode" => "612.4", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1464, + "kode" => "612.41", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1465, + "kode" => "612.411", + "nama" => "Bangunan Pengukur Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1466, + "kode" => "612.412", + "nama" => "Bangunan Pengukur Curah Hujan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1467, + "kode" => "612.413", + "nama" => "Bangunan Gudang Stasiun Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1468, + "kode" => "612.414", + "nama" => "Bangunan Listrik Stasiun Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1469, + "kode" => "612.42", + "nama" => "Rumah Petugas Aksploitasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1470, + "kode" => "613", + "nama" => "Pasang Surut", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1471, + "kode" => "613.1", + "nama" => "Bangunan Pembawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1472, + "kode" => "613.11", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1473, + "kode" => "613.111", + "nama" => "Saluran Pembawa Induk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1474, + "kode" => "613.112", + "nama" => "Saluran Pembawa Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1475, + "kode" => "613.113", + "nama" => "Saluran Pembawa Tersier", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1476, + "kode" => "613.114", + "nama" => "Saluran penyimpanan air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1477, + "kode" => "613.12", + "nama" => "Bangunan Pintu Pemasukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1478, + "kode" => "613.2", + "nama" => "Bangunan Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1479, + "kode" => "613.21", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1480, + "kode" => "613.211", + "nama" => "Saluran Pembuang Induk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1481, + "kode" => "613.212", + "nama" => "Saluran Pembuang Sekunder", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1482, + "kode" => "613.213", + "nama" => "Saluran Pembuang Tersier", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1483, + "kode" => "613.214", + "nama" => "Saluran Pengumpul Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1484, + "kode" => "613.22", + "nama" => "Bangunan Pintu Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1485, + "kode" => "613.3", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1486, + "kode" => "613.31", + "nama" => "Kolam Pasang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1487, + "kode" => "613.32", + "nama" => "Saluran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1488, + "kode" => "613.321", + "nama" => "Saluran Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1489, + "kode" => "613.322", + "nama" => "Saluran Muka", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1490, + "kode" => "613.33", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1491, + "kode" => "613.331", + "nama" => "Bangunan Penangkis Kotoran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1492, + "kode" => "613.332", + "nama" => "Bangunan Pengukur Muka Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1493, + "kode" => "613.333", + "nama" => "Bangunan Pengukur Curah Hujan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1494, + "kode" => "613.34", + "nama" => "Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1495, + "kode" => "613.35", + "nama" => "Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1496, + "kode" => "614", + "nama" => "Pengendalian Sungai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1497, + "kode" => "614.1", + "nama" => "Bangunan Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1498, + "kode" => "614.11", + "nama" => "Tanggul Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1499, + "kode" => "614.12", + "nama" => "Pintu Pengatur Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1500, + "kode" => "614.13", + "nama" => "Klep Pengatur Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1501, + "kode" => "614.14", + "nama" => "Tembok Pengaman Talud", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1502, + "kode" => "614.15", + "nama" => "Krib", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1503, + "kode" => "614.16", + "nama" => "Kantung Lumpur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1504, + "kode" => "614.17", + "nama" => "Check-Dam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1505, + "kode" => "614.18", + "nama" => "Syphon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1506, + "kode" => "614.2", + "nama" => "Saluran Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1507, + "kode" => "614.21", + "nama" => "Saluran Banjir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1508, + "kode" => "614.22", + "nama" => "Saluran Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1509, + "kode" => "614.23", + "nama" => "Corepure", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1510, + "kode" => "614.3", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1511, + "kode" => "614.31", + "nama" => "Warning System", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1512, + "kode" => "614.32", + "nama" => "Stasiun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1513, + "kode" => "614.321", + "nama" => "Stasiun Pengukur Curah Hujan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1514, + "kode" => "614.322", + "nama" => "Stasiun Pengukur Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1515, + "kode" => "614.323", + "nama" => "Stasiun Pengukur Cuaca", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1516, + "kode" => "614.324", + "nama" => "Stasiun Pos Penjagaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1517, + "kode" => "615", + "nama" => "Pengamanan Pantai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1518, + "kode" => "615.1", + "nama" => "Tanggul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1519, + "kode" => "615.2", + "nama" => "Krib", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1520, + "kode" => "615.3", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1521, + "kode" => "616", + "nama" => "Air Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1522, + "kode" => "616.1", + "nama" => "Stasiun Pompa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1523, + "kode" => "616.2", + "nama" => "Bangunan Pembawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1524, + "kode" => "616.3", + "nama" => "Bangunan Pembuang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1525, + "kode" => "616.4", + "nama" => "Bangunan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1526, + "kode" => "617", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1527, + "kode" => "618", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1528, + "kode" => "619", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1529, + "kode" => "620", + "nama" => "JALAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1530, + "kode" => "621", + "nama" => "Jalan Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1531, + "kode" => "621.1", + "nama" => "Daerah Penguasaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1532, + "kode" => "621.11", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1533, + "kode" => "621.12", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1534, + "kode" => "621.13", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1535, + "kode" => "621.2", + "nama" => "Bangunan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1536, + "kode" => "621.21", + "nama" => "Jalan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1537, + "kode" => "621.22", + "nama" => "Jembatan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1538, + "kode" => "621.23", + "nama" => "Kantor Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1539, + "kode" => "621.24", + "nama" => "Gedung Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1540, + "kode" => "621.25", + "nama" => "Barak Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1541, + "kode" => "621.26", + "nama" => "Laboratorium Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1542, + "kode" => "621.27", + "nama" => "Rumah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1543, + "kode" => "621.3", + "nama" => "Badan Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1544, + "kode" => "621.31", + "nama" => "Pekerjaan Tanah (Earth Work)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1545, + "kode" => "621.32", + "nama" => "Stabilisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1546, + "kode" => "621.4", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1547, + "kode" => "621.41", + "nama" => "Lapis Pondasi Bawah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1548, + "kode" => "621.42", + "nama" => "Lapis Pondasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1549, + "kode" => "621.43", + "nama" => "Lapis Permukaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1550, + "kode" => "621.5", + "nama" => "Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1551, + "kode" => "621.51", + "nama" => "Parit Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1552, + "kode" => "621.52", + "nama" => "Gorong-Gorong (Culvert)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1553, + "kode" => "621.6", + "nama" => "Buku Trotuir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1554, + "kode" => "621.61", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1555, + "kode" => "621.62", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1556, + "kode" => "621.63", + "nama" => "Pasangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1557, + "kode" => "621.7", + "nama" => "Median", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1558, + "kode" => "621.71", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1559, + "kode" => "621.72", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1560, + "kode" => "621.73", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1561, + "kode" => "621.74", + "nama" => "Pasangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1562, + "kode" => "621.8", + "nama" => "Daerah Samping", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1563, + "kode" => "621.81", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1564, + "kode" => "621.82", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1565, + "kode" => "621.9", + "nama" => "Bangunan Pelengkap Dan Pengamanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1566, + "kode" => "621.91", + "nama" => "Rambu-Rambu/Tanda-Tanda Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1567, + "kode" => "621.92", + "nama" => "Lampu Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1568, + "kode" => "621.93", + "nama" => "Lampu Pengatur Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1569, + "kode" => "621.94", + "nama" => "Patok-Patok KM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1570, + "kode" => "621.95", + "nama" => "Patok-Patok ROW (Sempadan)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1571, + "kode" => "621.96", + "nama" => "Rel Pengamanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1572, + "kode" => "621.97", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1573, + "kode" => "621.98", + "nama" => "Turap Penahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1574, + "kode" => "621.99", + "nama" => "Bronjong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1575, + "kode" => "622", + "nama" => "Jalan Luar Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1576, + "kode" => "622.1", + "nama" => "Daerah Penguasaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1577, + "kode" => "622.11", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1578, + "kode" => "622.12", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1579, + "kode" => "622.13", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1580, + "kode" => "622.2", + "nama" => "Bangunan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1581, + "kode" => "622.21", + "nama" => "Jalan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1582, + "kode" => "622.22", + "nama" => "Jembatan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1583, + "kode" => "622.23", + "nama" => "Kantor Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1584, + "kode" => "622.24", + "nama" => "Gudang Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1585, + "kode" => "622.25", + "nama" => "Barak Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1586, + "kode" => "622.26", + "nama" => "Laboratorium Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1587, + "kode" => "622.27", + "nama" => "Rumah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1588, + "kode" => "622.3", + "nama" => "Badan Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1589, + "kode" => "622.31", + "nama" => "Pekerjaan Tanah (Earth Work)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1590, + "kode" => "622.32", + "nama" => "Stabilisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1591, + "kode" => "622.4", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1592, + "kode" => "622.41", + "nama" => "Lapis Pondasi Bawah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1593, + "kode" => "622.42", + "nama" => "Lapis Pondasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1594, + "kode" => "622.43", + "nama" => "Lapis Permukaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1595, + "kode" => "622.5", + "nama" => "Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1596, + "kode" => "622.51", + "nama" => "Parit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1597, + "kode" => "622.52", + "nama" => "Gorong-Gorong (Culvert)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1598, + "kode" => "622.53", + "nama" => "Sub Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1599, + "kode" => "622.6", + "nama" => "Trotoar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1600, + "kode" => "622.61", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1601, + "kode" => "622.62", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1602, + "kode" => "622.7", + "nama" => "Median", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1603, + "kode" => "622.71", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1604, + "kode" => "622.72", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1605, + "kode" => "622.73", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1606, + "kode" => "622.74", + "nama" => "Pasangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1607, + "kode" => "622.8", + "nama" => "Daerah Samping", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1608, + "kode" => "622.81", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1609, + "kode" => "622.82", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1610, + "kode" => "622.9", + "nama" => "Bangunan Pelengkap Dan Pengamanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1611, + "kode" => "622.91", + "nama" => "Rambu-Rambu/Tanda-Tanda Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1612, + "kode" => "622.92", + "nama" => "Lampu Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1613, + "kode" => "622.93", + "nama" => "Lampu Pengatur Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1614, + "kode" => "622.94", + "nama" => "Patok-Patok KM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1615, + "kode" => "622.95", + "nama" => "Patok-Patok ROW (Sempadan)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1616, + "kode" => "622.96", + "nama" => "Rel Pengamanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1617, + "kode" => "622.97", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1618, + "kode" => "622.98", + "nama" => "Turap Penahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1619, + "kode" => "622.99", + "nama" => "Bronjong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1620, + "kode" => "623", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1621, + "kode" => "623", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1622, + "kode" => "623", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1623, + "kode" => "630", + "nama" => "JEMBATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1624, + "kode" => "631", + "nama" => "Jembatan Pada Jalan Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1625, + "kode" => "631.1", + "nama" => "Daerah Penguasaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1626, + "kode" => "631.11", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1627, + "kode" => "631.12", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1628, + "kode" => "631.13", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1629, + "kode" => "631.2", + "nama" => "Bangunan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1630, + "kode" => "631.21", + "nama" => "Jalan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1631, + "kode" => "631.22", + "nama" => "Jembatan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1632, + "kode" => "631.23", + "nama" => "Kantor Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1633, + "kode" => "631.24", + "nama" => "Gudang Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1634, + "kode" => "631.25", + "nama" => "Barak Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1635, + "kode" => "631.26", + "nama" => "Laboratorium Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1636, + "kode" => "631.27", + "nama" => "Rumah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1637, + "kode" => "631.3", + "nama" => "Pekerjaan Tanah (Earth Work)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1638, + "kode" => "631.31", + "nama" => "Galian Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1639, + "kode" => "631.32", + "nama" => "Timbunan Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1640, + "kode" => "631.4", + "nama" => "Pondasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1641, + "kode" => "631.41", + "nama" => "Pondasi Kepala Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1642, + "kode" => "631.42", + "nama" => "Pondasi Pilar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1643, + "kode" => "631.43", + "nama" => "Angker", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1644, + "kode" => "631.5", + "nama" => "Bangunan Bawah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1645, + "kode" => "631.51", + "nama" => "Kepala Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1646, + "kode" => "631.52", + "nama" => "Pilar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1647, + "kode" => "631.53", + "nama" => "Piloon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1648, + "kode" => "631.54", + "nama" => "Landasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1649, + "kode" => "631.6", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1650, + "kode" => "631.61", + "nama" => "Gelagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1651, + "kode" => "631.62", + "nama" => "Lantai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1652, + "kode" => "631.63", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1653, + "kode" => "631.64", + "nama" => "Jalan Orang / Trotoar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1654, + "kode" => "631.65", + "nama" => "Sandaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1655, + "kode" => "631.66", + "nama" => "Talang air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1656, + "kode" => "631.7", + "nama" => "Bangunan / Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1657, + "kode" => "631.71", + "nama" => "Turap Penahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1658, + "kode" => "631.72", + "nama" => "Bronjong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1659, + "kode" => "631.73", + "nama" => "", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1660, + "kode" => "631.74", + "nama" => "Kist Dam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1661, + "kode" => "631.75", + "nama" => "Corepure", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1662, + "kode" => "631.76", + "nama" => "Krib", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1663, + "kode" => "631.8", + "nama" => "Bangunan Pelengkap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1664, + "kode" => "631.81", + "nama" => "Rambu-Rambu/Tanda-Tanda Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1665, + "kode" => "631.82", + "nama" => "Lampu Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1666, + "kode" => "631.83", + "nama" => "Lampu Pengatur Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1667, + "kode" => "631.84", + "nama" => "Patok Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1668, + "kode" => "631.85", + "nama" => "Patok ROW (Sempadan)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1669, + "kode" => "631.86", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1670, + "kode" => "631.9", + "nama" => "Oprit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1671, + "kode" => "631.91", + "nama" => "Badan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1672, + "kode" => "631.92", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1673, + "kode" => "631.93", + "nama" => "Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1674, + "kode" => "631.94", + "nama" => "Baku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1675, + "kode" => "631.95", + "nama" => "Median", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1676, + "kode" => "632", + "nama" => "Jembatan Pada Jalan Luar Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1677, + "kode" => "632.1", + "nama" => "Daerah Penguasaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1678, + "kode" => "632.11", + "nama" => "Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1679, + "kode" => "632.12", + "nama" => "Tanaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1680, + "kode" => "632.13", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1681, + "kode" => "632.2", + "nama" => "Bangunan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1682, + "kode" => "632.21", + "nama" => "Jalan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1683, + "kode" => "632.22", + "nama" => "Jembatan Sementara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1684, + "kode" => "632.23", + "nama" => "Kantor Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1685, + "kode" => "632.24", + "nama" => "Gudang Proyek", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1686, + "kode" => "632.25", + "nama" => "Barak Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1687, + "kode" => "632.26", + "nama" => "Laboratorium Lapangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1688, + "kode" => "632.27", + "nama" => "Rumah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1689, + "kode" => "632.3", + "nama" => "Pekerjaan Tanah (Earth Work)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1690, + "kode" => "632.31", + "nama" => "Galian Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1691, + "kode" => "632.32", + "nama" => "Timnunan Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1692, + "kode" => "632.4", + "nama" => "Pondasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1693, + "kode" => "632.41", + "nama" => "Pondasi Kepala Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1694, + "kode" => "632.42", + "nama" => "Pondasi Pilar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1695, + "kode" => "632.43", + "nama" => "Pondasi Angker", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1696, + "kode" => "632.5", + "nama" => "Bangunan Bawah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1697, + "kode" => "632.51", + "nama" => "Kepala Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1698, + "kode" => "632.52", + "nama" => "Pilar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1699, + "kode" => "632.53", + "nama" => "Piloon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1700, + "kode" => "632.54", + "nama" => "Landasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1701, + "kode" => "632.6", + "nama" => "Bangunan Atas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1702, + "kode" => "632.61", + "nama" => "Gelagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1703, + "kode" => "632.62", + "nama" => "Lantai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1704, + "kode" => "632.63", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1705, + "kode" => "632.64", + "nama" => "Jalan Orang / Trotoar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1706, + "kode" => "632.65", + "nama" => "Sandaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1707, + "kode" => "632.66", + "nama" => "Talang Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1708, + "kode" => "632.7", + "nama" => "Bangunan Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1709, + "kode" => "632.71", + "nama" => "Turap / Penahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1710, + "kode" => "632.72", + "nama" => "Bronjong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1711, + "kode" => "632.73", + "nama" => "Stek Dam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1712, + "kode" => "632.74", + "nama" => "Kist Dam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1713, + "kode" => "632.75", + "nama" => "Corepure", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1714, + "kode" => "632.76", + "nama" => "Krib", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1715, + "kode" => "632.8", + "nama" => "Bangunan Pelengkap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1716, + "kode" => "632.81", + "nama" => "Rambu-Rambu/Tanda-Tanda Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1717, + "kode" => "632.82", + "nama" => "Lampu Penerangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1718, + "kode" => "632.83", + "nama" => "Lampu Pengatur Lalu Lintas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1719, + "kode" => "632.84", + "nama" => "Patok Pengaman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1720, + "kode" => "632.85", + "nama" => "Patok ROW (Sempadan)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1721, + "kode" => "632.86", + "nama" => "Pagar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1722, + "kode" => "632.9", + "nama" => "Oprit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1723, + "kode" => "632.91", + "nama" => "Badan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1724, + "kode" => "632.92", + "nama" => "Perkerasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1725, + "kode" => "632.93", + "nama" => "Drainage", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1726, + "kode" => "632.94", + "nama" => "Baku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1727, + "kode" => "632.95", + "nama" => "Median", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1728, + "kode" => "633", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1729, + "kode" => "634", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1730, + "kode" => "635", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1731, + "kode" => "640", + "nama" => "BANGUNAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1732, + "kode" => "640.1", + "nama" => "Gedung Pengadilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1733, + "kode" => "640.2", + "nama" => "Rumah Pejabat Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1734, + "kode" => "640.3", + "nama" => "Gedung DPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1735, + "kode" => "640.4", + "nama" => "Gedung Balai Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1736, + "kode" => "640.5", + "nama" => "Penjara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1737, + "kode" => "640.6", + "nama" => "Perkantoran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1738, + "kode" => "642", + "nama" => "Bangunan Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1739, + "kode" => "642.1", + "nama" => "Taman Kanak-Kanak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1740, + "kode" => "642.2", + "nama" => "SD & SEKOLAH MENENGAH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1741, + "kode" => "642.3", + "nama" => "Perguruan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1742, + "kode" => "643", + "nama" => "Bangunan Rekreasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1743, + "kode" => "643.1", + "nama" => "BANGUNAN OLAH RAGA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1744, + "kode" => "643.2", + "nama" => "Gedung Kesenian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1745, + "kode" => "643.3", + "nama" => "Gedung Pemancar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1746, + "kode" => "644", + "nama" => "Bangunan Perdagangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1747, + "kode" => "644.1", + "nama" => "Pusat Perbelanjaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1748, + "kode" => "644.2", + "nama" => "Gedung Perdagangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1749, + "kode" => "644.3", + "nama" => "Bank", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1750, + "kode" => "644.4", + "nama" => "Pekantoran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1751, + "kode" => "645", + "nama" => "Bangunan Pelayanan Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1752, + "kode" => "645.1", + "nama" => "MCK", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1753, + "kode" => "645.2", + "nama" => "Gedung Parkir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1754, + "kode" => "645.3", + "nama" => "Rumah Sakit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1755, + "kode" => "645.4", + "nama" => "Gedung Telkom", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1756, + "kode" => "645.5", + "nama" => "Terminal Angkutan udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1757, + "kode" => "645.6", + "nama" => "Terminal Angkutan udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1758, + "kode" => "645.7", + "nama" => "Terminal Angkutan Darat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1759, + "kode" => "645.8", + "nama" => "Bangunan Keagamaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1760, + "kode" => "646", + "nama" => "Bangunan Peninggalan Sejarah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1761, + "kode" => "646.1", + "nama" => "Monumen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1762, + "kode" => "646.2", + "nama" => "Candi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1763, + "kode" => "646.3", + "nama" => "Keraton", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1764, + "kode" => "646.4", + "nama" => "Rumah Tradisional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1765, + "kode" => "647", + "nama" => "Bangunan Industri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1766, + "kode" => "648", + "nama" => "Bangunan Tempat Tinggal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1767, + "kode" => "648.1", + "nama" => "Rumah Perkotaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1768, + "kode" => "648.11", + "nama" => "Inti / Sederhana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1769, + "kode" => "648.12", + "nama" => "Sedang / Mewah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1770, + "kode" => "648.2", + "nama" => "Rumah Pedesaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1771, + "kode" => "648.21", + "nama" => "Rumah Contoh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1772, + "kode" => "648.3", + "nama" => "Real Estate", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1773, + "kode" => "648.4", + "nama" => "Bapetarum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1774, + "kode" => "649", + "nama" => "Elemen Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1775, + "kode" => "649.1", + "nama" => "Pondasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1776, + "kode" => "649.11", + "nama" => "Di Atas Tiang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1777, + "kode" => "649.2", + "nama" => "Dinding", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1778, + "kode" => "649.21", + "nama" => "Penahan Beban", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1779, + "kode" => "649.22", + "nama" => "Tidak Menahan Beban", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1780, + "kode" => "649.3", + "nama" => "Atap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1781, + "kode" => "649.4", + "nama" => "Lantai / Langit-Langit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1782, + "kode" => "649.41", + "nama" => "Supended", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1783, + "kode" => "649.42", + "nama" => "Solit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1784, + "kode" => "649.5", + "nama" => "Pintu / Jendela", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1785, + "kode" => "649.51", + "nama" => "Pintu Harmonik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1786, + "kode" => "649.52", + "nama" => "Pintu Biasa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1787, + "kode" => "649.53", + "nama" => "Pintu Sorong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1788, + "kode" => "649.54", + "nama" => "Pintu Kayu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1789, + "kode" => "649.55", + "nama" => "Jendela Sorong", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1790, + "kode" => "649.56", + "nama" => "Jendela Vertikal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1791, + "kode" => "650", + "nama" => "TATA KOTA", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1792, + "kode" => "651", + "nama" => "Daerah Perdagangan / Pelabuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1793, + "kode" => "651.1", + "nama" => "Daerah Pusat Perbelanjaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1794, + "kode" => "651.2", + "nama" => "Daerah Perkotaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1795, + "kode" => "652", + "nama" => "Daerah Pemerintah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1796, + "kode" => "653", + "nama" => "Daerah Perumahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1797, + "kode" => "653.1", + "nama" => "Kepadatan Rendah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1798, + "kode" => "653.2", + "nama" => "Kepadatan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1799, + "kode" => "654", + "nama" => "Daerah Industri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1800, + "kode" => "654.1", + "nama" => "Industri Berat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1801, + "kode" => "654.2", + "nama" => "Industri Ringan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1802, + "kode" => "654.3", + "nama" => "Industri Ringan (Home Industry)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1803, + "kode" => "655", + "nama" => "Daerah Rekreasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1804, + "kode" => "655.1", + "nama" => "Public Garden", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1805, + "kode" => "655.2", + "nama" => "Sport & Playing Fields", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1806, + "kode" => "655.3", + "nama" => "Open Space", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1807, + "kode" => "656", + "nama" => "Transportasi (Tata Letak)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1808, + "kode" => "656.1", + "nama" => "Jaringan Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1809, + "kode" => "656.11", + "nama" => "Penerangan Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1810, + "kode" => "656.2", + "nama" => "Jaringan Kereta Api", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1811, + "kode" => "656.3", + "nama" => "Jaringan Sungai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1812, + "kode" => "657", + "nama" => "Assaineering", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1813, + "kode" => "657.1", + "nama" => "Saluran Pengumpulan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1814, + "kode" => "657.2", + "nama" => "Instalasi Pengolahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1815, + "kode" => "657.21", + "nama" => "Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1816, + "kode" => "657.211", + "nama" => "Bangunan Penyaringan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1817, + "kode" => "657.212", + "nama" => "Bangunan Penghancur Kotoran / Sampah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1818, + "kode" => "657.213", + "nama" => "Bangunan Pengendap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1819, + "kode" => "657.214", + "nama" => "Bangunan Pengering Lumpur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1820, + "kode" => "657.22", + "nama" => "Unit Densifektan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1821, + "kode" => "657.23", + "nama" => "Unit Perpompaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1822, + "kode" => "658", + "nama" => "Kesehatan Lingkungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1823, + "kode" => "658.1", + "nama" => "Persampahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1824, + "kode" => "658.11", + "nama" => "Bangunan Pengumpul", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1825, + "kode" => "658.12", + "nama" => "Bangunan Pemusnahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1826, + "kode" => "658.2", + "nama" => "Pengotoran Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1827, + "kode" => "658.3", + "nama" => "pengotoran Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1828, + "kode" => "658.31", + "nama" => "Air Buangan Industri Limbah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1829, + "kode" => "658.4", + "nama" => "Kegaduhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1830, + "kode" => "658.5", + "nama" => "Kebersihan Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1831, + "kode" => "659", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1832, + "kode" => "660", + "nama" => "TATA LINGKUNGAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1833, + "kode" => "660.1", + "nama" => "Persampahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1834, + "kode" => "660.2", + "nama" => "Kebersihan Lingkungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1835, + "kode" => "660.3", + "nama" => "Pencemaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1836, + "kode" => "660.31", + "nama" => "Pecemaran Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1837, + "kode" => "660.32", + "nama" => "Pencemaran Udara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1838, + "kode" => "661", + "nama" => "Daerah Hutan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1839, + "kode" => "662", + "nama" => "Daerah Pertanian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1840, + "kode" => "663", + "nama" => "Daerah Pemikiman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1841, + "kode" => "664", + "nama" => "Pusat Pertumbuhan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1842, + "kode" => "665", + "nama" => "Transportasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1843, + "kode" => "665.1", + "nama" => "Jaringan Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1844, + "kode" => "665.2", + "nama" => "Jaringan Kereta Api", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1845, + "kode" => "665.3", + "nama" => "Jaringan Sungai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1846, + "kode" => "666", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1847, + "kode" => "667", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1848, + "kode" => "668", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1849, + "kode" => "670", + "nama" => "KETENAGAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1850, + "kode" => "671", + "nama" => "Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1851, + "kode" => "671.1", + "nama" => "Kelistrikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1852, + "kode" => "671.11", + "nama" => "Kelisrikan PLN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1853, + "kode" => "671.12", + "nama" => "Kelistrikan Non PLN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1854, + "kode" => "671.2", + "nama" => "Pembangkit Tenaga Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1855, + "kode" => "671.21", + "nama" => "PLTA ( Pembangkit Listrik Tenaga Air )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1856, + "kode" => "671.22", + "nama" => "PLTD ( Pembangkit Listrik Tenaga Diesel )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1857, + "kode" => "671.23", + "nama" => "PLTG P ( Pembangkit Listrik Tenaga Gas )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1858, + "kode" => "671.24", + "nama" => "PLTM ( Pembangkit Listrik Tenaga Matahari )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1859, + "kode" => "671.25", + "nama" => "PLTN ( Pembangkit Listrik Tenaga Nuklir )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1860, + "kode" => "671.26", + "nama" => "PLTPB ( Pembangkit Listrik Tenaga Uap )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1861, + "kode" => "671.3", + "nama" => "Transmisi Tenaga Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1862, + "kode" => "671.31", + "nama" => "Gardu Induk/Gardu Penghubung/Gardu Trafo", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1863, + "kode" => "671.32", + "nama" => "Saluran Udara Tegangan Tinggi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1864, + "kode" => "671.33", + "nama" => "Kabel Bawah Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1865, + "kode" => "671.4", + "nama" => "Distribusi Tenaga Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1866, + "kode" => "671.41", + "nama" => "Gardu Distribusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1867, + "kode" => "671.42", + "nama" => "Tegangan Rendah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1868, + "kode" => "671.43", + "nama" => "Tegangan Menengah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1869, + "kode" => "671.44", + "nama" => "Jaringan Bawah Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1870, + "kode" => "671.5", + "nama" => "Pengusahaan Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1871, + "kode" => "671.51", + "nama" => "Sambungan Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1872, + "kode" => "671.52", + "nama" => "Penjualan Tenaga Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1873, + "kode" => "671.53", + "nama" => "Tarif Listrik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1874, + "kode" => "672", + "nama" => "Tenaga Air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1875, + "kode" => "673", + "nama" => "Tenaga Minyak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1876, + "kode" => "674", + "nama" => "Tenaga Gas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1877, + "kode" => "675", + "nama" => "Tenaga Matahari", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1878, + "kode" => "676", + "nama" => "Tenaga Nuklir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1879, + "kode" => "677", + "nama" => "Tenaga Panas Bumi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1880, + "kode" => "678", + "nama" => "Tenaga Uap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1881, + "kode" => "679", + "nama" => "Tenaga Lainya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1882, + "kode" => "680", + "nama" => "PERALATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1883, + "kode" => "681", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1884, + "kode" => "682", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1885, + "kode" => "683", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1886, + "kode" => "690", + "nama" => "AIR MINUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1887, + "kode" => "691", + "nama" => "Intake", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1888, + "kode" => "691.1", + "nama" => "Broncaptering", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1889, + "kode" => "691.2", + "nama" => "Sumur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1890, + "kode" => "691.3", + "nama" => "Bendungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1891, + "kode" => "691.4", + "nama" => "Saringan (screen)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1892, + "kode" => "691.5", + "nama" => "Pintu air", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1893, + "kode" => "691.6", + "nama" => "Saluran Pembawa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1894, + "kode" => "691.7", + "nama" => "Alat Ukur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1895, + "kode" => "691.8", + "nama" => "Perpompaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1896, + "kode" => "692", + "nama" => "Transmisi Air Baku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1897, + "kode" => "692.1", + "nama" => "Perpipaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1898, + "kode" => "692.2", + "nama" => "Katup Udara (Air Relief)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1899, + "kode" => "692.3", + "nama" => "Katup Penguras (Blow Off)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1900, + "kode" => "692.4", + "nama" => "Bak Pelepas Tekanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1901, + "kode" => "692.5", + "nama" => "Jembatan Pipa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1902, + "kode" => "692.6", + "nama" => "Syphon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1903, + "kode" => "693", + "nama" => "Instalasi Pengelolaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1904, + "kode" => "693.1", + "nama" => "Bangunan Ukur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1905, + "kode" => "693.2", + "nama" => "Bangunan Aerasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1906, + "kode" => "693.3", + "nama" => "Bangunan Pengendapan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1907, + "kode" => "693.4", + "nama" => "Bangunan Pembubuh Bahan Kimia", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1908, + "kode" => "693.5", + "nama" => "Bangunan Pengaduk", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1909, + "kode" => "693.6", + "nama" => "Bangunan Saringan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1910, + "kode" => "693.7", + "nama" => "Perpompaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1911, + "kode" => "693.8", + "nama" => "Clear Hell", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1912, + "kode" => "694", + "nama" => "Distribusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1913, + "kode" => "694.1", + "nama" => "Reservoir Menara Bawah Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1914, + "kode" => "694.11", + "nama" => "Menara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1915, + "kode" => "694.12", + "nama" => "reservoir di Bawah Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1916, + "kode" => "694.2", + "nama" => "Perpipaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1917, + "kode" => "694.3", + "nama" => "Perpompaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1918, + "kode" => "694.4", + "nama" => "Jembatan Pipa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1919, + "kode" => "694.5", + "nama" => "Syphon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1920, + "kode" => "694.6", + "nama" => "Hydran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1921, + "kode" => "694.61", + "nama" => "Hydran Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1922, + "kode" => "694.62", + "nama" => "Hydran Kebakaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1923, + "kode" => "694.7", + "nama" => "Katup", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1924, + "kode" => "694.71", + "nama" => "Katup Udara (Air Relief)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1925, + "kode" => "694.72", + "nama" => "Katup Pelepas (Blow Off)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1926, + "kode" => "694.8", + "nama" => "Bak Pelepas Tekanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1927, + "kode" => "695", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1928, + "kode" => "696", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1929, + "kode" => "697", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1930, + "kode" => "698", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1931, + "kode" => "699", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1932, + "kode" => "700", + "nama" => "PENGAWASAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1933, + "kode" => "701", + "nama" => "Bidang Urusan Dalam", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1934, + "kode" => "702", + "nama" => "Bidang Peralatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1935, + "kode" => "703", + "nama" => "Bidang Kekayaan Daerah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1936, + "kode" => "704", + "nama" => "Bidang Perpustakaan / Dokumentasi / Kearsipan Sandi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1937, + "kode" => "705", + "nama" => "Bidang Perencanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1938, + "kode" => "706", + "nama" => "Bidang Organisasi / Ketatalaksanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1939, + "kode" => "707", + "nama" => "Bidang Penelitian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1940, + "kode" => "708", + "nama" => "Bidang Konferensi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1941, + "kode" => "709", + "nama" => "Bidang Perjalanan Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1942, + "kode" => "710", + "nama" => "BIDANG PEMERINTAHAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1943, + "kode" => "711", + "nama" => "Bidang Pemerintahan Pusat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1944, + "kode" => "712", + "nama" => "Bidang Pemerintahan Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1945, + "kode" => "713", + "nama" => "Bidang Pemerintahan Kabupaten / Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1946, + "kode" => "714", + "nama" => "Bidang Pemerintahan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1947, + "kode" => "715", + "nama" => "Bidang MPR / DPR", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1948, + "kode" => "716", + "nama" => "Bidang DPRD Provinsi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1949, + "kode" => "717", + "nama" => "Bidang DPRD Kabupaten / Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1950, + "kode" => "718", + "nama" => "Bidang Hukum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1951, + "kode" => "719", + "nama" => "Bidang Hubungan Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1952, + "kode" => "720", + "nama" => "BIDANG POLITIK", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1953, + "kode" => "721", + "nama" => "Bidang Kepartaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1954, + "kode" => "722", + "nama" => "Bidang Organisasi Kemasyarakatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1955, + "kode" => "723", + "nama" => "Bidang Organisasi Profesi Dan Fungsional", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1956, + "kode" => "724", + "nama" => "Bidang Organisasi Pemuda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1957, + "kode" => "725", + "nama" => "Bidang Organisasi Buruh, Tani, Dan Nelayan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1958, + "kode" => "726", + "nama" => "Bidang Organisasi Wanita", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1959, + "kode" => "727", + "nama" => "Bidang Pemilihan Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1960, + "kode" => "730", + "nama" => "BIDANG KEAMANAN/KETERTIBAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1961, + "kode" => "731", + "nama" => "Bidang Pertahanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1962, + "kode" => "732", + "nama" => "Bidang Kemiliteran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1963, + "kode" => "733", + "nama" => "Bidang Perlindungan Masyarakat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1964, + "kode" => "734", + "nama" => "Bidang Kemanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1965, + "kode" => "735", + "nama" => "bidang Kejahatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1966, + "kode" => "736", + "nama" => "Bidang Bencana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1967, + "kode" => "737", + "nama" => "Bidang Kecelakaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1968, + "kode" => "738", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1969, + "kode" => "739", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1970, + "kode" => "740", + "nama" => "BIDANG KESEJAHTERAAN RAKYAT", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1971, + "kode" => "741", + "nama" => "Bidang Pembagunan Desa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1972, + "kode" => "742", + "nama" => "Bidang Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1973, + "kode" => "743", + "nama" => "Bidang Kebudayaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1974, + "kode" => "744", + "nama" => "Bidang Kesehatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1975, + "kode" => "745", + "nama" => "Bidang Agama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1976, + "kode" => "746", + "nama" => "Bidang Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1977, + "kode" => "747", + "nama" => "Bidang Kependudukan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1978, + "kode" => "748", + "nama" => "Bidang Media Massa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1979, + "kode" => "749", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1980, + "kode" => "750", + "nama" => "BIDANG PEREKONOMIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1981, + "kode" => "751", + "nama" => "Bidang Perdagangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1982, + "kode" => "752", + "nama" => "Bidang Pertanian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1983, + "kode" => "753", + "nama" => "Bidang Perindustrian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1984, + "kode" => "754", + "nama" => "Bidang Pertambangan / Kesamudraan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1985, + "kode" => "755", + "nama" => "Bidang Perhubungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1986, + "kode" => "756", + "nama" => "Bidang Tenaga Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1987, + "kode" => "757", + "nama" => "Bidang Permodalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1988, + "kode" => "758", + "nama" => "Bidang Perbankan / Moneter", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1989, + "kode" => "759", + "nama" => "Bidang Agraria", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1990, + "kode" => "760", + "nama" => "BIDANG PEKERJAAN UMUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1991, + "kode" => "761", + "nama" => "Bidang Pengairan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1992, + "kode" => "762", + "nama" => "Bidang Jalan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1993, + "kode" => "763", + "nama" => "Bidang Jembatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1994, + "kode" => "764", + "nama" => "Bidang Bangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1995, + "kode" => "765", + "nama" => "Bidang Tata Kota", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1996, + "kode" => "766", + "nama" => "Bidang Lingkungan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1997, + "kode" => "767", + "nama" => "Bidang Ketenagaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1998, + "kode" => "768", + "nama" => "Bidang Peralatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 1999, + "kode" => "769", + "nama" => "Bidang Air Minum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2000, + "kode" => "770", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2001, + "kode" => "771", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2002, + "kode" => "772", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2003, + "kode" => "780", + "nama" => "BIDANG KEPEGAWAIAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2004, + "kode" => "781", + "nama" => "Bidang Pengadaan Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2005, + "kode" => "782", + "nama" => "Bidang Mutasi Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2006, + "kode" => "783", + "nama" => "Bidang Kedudukan Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2007, + "kode" => "784", + "nama" => "Bidang Kesejahteran Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2008, + "kode" => "785", + "nama" => "Bidang Cuti", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2009, + "kode" => "786", + "nama" => "Bidang Penilaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2010, + "kode" => "787", + "nama" => "Bidang Tata Usaha Kepegawaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2011, + "kode" => "788", + "nama" => "Bidang Pemberhentian Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2012, + "kode" => "789", + "nama" => "Bidang Pendidikan Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2013, + "kode" => "790", + "nama" => "BIDANG KEUANGAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2014, + "kode" => "791", + "nama" => "Bidang Anggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2015, + "kode" => "792", + "nama" => "Bidang Otorisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2016, + "kode" => "793", + "nama" => "Bidang Verifikasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2017, + "kode" => "794", + "nama" => "Bidang Pembukuan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2018, + "kode" => "795", + "nama" => "Bidang Perbendaharaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2019, + "kode" => "796", + "nama" => "Bidang Pembina Kebendaharaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2020, + "kode" => "797", + "nama" => "Bidang Pendapatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2021, + "kode" => "798", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2022, + "kode" => "799", + "nama" => "Bidang Bendaharaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2023, + "kode" => "800", + "nama" => "KEPEGAWAIAN", + "uraian" => "Klasifikasi Disini: Kebijaksanaan Kepegawaian", + "enabled" => 1, + ], + [ + "id" => 2024, + "kode" => "800.1", + "nama" => "Perencanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2025, + "kode" => "800.2", + "nama" => "Penelitian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2026, + "kode" => "800.043", + "nama" => "Pengaduan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2027, + "kode" => "800.05", + "nama" => "Tim", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2028, + "kode" => "800.07", + "nama" => "Statistik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2029, + "kode" => "800.08", + "nama" => "Peraturan Perundang-Undangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2030, + "kode" => "810", + "nama" => "PENGADAAN", + "uraian" => + "Meliputi: Lamaran, Pengujian Kesehatan, Dan Pengangkatan Calon Pegawai", + "enabled" => 1, + ], + [ + "id" => 2031, + "kode" => "811", + "nama" => "Lamaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2032, + "kode" => "811.1", + "nama" => "Testing", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2033, + "kode" => "811.2", + "nama" => "Screening", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2034, + "kode" => "811.3", + "nama" => "Panggilan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2035, + "kode" => "812", + "nama" => "Pengujian Kesehatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2036, + "kode" => "813", + "nama" => "Pengangkatan Calon Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2037, + "kode" => "813.1", + "nama" => "Pengangkatan Calon Pegawai Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2038, + "kode" => "813.2", + "nama" => "Pengangkatan Calon Pegawai Golongan II", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2039, + "kode" => "813.3", + "nama" => "Pengangkatan Calon Pegawai Golongan III", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2040, + "kode" => "813.4", + "nama" => "Pengangkatan Calon Pegawai Golongan IV", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2041, + "kode" => "813.5", + "nama" => "Pengangkatan Calon Guru Inpres", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2042, + "kode" => "814", + "nama" => "Pengangkatan Tenaga Lepas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2043, + "kode" => "814.1", + "nama" => "Pengangkatan Tenaga Bulanan / Tenaga Kontrak", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2044, + "kode" => "814.2", + "nama" => "Pengangkatan Tenaga Harian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2045, + "kode" => "814.3", + "nama" => "Pengangkatan Tenaga Pensiunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2046, + "kode" => "815", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2047, + "kode" => "816", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2048, + "kode" => "817", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2049, + "kode" => "820", + "nama" => "MUTASI", + "uraian" => + "Meliputi: Pengangkatan, Kenaikan Gaji Berkala, Kenaikan Pangkat, Pemindahan, Pelimpahan Datasering, Tugas Belajar Dan Wajib Militer", + "enabled" => 1, + ], + [ + "id" => 2050, + "kode" => "821", + "nama" => "Pengangkatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2051, + "kode" => "821.1", + "nama" => "Pengangkatan Menjadi Pegawai Negeri Tetap", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2052, + "kode" => "821.11", + "nama" => "Pengangkatan Menjadi Pegawai Negeri Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2053, + "kode" => "821.12", + "nama" => "Pengangkatan Menjadi Pegawai Negeri Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2054, + "kode" => "821.13", + "nama" => "Pengangkatan Menjadi Pegawai Negeri Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2055, + "kode" => "821.14", + "nama" => "Pengangkatan Menjadi Pegawai Negeri Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2056, + "kode" => "821.15", + "nama" => + "Pengangkatan Menjadi Pegawai Negeri Sipil Yang Cuti Di Luar Tanggungan Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2057, + "kode" => "821.2", + "nama" => + "Pengangkatan Dalam Jabatan, Pembebasan Dari Jabatan, Berita Acara Serah Terima Jabatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2058, + "kode" => "821.21", + "nama" => "Sekjen/Dirjen/Irjen/Kabag", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2059, + "kode" => "821.22", + "nama" => + "Kepala Biro/Direktur/Inspektur/Kepala Pusat/Sekretaris/Kepala Dinas/Asisten Sekwilda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2060, + "kode" => "821.23", + "nama" => + "Kepala Bagian/Kepala Sub Direktorat/Kepala Bidang/Inspektur Pembantu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2061, + "kode" => "821.24", + "nama" => + "Kepala Subbagian/Kepala Seksi/Kepala Sub Bidang/Pemeriksa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2062, + "kode" => "821.25", + "nama" => "Residen/Pembantu Gubernur", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2063, + "kode" => "821.26", + "nama" => "Wedana/Pembantu Bupati", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2064, + "kode" => "821.27", + "nama" => "Camat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2065, + "kode" => "821.28", + "nama" => "Lurah Administratif (Lurah Desa)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2066, + "kode" => "821.29", + "nama" => "Jabatan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2067, + "kode" => "822", + "nama" => "Kenaikan Gaji Berkala", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2068, + "kode" => "822.1", + "nama" => "Pegawai Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2069, + "kode" => "822.2", + "nama" => "Pegawai Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2070, + "kode" => "822.3", + "nama" => "Pegawai Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2071, + "kode" => "822.4", + "nama" => "Pegawai Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2072, + "kode" => "823", + "nama" => "Kenaikan Pangkat / Pengangkatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2073, + "kode" => "823.1", + "nama" => "Pegawai Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2074, + "kode" => "823.2", + "nama" => "Pegawai Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2075, + "kode" => "823.3", + "nama" => "Pegawai Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2076, + "kode" => "823.4", + "nama" => "Pegawai Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2077, + "kode" => "824", + "nama" => "Pemindahan / Pelimpahan / Perbantuan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2078, + "kode" => "824.1", + "nama" => "Pegawai Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2079, + "kode" => "824.2", + "nama" => "Pegawai Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2080, + "kode" => "824.3", + "nama" => "Pegawai Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2081, + "kode" => "824.4", + "nama" => "Pegawai Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2082, + "kode" => "824.5", + "nama" => "Lolos Butuh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2083, + "kode" => "824.6", + "nama" => "Kurikulum dan Silabi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2084, + "kode" => "824.7", + "nama" => "Proposal (TOR)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2085, + "kode" => "825", + "nama" => "Datasering dan Penempatan Kembali", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2086, + "kode" => "826", + "nama" => "Penunjukan Tugas Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2087, + "kode" => "826.1", + "nama" => "Dalam Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2088, + "kode" => "826.2", + "nama" => "Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2089, + "kode" => "826.3", + "nama" => "Tunjangan Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2090, + "kode" => "826.4", + "nama" => "Penempatan Kembali", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2091, + "kode" => "827", + "nama" => "Wajib Militer", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2092, + "kode" => "828", + "nama" => "Mutasi Dengan Instansi Lain", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2093, + "kode" => "829", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2094, + "kode" => "830", + "nama" => "KEDUDUKAN", + "uraian" => + "Meliputi: Perhitungan Masa Kerja, Penyesuaian Pangkat/Gaji, Penghargaan Ijasah, Dan Jenjang Pangkat", + "enabled" => 1, + ], + [ + "id" => 2095, + "kode" => "831", + "nama" => "Perhitungan Masa Kerja", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2096, + "kode" => "832", + "nama" => "Penyesuaian Pangkat / Gaji", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2097, + "kode" => "832.1", + "nama" => "Pegawai Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2098, + "kode" => "832.2", + "nama" => "Pegawai Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2099, + "kode" => "832.3", + "nama" => "Pegawai Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2100, + "kode" => "832.4", + "nama" => "Pegawai Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2101, + "kode" => "833", + "nama" => "Penghargaan Ijazah / Penyesuaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2102, + "kode" => "834", + "nama" => "Jenjang Pangkat / Eselonering", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2103, + "kode" => "835", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2104, + "kode" => "836", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2105, + "kode" => "837", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2106, + "kode" => "840", + "nama" => "KESEJAHTERAAN PEGAWAI", + "uraian" => + "Meliputi: Tunjangan, Dana, Perawatan Kesehatan, Koperasi, Distribusi, Permahan/Tanah, Bantuan Sosial, Rekreasi Dan Dispensasi.", + "enabled" => 1, + ], + [ + "id" => 2107, + "kode" => "841", + "nama" => "Tunjangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2108, + "kode" => "841.1", + "nama" => "Jabatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2109, + "kode" => "841.2", + "nama" => "Kehormatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2110, + "kode" => "841.3", + "nama" => "Kematian/Uang Duka", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2111, + "kode" => "841.4", + "nama" => "Tunjangan Hari Raya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2112, + "kode" => "841.5", + "nama" => "Perjalanan Dinas Tetap/Cuti/Pindah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2113, + "kode" => "841.6", + "nama" => "Keluarga", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2114, + "kode" => "841.7", + "nama" => "Sandang, Pangan, Papan (Bapertarum)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2115, + "kode" => "842", + "nama" => "Dana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2116, + "kode" => "842.1", + "nama" => "Taspen", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2117, + "kode" => "842.2", + "nama" => "Kesehatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2118, + "kode" => "842.3", + "nama" => "Asuransi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2119, + "kode" => "843", + "nama" => "Perawatan Kesehatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2120, + "kode" => "843.1", + "nama" => "Poliklinik", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2121, + "kode" => "843.2", + "nama" => "Perawatan Dokter", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2122, + "kode" => "843.3", + "nama" => "Obat-Obatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2123, + "kode" => "843.4", + "nama" => "Keluarga Berencana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2124, + "kode" => "844", + "nama" => "Koperasi / Distribusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2125, + "kode" => "844.1", + "nama" => "Distribusi Pangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2126, + "kode" => "844.2", + "nama" => "Distribusi Sandang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2127, + "kode" => "844.3", + "nama" => "Distribusi Papan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2128, + "kode" => "845", + "nama" => "Perumahan/Tanah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2129, + "kode" => "845.1", + "nama" => "Perumahan Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2130, + "kode" => "845.2", + "nama" => "Tanah Kapling", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2131, + "kode" => "845.3", + "nama" => "Losmen/Hotel", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2132, + "kode" => "846", + "nama" => "Bantuan Sosial", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2133, + "kode" => "846.1", + "nama" => "Bantuan Kebakaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2134, + "kode" => "846.2", + "nama" => "Bantuan Kebanjiran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2135, + "kode" => "847", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2136, + "kode" => "848", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2137, + "kode" => "849", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2138, + "kode" => "850", + "nama" => "CUTI ", + "uraian" => + "Meliputi Cuti Tahunan, Cuti Besar, Cuti Sakit, Cuti Hamil, Cuti Naik Haji, Cuti Diluar Tanggungan Negara Dan Cuti Alasan Lain", + "enabled" => 1, + ], + [ + "id" => 2139, + "kode" => "851", + "nama" => "Cuti Tahunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2140, + "kode" => "852", + "nama" => "Cuti Besar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2141, + "kode" => "853", + "nama" => "Cuti Sakit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2142, + "kode" => "854", + "nama" => "Cuti Hamil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2143, + "kode" => "855", + "nama" => "Cuti Naik Haji/Umroh", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2144, + "kode" => "856", + "nama" => "Cuti Di Luar Tangungan Neagara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2145, + "kode" => "857", + "nama" => "Cuti Alasan Lain/Alasan Penting", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2146, + "kode" => "858", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2147, + "kode" => "859", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2148, + "kode" => "860", + "nama" => "PENILAIAN", + "uraian" => + "Meliputi: Penghargaan, Hukuman, Konduite, Ujian Dinas,Penilaian Kakayaan Pribadi Dan Rehabilitasi", + "enabled" => 1, + ], + [ + "id" => 2149, + "kode" => "861", + "nama" => "Penghargaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2150, + "kode" => "861.1", + "nama" => "Bintang/Satyalencana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2151, + "kode" => "861.2", + "nama" => "Kenaikan Pangkat Anumerta", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2152, + "kode" => "861.3", + "nama" => "Kenaikan Gaji Istimewa", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2153, + "kode" => "861.4", + "nama" => "Hadiah Berupa Uang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2154, + "kode" => "861.5", + "nama" => "Pegawai Teladan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2155, + "kode" => "862", + "nama" => "Hukuman", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2156, + "kode" => "862.1", + "nama" => "Teguran Peringatan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2157, + "kode" => "862.2", + "nama" => "Penundaan Kenaikan Gaji", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2158, + "kode" => "862.3", + "nama" => "Penurunan Pangkat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2159, + "kode" => "862.4", + "nama" => "Pemindahan", + "uraian" => + "Catatan: Pemberhentian Untuk Sementara Waktu Dan Pemberhentian Tidak Dengan Hormat Lihat 887 Dan 888", + "enabled" => 1, + ], + [ + "id" => 2160, + "kode" => "863", + "nama" => "Konduite, DP3, Disiplin Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2161, + "kode" => "864", + "nama" => "Ujian Dinas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2162, + "kode" => "864.1", + "nama" => "Tingkat 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2163, + "kode" => "864.2", + "nama" => "Tingkat 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2164, + "kode" => "864.3", + "nama" => "Tingkat 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2165, + "kode" => "865", + "nama" => "Penilaian Kehidupan Pegawai Negeri", + "uraian" => + "Meliputi: Petunjuk Pelaksanaan Hidup Sederhana, Penilaian Kekayaan Pribadi ( LP2P )", + "enabled" => 1, + ], + [ + "id" => 2166, + "kode" => "866", + "nama" => "Rehabilitasi / Pengaktifan Kembali", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2167, + "kode" => "867", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2168, + "kode" => "868", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2169, + "kode" => "869", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2170, + "kode" => "870", + "nama" => "TATA USAHA KEPEGAWAIAN", + "uraian" => + "Meliputi: Formasi, Bezetting, Registrasi,Daftar, Riwayat Hidup, Hak, Penggajian, Sumpah,/Janji Dan Korps Pegawai", + "enabled" => 1, + ], + [ + "id" => 2171, + "kode" => "871", + "nama" => "Formasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2172, + "kode" => "872", + "nama" => "Bezetting/Daftar Urut Kepegawaian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2173, + "kode" => "873", + "nama" => "Registrasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2174, + "kode" => "873.1", + "nama" => "NIP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2175, + "kode" => "873.2", + "nama" => "KARPEG", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2176, + "kode" => "873.3", + "nama" => "Legitiminasi/Tanda Pengenal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2177, + "kode" => "873.4", + "nama" => + "Daftar Keluarga, Perkawinan, Perceraian, Karis, Karsu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2178, + "kode" => "874", + "nama" => "Daftar Riwayat Pekerjaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2179, + "kode" => "874.1", + "nama" => "Tanggal Lahir", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2180, + "kode" => "874.2", + "nama" => "Penggantian Nama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2181, + "kode" => "874.3", + "nama" => "Izin kepartaian Organisasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2182, + "kode" => "875", + "nama" => "Kewenangan Mutasi Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2183, + "kode" => "875.1", + "nama" => "Pelimpahan Wewenang", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2184, + "kode" => "875.2", + "nama" => "Specimen Tanda Tangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2185, + "kode" => "876", + "nama" => "Penggajian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2186, + "kode" => "876.1", + "nama" => "SKPP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2187, + "kode" => "877", + "nama" => "Sumpah/Janji", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2188, + "kode" => "878", + "nama" => "Korps Pegawai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2189, + "kode" => "879", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2190, + "kode" => "880", + "nama" => "PEMBERHENTIAN PEGAWAI", + "uraian" => + "Meliputi Atas Pemberhentian,Permintaan Sendiri, Dengan Hak Pensiun, Karena Meninggal Dunia, Alasan Lain, Dengan Diberi Uang Pesangon, Uang Tnggu Untuk Sementara Waktu Dan Pemberhentian Tidak Dengan Hormat", + "enabled" => 1, + ], + [ + "id" => 2191, + "kode" => "881", + "nama" => "Permintaan Sendiri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2192, + "kode" => "882", + "nama" => "Dengan Hak Pensiun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2193, + "kode" => "882.1", + "nama" => + "Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 1", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2194, + "kode" => "882.2", + "nama" => + "Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 2", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2195, + "kode" => "882.3", + "nama" => + "Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 3", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2196, + "kode" => "882.4", + "nama" => + "Pemberhentian Dengan Hak Pensiun Pegawai Negeri Golongan 4", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2197, + "kode" => "882.5", + "nama" => "Pensiun Janda / Duda", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2198, + "kode" => "882.6", + "nama" => "Pensiun Yatim Piatu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2199, + "kode" => "882.7", + "nama" => "Uang Muka Pensiun", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2200, + "kode" => "883", + "nama" => "Karena Meninggal", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2201, + "kode" => "883.1", + "nama" => "Karena Meninggal Dalam Tugas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2202, + "kode" => "884", + "nama" => "Alasan Lain", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2203, + "kode" => "885", + "nama" => "Uang Pesangon", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2204, + "kode" => "886", + "nama" => "Uang Tunggu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2205, + "kode" => "887", + "nama" => "Untuk Sementara Waktu", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2206, + "kode" => "888", + "nama" => "Tidak Dengan Hormat", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2207, + "kode" => "889", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2208, + "kode" => "890", + "nama" => "PENDIDIKAN PEGAWAI", + "uraian" => + "Meliputi: Perencanaan, Pendidikan Reguler, Pendidikan Non-Reguler, Pendidikan Ke Luar Negeri, Metode, Tenaga Pengajar, Administrasi Pendidikan, Fasilitas Sarana Pendidikan", + "enabled" => 1, + ], + [ + "id" => 2209, + "kode" => "891", + "nama" => "Perencanaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2210, + "kode" => "891.1", + "nama" => "Program", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2211, + "kode" => "891.2", + "nama" => "Kurikulum dan Silabi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2212, + "kode" => "891.3", + "nama" => "Proposal ( TOR )", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2213, + "kode" => "892", + "nama" => "Pendidikan _Egular / Kader", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2214, + "kode" => "892.1", + "nama" => "IPDN / APDN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2215, + "kode" => "892.2", + "nama" => "Kursus-Kursus Reguler", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2216, + "kode" => "893", + "nama" => "Pendidikan dan Pelatihan / Non Reguler", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2217, + "kode" => "893.1", + "nama" => "LEMHANAS", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2218, + "kode" => "893.2", + "nama" => + "Pendidikan dan Pelatihan Struktural, SPATI, SPAMEN, SPAMA, ADUMLA, ADUM", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2219, + "kode" => "893.3", + "nama" => "Kursus-Kursus / Penataran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2220, + "kode" => "893.4", + "nama" => + "Diklat Tehnik, Fungsional Dan Manajemen Pemerintahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2221, + "kode" => "893.5", + "nama" => "Diklat Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2222, + "kode" => "894", + "nama" => "Pendidikan Luar Negeri", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2223, + "kode" => "894.1", + "nama" => "Berkesinambungan / Berkala / Bergelar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2224, + "kode" => "894.2", + "nama" => "Non Gelar / Diploma", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2225, + "kode" => "895", + "nama" => "Metode", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2226, + "kode" => "895.1", + "nama" => "Kuliah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2227, + "kode" => "895.2", + "nama" => "Ceramah, Simposium", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2228, + "kode" => "895.3", + "nama" => "Diskusi, Raker, Seminar, Lokakarya, Orientasi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2229, + "kode" => "895.4", + "nama" => "Studi Lapangan, Kkn, Widyawisata", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2230, + "kode" => "895.5", + "nama" => "Tanya Jawab / Sylabi / Modul / Kursil", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2231, + "kode" => "895.7", + "nama" => "Penugasan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2232, + "kode" => "895.8", + "nama" => "Gladi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2233, + "kode" => "896", + "nama" => "Tenaga Pengajar / Widyaiswara/Narasumber", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2234, + "kode" => "896.1", + "nama" => "Moderator", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2235, + "kode" => "897", + "nama" => "Administrasi Pendidikan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2236, + "kode" => "897.1", + "nama" => "Tahun Pelajaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2237, + "kode" => "897.2", + "nama" => "Persyaratan, Pendaftaran, Testing, Ujian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2238, + "kode" => "897.3", + "nama" => "STTP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2239, + "kode" => "897.4", + "nama" => "Penilaian Angka Kredit", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2240, + "kode" => "897.5", + "nama" => "Laporan Pendidikan Dan Pelatihan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2241, + "kode" => "898", + "nama" => "Fasilitas Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2242, + "kode" => "898.1", + "nama" => "Tunjangan Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2243, + "kode" => "898.2", + "nama" => "Asrama", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2244, + "kode" => "898.3", + "nama" => "Uang Makan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2245, + "kode" => "898.4", + "nama" => "Uang Transport", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2246, + "kode" => "898.5", + "nama" => "Uang Buku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2247, + "kode" => "898.6", + "nama" => "Uang Ujian", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2248, + "kode" => "898.7", + "nama" => "Uang Semester / Uang Kuliah", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2249, + "kode" => "898.8", + "nama" => "Uang Saku", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2250, + "kode" => "899", + "nama" => "Sarana", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2251, + "kode" => "899.1", + "nama" => "Bantuan Sarana Belajar", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2252, + "kode" => "899.2", + "nama" => "Bantuan Alat-Alat Tulis", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2253, + "kode" => "899.3", + "nama" => "Bantuan Sarana Belajar Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2254, + "kode" => "900", + "nama" => "KEUANGAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2255, + "kode" => "901", + "nama" => "Nota Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2256, + "kode" => "902", + "nama" => "APBN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2257, + "kode" => "903", + "nama" => "APBD", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2258, + "kode" => "904", + "nama" => "APBN-P", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2259, + "kode" => "905", + "nama" => "Dana Alokasi Umum", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2260, + "kode" => "906", + "nama" => "Dana Alokasi Khusus", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2261, + "kode" => "907", + "nama" => + "Dekonsentrasi (Pelimpahan Dana Dari Pusat Ke Daerah)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2262, + "kode" => "907", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2263, + "kode" => "908", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2264, + "kode" => "910", + "nama" => "ANGGARAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2265, + "kode" => "911", + "nama" => "Rutin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2266, + "kode" => "912", + "nama" => "Pembangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2267, + "kode" => "913", + "nama" => "Anggaran Belanja Tambahan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2268, + "kode" => "914", + "nama" => "Daftar Isian Kegiatan (DIK)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2269, + "kode" => "914.1", + "nama" => "Daftar Usulan Kegiatan (DUK)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2270, + "kode" => "915", + "nama" => "Daftar Isian Poyek (DIP)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2271, + "kode" => "915.1", + "nama" => "Daftar Usulan Proyek (DUP)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2272, + "kode" => "915.2", + "nama" => "Daftar Isian Pengguna Anggaran (DIPA)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2273, + "kode" => "916", + "nama" => "Revisi Anggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2274, + "kode" => "917", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2275, + "kode" => "918", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2276, + "kode" => "920", + "nama" => "OTORISASI / SKO", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2277, + "kode" => "921", + "nama" => "Rutin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2278, + "kode" => "922", + "nama" => "Pembangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2279, + "kode" => "923", + "nama" => "SIAP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2280, + "kode" => "924", + "nama" => "Ralat SKO", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2281, + "kode" => "925", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2282, + "kode" => "926", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2283, + "kode" => "927", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2284, + "kode" => "930", + "nama" => "VERIFIKASI", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2285, + "kode" => "931", + "nama" => "SPM Rutin (daftar p8)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2286, + "kode" => "932", + "nama" => "SPM Pembangunan (daftar p8)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2287, + "kode" => "933", + "nama" => "Penerimaan (daftar p6. p7)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2288, + "kode" => "934", + "nama" => "SPJ Rutin", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2289, + "kode" => "935", + "nama" => "SPJ Pembangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2290, + "kode" => "936", + "nama" => "Nota Pemeriksaan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2291, + "kode" => "937", + "nama" => "SP Pemindahan Pembukuan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2292, + "kode" => "938", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2293, + "kode" => "939", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2294, + "kode" => "940", + "nama" => "PEMBUKUAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2295, + "kode" => "941", + "nama" => "Penyusunan Perhitungan Anggaran", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2296, + "kode" => "942", + "nama" => "Permintaan Data Anggaran Laporan Fisik Pembangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2297, + "kode" => "943", + "nama" => "Laporan Fisik Pembangunan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2298, + "kode" => "944", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2299, + "kode" => "945", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2300, + "kode" => "950", + "nama" => "PERBENDAHARAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2301, + "kode" => "951", + "nama" => "Tuntutan Ganti Rugi (ICW Pasal 74)", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2302, + "kode" => "952", + "nama" => "Tuntutan Bendaharawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2303, + "kode" => "953", + "nama" => "Penghapusan Kekayaan Negara", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2304, + "kode" => "954", + "nama" => + "Pengangkatan/Penggantian Pemimpin Proyak Dan Pengangkatan/Pemberhentian Bendaharawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2305, + "kode" => "955", + "nama" => "Spesimen Tanda Tangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2306, + "kode" => "956", + "nama" => "Surat Tagihan Piutang, Ikhtisar Bulanan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2307, + "kode" => "957", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2308, + "kode" => "958", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2309, + "kode" => "959", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2310, + "kode" => "960", + "nama" => "PEMBINAAN KEBENDAHARAAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2311, + "kode" => "961", + "nama" => "Pemeriksaan Kas Dan Hasil Pemeriksaan Kas", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2312, + "kode" => "962", + "nama" => "Pemeriksaan Administrasi Bendaharawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2313, + "kode" => "963", + "nama" => "Laporan Keuangan Bendaharawan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2314, + "kode" => "964", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2315, + "kode" => "965", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2316, + "kode" => "966", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2317, + "kode" => "970", + "nama" => "PENDAPATAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2318, + "kode" => "971", + "nama" => "Perimbangan Keuangan", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2319, + "kode" => "972", + "nama" => "Subsidi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2320, + "kode" => "973", + "nama" => "Pajak,Ipeda, IHH,IHPH", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2321, + "kode" => "974", + "nama" => "Retribusi", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2322, + "kode" => "975", + "nama" => "Bea", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2323, + "kode" => "976", + "nama" => "Cukai", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2324, + "kode" => "977", + "nama" => "Pungutan / PNBP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2325, + "kode" => "978", + "nama" => "Bantuan Presiden, Menteri Dan Bantuan Lainnya", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2326, + "kode" => "979", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2327, + "kode" => "980", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2328, + "kode" => "981", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2329, + "kode" => "990", + "nama" => "BENDAHARAWAN", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2330, + "kode" => "991", + "nama" => "SKPP / SPP", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2331, + "kode" => "992", + "nama" => "Teguran SPJ", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2332, + "kode" => "993", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2333, + "kode" => "994", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + [ + "id" => 2334, + "kode" => "995", + "nama" => "-", + "uraian" => "-", + "enabled" => 1, + ], + ]); + + DB::statement(" + CREATE TABLE `log_surat` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_format_surat` int(3) NOT NULL, + `id_pend` int(11) DEFAULT NULL, + `id_pamong` int(4) NOT NULL, + `id_user` int(4) NOT NULL, + `tanggal` timestamp NOT NULL DEFAULT current_timestamp(), + `bulan` varchar(2) DEFAULT NULL, + `tahun` varchar(4) DEFAULT NULL, + `no_surat` varchar(20) DEFAULT NULL, + `nama_surat` varchar(100) DEFAULT NULL, + `lampiran` varchar(100) DEFAULT NULL, + `nik_non_warga` decimal(16,0) DEFAULT NULL, + `nama_non_warga` varchar(100) DEFAULT NULL, + `keterangan` varchar(200) DEFAULT NULL, + `lokasi_arsip` varchar(150) DEFAULT '', + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `permohonan_surat` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pemohon` int(11) NOT NULL, + `id_surat` int(11) NOT NULL, + `isian_form` text NOT NULL, + `status` tinyint(1) NOT NULL DEFAULT 0, + `keterangan` text DEFAULT NULL, + `no_hp_aktif` varchar(50) NOT NULL, + `syarat` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `no_antrian` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_syarat_surat` ( + `ref_syarat_id` int(1) unsigned NOT NULL AUTO_INCREMENT, + `ref_syarat_nama` varchar(255) NOT NULL, + PRIMARY KEY (`ref_syarat_id`) + ); + "); + + DB::table("ref_syarat_surat")->insert([ + [ + "ref_syarat_id" => 1, + "ref_syarat_nama" => "Surat Pengantar RT/RW", + ], + ["ref_syarat_id" => 2, "ref_syarat_nama" => "Fotokopi KK"], + ["ref_syarat_id" => 3, "ref_syarat_nama" => "Fotokopi KTP"], + [ + "ref_syarat_id" => 4, + "ref_syarat_nama" => + "Fotokopi Surat Nikah/Akta Nikah/Kutipan Akta Perkawinan", + ], + [ + "ref_syarat_id" => 5, + "ref_syarat_nama" => + "Fotokopi Akta Kelahiran/Surat Kelahiran bagi keluarga yang mempunyai anak", + ], + [ + "ref_syarat_id" => 6, + "ref_syarat_nama" => "Surat Pindah Datang dari tempat asal", + ], + [ + "ref_syarat_id" => 7, + "ref_syarat_nama" => + "Surat Keterangan Kematian dari Rumah Sakit, Rumah Bersalin Puskesmas, atau visum Dokter", + ], + [ + "ref_syarat_id" => 8, + "ref_syarat_nama" => "Surat Keterangan Cerai", + ], + [ + "ref_syarat_id" => 9, + "ref_syarat_nama" => "Fotokopi Ijasah Terakhir", + ], + [ + "ref_syarat_id" => 10, + "ref_syarat_nama" => "SK. PNS/KARIP/SK. TNI – POLRI", + ], + [ + "ref_syarat_id" => 11, + "ref_syarat_nama" => + "Surat Keterangan Kematian dari Kepala Desa/Kelurahan", + ], + [ + "ref_syarat_id" => 12, + "ref_syarat_nama" => + "Surat imigrasi / STMD (Surat Tanda Melapor Diri)", + ], + ]); + + DB::statement(" + CREATE TABLE `statistics` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `url_id` int(11) NOT NULL, + `created` datetime NOT NULL, + PRIMARY KEY (`id`), + KEY `url_id` (`url_id`) + ); + "); + + DB::statement(" + CREATE TABLE `surat_keluar` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nomor_urut` smallint(5) DEFAULT NULL, + `nomor_surat` varchar(35) DEFAULT NULL, + `kode_surat` varchar(10) DEFAULT NULL, + `tanggal_surat` date NOT NULL, + `tanggal_catat` timestamp NOT NULL DEFAULT current_timestamp(), + `tujuan` varchar(100) DEFAULT NULL, + `isi_singkat` varchar(200) DEFAULT NULL, + `berkas_scan` varchar(100) DEFAULT NULL, + `ekspedisi` tinyint(1) DEFAULT 0, + `tanggal_pengiriman` date DEFAULT NULL, + `tanda_terima` varchar(200) DEFAULT NULL, + `keterangan` varchar(500) DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `lokasi_arsip` varchar(150) DEFAULT '', + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `surat_masuk` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nomor_urut` smallint(5) DEFAULT NULL, + `tanggal_penerimaan` date NOT NULL, + `nomor_surat` varchar(35) DEFAULT NULL, + `kode_surat` varchar(10) DEFAULT NULL, + `tanggal_surat` date NOT NULL, + `pengirim` varchar(100) DEFAULT NULL, + `isi_singkat` varchar(200) DEFAULT NULL, + `isi_disposisi` varchar(200) DEFAULT NULL, + `berkas_scan` varchar(100) DEFAULT NULL, + `lokasi_arsip` varchar(150) DEFAULT '', + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_surat_format` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + `url_surat` varchar(100) NOT NULL, + `kode_surat` varchar(10) DEFAULT NULL, + `lampiran` varchar(100) DEFAULT NULL, + `kunci` tinyint(1) NOT NULL DEFAULT 0, + `favorit` tinyint(1) NOT NULL DEFAULT 0, + `jenis` tinyint(2) NOT NULL DEFAULT 2, + `mandiri` tinyint(1) DEFAULT 0, + `masa_berlaku` int(3) DEFAULT 1, + `satuan_masa_berlaku` varchar(15) DEFAULT 'M', + `qr_code` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `url_surat` (`url_surat`) + ); + "); + + DB::table("tweb_surat_format")->insert([ + [ + "id" => 1, + "nama" => "Keterangan Pengantar", + "url_surat" => "surat_ket_pengantar", + "kode_surat" => "S-01", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 2, + "nama" => "Keterangan Penduduk", + "url_surat" => "surat_ket_penduduk", + "kode_surat" => "S-02", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 3, + "nama" => "Biodata Penduduk", + "url_surat" => "surat_bio_penduduk", + "kode_surat" => "S-03", + "lampiran" => "f-1.01.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 5, + "nama" => "Keterangan Pindah Penduduk", + "url_surat" => "surat_ket_pindah_penduduk", + "kode_surat" => "S-04", + "lampiran" => "f-1.03.php,f-1.08.php,f-1.25.php,f-1.27.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 6, + "nama" => "Keterangan Jual Beli", + "url_surat" => "surat_ket_jual_beli", + "kode_surat" => "S-05", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 8, + "nama" => "Pengantar Surat Keterangan Catatan Kepolisian", + "url_surat" => "surat_ket_catatan_kriminal", + "kode_surat" => "S-07", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 9, + "nama" => "Keterangan KTP dalam Proses", + "url_surat" => "surat_ket_ktp_dalam_proses", + "kode_surat" => "S-08", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 10, + "nama" => "Keterangan Beda Identitas", + "url_surat" => "surat_ket_beda_nama", + "kode_surat" => "S-09", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 11, + "nama" => "Keterangan Bepergian / Jalan", + "url_surat" => "surat_jalan", + "kode_surat" => "S-10", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 12, + "nama" => "Keterangan Kurang Mampu", + "url_surat" => "surat_ket_kurang_mampu", + "kode_surat" => "S-11", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 13, + "nama" => "Pengantar Izin Keramaian", + "url_surat" => "surat_izin_keramaian", + "kode_surat" => "S-12", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 14, + "nama" => "Pengantar Laporan Kehilangan", + "url_surat" => "surat_ket_kehilangan", + "kode_surat" => "S-13", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 15, + "nama" => "Keterangan Usaha", + "url_surat" => "surat_ket_usaha", + "kode_surat" => "S-14", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 1, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 16, + "nama" => "Keterangan JAMKESOS", + "url_surat" => "surat_ket_jamkesos", + "kode_surat" => "S-15", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 17, + "nama" => "Keterangan Domisili Usaha", + "url_surat" => "surat_ket_domisili_usaha", + "kode_surat" => "S-16", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 18, + "nama" => "Keterangan Kelahiran", + "url_surat" => "surat_ket_kelahiran", + "kode_surat" => "S-17", + "lampiran" => "f-2.01.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 20, + "nama" => "Permohonan Akta Lahir", + "url_surat" => "surat_permohonan_akta", + "kode_surat" => "S-18", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 21, + "nama" => "Pernyataan Belum Memiliki Akta Lahir", + "url_surat" => "surat_pernyataan_akta", + "kode_surat" => "S-19", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 22, + "nama" => "Permohonan Duplikat Kelahiran", + "url_surat" => "surat_permohonan_duplikat_kelahiran", + "kode_surat" => "S-20", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 24, + "nama" => "Keterangan Kematian", + "url_surat" => "surat_ket_kematian", + "kode_surat" => "S-21", + "lampiran" => "f-2.29.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 25, + "nama" => "Keterangan Lahir Mati", + "url_surat" => "surat_ket_lahir_mati", + "kode_surat" => "S-22", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 26, + "nama" => "Keterangan Untuk Nikah (N-1 s/d N-7)", + "url_surat" => "surat_ket_nikah", + "kode_surat" => "S-23", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 33, + "nama" => "Keterangan Pergi Kawin", + "url_surat" => "surat_ket_pergi_kawin", + "kode_surat" => "S-30", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 35, + "nama" => "Keterangan Wali Hakim", + "url_surat" => "surat_ket_wali_hakim", + "kode_surat" => "S-32", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 36, + "nama" => "Permohonan Duplikat Surat Nikah", + "url_surat" => "surat_permohonan_duplikat_surat_nikah", + "kode_surat" => "S-33", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 37, + "nama" => "Permohonan Cerai", + "url_surat" => "surat_permohonan_cerai", + "kode_surat" => "S-34", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 38, + "nama" => "Keterangan Pengantar Rujuk/Cerai", + "url_surat" => "surat_ket_rujuk_cerai", + "kode_surat" => "S-35", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 45, + "nama" => "Permohonan Kartu Keluarga", + "url_surat" => "surat_permohonan_kartu_keluarga", + "kode_surat" => "S-36", + "lampiran" => "f-1.15.php,f-1.01.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 51, + "nama" => "Domisili Usaha Non-Warga", + "url_surat" => "surat_domisili_usaha_non_warga", + "kode_surat" => "S-37", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 76, + "nama" => "Keterangan Beda Identitas KIS", + "url_surat" => "surat_ket_beda_identitas_kis", + "kode_surat" => "S-38", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 85, + "nama" => "Keterangan Izin Orang Tua/Suami/Istri", + "url_surat" => "surat_izin_orangtua_suami_istri", + "kode_surat" => "S-39", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 86, + "nama" => "Pernyataan Penguasaan Fisik Bidang Tanah (SPORADIK)", + "url_surat" => "surat_sporadik", + "kode_surat" => "S-40", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 89, + "nama" => "Permohonan Perubahan Kartu Keluarga", + "url_surat" => "surat_permohonan_perubahan_kartu_keluarga", + "kode_surat" => "S-41", + "lampiran" => "f-1.16.php,f-1.01.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 110, + "nama" => "Non Warga", + "url_surat" => "surat_non_warga", + "kode_surat" => "", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 2, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 156, + "nama" => "Keterangan Domisili", + "url_surat" => "surat_ket_domisili", + "kode_surat" => "S-41", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 160, + "nama" => "Keterangan Penghasilan Orangtua", + "url_surat" => "surat_ket_penghasilan_orangtua", + "kode_surat" => "S-42", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 161, + "nama" => "Pengantar Permohonan Penerbitan Buku Pas Lintas", + "url_surat" => "surat_permohonan_penerbitan_buku_pas_lintas", + "kode_surat" => "S-43", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 162, + "nama" => "Keterangan Penghasilan Ayah", + "url_surat" => "surat_ket_penghasilan_ayah", + "kode_surat" => "S-44", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 163, + "nama" => "Keterangan Penghasilan Ibu", + "url_surat" => "surat_ket_penghasilan_ibu", + "kode_surat" => "S-45", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 167, + "nama" => "Perintah Perjalanan Dinas", + "url_surat" => "surat_perintah_perjalanan_dinas", + "kode_surat" => "S-46", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 168, + "nama" => "Kuasa", + "url_surat" => "surat_kuasa", + "kode_surat" => "S-47", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 172, + "nama" => "Keterangan Kepemilikan Kendaraan", + "url_surat" => "surat_ket_kepemilikan_kendaraan", + "kode_surat" => "S-48", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 173, + "nama" => "Keterangan Kepemilikan Tanah", + "url_surat" => "surat_ket_kepemilikan_tanah", + "kode_surat" => "S-49", + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 178, + "nama" => "Raw", + "url_surat" => "raw", + "kode_surat" => null, + "lampiran" => null, + "kunci" => 0, + "favorit" => 0, + "jenis" => 2, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + [ + "id" => 181, + "nama" => "Keterangan Untuk Nikah Warga Non Muslim", + "url_surat" => "surat_ket_nikah_non_muslim", + "kode_surat" => "S-50", + "lampiran" => "f-2.12.php", + "kunci" => 0, + "favorit" => 0, + "jenis" => 1, + "mandiri" => 0, + "masa_berlaku" => 1, + "satuan_masa_berlaku" => "M", + "qr_code" => 0, + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_sinkronisasi() + { + DB::statement(" + CREATE TABLE `laporan_sinkronisasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `tipe` varchar(50) DEFAULT NULL, + `judul` varchar(100) NOT NULL, + `tahun` int(11) NOT NULL, + `semester` int(11) NOT NULL, + `nama_file` varchar(100) NOT NULL, + `kirim` datetime DEFAULT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `log_ekspor` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `tgl_ekspor` timestamp NOT NULL DEFAULT current_timestamp(), + `kode_ekspor` varchar(100) NOT NULL, + `semua` int(1) NOT NULL DEFAULT 1, + `dari_tgl` date DEFAULT NULL, + `total` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `migrasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `versi_database` varchar(10) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `password_resets` ( + `email` varchar(255) NOT NULL, + `token` varchar(255) NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`email`) + ); + "); + + DB::statement(" + CREATE TABLE `ref_sinkronisasi` ( + `tabel` varchar(100) NOT NULL, + `server` varchar(255) DEFAULT NULL, + `jenis_update` tinyint(4) DEFAULT NULL, + `tabel_hapus` varchar(100) DEFAULT NULL, + PRIMARY KEY (`tabel`) + ); + "); + + DB::table("ref_sinkronisasi")->insert([ + [ + "tabel" => "tweb_keluarga", + "server" => "6", + "jenis_update" => 1, + "tabel_hapus" => "log_keluarga", + ], + [ + "tabel" => "tweb_penduduk", + "server" => "6", + "jenis_update" => 1, + "tabel_hapus" => "log_hapus_penduduk", + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_dashboard() + { + DB::statement(" + CREATE TABLE `notifikasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `kode` varchar(100) NOT NULL, + `judul` varchar(100) NOT NULL, + `jenis` varchar(50) NOT NULL, + `isi` text NOT NULL, + `server` varchar(20) NOT NULL, + `tgl_berikutnya` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `frekuensi` smallint(6) NOT NULL, + `aksi` varchar(100) NOT NULL, + `aktif` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `kode` (`kode`) + ); + "); + + DB::table("notifikasi")->insert([ + [ + "id" => 1, + "kode" => "persetujuan_penggunaan", + "judul" => + '  Persetujuan Penggunaan OpenSID', + "jenis" => "persetujuan", + "isi" => + '

      Untuk menggunakan OpenSID, anda dan desa anda perlu menyetujui ketentuan berikut:\n

        \n
      1. Pengguna telah membaca dan menyetujui Lisensi GPL V3.
      2. \n
      3. OpenSID gratis dan disediakan \"SEBAGAIMANA ADANYA\", di mana segala tanggung jawab termasuk keamanan data desa ada pada pengguna.
      4. \n
      5. Pengguna paham bahwa setiap ubahan OpenSID juga berlisensi GPL V3 yang tidak dapat dimusnahkan, dan aplikasi ubahan itu juga sumber terbuka yang bebas disebarkan oleh pihak yang menerima.
      6. \n
      7. Pengguna mengetahui, paham dan menyetujui bahwa OpenSID akan mengirim data penggunaan ke server OpenDesa secara berkala untuk tujuan menyempurnakan OpenSID, dengan pengertian bahwa data yang dikirim sama sekali tidak berisi data identitas penduduk atau data sensitif desa lainnya.
      8. \n

      \n Apakah anda dan desa anda setuju dengan ketentuan di atas?', + "server" => "client", + "tgl_berikutnya" => "2022-03-01 04:16:23", + "updated_at" => "2021-12-01 04:16:23", + "updated_by" => 1, + "frekuensi" => 90, + "aksi" => "notif/update_pengumuman,siteman", + "aktif" => 1, + ], + [ + "id" => 2, + "kode" => "tracking_off", + "judul" => + '  Peringatan Tracking Off', + "jenis" => "peringatan", + "isi" => + '

      Kami mendeteksi bahwa anda telah mematikan fitur tracking. Bila dimatikan, penggunaan website desa anda tidak akan tercatat di server OpenDesa dan tidak akan menerima informasi penting yang sesekali dikirim OpenDesa.

      \n
      Hidupkan kembali tracking untuk mendapatkan informasi dari OpenDesa?', + "server" => "client", + "tgl_berikutnya" => "2020-07-30 03:37:42", + "updated_at" => "2020-07-30 10:37:03", + "updated_by" => 1, + "frekuensi" => 90, + "aksi" => "setting/aktifkan_tracking,notif/update_pengumuman", + "aktif" => 0, + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_pembangunan() + { + DB::statement(" + CREATE TABLE `pembangunan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_lokasi` int(11) DEFAULT NULL, + `sumber_dana` varchar(255) DEFAULT NULL, + `judul` varchar(255) DEFAULT NULL, + `slug` varchar(255) DEFAULT NULL, + `keterangan` varchar(255) DEFAULT NULL, + `lokasi` varchar(225) DEFAULT NULL, + `lat` varchar(225) DEFAULT NULL, + `lng` varchar(255) DEFAULT NULL, + `volume` varchar(100) DEFAULT NULL, + `tahun_anggaran` year(4) DEFAULT NULL, + `pelaksana_kegiatan` varchar(255) DEFAULT NULL, + `status` tinyint(3) NOT NULL DEFAULT 1, + `created_at` datetime DEFAULT NULL, + `updated_at` datetime DEFAULT NULL, + `foto` varchar(255) DEFAULT NULL, + `anggaran` bigint(20) DEFAULT 0, + `perubahan_anggaran` int(11) DEFAULT 0, + `sumber_biaya_pemerintah` bigint(20) DEFAULT 0, + `sumber_biaya_provinsi` bigint(20) DEFAULT 0, + `sumber_biaya_kab_kota` bigint(20) DEFAULT 0, + `sumber_biaya_swadaya` bigint(20) DEFAULT 0, + `sumber_biaya_jumlah` bigint(20) DEFAULT 0, + `manfaat` varchar(100) DEFAULT NULL, + `waktu` int(11) DEFAULT 0, + `sifat_proyek` varchar(100) DEFAULT 'BARU', + PRIMARY KEY (`id`), + UNIQUE KEY `slug` (`slug`), + KEY `id_lokasi` (`id_lokasi`) + ); + "); + + DB::statement(" + CREATE TABLE `pembangunan_ref_dokumentasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pembangunan` int(11) NOT NULL, + `gambar` varchar(255) DEFAULT NULL, + `persentase` varchar(255) DEFAULT NULL, + `keterangan` varchar(255) DEFAULT NULL, + `created_at` datetime DEFAULT NULL, + `updated_at` datetime DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_pembangunan` (`id_pembangunan`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_lapak() + { + DB::statement(" + CREATE TABLE `produk_kategori` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `kategori` varchar(50) DEFAULT NULL, + `slug` varchar(100) DEFAULT NULL, + `status` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_bantuan() + { + DB::statement(" + CREATE TABLE `program` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `nama` varchar(100) NOT NULL, + `sasaran` tinyint(4) DEFAULT NULL, + `ndesc` varchar(500) DEFAULT NULL, + `sdate` date NOT NULL, + `edate` date NOT NULL, + `userid` mediumint(9) NOT NULL, + `status` tinyint(1) NOT NULL DEFAULT 0, + `asaldana` char(30) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `program_peserta` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `peserta` varchar(30) NOT NULL, + `program_id` int(11) NOT NULL, + `no_id_kartu` varchar(30) DEFAULT NULL, + `kartu_nik` varchar(30) NOT NULL, + `kartu_nama` varchar(100) NOT NULL, + `kartu_tempat_lahir` varchar(100) NOT NULL DEFAULT '', + `kartu_tanggal_lahir` date NOT NULL, + `kartu_alamat` varchar(200) NOT NULL DEFAULT '', + `kartu_peserta` varchar(100) DEFAULT NULL, + `kartu_id_pend` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_sistem() + { + DB::statement(" + CREATE TABLE `setting_aplikasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `key` varchar(50) DEFAULT NULL, + `value` text DEFAULT NULL, + `keterangan` varchar(200) DEFAULT NULL, + `jenis` varchar(30) DEFAULT NULL, + `kategori` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `key` (`key`) + ); + "); + + DB::table("setting_aplikasi")->insert([ + [ + "id" => 1, + "key" => "sebutan_kabupaten", + "value" => "kabupaten", + "keterangan" => "Pengganti sebutan wilayah kabupaten", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 2, + "key" => "sebutan_kabupaten_singkat", + "value" => "kab.", + "keterangan" => "Pengganti sebutan singkatan wilayah kabupaten", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 3, + "key" => "sebutan_kecamatan", + "value" => "kecamatan", + "keterangan" => "Pengganti sebutan wilayah kecamatan", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 4, + "key" => "sebutan_kecamatan_singkat", + "value" => "kec.", + "keterangan" => "Pengganti sebutan singkatan wilayah kecamatan", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 5, + "key" => "sebutan_desa", + "value" => "desa", + "keterangan" => "Pengganti sebutan wilayah desa", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 6, + "key" => "sebutan_dusun", + "value" => "dusun", + "keterangan" => "Pengganti sebutan wilayah dusun", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 7, + "key" => "sebutan_camat", + "value" => "camat", + "keterangan" => "Pengganti sebutan jabatan camat", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 8, + "key" => "website_title", + "value" => "Website Resmi", + "keterangan" => "Judul tab browser modul web", + "jenis" => "", + "kategori" => "web", + ], + [ + "id" => 9, + "key" => "login_title", + "value" => "OpenSID", + "keterangan" => + "Judul tab browser halaman login modul administrasi", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 10, + "key" => "admin_title", + "value" => "Sistem Informasi", + "keterangan" => "Judul tab browser modul administrasi", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 11, + "key" => "web_theme", + "value" => "esensi", + "keterangan" => "Tema penampilan modul web", + "jenis" => "", + "kategori" => "web", + ], + [ + "id" => 12, + "key" => "offline_mode", + "value" => "0", + "keterangan" => "Apakah modul web akan ditampilkan atau tidak", + "jenis" => "option-kode", + "kategori" => "", + ], + [ + "id" => 13, + "key" => "enable_track", + "value" => "1", + "keterangan" => + "Apakah akan mengirimkan data statistik ke tracker", + "jenis" => "boolean", + "kategori" => "", + ], + [ + "id" => 16, + "key" => "mapbox_key", + "value" => "", + "keterangan" => "Mapbox API Key untuk peta", + "jenis" => "", + "kategori" => "web", + ], + [ + "id" => 17, + "key" => "libreoffice_path", + "value" => "", + "keterangan" => "Path tempat instal libreoffice di server SID", + "jenis" => "", + "kategori" => "", + ], + [ + "id" => 18, + "key" => "sumber_gambar_slider", + "value" => "2", + "keterangan" => "Sumber gambar slider besar", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 19, + "key" => "sebutan_singkatan_kadus", + "value" => "kawil", + "keterangan" => "Sebutan singkatan jabatan kepala dusun", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 20, + "key" => "current_version", + "value" => "22.03", + "keterangan" => "Versi sekarang untuk migrasi", + "jenis" => null, + "kategori" => "readonly", + ], + [ + "id" => 21, + "key" => "timezone", + "value" => "Asia/Jakarta", + "keterangan" => "Zona waktu perekaman waktu dan tanggal", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 23, + "key" => "web_artikel_per_page", + "value" => "8", + "keterangan" => "Jumlah artikel dalam satu halaman", + "jenis" => "int", + "kategori" => "web_theme", + ], + [ + "id" => 24, + "key" => "penomoran_surat", + "value" => "2", + "keterangan" => + "Penomoran surat mulai dari satu (1) setiap tahun", + "jenis" => "option", + "kategori" => null, + ], + [ + "id" => 25, + "key" => "dashboard_program_bantuan", + "value" => "1", + "keterangan" => + "ID program bantuan yang ditampilkan di dashboard", + "jenis" => "int", + "kategori" => "dashboard", + ], + [ + "id" => 26, + "key" => "panjang_nomor_surat", + "value" => "", + "keterangan" => + 'Nomor akan diisi \'0\' di sebelah kiri, kalau perlu', + "jenis" => "int", + "kategori" => "surat", + ], + [ + "id" => 27, + "key" => "warna_tema_admin", + "value" => "skin-purple", + "keterangan" => "Warna dasar tema komponen Admin", + "jenis" => "option-value", + "kategori" => null, + ], + [ + "id" => 28, + "key" => "format_nomor_surat", + "value" => + "[kode_surat]/[nomor_surat, 3]/[kode_desa]/[bulan_romawi]/[tahun]", + "keterangan" => "Fomat penomoran surat", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 30, + "key" => "penggunaan_server", + "value" => "1 ", + "keterangan" => "Setting penggunaan server", + "jenis" => "int", + "kategori" => "sistem", + ], + [ + "id" => 31, + "key" => "daftar_penerima_bantuan", + "value" => "1", + "keterangan" => + "Apakah akan tampilkan daftar penerima bantuan di statistik halaman muka", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 32, + "key" => "apbdes_footer", + "value" => "1", + "keterangan" => + "Apakah akan tampilkan grafik APBDes di halaman muka", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 33, + "key" => "apbdes_footer_all", + "value" => "1", + "keterangan" => + "Apakah akan tampilkan grafik APBDes di semua halaman", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 34, + "key" => "apbdes_manual_input", + "value" => "0", + "keterangan" => + "Apakah akan tampilkan grafik APBDes yang diinput secara manual", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 35, + "key" => "covid_data", + "value" => "0", + "keterangan" => + "Apakah akan tampilkan status Covid-19 Provinsi di halaman muka", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 36, + "key" => "covid_desa", + "value" => "0", + "keterangan" => + "Apakah akan tampilkan status Covid-19 Desa di halaman muka", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 37, + "key" => "covid_rss", + "value" => "0", + "keterangan" => + "Apakah akan tampilkan RSS Covid-19 di halaman muka", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 38, + "key" => "provinsi_covid", + "value" => "52", + "keterangan" => "Kode provinsi status Covid-19 ", + "jenis" => "int", + "kategori" => "conf_web", + ], + [ + "id" => 39, + "key" => "statistik_chart_3d", + "value" => "1", + "keterangan" => "Apakah akan tampilkan Statistik Chart 3D", + "jenis" => "boolean", + "kategori" => "conf_web", + ], + [ + "id" => 40, + "key" => "sebutan_nip_desa", + "value" => "NIPD", + "keterangan" => "Pengganti sebutan label niap/nipd", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 43, + "key" => "token_opensid", + "value" => "", + "keterangan" => "Token OpenSID", + "jenis" => "", + "kategori" => "sistem", + ], + [ + "id" => 44, + "key" => "layanan_mandiri", + "value" => "1", + "keterangan" => "Apakah layanan mandiri ditampilkan atau tidak", + "jenis" => "boolean", + "kategori" => "setting_mandiri", + ], + [ + "id" => 45, + "key" => "ukuran_lebar_bagan", + "value" => "800", + "keterangan" => "Ukuran Lebar Bagan (800 / 1200 / 1400)", + "jenis" => "int", + "kategori" => "conf_bagan", + ], + [ + "id" => 48, + "key" => "api_opendk_server", + "value" => "", + "keterangan" => + "Alamat Server OpenDK (contoh: https://demo.opendk.my.id)", + "jenis" => null, + "kategori" => "opendk", + ], + [ + "id" => 49, + "key" => "api_opendk_key", + "value" => "", + "keterangan" => "OpenDK API Key untuk Sinkronisasi Data", + "jenis" => null, + "kategori" => "opendk", + ], + [ + "id" => 50, + "key" => "api_opendk_user", + "value" => "", + "keterangan" => "Email Login Pengguna OpenDK", + "jenis" => null, + "kategori" => "opendk", + ], + [ + "id" => 51, + "key" => "api_opendk_password", + "value" => "", + "keterangan" => "Password Login Pengguna OpenDK", + "jenis" => null, + "kategori" => "opendk", + ], + [ + "id" => 52, + "key" => "sebutan_kepala_desa", + "value" => "Kepala", + "keterangan" => "Pengganti sebutan jabatan Kepala Desa", + "jenis" => null, + "kategori" => null, + ], + [ + "id" => 53, + "key" => "tgl_data_lengkap", + "value" => null, + "keterangan" => "Atur data tanggal sudah lengkap", + "jenis" => "datetime", + "kategori" => null, + ], + [ + "id" => 54, + "key" => "tgl_data_lengkap_aktif", + "value" => "0", + "keterangan" => "Aktif / Non-aktif data tanggal sudah lengkap", + "jenis" => "boolean", + "kategori" => null, + ], + [ + "id" => 113, + "key" => "api_gform_id_script", + "value" => "", + "keterangan" => "Script ID untuk Google API", + "jenis" => null, + "kategori" => "setting_analisis", + ], + [ + "id" => 114, + "key" => "api_gform_credential", + "value" => "", + "keterangan" => "Credential untuk Google API", + "jenis" => "textarea", + "kategori" => "setting_analisis", + ], + [ + "id" => 115, + "key" => "api_gform_redirect_uri", + "value" => + "https://berputar.opensid.or.id/index.php/first/get_form_info", + "keterangan" => "Redirecet URI untuk Google API", + "jenis" => null, + "kategori" => "setting_analisis", + ], + [ + "id" => 170, + "key" => "tampilkan_lapak_web", + "value" => "1", + "keterangan" => + "Aktif / Non-aktif Lapak di Halaman Website Url Terpisah", + "jenis" => "boolean", + "kategori" => "lapak", + ], + [ + "id" => 171, + "key" => "pesan_singkat_wa", + "value" => + "Saya ingin membeli [nama_produk] yang anda tawarkan di Lapak Desa [link_web]", + "keterangan" => "Pesan Singkat WhatsApp", + "jenis" => "textarea", + "kategori" => "lapak", + ], + [ + "id" => 172, + "key" => "banyak_foto_tiap_produk", + "value" => "3", + "keterangan" => + "Banyaknya foto tiap produk yang bisa di unggah", + "jenis" => "int", + "kategori" => "lapak", + ], + [ + "id" => 173, + "key" => "jumlah_produk_perhalaman", + "value" => "10", + "keterangan" => + "Jumlah produk yang ditampilkan dalam satu halaman", + "jenis" => "int", + "kategori" => "lapak", + ], + [ + "id" => 176, + "key" => "layanan_opendesa_token", + "value" => "", + "keterangan" => "Token pelanggan Layanan OpenDESA", + "jenis" => "textarea", + "kategori" => "pelanggan", + ], + [ + "id" => 465, + "key" => "telegram_token", + "value" => "", + "keterangan" => "Telgram token", + "jenis" => null, + "kategori" => "sistem", + ], + [ + "id" => 466, + "key" => "telegram_user_id", + "value" => "", + "keterangan" => "Telgram user id untuk notifikasi ke pengguna", + "jenis" => null, + "kategori" => "sistem", + ], + [ + "id" => 605, + "key" => "tampilan_anjungan", + "value" => "0", + "keterangan" => + "Pilih tampilan di anjungan pada saat tidak ada aktifitas pada halaman login.", + "jenis" => "option-kode", + "kategori" => "setting_mandiri", + ], + [ + "id" => 606, + "key" => "tampilan_anjungan_waktu", + "value" => "30", + "keterangan" => + "Atur waktu (detik) kapan tampilan di anjungan akan muncul pada saat tidak ada aktifitas di halaman login.", + "jenis" => "int", + "kategori" => "setting_mandiri", + ], + [ + "id" => 607, + "key" => "tampilan_anjungan_slider", + "value" => null, + "keterangan" => + "Pilih album yang akan ditampilkan pada anjungan.", + "jenis" => "option", + "kategori" => "setting_mandiri", + ], + [ + "id" => 608, + "key" => "tampilan_anjungan_video", + "value" => null, + "keterangan" => + "Masukan link video dengan format .mp4 yang akan ditampilkan pada anjungan", + "jenis" => null, + "kategori" => "setting_mandiri", + ], + [ + "id" => 787, + "key" => "tampilkan_pendaftaran", + "value" => "0", + "keterangan" => + "Aktifkan / Non Aktifkan Pendaftaran Layanan Mandiri", + "jenis" => "boolean", + "kategori" => "setting_mandiri", + ], + [ + "id" => 788, + "key" => "tampilan_anjungan_audio", + "value" => "0", + "keterangan" => + "Apakah audio diaktifkan atau tidak saat video diputar", + "jenis" => "boolean", + "kategori" => "setting_mandiri", + ], + [ + "id" => 873, + "key" => "branding_desa", + "value" => "LAYANAN MANDIRI", + "keterangan" => + "Nama Branding Aplikasi Layanan Mandiri Android", + "jenis" => null, + "kategori" => "mobile", + ], + ]); + + DB::statement(" + CREATE TABLE `setting_modul` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `modul` varchar(50) NOT NULL, + `url` varchar(50) NOT NULL, + `aktif` tinyint(1) NOT NULL DEFAULT 0, + `ikon` varchar(50) DEFAULT '', + `urut` int(4) DEFAULT NULL, + `level` tinyint(1) NOT NULL DEFAULT 2, + `hidden` tinyint(1) NOT NULL DEFAULT 0, + `ikon_kecil` varchar(50) DEFAULT '', + `parent` int(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) + ); + "); + + DB::table("setting_modul")->insert([ + [ + "id" => 1, + "modul" => "Home", + "url" => "hom_sid", + "aktif" => 1, + "ikon" => "fa-home", + "urut" => 10, + "level" => 2, + "hidden" => 1, + "ikon_kecil" => "fa fa-home", + "parent" => 0, + ], + [ + "id" => 2, + "modul" => "Kependudukan", + "url" => "", + "aktif" => 1, + "ikon" => "fa-users", + "urut" => 30, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-users", + "parent" => 0, + ], + [ + "id" => 3, + "modul" => "Statistik", + "url" => "", + "aktif" => 1, + "ikon" => "fa-line-chart", + "urut" => 40, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-line-chart", + "parent" => 0, + ], + [ + "id" => 4, + "modul" => "Layanan Surat", + "url" => "", + "aktif" => 1, + "ikon" => "fa-book", + "urut" => 50, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-book", + "parent" => 0, + ], + [ + "id" => 5, + "modul" => "Analisis", + "url" => "", + "aktif" => 1, + "ikon" => " fa-check-square-o", + "urut" => 90, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-check-square-o", + "parent" => 0, + ], + [ + "id" => 6, + "modul" => "Bantuan", + "url" => "program_bantuan/clear", + "aktif" => 1, + "ikon" => "fa-heart", + "urut" => 100, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-heart", + "parent" => 0, + ], + [ + "id" => 7, + "modul" => "Pertanahan", + "url" => "cdesa/clear", + "aktif" => 1, + "ikon" => "fa-map-signs", + "urut" => 110, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-map-signs", + "parent" => 0, + ], + [ + "id" => 8, + "modul" => "Pengaturan Peta", + "url" => "plan", + "aktif" => 1, + "ikon" => "fa-location-arrow", + "urut" => 9, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-location-arrow", + "parent" => 9, + ], + [ + "id" => 9, + "modul" => "Pemetaan", + "url" => "", + "aktif" => 1, + "ikon" => "fa-globe", + "urut" => 130, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-globe", + "parent" => 0, + ], + [ + "id" => 10, + "modul" => "SMS", + "url" => "", + "aktif" => 1, + "ikon" => "fa-envelope", + "urut" => 140, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-envelope", + "parent" => 0, + ], + [ + "id" => 11, + "modul" => "Pengaturan", + "url" => "", + "aktif" => 1, + "ikon" => "fa-users", + "urut" => 150, + "level" => 1, + "hidden" => 1, + "ikon_kecil" => "fa-users", + "parent" => 0, + ], + [ + "id" => 13, + "modul" => "Admin Web", + "url" => "", + "aktif" => 1, + "ikon" => "fa-desktop", + "urut" => 160, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "fa fa-desktop", + "parent" => 0, + ], + [ + "id" => 14, + "modul" => "Layanan Mandiri", + "url" => "", + "aktif" => 1, + "ikon" => "fa-inbox", + "urut" => 170, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-inbox", + "parent" => 0, + ], + [ + "id" => 15, + "modul" => "Sekretariat", + "url" => "", + "aktif" => 1, + "ikon" => "fa-archive", + "urut" => 60, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-archive", + "parent" => 0, + ], + [ + "id" => 17, + "modul" => "Identitas [Desa]", + "url" => "identitas_desa", + "aktif" => 1, + "ikon" => "fa-id-card", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 200, + ], + [ + "id" => 18, + "modul" => "Pemerintahan [Desa]", + "url" => "pengurus/clear", + "aktif" => 1, + "ikon" => "fa-sitemap", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 200, + ], + [ + "id" => 20, + "modul" => "Wilayah Administratif", + "url" => "sid_core/clear", + "aktif" => 1, + "ikon" => "fa-map", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 200, + ], + [ + "id" => 21, + "modul" => "Penduduk", + "url" => "penduduk/clear", + "aktif" => 1, + "ikon" => "fa-user", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 22, + "modul" => "Keluarga", + "url" => "keluarga/clear", + "aktif" => 1, + "ikon" => "fa-users", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 23, + "modul" => "Rumah Tangga", + "url" => "rtm/clear", + "aktif" => 1, + "ikon" => "fa-venus-mars", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 24, + "modul" => "Kelompok", + "url" => "kelompok/clear", + "aktif" => 1, + "ikon" => "fa-sitemap", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 25, + "modul" => "Data Suplemen", + "url" => "suplemen/clear", + "aktif" => 1, + "ikon" => "fa-slideshare", + "urut" => 6, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 26, + "modul" => "Calon Pemilih", + "url" => "dpt/clear", + "aktif" => 1, + "ikon" => "fa-podcast", + "urut" => 7, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 2, + ], + [ + "id" => 27, + "modul" => "Statistik Kependudukan", + "url" => "statistik/clear", + "aktif" => 1, + "ikon" => "fa-bar-chart", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 3, + ], + [ + "id" => 28, + "modul" => "Laporan Bulanan", + "url" => "laporan/clear", + "aktif" => 1, + "ikon" => "fa-file-text", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 3, + ], + [ + "id" => 29, + "modul" => "Laporan Kelompok Rentan", + "url" => "laporan_rentan/clear", + "aktif" => 1, + "ikon" => "fa-wheelchair", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 3, + ], + [ + "id" => 30, + "modul" => "Pengaturan Surat", + "url" => "surat_master/clear", + "aktif" => 1, + "ikon" => "fa-cog", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 4, + ], + [ + "id" => 31, + "modul" => "Cetak Surat", + "url" => "surat", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 4, + ], + [ + "id" => 32, + "modul" => "Arsip Layanan", + "url" => "keluar/clear", + "aktif" => 1, + "ikon" => "fa-folder-open", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 4, + ], + [ + "id" => 33, + "modul" => "Panduan", + "url" => "surat/panduan", + "aktif" => 1, + "ikon" => "fa fa-book", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 4, + ], + [ + "id" => 39, + "modul" => "SMS", + "url" => "sms", + "aktif" => 1, + "ikon" => "fa-envelope-open-o", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 10, + ], + [ + "id" => 40, + "modul" => "Daftar Kontak", + "url" => "sms/kontak", + "aktif" => 1, + "ikon" => "fa-id-card-o", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 10, + ], + [ + "id" => 41, + "modul" => "Pengaturan SMS", + "url" => "sms/setting", + "aktif" => 1, + "ikon" => "fa-gear", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 10, + ], + [ + "id" => 42, + "modul" => "Modul", + "url" => "modul/clear", + "aktif" => 1, + "ikon" => "fa-tags", + "urut" => 1, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 11, + ], + [ + "id" => 43, + "modul" => "Aplikasi", + "url" => "setting", + "aktif" => 1, + "ikon" => "fa-codepen", + "urut" => 2, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 11, + ], + [ + "id" => 44, + "modul" => "Pengguna", + "url" => "man_user/clear", + "aktif" => 1, + "ikon" => "fa-users", + "urut" => 3, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 11, + ], + [ + "id" => 45, + "modul" => "Database", + "url" => "database", + "aktif" => 1, + "ikon" => "fa-database", + "urut" => 4, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 11, + ], + [ + "id" => 46, + "modul" => "Info Sistem", + "url" => "info_sistem", + "aktif" => 1, + "ikon" => "fa-server", + "urut" => 5, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 11, + ], + [ + "id" => 47, + "modul" => "Artikel", + "url" => "web/clear", + "aktif" => 1, + "ikon" => "fa-file-movie-o", + "urut" => 1, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 48, + "modul" => "Widget", + "url" => "web_widget/clear", + "aktif" => 1, + "ikon" => "fa-windows", + "urut" => 2, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 49, + "modul" => "Menu", + "url" => "menu/clear", + "aktif" => 1, + "ikon" => "fa-bars", + "urut" => 3, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 50, + "modul" => "Komentar", + "url" => "komentar/clear", + "aktif" => 1, + "ikon" => "fa-comments", + "urut" => 4, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 51, + "modul" => "Galeri", + "url" => "gallery/clear", + "aktif" => 1, + "ikon" => "fa-image", + "urut" => 5, + "level" => 5, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 52, + "modul" => "Informasi Publik", + "url" => "dokumen/clear", + "aktif" => 1, + "ikon" => "fa-file-text", + "urut" => 4, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 15, + ], + [ + "id" => 53, + "modul" => "Media Sosial", + "url" => "sosmed", + "aktif" => 1, + "ikon" => "fa-facebook", + "urut" => 7, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 54, + "modul" => "Slider", + "url" => "web/slider", + "aktif" => 1, + "ikon" => "fa-film", + "urut" => 8, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 55, + "modul" => "Kotak Pesan", + "url" => "mailbox/clear", + "aktif" => 1, + "ikon" => "fa-wechat", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 14, + ], + [ + "id" => 56, + "modul" => "Pendaftar Layanan Mandiri", + "url" => "mandiri/clear", + "aktif" => 1, + "ikon" => "fa-500px", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 14, + ], + [ + "id" => 57, + "modul" => "Surat Masuk", + "url" => "surat_masuk/clear", + "aktif" => 1, + "ikon" => "fa-sign-in", + "urut" => 1, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 15, + ], + [ + "id" => 58, + "modul" => "Surat Keluar", + "url" => "surat_keluar/clear", + "aktif" => 1, + "ikon" => "fa-sign-out", + "urut" => 2, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 15, + ], + [ + "id" => 61, + "modul" => "Inventaris", + "url" => "inventaris_tanah", + "aktif" => 1, + "ikon" => "fa-cubes", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 15, + ], + [ + "id" => 62, + "modul" => "Peta", + "url" => "gis/clear", + "aktif" => 1, + "ikon" => "fa-globe", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-globe", + "parent" => 9, + ], + [ + "id" => 63, + "modul" => "Klasfikasi Surat", + "url" => "klasifikasi/clear", + "aktif" => 1, + "ikon" => "fa-code", + "urut" => 10, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-code", + "parent" => 15, + ], + [ + "id" => 64, + "modul" => "Teks Berjalan", + "url" => "teks_berjalan", + "aktif" => 1, + "ikon" => "fa-ellipsis-h", + "urut" => 9, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-ellipsis-h", + "parent" => 13, + ], + [ + "id" => 65, + "modul" => "Kategori", + "url" => "kategori", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 49, + ], + [ + "id" => 66, + "modul" => "Log Penduduk", + "url" => "penduduk_log", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 21, + ], + [ + "id" => 67, + "modul" => "analisis_kategori", + "url" => "analisis_kategori", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 68, + "modul" => "analisis_indikator", + "url" => "analisis_indikator", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 69, + "modul" => "analisis_klasifikasi", + "url" => "analisis_klasifikasi", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 70, + "modul" => "analisis_periode", + "url" => "analisis_periode", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 71, + "modul" => "analisis_respon", + "url" => "analisis_respon", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 72, + "modul" => "analisis_laporan", + "url" => "analisis_laporan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 73, + "modul" => "analisis_statistik_jawaban", + "url" => "analisis_statistik_jawaban", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 5, + ], + [ + "id" => 75, + "modul" => "api_inventaris_asset", + "url" => "api_inventaris_asset", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 76, + "modul" => "api_inventaris_gedung", + "url" => "api_inventaris_gedung", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 77, + "modul" => "api_inventaris_gedung", + "url" => "api_inventaris_gedung", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 78, + "modul" => "api_inventaris_jalan", + "url" => "api_inventaris_jalan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 79, + "modul" => "api_inventaris_konstruksi", + "url" => "api_inventaris_kontruksi", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 80, + "modul" => "api_inventaris_peralatan", + "url" => "api_inventaris_peralatan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 81, + "modul" => "api_inventaris_tanah", + "url" => "api_inventaris_tanah", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 82, + "modul" => "inventaris_asset", + "url" => "inventaris_asset", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 83, + "modul" => "inventaris_gedung", + "url" => "inventaris_gedung", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 84, + "modul" => "inventaris_jalan", + "url" => "inventaris_jalan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 85, + "modul" => "inventaris_kontruksi", + "url" => "inventaris_kontruksi", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 86, + "modul" => "inventaris_peralatan", + "url" => "inventaris_peralatan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 87, + "modul" => "laporan_inventaris", + "url" => "laporan_inventaris", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 61, + ], + [ + "id" => 88, + "modul" => "plan", + "url" => "plan", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 89, + "modul" => "point", + "url" => "point", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 90, + "modul" => "garis", + "url" => "garis", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 91, + "modul" => "line", + "url" => "line", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 92, + "modul" => "area", + "url" => "area", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 93, + "modul" => "polygon", + "url" => "polygon", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 8, + ], + [ + "id" => 94, + "modul" => "Kategori Kelompok", + "url" => "kelompok_master", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 24, + ], + [ + "id" => 95, + "modul" => "Produk Hukum", + "url" => "dokumen_sekretariat/peraturan_desa", + "aktif" => 1, + "ikon" => "fa-book", + "urut" => 3, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 15, + ], + [ + "id" => 96, + "modul" => "Informasi Publik", + "url" => "informasi_publik", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 52, + ], + [ + "id" => 97, + "modul" => "Daftar Persyaratan", + "url" => "surat_mohon", + "aktif" => 1, + "ikon" => "fa fa-book", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 4, + ], + [ + "id" => 98, + "modul" => "Permohonan Surat", + "url" => "permohonan_surat_admin/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 14, + ], + [ + "id" => 101, + "modul" => "Status [Desa]", + "url" => "status_desa", + "aktif" => 1, + "ikon" => "fa-dot-circle-o", + "urut" => 4, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 200, + ], + [ + "id" => 102, + "modul" => "Pengaturan Grup", + "url" => "grup/clear", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 44, + ], + [ + "id" => 110, + "modul" => "Master Analisis", + "url" => "analisis_master/clear", + "aktif" => 1, + "ikon" => "fa-check-square-o", + "urut" => 1, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "fa-check-square-o", + "parent" => 5, + ], + [ + "id" => 111, + "modul" => "Pengaturan", + "url" => "setting/analisis", + "aktif" => 1, + "ikon" => "fa-gear", + "urut" => 2, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "fa-gear", + "parent" => 5, + ], + [ + "id" => 200, + "modul" => "Info [Desa]", + "url" => "", + "aktif" => 1, + "ikon" => "fa-dashboard", + "urut" => 20, + "level" => 2, + "hidden" => 1, + "ikon_kecil" => "fa fa-home", + "parent" => 0, + ], + [ + "id" => 201, + "modul" => "Keuangan", + "url" => "", + "aktif" => 1, + "ikon" => "fa-balance-scale", + "urut" => 80, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-balance-scale", + "parent" => 0, + ], + [ + "id" => 202, + "modul" => "Impor Data", + "url" => "keuangan/impor_data", + "aktif" => 1, + "ikon" => "fa-cloud-upload", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-cloud-upload", + "parent" => 201, + ], + [ + "id" => 203, + "modul" => "Laporan", + "url" => "keuangan/laporan", + "aktif" => 1, + "ikon" => "fa-bar-chart", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-bar-chart", + "parent" => 201, + ], + [ + "id" => 205, + "modul" => "Pengunjung", + "url" => "pengunjung/clear", + "aktif" => 1, + "ikon" => "fa-bar-chart", + "urut" => 10, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 13, + ], + [ + "id" => 206, + "modul" => "Siaga Covid-19", + "url" => "", + "aktif" => 1, + "ikon" => "fa-heartbeat", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-heartbeat", + "parent" => 0, + ], + [ + "id" => 207, + "modul" => "Pendataan", + "url" => "covid19", + "aktif" => 1, + "ikon" => "fa-list", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-list", + "parent" => 206, + ], + [ + "id" => 208, + "modul" => "Pemantauan", + "url" => "covid19/pantau", + "aktif" => 1, + "ikon" => "fa-check", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-check", + "parent" => 206, + ], + [ + "id" => 209, + "modul" => "Input Data", + "url" => "keuangan_manual/manual_apbdes", + "aktif" => 1, + "ikon" => "fa-keyboard-o", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-keyboard-o", + "parent" => 201, + ], + [ + "id" => 210, + "modul" => "Laporan Manual", + "url" => "keuangan_manual/laporan_manual", + "aktif" => 1, + "ikon" => "fa-bar-chart", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-bar-chart", + "parent" => 201, + ], + [ + "id" => 211, + "modul" => "Pengaturan", + "url" => "setting/web", + "aktif" => 1, + "ikon" => "fa-gear", + "urut" => 11, + "level" => 4, + "hidden" => 0, + "ikon_kecil" => "fa-gear", + "parent" => 13, + ], + [ + "id" => 212, + "modul" => "QR Code", + "url" => "setting/qrcode/clear", + "aktif" => 1, + "ikon" => "fa-qrcode", + "urut" => 6, + "level" => 1, + "hidden" => 0, + "ikon_kecil" => "fa-qrcode", + "parent" => 11, + ], + [ + "id" => 213, + "modul" => "data_persil", + "url" => "data_persil", + "aktif" => 1, + "ikon" => "", + "urut" => 0, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 7, + ], + [ + "id" => 214, + "modul" => "C-Desa", + "url" => "cdesa", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 7, + ], + [ + "id" => 220, + "modul" => "Pembangunan", + "url" => "admin_pembangunan", + "aktif" => 1, + "ikon" => "fa-institution", + "urut" => 120, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-institution", + "parent" => 0, + ], + [ + "id" => 301, + "modul" => "Buku Administrasi [Desa]", + "url" => "", + "aktif" => 1, + "ikon" => "fa-paste", + "urut" => 70, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-paste", + "parent" => 0, + ], + [ + "id" => 302, + "modul" => "Administrasi Umum", + "url" => "bumindes_umum", + "aktif" => 1, + "ikon" => "fa-bookmark", + "urut" => 1, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-bookmark", + "parent" => 301, + ], + [ + "id" => 303, + "modul" => "Administrasi Penduduk", + "url" => "bumindes_penduduk_induk/clear", + "aktif" => 1, + "ikon" => "fa-users", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-users", + "parent" => 301, + ], + [ + "id" => 304, + "modul" => "Administrasi Keuangan", + "url" => "bumindes_keuangan", + "aktif" => 1, + "ikon" => "fa-money", + "urut" => 3, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-money", + "parent" => 301, + ], + [ + "id" => 305, + "modul" => "Administrasi Pembangunan", + "url" => "bumindes_rencana_pembangunan", + "aktif" => 1, + "ikon" => "fa-university", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-university", + "parent" => 301, + ], + [ + "id" => 310, + "modul" => "Buku Eskpedisi", + "url" => "ekspedisi/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 302, + ], + [ + "id" => 311, + "modul" => "Buku Lembaran Dan Berita [Desa]", + "url" => "lembaran_desa/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 302, + ], + [ + "id" => 312, + "modul" => "Anjungan", + "url" => "anjungan", + "aktif" => 1, + "ikon" => "fa-desktop", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 14, + ], + [ + "id" => 313, + "modul" => "Layanan Pelanggan", + "url" => "pelanggan", + "aktif" => 1, + "ikon" => "fa-credit-card", + "urut" => 5, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "fa-credit-card", + "parent" => 200, + ], + [ + "id" => 314, + "modul" => "Pengaturan", + "url" => "setting/mandiri", + "aktif" => 1, + "ikon" => "fa-gear", + "urut" => 6, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-gear", + "parent" => 14, + ], + [ + "id" => 315, + "modul" => "Buku Mutasi Penduduk", + "url" => "bumindes_penduduk_mutasi/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 303, + ], + [ + "id" => 316, + "modul" => "Buku Rekapitulasi Jumlah Penduduk", + "url" => "bumindes_penduduk_rekapitulasi/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 303, + ], + [ + "id" => 317, + "modul" => "Buku Penduduk Sementara", + "url" => "bumindes_penduduk_sementara/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 303, + ], + [ + "id" => 318, + "modul" => "Buku KTP dan KK", + "url" => "bumindes_penduduk_ktpkk/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 303, + ], + [ + "id" => 319, + "modul" => "Buku Tanah Kas [Desa]", + "url" => "bumindes_tanah_kas_desa/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 302, + ], + [ + "id" => 320, + "modul" => "Buku Tanah di [Desa]", + "url" => "bumindes_tanah_desa/clear", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 302, + ], + [ + "id" => 321, + "modul" => "Pendapat", + "url" => "pendapat", + "aktif" => 1, + "ikon" => "fa-thumbs-o-up", + "urut" => 5, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "fa-thumbs-o-up", + "parent" => 14, + ], + [ + "id" => 322, + "modul" => "Buku Inventaris dan Kekayaan [Desa]", + "url" => "bumindes_inventaris_kekayaan", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 302, + ], + [ + "id" => 323, + "modul" => "Buku Rencana Kerja Pembangunan", + "url" => "bumindes_rencana_pembangunan", + "aktif" => 1, + "ikon" => "fa-files-o", + "urut" => 0, + "level" => 0, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 305, + ], + [ + "id" => 324, + "modul" => "Lapak", + "url" => "lapak_admin", + "aktif" => 1, + "ikon" => "fa-cart-plus", + "urut" => 122, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-cart-plus", + "parent" => 0, + ], + [ + "id" => 325, + "modul" => "Laporan APBDes", + "url" => "laporan_apbdes", + "aktif" => 1, + "ikon" => "fa-file-text-o", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-file-text-o", + "parent" => 201, + ], + [ + "id" => 326, + "modul" => "Sinkronisasi", + "url" => "sinkronisasi", + "aktif" => 1, + "ikon" => " fa-random", + "urut" => 7, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-random", + "parent" => 11, + ], + [ + "id" => 327, + "modul" => "Lembaga [Desa]", + "url" => "lembaga/clear", + "aktif" => 1, + "ikon" => "fa-list", + "urut" => 4, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 200, + ], + [ + "id" => 328, + "modul" => "Kategori Lembaga", + "url" => "lembaga_master", + "aktif" => 1, + "ikon" => "", + "urut" => null, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 327, + ], + [ + "id" => 329, + "modul" => "Bumindes Kegiatan Pembangunan", + "url" => "bumindes_kegiatan_pembangunan", + "aktif" => 1, + "ikon" => "", + "urut" => null, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 301, + ], + [ + "id" => 330, + "modul" => "Laporan penduduk", + "url" => "laporan_penduduk", + "aktif" => 1, + "ikon" => "fa-file-text-o", + "urut" => 5, + "level" => 2, + "hidden" => 1, + "ikon_kecil" => "fa-file-text-o", + "parent" => 3, + ], + [ + "id" => 331, + "modul" => "Pendaftaran Kerjasama", + "url" => "pendaftaran_kerjasama", + "aktif" => 1, + "ikon" => "fa-list", + "urut" => 6, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-list", + "parent" => 200, + ], + [ + "id" => 332, + "modul" => "Kader Pemberdayaan Masyarakat", + "url" => "bumindes_kader", + "aktif" => 1, + "ikon" => "", + "urut" => null, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 301, + ], + [ + "id" => 333, + "modul" => "Buku Inventaris Hasil - Hasil Pembangunan", + "url" => "bumindes_hasil_pembangunan", + "aktif" => 1, + "ikon" => "", + "urut" => null, + "level" => 2, + "hidden" => 2, + "ikon_kecil" => "", + "parent" => 301, + ], + [ + "id" => 334, + "modul" => "Pengaduan", + "url" => "pengaduan_admin", + "aktif" => 1, + "ikon" => "fa-info", + "urut" => 124, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa-info", + "parent" => 0, + ], + [ + "id" => 335, + "modul" => "Vaksin", + "url" => "vaksin_covid/clear", + "aktif" => 1, + "ikon" => "fa fa-medkit", + "urut" => 2, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "", + "parent" => 206, + ], + [ + "id" => 336, + "modul" => "Arsip [Desa]", + "url" => "bumindes_arsip", + "aktif" => 1, + "ikon" => "fa-archive", + "urut" => 5, + "level" => 2, + "hidden" => 0, + "ikon_kecil" => "fa fa-archive", + "parent" => 301, + ], + ]); + + DB::statement(" + CREATE TABLE `sys_traffic` ( + `Tanggal` date NOT NULL, + `ipAddress` text NOT NULL, + `Jumlah` int(10) NOT NULL, + PRIMARY KEY (`Tanggal`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_pamong() + { + DB::statement(" + CREATE TABLE `tweb_desa_pamong` ( + `pamong_id` int(5) NOT NULL AUTO_INCREMENT, + `pamong_nama` varchar(100) DEFAULT NULL, + `pamong_nip` varchar(20) DEFAULT NULL, + `pamong_nik` varchar(20) DEFAULT NULL, + `jabatan` varchar(50) DEFAULT '0', + `pamong_status` tinyint(1) DEFAULT 1, + `pamong_tgl_terdaftar` date DEFAULT NULL, + `pamong_ttd` tinyint(1) DEFAULT NULL, + `foto` text DEFAULT NULL, + `id_pend` int(11) DEFAULT NULL, + `pamong_tempatlahir` varchar(100) DEFAULT NULL, + `pamong_tanggallahir` date DEFAULT NULL, + `pamong_sex` tinyint(4) DEFAULT NULL, + `pamong_pendidikan` int(10) DEFAULT NULL, + `pamong_agama` int(10) DEFAULT NULL, + `pamong_nosk` varchar(30) DEFAULT NULL, + `pamong_tglsk` date DEFAULT NULL, + `pamong_masajab` varchar(120) DEFAULT NULL, + `urut` int(5) DEFAULT NULL, + `pamong_niap` varchar(25) DEFAULT '0', + `pamong_pangkat` varchar(20) DEFAULT NULL, + `pamong_nohenti` varchar(20) DEFAULT NULL, + `pamong_tglhenti` date DEFAULT NULL, + `pamong_ub` tinyint(1) NOT NULL DEFAULT 0, + `atasan` int(11) DEFAULT NULL, + `bagan_tingkat` tinyint(2) DEFAULT NULL, + `bagan_offset` int(3) DEFAULT NULL, + `bagan_layout` varchar(20) DEFAULT NULL, + `bagan_warna` varchar(25) DEFAULT NULL, + PRIMARY KEY (`pamong_id`) + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_keluarga() + { + DB::statement(" + CREATE TABLE `tweb_keluarga` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `no_kk` varchar(16) DEFAULT NULL, + `nik_kepala` varchar(200) DEFAULT NULL, + `tgl_daftar` timestamp NULL DEFAULT current_timestamp(), + `kelas_sosial` int(4) DEFAULT NULL, + `tgl_cetak_kk` datetime DEFAULT NULL, + `alamat` varchar(200) DEFAULT NULL, + `id_cluster` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `no_kk` (`no_kk`), + KEY `nik_kepala` (`nik_kepala`) + ); + "); + + DB::statement(" + CREATE TABLE `tweb_keluarga_sejahtera` ( + `id` int(10) NOT NULL DEFAULT 0, + `nama` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("tweb_keluarga_sejahtera")->insert([ + ["id" => 1, "nama" => "Keluarga Pra Sejahtera"], + ["id" => 2, "nama" => "Keluarga Sejahtera I"], + ["id" => 3, "nama" => "Keluarga Sejahtera II"], + ["id" => 4, "nama" => "Keluarga Sejahtera III"], + ["id" => 5, "nama" => "Keluarga Sejahtera III Plus"], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function tabel_pengguna() + { + DB::statement(" + CREATE TABLE `user` ( + `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, + `username` varchar(100) DEFAULT NULL, + `password` varchar(100) NOT NULL, + `id_grup` int(5) NOT NULL, + `email` varchar(100) DEFAULT NULL, + `last_login` datetime DEFAULT NULL, + `email_verified_at` datetime DEFAULT NULL, + `active` tinyint(1) unsigned DEFAULT 0, + `nama` varchar(50) DEFAULT NULL, + `company` varchar(100) DEFAULT NULL, + `phone` varchar(20) DEFAULT NULL, + `foto` varchar(100) DEFAULT 'kuser.png', + `session` varchar(40) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `username` (`username`), + UNIQUE KEY `email` (`email`) + ); + "); + + DB::table("user")->insert([ + [ + "id" => 1, + "username" => "admin", + "password" => + '$2y$10$CfFhuvLXa3RNotqOPYyW2.JujLbAbZ4YO0PtxIRBz4QDLP0/pfH6.', + "id_grup" => 1, + "email" => "info@opendesa.id", + "last_login" => "2022-02-28 19:55:01", + "email_verified_at" => null, + "active" => 1, + "nama" => "Administrator", + "company" => "OpenDesa", + "phone" => "321", + "foto" => "kuser.png", + "session" => "a8d4080245664ed2049c1b2ded7cac30", + ], + ]); + + DB::statement(" + CREATE TABLE `user_grup` ( + `id` int(5) NOT NULL AUTO_INCREMENT, + `nama` varchar(20) NOT NULL, + `jenis` tinyint(2) NOT NULL DEFAULT 1, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) DEFAULT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + PRIMARY KEY (`id`) + ); + "); + + DB::table("user_grup")->insert([ + [ + "id" => 1, + "nama" => "Administrator", + "jenis" => 1, + "created_at" => "2021-05-01 01:45:38", + "created_by" => null, + "updated_at" => "2021-05-01 01:45:38", + "updated_by" => 0, + ], + [ + "id" => 2, + "nama" => "Operator", + "jenis" => 1, + "created_at" => "2021-05-01 01:45:38", + "created_by" => null, + "updated_at" => "2021-05-01 01:45:38", + "updated_by" => 0, + ], + [ + "id" => 3, + "nama" => "Redaksi", + "jenis" => 1, + "created_at" => "2021-05-01 01:45:38", + "created_by" => null, + "updated_at" => "2021-05-01 01:45:38", + "updated_by" => 0, + ], + [ + "id" => 4, + "nama" => "Kontributor", + "jenis" => 1, + "created_at" => "2021-05-01 01:45:38", + "created_by" => null, + "updated_at" => "2021-05-01 01:45:38", + "updated_by" => 0, + ], + [ + "id" => 5, + "nama" => "Satgas Covid-19", + "jenis" => 2, + "created_at" => "2021-05-01 01:45:38", + "created_by" => null, + "updated_at" => "2021-05-01 01:45:38", + "updated_by" => 0, + ], + ]); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + // TODO: Pisahkan pembuatan tabel dengan pembuatan foreign key constraint + // supaya pembuatan tabel bisa dilakukan di masing2 modul + private function tabel_ada_foreign_key() + { + DB::statement(" + CREATE TABLE `suplemen_terdata` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_suplemen` int(10) DEFAULT NULL, + `id_terdata` varchar(20) DEFAULT NULL, + `sasaran` tinyint(4) DEFAULT NULL, + `keterangan` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_suplemen` (`id_suplemen`), + CONSTRAINT `suplemen_terdata_ibfk_1` FOREIGN KEY (`id_suplemen`) REFERENCES `suplemen` (`id`) ON DELETE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `kontak` ( + `id_kontak` int(11) NOT NULL AUTO_INCREMENT, + `id_pend` int(11) DEFAULT NULL, + `no_hp` varchar(15) DEFAULT NULL, + PRIMARY KEY (`id_kontak`), + KEY `kontak_ke_tweb_penduduk` (`id_pend`), + CONSTRAINT `kontak_ke_tweb_penduduk` FOREIGN KEY (`id_pend`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `anggota_grup_kontak` ( + `id_grup_kontak` int(11) NOT NULL AUTO_INCREMENT, + `id_grup` int(11) NOT NULL, + `id_kontak` int(11) NOT NULL, + PRIMARY KEY (`id_grup_kontak`), + KEY `anggota_grup_kontak_ke_kontak` (`id_kontak`), + KEY `anggota_grup_kontak_ke_kontak_grup` (`id_grup`), + CONSTRAINT `anggota_grup_kontak_ke_kontak` FOREIGN KEY (`id_kontak`) REFERENCES `kontak` (`id_kontak`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `anggota_grup_kontak_ke_kontak_grup` FOREIGN KEY (`id_grup`) REFERENCES `kontak_grup` (`id_grup`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_inventaris_asset` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_inventaris_asset` int(11) DEFAULT NULL, + `jenis_mutasi` varchar(100) DEFAULT NULL, + `tahun_mutasi` date NOT NULL, + `harga_jual` double DEFAULT NULL, + `sumbangkan` varchar(255) DEFAULT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `visible` int(1) NOT NULL DEFAULT 1, + `status_mutasi` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `FK_mutasi_inventaris_asset` (`id_inventaris_asset`), + CONSTRAINT `FK_mutasi_inventaris_asset` FOREIGN KEY (`id_inventaris_asset`) REFERENCES `inventaris_asset` (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_inventaris_gedung` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_inventaris_gedung` int(11) DEFAULT NULL, + `jenis_mutasi` varchar(100) DEFAULT NULL, + `tahun_mutasi` date NOT NULL, + `harga_jual` double DEFAULT NULL, + `sumbangkan` varchar(255) DEFAULT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `visible` int(1) NOT NULL DEFAULT 1, + `status_mutasi` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `FK_mutasi_inventaris_gedung` (`id_inventaris_gedung`), + CONSTRAINT `FK_mutasi_inventaris_gedung` FOREIGN KEY (`id_inventaris_gedung`) REFERENCES `inventaris_gedung` (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_inventaris_jalan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_inventaris_jalan` int(11) DEFAULT NULL, + `jenis_mutasi` varchar(100) DEFAULT NULL, + `tahun_mutasi` date NOT NULL, + `harga_jual` double DEFAULT NULL, + `sumbangkan` varchar(255) DEFAULT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `visible` int(1) NOT NULL DEFAULT 1, + `status_mutasi` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `FK_mutasi_inventaris_jalan` (`id_inventaris_jalan`), + CONSTRAINT `FK_mutasi_inventaris_jalan` FOREIGN KEY (`id_inventaris_jalan`) REFERENCES `inventaris_jalan` (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_inventaris_peralatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_inventaris_peralatan` int(11) DEFAULT NULL, + `jenis_mutasi` varchar(100) DEFAULT NULL, + `tahun_mutasi` date NOT NULL, + `harga_jual` double DEFAULT NULL, + `sumbangkan` varchar(255) DEFAULT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `visible` int(1) NOT NULL DEFAULT 1, + `status_mutasi` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `FK_mutasi_inventaris_peralatan` (`id_inventaris_peralatan`), + CONSTRAINT `FK_mutasi_inventaris_peralatan` FOREIGN KEY (`id_inventaris_peralatan`) REFERENCES `inventaris_peralatan` (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_inventaris_tanah` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_inventaris_tanah` int(11) DEFAULT NULL, + `jenis_mutasi` varchar(100) DEFAULT NULL, + `tahun_mutasi` date NOT NULL, + `harga_jual` double DEFAULT NULL, + `sumbangkan` varchar(255) DEFAULT NULL, + `keterangan` text NOT NULL, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `created_by` int(11) NOT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_by` int(11) NOT NULL, + `visible` int(1) NOT NULL DEFAULT 1, + `status_mutasi` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `FK_mutasi_inventaris_tanah` (`id_inventaris_tanah`), + CONSTRAINT `FK_mutasi_inventaris_tanah` FOREIGN KEY (`id_inventaris_tanah`) REFERENCES `inventaris_tanah` (`id`) + ); + "); + + DB::statement(" + CREATE TABLE `disposisi_surat_masuk` ( + `id_disposisi` int(11) NOT NULL AUTO_INCREMENT, + `id_surat_masuk` int(11) NOT NULL, + `id_desa_pamong` int(11) DEFAULT NULL, + `disposisi_ke` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_disposisi`), + KEY `id_surat_fk` (`id_surat_masuk`), + KEY `desa_pamong_fk` (`id_desa_pamong`), + CONSTRAINT `desa_pamong_fk` FOREIGN KEY (`id_desa_pamong`) REFERENCES `tweb_desa_pamong` (`pamong_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `id_surat_fk` FOREIGN KEY (`id_surat_masuk`) REFERENCES `surat_masuk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `tweb_penduduk_mandiri` ( + `pin` char(32) NOT NULL, + `last_login` datetime DEFAULT NULL, + `tanggal_buat` datetime DEFAULT NULL, + `id_pend` int(9) NOT NULL, + `aktif` int(1) DEFAULT 1, + `scan_ktp` varchar(100) DEFAULT NULL, + `scan_kk` varchar(100) DEFAULT NULL, + `foto_selfie` varchar(100) DEFAULT NULL, + `ganti_pin` tinyint(1) NOT NULL DEFAULT 1, + `email_verified_at` timestamp NULL DEFAULT NULL, + `remember_token` varchar(100) DEFAULT NULL, + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id_pend`), + CONSTRAINT `id_pend_fk` FOREIGN KEY (`id_pend`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `setting_aplikasi_options` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_setting` int(11) NOT NULL, + `value` varchar(512) NOT NULL, + `kode` tinyint(4) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_setting_fk` (`id_setting`), + CONSTRAINT `id_setting_fk` FOREIGN KEY (`id_setting`) REFERENCES `setting_aplikasi` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::table("setting_aplikasi_options")->insert([ + [ + "id" => 1, + "id_setting" => 24, + "value" => + "Nomor berurutan untuk masing-masing surat masuk dan keluar; dan untuk semua surat layanan", + "kode" => null, + ], + [ + "id" => 2, + "id_setting" => 24, + "value" => + "Nomor berurutan untuk masing-masing surat masuk dan keluar; dan untuk setiap surat layanan dengan jenis yang sama", + "kode" => null, + ], + [ + "id" => 3, + "id_setting" => 24, + "value" => + "Nomor berurutan untuk keseluruhan surat layanan, masuk dan keluar", + "kode" => null, + ], + [ + "id" => 4, + "id_setting" => 27, + "value" => "skin-blue", + "kode" => null, + ], + [ + "id" => 5, + "id_setting" => 27, + "value" => "skin-blue-light", + "kode" => null, + ], + [ + "id" => 6, + "id_setting" => 27, + "value" => "skin-yellow", + "kode" => null, + ], + [ + "id" => 7, + "id_setting" => 27, + "value" => "skin-yellow-light", + "kode" => null, + ], + [ + "id" => 8, + "id_setting" => 27, + "value" => "skin-green", + "kode" => null, + ], + [ + "id" => 9, + "id_setting" => 27, + "value" => "skin-green-light", + "kode" => null, + ], + [ + "id" => 10, + "id_setting" => 27, + "value" => "skin-purple", + "kode" => null, + ], + [ + "id" => 11, + "id_setting" => 27, + "value" => "skin-purple-light", + "kode" => null, + ], + [ + "id" => 12, + "id_setting" => 27, + "value" => "skin-red", + "kode" => null, + ], + [ + "id" => 13, + "id_setting" => 27, + "value" => "skin-red-light", + "kode" => null, + ], + [ + "id" => 14, + "id_setting" => 27, + "value" => "skin-black", + "kode" => null, + ], + [ + "id" => 15, + "id_setting" => 27, + "value" => "skin-black-light", + "kode" => null, + ], + [ + "id" => 16, + "id_setting" => 12, + "value" => "Web bisa diakses publik", + "kode" => 0, + ], + [ + "id" => 17, + "id_setting" => 12, + "value" => "Web hanya bisa diakses petugas web", + "kode" => 1, + ], + [ + "id" => 18, + "id_setting" => 12, + "value" => "Web non-aktif sama sekali", + "kode" => 2, + ], + [ + "id" => 52, + "id_setting" => 605, + "value" => "Tidak Aktif", + "kode" => 0, + ], + ["id" => 53, "id_setting" => 605, "value" => "Slider", "kode" => 1], + ["id" => 54, "id_setting" => 605, "value" => "Video", "kode" => 2], + ]); + + DB::statement(" + CREATE TABLE `log_penduduk` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `id_pend` int(11) NOT NULL, + `kode_peristiwa` int(11) DEFAULT NULL, + `meninggal_di` varchar(50) DEFAULT NULL, + `jam_mati` varchar(10) DEFAULT NULL, + `sebab` varchar(50) DEFAULT NULL, + `penolong_mati` varchar(50) DEFAULT NULL, + `akta_mati` varchar(50) DEFAULT NULL, + `alamat_tujuan` tinytext DEFAULT NULL, + `tgl_lapor` timestamp NOT NULL DEFAULT current_timestamp(), + `tgl_peristiwa` datetime DEFAULT current_timestamp(), + `catatan` text DEFAULT NULL, + `no_kk` varchar(16) DEFAULT NULL, + `nama_kk` varchar(100) DEFAULT NULL, + `ref_pindah` tinyint(4) DEFAULT 1, + `created_at` timestamp NULL DEFAULT current_timestamp(), + `created_by` int(11) DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `updated_by` int(11) DEFAULT NULL, + `maksud_tujuan_kedatangan` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `id_pend` (`id_pend`,`kode_peristiwa`,`tgl_peristiwa`), + KEY `id_ref_pindah` (`ref_pindah`), + CONSTRAINT `id_ref_pindah` FOREIGN KEY (`ref_pindah`) REFERENCES `ref_pindah` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `agenda` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_artikel` int(11) NOT NULL, + `tgl_agenda` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `koordinator_kegiatan` varchar(50) NOT NULL, + `lokasi_kegiatan` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_artikel_fk` (`id_artikel`), + CONSTRAINT `id_artikel_fk` FOREIGN KEY (`id_artikel`) REFERENCES `artikel` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `syarat_surat` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `surat_format_id` int(10) NOT NULL, + `ref_syarat_id` int(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_surat_format` (`surat_format_id`), + CONSTRAINT `id_surat_format` FOREIGN KEY (`surat_format_id`) REFERENCES `tweb_surat_format` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::table("syarat_surat")->insert([ + ["id" => 1, "surat_format_id" => 1, "ref_syarat_id" => 1], + ["id" => 2, "surat_format_id" => 1, "ref_syarat_id" => 2], + ["id" => 3, "surat_format_id" => 1, "ref_syarat_id" => 3], + ["id" => 4, "surat_format_id" => 2, "ref_syarat_id" => 2], + ["id" => 5, "surat_format_id" => 2, "ref_syarat_id" => 3], + ["id" => 6, "surat_format_id" => 3, "ref_syarat_id" => 2], + ["id" => 7, "surat_format_id" => 3, "ref_syarat_id" => 3], + ["id" => 8, "surat_format_id" => 5, "ref_syarat_id" => 1], + ["id" => 9, "surat_format_id" => 5, "ref_syarat_id" => 2], + ["id" => 10, "surat_format_id" => 5, "ref_syarat_id" => 3], + ["id" => 11, "surat_format_id" => 6, "ref_syarat_id" => 1], + ["id" => 12, "surat_format_id" => 6, "ref_syarat_id" => 2], + ["id" => 13, "surat_format_id" => 6, "ref_syarat_id" => 3], + ["id" => 14, "surat_format_id" => 8, "ref_syarat_id" => 1], + ["id" => 15, "surat_format_id" => 8, "ref_syarat_id" => 2], + ["id" => 16, "surat_format_id" => 8, "ref_syarat_id" => 3], + ["id" => 17, "surat_format_id" => 9, "ref_syarat_id" => 2], + ["id" => 18, "surat_format_id" => 9, "ref_syarat_id" => 3], + ["id" => 19, "surat_format_id" => 10, "ref_syarat_id" => 1], + ["id" => 20, "surat_format_id" => 10, "ref_syarat_id" => 2], + ["id" => 21, "surat_format_id" => 10, "ref_syarat_id" => 3], + ["id" => 22, "surat_format_id" => 11, "ref_syarat_id" => 1], + ["id" => 23, "surat_format_id" => 11, "ref_syarat_id" => 2], + ["id" => 24, "surat_format_id" => 11, "ref_syarat_id" => 3], + ["id" => 25, "surat_format_id" => 12, "ref_syarat_id" => 1], + ["id" => 26, "surat_format_id" => 12, "ref_syarat_id" => 2], + ["id" => 27, "surat_format_id" => 12, "ref_syarat_id" => 3], + ["id" => 28, "surat_format_id" => 13, "ref_syarat_id" => 1], + ["id" => 29, "surat_format_id" => 13, "ref_syarat_id" => 2], + ["id" => 30, "surat_format_id" => 13, "ref_syarat_id" => 3], + ["id" => 31, "surat_format_id" => 14, "ref_syarat_id" => 1], + ["id" => 32, "surat_format_id" => 14, "ref_syarat_id" => 2], + ["id" => 33, "surat_format_id" => 14, "ref_syarat_id" => 3], + ["id" => 34, "surat_format_id" => 15, "ref_syarat_id" => 1], + ["id" => 35, "surat_format_id" => 15, "ref_syarat_id" => 2], + ["id" => 36, "surat_format_id" => 15, "ref_syarat_id" => 3], + ]); + + DB::statement(" + CREATE TABLE `covid19_pemudik` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_terdata` int(11) DEFAULT NULL, + `tanggal_datang` date DEFAULT NULL, + `asal_mudik` varchar(255) DEFAULT NULL, + `durasi_mudik` varchar(50) DEFAULT NULL, + `tujuan_mudik` varchar(255) DEFAULT NULL, + `keluhan_kesehatan` varchar(255) DEFAULT NULL, + `status_covid` varchar(50) DEFAULT NULL, + `no_hp` varchar(20) DEFAULT NULL, + `email` varchar(255) DEFAULT NULL, + `keterangan` varchar(255) DEFAULT NULL, + `is_wajib_pantau` varchar(20) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `fk_pemudik_penduduk` (`id_terdata`), + CONSTRAINT `fk_pemudik_penduduk` FOREIGN KEY (`id_terdata`) REFERENCES `tweb_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `covid19_pantau` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pemudik` int(11) DEFAULT NULL, + `tanggal_jam` datetime DEFAULT NULL, + `suhu_tubuh` decimal(4,2) DEFAULT NULL, + `batuk` varchar(20) DEFAULT NULL, + `flu` varchar(20) DEFAULT NULL, + `sesak_nafas` varchar(20) DEFAULT NULL, + `keluhan_lain` varchar(255) DEFAULT NULL, + `status_covid` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `fk_pantau_pemudik` (`id_pemudik`), + CONSTRAINT `fk_pantau_pemudik` FOREIGN KEY (`id_pemudik`) REFERENCES `covid19_pemudik` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `kelompok_anggota` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_kelompok` int(11) NOT NULL, + `id_penduduk` int(11) NOT NULL, + `no_anggota` varchar(20) DEFAULT NULL, + `keterangan` text DEFAULT NULL, + `jabatan` varchar(50) DEFAULT '90', + `no_sk_jabatan` varchar(50) DEFAULT NULL, + `tipe` varchar(100) DEFAULT 'kelompok', + `periode` varchar(255) DEFAULT NULL, + `nmr_sk_pengangkatan` varchar(255) DEFAULT NULL, + `tgl_sk_pengangkatan` date DEFAULT NULL, + `nmr_sk_pemberhentian` varchar(255) DEFAULT NULL, + `tgl_sk_pemberhentian` date DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `id_kelompok` (`id_kelompok`,`id_penduduk`), + CONSTRAINT `kelompok_anggota_fk` FOREIGN KEY (`id_kelompok`) REFERENCES `kelompok` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `log_keluarga` ( + `id` int(10) NOT NULL AUTO_INCREMENT, + `id_kk` int(11) NOT NULL, + `kk_sex` tinyint(2) DEFAULT NULL, + `id_peristiwa` int(4) NOT NULL, + `tgl_peristiwa` timestamp NOT NULL DEFAULT current_timestamp(), + `id_pend` int(11) DEFAULT NULL, + `updated_by` int(11) NOT NULL, + `id_log_penduduk` int(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `id_kk` (`id_kk`,`id_peristiwa`,`tgl_peristiwa`,`id_pend`), + KEY `log_penduduk_fk` (`id_log_penduduk`), + CONSTRAINT `log_penduduk_fk` FOREIGN KEY (`id_log_penduduk`) REFERENCES `log_penduduk` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `grup_akses` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_grup` int(11) NOT NULL, + `id_modul` int(11) NOT NULL, + `akses` tinyint(4) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_grup` (`id_grup`), + KEY `id_modul` (`id_modul`), + CONSTRAINT `fk_id_grup` FOREIGN KEY (`id_grup`) REFERENCES `user_grup` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_id_modul` FOREIGN KEY (`id_modul`) REFERENCES `setting_modul` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::table("grup_akses")->insert([ + ["id" => 1, "id_grup" => 5, "id_modul" => 3, "akses" => 0], + ["id" => 2, "id_grup" => 5, "id_modul" => 27, "akses" => 3], + ["id" => 3, "id_grup" => 5, "id_modul" => 206, "akses" => 0], + ["id" => 4, "id_grup" => 5, "id_modul" => 207, "akses" => 7], + ["id" => 5, "id_grup" => 5, "id_modul" => 208, "akses" => 7], + ["id" => 6, "id_grup" => 2, "id_modul" => 1, "akses" => 3], + ["id" => 7, "id_grup" => 2, "id_modul" => 2, "akses" => 0], + ["id" => 8, "id_grup" => 2, "id_modul" => 3, "akses" => 0], + ["id" => 9, "id_grup" => 2, "id_modul" => 4, "akses" => 0], + ["id" => 10, "id_grup" => 2, "id_modul" => 5, "akses" => 0], + ["id" => 11, "id_grup" => 2, "id_modul" => 6, "akses" => 3], + ["id" => 12, "id_grup" => 2, "id_modul" => 7, "akses" => 0], + ["id" => 13, "id_grup" => 2, "id_modul" => 8, "akses" => 3], + ["id" => 14, "id_grup" => 2, "id_modul" => 9, "akses" => 0], + ["id" => 15, "id_grup" => 2, "id_modul" => 10, "akses" => 0], + ["id" => 16, "id_grup" => 2, "id_modul" => 11, "akses" => 0], + ["id" => 17, "id_grup" => 2, "id_modul" => 13, "akses" => 0], + ["id" => 18, "id_grup" => 2, "id_modul" => 14, "akses" => 0], + ["id" => 19, "id_grup" => 2, "id_modul" => 15, "akses" => 0], + ["id" => 20, "id_grup" => 2, "id_modul" => 17, "akses" => 3], + ["id" => 21, "id_grup" => 2, "id_modul" => 18, "akses" => 3], + ["id" => 22, "id_grup" => 2, "id_modul" => 20, "akses" => 3], + ["id" => 23, "id_grup" => 2, "id_modul" => 21, "akses" => 3], + ["id" => 24, "id_grup" => 2, "id_modul" => 22, "akses" => 3], + ["id" => 25, "id_grup" => 2, "id_modul" => 23, "akses" => 3], + ["id" => 26, "id_grup" => 2, "id_modul" => 24, "akses" => 3], + ["id" => 27, "id_grup" => 2, "id_modul" => 25, "akses" => 3], + ["id" => 28, "id_grup" => 2, "id_modul" => 26, "akses" => 3], + ["id" => 29, "id_grup" => 2, "id_modul" => 27, "akses" => 3], + ["id" => 30, "id_grup" => 2, "id_modul" => 28, "akses" => 3], + ["id" => 31, "id_grup" => 2, "id_modul" => 29, "akses" => 3], + ["id" => 32, "id_grup" => 2, "id_modul" => 30, "akses" => 3], + ["id" => 33, "id_grup" => 2, "id_modul" => 31, "akses" => 3], + ["id" => 34, "id_grup" => 2, "id_modul" => 32, "akses" => 3], + ["id" => 35, "id_grup" => 2, "id_modul" => 33, "akses" => 3], + ["id" => 36, "id_grup" => 2, "id_modul" => 39, "akses" => 3], + ["id" => 37, "id_grup" => 2, "id_modul" => 40, "akses" => 3], + ["id" => 38, "id_grup" => 2, "id_modul" => 41, "akses" => 3], + ["id" => 39, "id_grup" => 2, "id_modul" => 42, "akses" => 3], + ["id" => 40, "id_grup" => 2, "id_modul" => 47, "akses" => 3], + ["id" => 41, "id_grup" => 2, "id_modul" => 48, "akses" => 3], + ["id" => 42, "id_grup" => 2, "id_modul" => 49, "akses" => 3], + ["id" => 43, "id_grup" => 2, "id_modul" => 50, "akses" => 3], + ["id" => 44, "id_grup" => 2, "id_modul" => 51, "akses" => 3], + ["id" => 45, "id_grup" => 2, "id_modul" => 52, "akses" => 3], + ["id" => 46, "id_grup" => 2, "id_modul" => 53, "akses" => 3], + ["id" => 47, "id_grup" => 2, "id_modul" => 54, "akses" => 3], + ["id" => 48, "id_grup" => 2, "id_modul" => 55, "akses" => 3], + ["id" => 49, "id_grup" => 2, "id_modul" => 56, "akses" => 3], + ["id" => 50, "id_grup" => 2, "id_modul" => 57, "akses" => 3], + ["id" => 51, "id_grup" => 2, "id_modul" => 58, "akses" => 3], + ["id" => 52, "id_grup" => 2, "id_modul" => 61, "akses" => 3], + ["id" => 53, "id_grup" => 2, "id_modul" => 62, "akses" => 3], + ["id" => 54, "id_grup" => 2, "id_modul" => 63, "akses" => 3], + ["id" => 55, "id_grup" => 2, "id_modul" => 64, "akses" => 3], + ["id" => 56, "id_grup" => 2, "id_modul" => 65, "akses" => 3], + ["id" => 57, "id_grup" => 2, "id_modul" => 66, "akses" => 3], + ["id" => 58, "id_grup" => 2, "id_modul" => 67, "akses" => 3], + ["id" => 59, "id_grup" => 2, "id_modul" => 68, "akses" => 3], + ["id" => 60, "id_grup" => 2, "id_modul" => 69, "akses" => 3], + ["id" => 61, "id_grup" => 2, "id_modul" => 70, "akses" => 3], + ["id" => 62, "id_grup" => 2, "id_modul" => 71, "akses" => 3], + ["id" => 63, "id_grup" => 2, "id_modul" => 72, "akses" => 3], + ["id" => 64, "id_grup" => 2, "id_modul" => 73, "akses" => 3], + ["id" => 65, "id_grup" => 2, "id_modul" => 75, "akses" => 3], + ["id" => 66, "id_grup" => 2, "id_modul" => 76, "akses" => 3], + ["id" => 67, "id_grup" => 2, "id_modul" => 77, "akses" => 3], + ["id" => 68, "id_grup" => 2, "id_modul" => 78, "akses" => 3], + ["id" => 69, "id_grup" => 2, "id_modul" => 79, "akses" => 3], + ["id" => 70, "id_grup" => 2, "id_modul" => 80, "akses" => 3], + ["id" => 71, "id_grup" => 2, "id_modul" => 81, "akses" => 3], + ["id" => 72, "id_grup" => 2, "id_modul" => 82, "akses" => 3], + ["id" => 73, "id_grup" => 2, "id_modul" => 83, "akses" => 3], + ["id" => 74, "id_grup" => 2, "id_modul" => 84, "akses" => 3], + ["id" => 75, "id_grup" => 2, "id_modul" => 85, "akses" => 3], + ["id" => 76, "id_grup" => 2, "id_modul" => 86, "akses" => 3], + ["id" => 77, "id_grup" => 2, "id_modul" => 87, "akses" => 3], + ["id" => 78, "id_grup" => 2, "id_modul" => 88, "akses" => 3], + ["id" => 79, "id_grup" => 2, "id_modul" => 89, "akses" => 3], + ["id" => 80, "id_grup" => 2, "id_modul" => 90, "akses" => 3], + ["id" => 81, "id_grup" => 2, "id_modul" => 91, "akses" => 3], + ["id" => 82, "id_grup" => 2, "id_modul" => 92, "akses" => 3], + ["id" => 83, "id_grup" => 2, "id_modul" => 93, "akses" => 3], + ["id" => 84, "id_grup" => 2, "id_modul" => 94, "akses" => 3], + ["id" => 85, "id_grup" => 2, "id_modul" => 95, "akses" => 3], + ["id" => 86, "id_grup" => 2, "id_modul" => 96, "akses" => 3], + ["id" => 87, "id_grup" => 2, "id_modul" => 97, "akses" => 3], + ["id" => 88, "id_grup" => 2, "id_modul" => 98, "akses" => 3], + ["id" => 89, "id_grup" => 2, "id_modul" => 101, "akses" => 3], + ["id" => 90, "id_grup" => 2, "id_modul" => 200, "akses" => 0], + ["id" => 91, "id_grup" => 2, "id_modul" => 201, "akses" => 0], + ["id" => 92, "id_grup" => 2, "id_modul" => 202, "akses" => 3], + ["id" => 93, "id_grup" => 2, "id_modul" => 203, "akses" => 3], + ["id" => 94, "id_grup" => 2, "id_modul" => 205, "akses" => 3], + ["id" => 95, "id_grup" => 2, "id_modul" => 206, "akses" => 0], + ["id" => 96, "id_grup" => 2, "id_modul" => 207, "akses" => 7], + ["id" => 97, "id_grup" => 2, "id_modul" => 208, "akses" => 7], + ["id" => 98, "id_grup" => 2, "id_modul" => 209, "akses" => 3], + ["id" => 99, "id_grup" => 2, "id_modul" => 210, "akses" => 3], + ["id" => 100, "id_grup" => 2, "id_modul" => 211, "akses" => 3], + ["id" => 101, "id_grup" => 2, "id_modul" => 212, "akses" => 3], + ["id" => 102, "id_grup" => 2, "id_modul" => 213, "akses" => 3], + ["id" => 105, "id_grup" => 2, "id_modul" => 301, "akses" => 0], + ["id" => 106, "id_grup" => 2, "id_modul" => 302, "akses" => 3], + ["id" => 107, "id_grup" => 2, "id_modul" => 303, "akses" => 3], + ["id" => 108, "id_grup" => 2, "id_modul" => 304, "akses" => 3], + ["id" => 109, "id_grup" => 2, "id_modul" => 305, "akses" => 3], + ["id" => 110, "id_grup" => 2, "id_modul" => 310, "akses" => 3], + ["id" => 111, "id_grup" => 2, "id_modul" => 311, "akses" => 3], + ["id" => 112, "id_grup" => 2, "id_modul" => 312, "akses" => 3], + ["id" => 113, "id_grup" => 2, "id_modul" => 314, "akses" => 3], + ["id" => 114, "id_grup" => 2, "id_modul" => 315, "akses" => 3], + ["id" => 115, "id_grup" => 2, "id_modul" => 316, "akses" => 3], + ["id" => 116, "id_grup" => 2, "id_modul" => 317, "akses" => 3], + ["id" => 117, "id_grup" => 2, "id_modul" => 318, "akses" => 3], + ["id" => 118, "id_grup" => 3, "id_modul" => 13, "akses" => 0], + ["id" => 119, "id_grup" => 3, "id_modul" => 47, "akses" => 7], + ["id" => 120, "id_grup" => 3, "id_modul" => 48, "akses" => 7], + ["id" => 121, "id_grup" => 3, "id_modul" => 49, "akses" => 7], + ["id" => 122, "id_grup" => 3, "id_modul" => 50, "akses" => 7], + ["id" => 123, "id_grup" => 3, "id_modul" => 51, "akses" => 7], + ["id" => 124, "id_grup" => 3, "id_modul" => 53, "akses" => 7], + ["id" => 125, "id_grup" => 3, "id_modul" => 54, "akses" => 7], + ["id" => 126, "id_grup" => 3, "id_modul" => 64, "akses" => 7], + ["id" => 127, "id_grup" => 3, "id_modul" => 205, "akses" => 7], + ["id" => 128, "id_grup" => 3, "id_modul" => 211, "akses" => 7], + ["id" => 129, "id_grup" => 4, "id_modul" => 13, "akses" => 0], + ["id" => 130, "id_grup" => 4, "id_modul" => 47, "akses" => 3], + ["id" => 131, "id_grup" => 4, "id_modul" => 50, "akses" => 3], + ["id" => 132, "id_grup" => 4, "id_modul" => 51, "akses" => 3], + ["id" => 133, "id_grup" => 4, "id_modul" => 54, "akses" => 3], + ["id" => 134, "id_grup" => 2, "id_modul" => 319, "akses" => 3], + ["id" => 135, "id_grup" => 2, "id_modul" => 110, "akses" => 3], + ["id" => 136, "id_grup" => 2, "id_modul" => 111, "akses" => 3], + ["id" => 137, "id_grup" => 2, "id_modul" => 320, "akses" => 3], + ["id" => 138, "id_grup" => 2, "id_modul" => 321, "akses" => 3], + ["id" => 139, "id_grup" => 2, "id_modul" => 322, "akses" => 3], + ["id" => 140, "id_grup" => 2, "id_modul" => 323, "akses" => 3], + ["id" => 141, "id_grup" => 2, "id_modul" => 305, "akses" => 3], + ["id" => 142, "id_grup" => 2, "id_modul" => 214, "akses" => 3], + ["id" => 143, "id_grup" => 2, "id_modul" => 324, "akses" => 3], + ["id" => 144, "id_grup" => 2, "id_modul" => 43, "akses" => 3], + ["id" => 145, "id_grup" => 2, "id_modul" => 44, "akses" => 1], + ["id" => 146, "id_grup" => 2, "id_modul" => 45, "akses" => 3], + ["id" => 147, "id_grup" => 2, "id_modul" => 46, "akses" => 3], + ["id" => 148, "id_grup" => 3, "id_modul" => 65, "akses" => 7], + ["id" => 149, "id_grup" => 3, "id_modul" => 324, "akses" => 7], + ["id" => 150, "id_grup" => 2, "id_modul" => 325, "akses" => 3], + ["id" => 151, "id_grup" => 2, "id_modul" => 326, "akses" => 3], + ["id" => 152, "id_grup" => 2, "id_modul" => 327, "akses" => 3], + ["id" => 153, "id_grup" => 2, "id_modul" => 328, "akses" => 3], + ["id" => 154, "id_grup" => 2, "id_modul" => 329, "akses" => 3], + ["id" => 155, "id_grup" => 2, "id_modul" => 330, "akses" => 3], + ["id" => 156, "id_grup" => 2, "id_modul" => 332, "akses" => 3], + ["id" => 157, "id_grup" => 2, "id_modul" => 334, "akses" => 3], + ["id" => 158, "id_grup" => 2, "id_modul" => 333, "akses" => 3], + ["id" => 159, "id_grup" => 2, "id_modul" => 335, "akses" => 3], + ["id" => 160, "id_grup" => 2, "id_modul" => 220, "akses" => 3], + ["id" => 161, "id_grup" => 2, "id_modul" => 336, "akses" => 3], + ["id" => 162, "id_grup" => 2, "id_modul" => 313, "akses" => 3], + ["id" => 163, "id_grup" => 2, "id_modul" => 331, "akses" => 3], + ]); + + DB::statement(" + CREATE TABLE `produk` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_pelapak` int(11) DEFAULT NULL, + `id_produk_kategori` int(11) DEFAULT NULL, + `nama` varchar(255) DEFAULT NULL, + `harga` int(11) DEFAULT NULL, + `satuan` varchar(20) DEFAULT NULL, + `tipe_potongan` tinyint(1) DEFAULT 1, + `potongan` int(11) DEFAULT 0, + `deskripsi` text DEFAULT NULL, + `foto` varchar(225) DEFAULT NULL, + `status` tinyint(1) NOT NULL DEFAULT 1, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`), + KEY `lapak_fk` (`id_pelapak`), + KEY `produk_kategori_fk` (`id_produk_kategori`), + CONSTRAINT `lapak_fk` FOREIGN KEY (`id_pelapak`) REFERENCES `pelapak` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `produk_kategori_fk` FOREIGN KEY (`id_produk_kategori`) REFERENCES `produk_kategori` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_bank_desa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(50) NOT NULL, + `Kd_Desa` varchar(50) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `NoRek_Bank` varchar(100) NOT NULL, + `Nama_Bank` varchar(250) NOT NULL, + `Kantor_Cabang` varchar(100) DEFAULT NULL, + `Nama_Pemilik` varchar(100) DEFAULT NULL, + `Alamat_Pemilik` varchar(100) DEFAULT NULL, + `No_Identitas` varchar(20) DEFAULT NULL, + `No_Telepon` varchar(20) DEFAULT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_bank_desa_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_bank_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_bel_operasional` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `ID_Keg` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_bel_operasional_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_bel_operasional_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_bidang` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Bid` varchar(50) NOT NULL, + `Nama_Bidang` varchar(250) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_bidang_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_bunga` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Bunga` varchar(50) NOT NULL, + `Kd_Admin` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_bunga_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_bunga_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_desa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Kec` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Nama_Desa` varchar(250) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_desa_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_kecamatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Kec` varchar(100) NOT NULL, + `Nama_Kecamatan` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_kecamatan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_kecamatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_kegiatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Bid` varchar(100) DEFAULT NULL, + `ID_Keg` varchar(100) NOT NULL, + `Nama_Kegiatan` varchar(250) NOT NULL, + `Jns_Kegiatan` tinyint(5) DEFAULT NULL, + `Kd_Sub` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_kegiatan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_korolari` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_RekDB` varchar(100) NOT NULL, + `Kd_RekKD` varchar(250) NOT NULL, + `Jenis` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_korolari_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_korolari_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_neraca_close` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kelompok` varchar(250) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_neraca_close_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_neraca_close_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_perangkat` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kode` varchar(100) NOT NULL, + `Nama_Perangkat` varchar(250) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_perangkat_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_perangkat_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_potongan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_Potongan` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_potongan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_potongan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_rek1` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Akun` varchar(100) NOT NULL, + `Nama_Akun` varchar(100) NOT NULL, + `NoLap` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_rek1_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_rek1_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_rek2` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Akun` varchar(100) NOT NULL, + `Kelompok` varchar(100) NOT NULL, + `Nama_Kelompok` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_rek2_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_rek2_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_rek3` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kelompok` varchar(100) NOT NULL, + `Jenis` varchar(100) NOT NULL, + `Nama_Jenis` varchar(100) NOT NULL, + `Formula` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_rek3_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_rek3_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_rek4` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Jenis` varchar(100) NOT NULL, + `Obyek` varchar(100) NOT NULL, + `Nama_Obyek` varchar(100) NOT NULL, + `Peraturan` varchar(250) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_rek4_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_rek4_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_sbu` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kode_SBU` varchar(100) NOT NULL, + `NoUrut_SBU` varchar(100) NOT NULL, + `Nama_SBU` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `Satuan` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_sbu_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_sbu_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ref_sumber` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kode` varchar(100) NOT NULL, + `Nama_Sumber` varchar(100) NOT NULL, + `Urut` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ref_sumber_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ref_sumber_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_anggaran` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `KdPosting` varchar(100) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `KURincianSD` varchar(100) NOT NULL, + `KD_Rincian` varchar(100) NOT NULL, + `RincianSD` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `AnggaranStlhPAK` varchar(100) NOT NULL, + `Belanja` varchar(100) NOT NULL, + `Kd_keg` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `TglPosting` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_anggaran_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_anggaran_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_anggaran_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `KdPosting` varchar(100) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_Perdes` varchar(100) NOT NULL, + `TglPosting` varchar(100) NOT NULL, + `UserID` varchar(50) NOT NULL, + `Kunci` varchar(100) NOT NULL, + `No_Perkades` varchar(100) DEFAULT NULL, + `Petugas` varchar(80) DEFAULT NULL, + `Tanggal` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_anggaran_log_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_anggaran_log_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_anggaran_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `KdPosting` varchar(100) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(100) NOT NULL, + `No_Urut` varchar(100) NOT NULL, + `Uraian` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `JmlSatuan` varchar(100) NOT NULL, + `HrgSatuan` varchar(100) NOT NULL, + `Satuan` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `JmlSatuanPAK` varchar(100) NOT NULL, + `HrgSatuanPAK` varchar(100) NOT NULL, + `AnggaranStlhPAK` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_anggaran_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_anggaran_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_bidang` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Bid` varchar(100) NOT NULL, + `Nama_Bidang` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_bidang_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_desa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Nm_Kades` varchar(100) NOT NULL, + `Jbt_Kades` varchar(100) NOT NULL, + `Nm_Sekdes` varchar(100) NOT NULL, + `NIP_Sekdes` varchar(100) NOT NULL, + `Jbt_Sekdes` varchar(100) NOT NULL, + `Nm_Kaur_Keu` varchar(100) NOT NULL, + `Jbt_Kaur_Keu` varchar(100) NOT NULL, + `Nm_Bendahara` varchar(100) NOT NULL, + `Jbt_Bendahara` varchar(100) NOT NULL, + `No_Perdes` varchar(100) NOT NULL, + `Tgl_Perdes` varchar(100) NOT NULL, + `No_Perdes_PB` varchar(100) NOT NULL, + `Tgl_Perdes_PB` varchar(100) NOT NULL, + `No_Perdes_PJ` varchar(100) NOT NULL, + `Tgl_Perdes_PJ` varchar(100) NOT NULL, + `Alamat` varchar(250) NOT NULL, + `Ibukota` varchar(100) NOT NULL, + `Status` varchar(100) NOT NULL, + `NPWP` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_desa_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_desa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_jurnal_umum` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `KdBuku` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Tanggal` varchar(100) NOT NULL, + `JnsBukti` varchar(100) NOT NULL, + `NoBukti` varchar(100) NOT NULL, + `Keterangan` varchar(100) NOT NULL, + `DK` varchar(100) NOT NULL, + `Debet` varchar(100) NOT NULL, + `Kredit` varchar(100) NOT NULL, + `Jenis` varchar(100) NOT NULL, + `Posted` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_jurnal_umum_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_jurnal_umum_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_jurnal_umum_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `NoBukti` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `RincianSD` varchar(100) NOT NULL, + `NoID` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Akun` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `DK` varchar(100) NOT NULL, + `Debet` varchar(100) NOT NULL, + `Kredit` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_jurnal_umum_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_jurnal_umum_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_kegiatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Bid` varchar(100) DEFAULT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `ID_Keg` varchar(100) NOT NULL, + `Nama_Kegiatan` varchar(100) NOT NULL, + `Pagu` varchar(100) NOT NULL, + `Pagu_PAK` varchar(100) NOT NULL, + `Nm_PPTKD` varchar(100) NOT NULL, + `NIP_PPTKD` varchar(100) NOT NULL, + `Lokasi` varchar(100) NOT NULL, + `Waktu` varchar(100) NOT NULL, + `Keluaran` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Jbt_PPTKD` varchar(100) DEFAULT NULL, + `Kd_Sub` varchar(30) DEFAULT NULL, + `Nilai` varchar(100) DEFAULT NULL, + `NilaiPAK` varchar(100) DEFAULT NULL, + `Satuan` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_kegiatan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_mutasi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `Keterangan` varchar(200) DEFAULT NULL, + `Kd_Bank` varchar(100) DEFAULT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Kd_Mutasi` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_mutasi_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_mutasi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_pajak` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SSP` varchar(100) NOT NULL, + `Tgl_SSP` varchar(100) NOT NULL, + `Keterangan` varchar(250) DEFAULT NULL, + `Nama_WP` varchar(100) NOT NULL, + `Alamat_WP` varchar(100) NOT NULL, + `NPWP` varchar(100) NOT NULL, + `Kd_MAP` varchar(100) NOT NULL, + `Nm_Penyetor` varchar(100) NOT NULL, + `Jn_Transaksi` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Jumlah` varchar(100) NOT NULL, + `KdBayar` varchar(100) NOT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + `NTPN` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_pajak_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_pajak_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_pajak_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SSP` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_pajak_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_pajak_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_pemda` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Prov` varchar(100) NOT NULL, + `Kd_Kab` varchar(100) NOT NULL, + `Nama_Pemda` varchar(100) NOT NULL, + `Nama_Provinsi` varchar(100) NOT NULL, + `Ibukota` varchar(100) NOT NULL, + `Alamat` varchar(100) NOT NULL, + `Nm_Bupati` varchar(100) NOT NULL, + `Jbt_Bupati` varchar(100) NOT NULL, + `Logo` mediumblob DEFAULT NULL, + `C_Kode` varchar(100) NOT NULL, + `C_Pemda` varchar(100) NOT NULL, + `C_Data` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_pemda_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_pemda_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_pencairan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_Cek` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Tgl_Cek` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Keterangan` varchar(250) DEFAULT NULL, + `Jumlah` varchar(100) NOT NULL, + `Potongan` varchar(100) NOT NULL, + `KdBayar` varchar(100) NOT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + `Kunci` varchar(10) DEFAULT NULL, + `No_Ref` varchar(100) DEFAULT NULL, + `Tgl_Bayar` varchar(100) DEFAULT NULL, + `Validasi` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_pencairan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_pencairan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_perangkat` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Jabatan` varchar(100) NOT NULL, + `No_ID` varchar(100) NOT NULL, + `Nama_Perangkat` varchar(100) NOT NULL, + `Alamat_Perangkat` varchar(100) NOT NULL, + `Nomor_HP` varchar(100) NOT NULL, + `Rek_Bank` varchar(100) NOT NULL, + `Nama_Bank` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_perangkat_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_perangkat_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rab` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `AnggaranStlhPAK` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rab_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rab_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rab_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(100) NOT NULL, + `No_Urut` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `Uraian` varchar(100) NOT NULL, + `Satuan` varchar(100) NOT NULL, + `JmlSatuan` varchar(100) NOT NULL, + `HrgSatuan` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `JmlSatuanPAK` varchar(100) NOT NULL, + `HrgSatuanPAK` varchar(100) NOT NULL, + `AnggaranStlhPAK` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `Kode_SBU` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rab_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rab_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rab_sub` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(100) NOT NULL, + `Nama_SubRinci` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `AnggaranStlhPAK` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rab_sub_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rab_sub_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_bidang` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Bid` varchar(100) NOT NULL, + `Nama_Bidang` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_bidang_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_bidang_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_kegiatan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Bid` varchar(100) DEFAULT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `ID_Keg` varchar(100) NOT NULL, + `Nama_Kegiatan` varchar(100) NOT NULL, + `Lokasi` varchar(100) NOT NULL, + `Keluaran` varchar(100) NOT NULL, + `Kd_Sas` varchar(100) NOT NULL, + `Sasaran` varchar(100) NOT NULL, + `Tahun1` varchar(100) NOT NULL, + `Tahun2` varchar(100) NOT NULL, + `Tahun3` varchar(100) NOT NULL, + `Tahun4` varchar(100) NOT NULL, + `Tahun5` varchar(100) NOT NULL, + `Tahun6` varchar(100) NOT NULL, + `Swakelola` varchar(100) NOT NULL, + `Kerjasama` varchar(100) NOT NULL, + `Pihak_Ketiga` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Kd_Sub` varchar(30) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_kegiatan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_kegiatan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_misi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `ID_Misi` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `ID_Visi` varchar(100) NOT NULL, + `No_Misi` varchar(100) NOT NULL, + `Uraian_Misi` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_misi_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_misi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_pagu_indikatif` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Sumber` varchar(100) NOT NULL, + `Tahun1` varchar(100) NOT NULL, + `Tahun2` varchar(100) NOT NULL, + `Tahun3` varchar(100) NOT NULL, + `Tahun4` varchar(100) NOT NULL, + `Tahun5` varchar(100) NOT NULL, + `Tahun6` varchar(100) NOT NULL, + `Pola` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_pagu_indikatif_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_pagu_indikatif_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_pagu_tahunan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Tahun` varchar(100) NOT NULL, + `Kd_Sumber` varchar(100) NOT NULL, + `Biaya` varchar(100) NOT NULL, + `Volume` varchar(100) NOT NULL, + `Satuan` varchar(100) NOT NULL, + `Lokasi_Spesifik` varchar(100) NOT NULL, + `Jml_Sas_Pria` varchar(100) NOT NULL, + `Jml_Sas_Wanita` varchar(100) NOT NULL, + `Jml_Sas_ARTM` varchar(100) NOT NULL, + `Waktu` varchar(100) NOT NULL, + `Mulai` varchar(100) NOT NULL, + `Selesai` varchar(100) NOT NULL, + `Pola_Kegiatan` varchar(100) NOT NULL, + `Pelaksana` varchar(100) NOT NULL, + `No_ID` varchar(20) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_pagu_tahunan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_pagu_tahunan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_sasaran` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `ID_Sasaran` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `ID_Tujuan` varchar(100) NOT NULL, + `No_Sasaran` varchar(100) NOT NULL, + `Uraian_Sasaran` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_sasaran_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_sasaran_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_tujuan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `ID_Tujuan` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `ID_Misi` varchar(100) NOT NULL, + `No_Tujuan` varchar(100) NOT NULL, + `Uraian_Tujuan` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_tujuan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_tujuan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_rpjm_visi` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `ID_Visi` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_Visi` varchar(100) NOT NULL, + `Uraian_Visi` varchar(250) DEFAULT NULL, + `TahunA` varchar(100) NOT NULL, + `TahunN` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_rpjm_visi_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_rpjm_visi_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_saldo_awal` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Jenis` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `Debet` varchar(100) NOT NULL, + `Kredit` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_saldo_awal_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_saldo_awal_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spj` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_SPJ` varchar(100) NOT NULL, + `Tgl_SPJ` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Keterangan` varchar(255) DEFAULT NULL, + `Jumlah` varchar(100) NOT NULL, + `Potongan` varchar(100) NOT NULL, + `Status` varchar(100) NOT NULL, + `Kunci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spj_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spj_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spj_bukti` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_SPJ` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Nm_Penerima` varchar(100) NOT NULL, + `Alamat` varchar(100) NOT NULL, + `Rek_Bank` varchar(100) NOT NULL, + `Nm_Bank` varchar(100) NOT NULL, + `NPWP` varchar(100) NOT NULL, + `Keterangan` varchar(250) DEFAULT NULL, + `Nilai` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + `Kd_Bank` varchar(100) DEFAULT NULL, + `Ref_Bayar` varchar(100) DEFAULT NULL, + `Tgl_Bayar` varchar(100) DEFAULT NULL, + `Validasi` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spj_bukti_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spj_bukti_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spj_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_SPJ` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `JmlCair` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `Alamat` varchar(100) DEFAULT NULL, + `Sisa` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spj_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spj_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spj_sisa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `No_SPJ` varchar(100) NOT NULL, + `Tgl_SPJ` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Tgl_SPP` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Keterangan` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spj_sisa_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spj_sisa_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spjpot` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPJ` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `Billing_Pajak` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spjpot_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spjpot_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spp` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Tgl_SPP` varchar(100) NOT NULL, + `Jn_SPP` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Keterangan` varchar(250) DEFAULT NULL, + `Jumlah` varchar(100) NOT NULL, + `Potongan` varchar(100) NOT NULL, + `Status` varchar(100) NOT NULL, + `F10` varchar(10) DEFAULT NULL, + `F11` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spp_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spp_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spp_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spp_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spp_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_sppbukti` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Sumberdana` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `Nm_Penerima` varchar(100) NOT NULL, + `Alamat` varchar(100) NOT NULL, + `Rek_Bank` varchar(100) NOT NULL, + `Nm_Bank` varchar(100) NOT NULL, + `NPWP` varchar(100) NOT NULL, + `Keterangan` varchar(200) DEFAULT NULL, + `Nilai` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + `Kd_Bank` varchar(100) DEFAULT NULL, + `Ref_Bayar` varchar(100) DEFAULT NULL, + `Tgl_Bayar` varchar(100) DEFAULT NULL, + `Validasi` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_sppbukti_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_sppbukti_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_spppot` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_SPP` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + `Billing_Pajak` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_spppot_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_spppot_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_sts` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Uraian` varchar(100) NOT NULL, + `NoRek_Bank` varchar(100) NOT NULL, + `Nama_Bank` varchar(100) NOT NULL, + `Jumlah` varchar(100) NOT NULL, + `Nm_Bendahara` varchar(100) NOT NULL, + `Jbt_Bendahara` varchar(100) NOT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_sts_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_sts_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_sts_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `No_TBP` varchar(100) NOT NULL, + `Uraian` varchar(100) NOT NULL, + `Nilai` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_sts_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_sts_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_tbp` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Tgl_Bukti` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Uraian` varchar(250) DEFAULT NULL, + `Nm_Penyetor` varchar(100) NOT NULL, + `Alamat_Penyetor` varchar(100) NOT NULL, + `TTD_Penyetor` varchar(100) NOT NULL, + `NoRek_Bank` varchar(100) NOT NULL, + `Nama_Bank` varchar(100) NOT NULL, + `Jumlah` varchar(100) NOT NULL, + `Nm_Bendahara` varchar(100) NOT NULL, + `Jbt_Bendahara` varchar(100) NOT NULL, + `Status` varchar(100) NOT NULL, + `KdBayar` varchar(100) NOT NULL, + `Ref_Bayar` varchar(100) NOT NULL, + `ID_Bank` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_tbp_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_tbp_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_tbp_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `No_Bukti` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `RincianSD` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `nilai` varchar(100) NOT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_tbp_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_tbp_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_triwulan` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `KURincianSD` varchar(100) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Sifat` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `Tw1Rinci` varchar(100) DEFAULT NULL, + `Tw2Rinci` varchar(100) DEFAULT NULL, + `Tw3Rinci` varchar(100) DEFAULT NULL, + `Tw4Rinci` varchar(100) DEFAULT NULL, + `KunciData` varchar(100) NOT NULL, + `Jan` varchar(100) DEFAULT NULL, + `Peb` varchar(100) DEFAULT NULL, + `Mar` varchar(100) DEFAULT NULL, + `Apr` varchar(100) DEFAULT NULL, + `Mei` varchar(100) DEFAULT NULL, + `Jun` varchar(100) DEFAULT NULL, + `Jul` varchar(100) DEFAULT NULL, + `Agt` varchar(100) DEFAULT NULL, + `Sep` varchar(100) DEFAULT NULL, + `Okt` varchar(100) DEFAULT NULL, + `Nop` varchar(100) DEFAULT NULL, + `Des` varchar(100) DEFAULT NULL, + `Kd_SubRinci` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_triwulan_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_triwulan_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `keuangan_ta_triwulan_rinci` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `id_keuangan_master` int(11) NOT NULL, + `KdPosting` varchar(100) NOT NULL, + `KURincianSD` varchar(100) NOT NULL, + `Tahun` varchar(100) NOT NULL, + `Sifat` varchar(100) NOT NULL, + `SumberDana` varchar(100) NOT NULL, + `Kd_Desa` varchar(100) NOT NULL, + `Kd_Keg` varchar(100) NOT NULL, + `Kd_Rincian` varchar(100) NOT NULL, + `Anggaran` varchar(100) NOT NULL, + `AnggaranPAK` varchar(100) NOT NULL, + `Tw1Rinci` varchar(100) DEFAULT NULL, + `Tw2Rinci` varchar(100) DEFAULT NULL, + `Tw3Rinci` varchar(100) DEFAULT NULL, + `Tw4Rinci` varchar(100) DEFAULT NULL, + `KunciData` varchar(100) NOT NULL, + `Jan` varchar(100) DEFAULT NULL, + `Peb` varchar(100) DEFAULT NULL, + `Mar` varchar(100) DEFAULT NULL, + `Apr` varchar(100) DEFAULT NULL, + `Mei` varchar(100) DEFAULT NULL, + `Jun` varchar(100) DEFAULT NULL, + `Jul` varchar(100) DEFAULT NULL, + `Agt` varchar(100) DEFAULT NULL, + `Sep` varchar(100) DEFAULT NULL, + `Okt` varchar(100) DEFAULT NULL, + `Nop` varchar(100) DEFAULT NULL, + `Des` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `id_keuangan_ta_triwulan_rinci_master_fk` (`id_keuangan_master`), + CONSTRAINT `id_keuangan_ta_triwulan_rinci_master_fk` FOREIGN KEY (`id_keuangan_master`) REFERENCES `keuangan_master` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `cdesa_penduduk` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `id_cdesa` int(5) unsigned NOT NULL, + `id_pend` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `id_cdesa` (`id_cdesa`), + CONSTRAINT `cdesa_penduduk_fk` FOREIGN KEY (`id_cdesa`) REFERENCES `cdesa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + DB::statement(" + CREATE TABLE `mutasi_cdesa` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `id_cdesa_masuk` int(5) unsigned DEFAULT NULL, + `cdesa_keluar` int(5) unsigned DEFAULT NULL, + `jenis_mutasi` tinyint(2) DEFAULT NULL, + `tanggal_mutasi` date DEFAULT NULL, + `keterangan` text DEFAULT NULL, + `id_persil` int(11) NOT NULL, + `no_bidang_persil` tinyint(3) DEFAULT NULL, + `luas` decimal(7,0) DEFAULT NULL, + `no_objek_pajak` varchar(30) DEFAULT NULL, + `path` text DEFAULT NULL, + `id_peta` int(60) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cdesa_mutasi_fk` (`id_cdesa_masuk`), + CONSTRAINT `cdesa_mutasi_fk` FOREIGN KEY (`id_cdesa_masuk`) REFERENCES `cdesa` (`id`) ON DELETE CASCADE ON UPDATE CASCADE + ); + "); + + log_message("error", "Jalankan " . __FUNCTION__); + } + + private function buat_view() + { + DB::statement('CREATE VIEW `daftar_grup` AS + select `a`.*, + (select count(`anggota_grup_kontak`.`id_kontak`) from `anggota_grup_kontak` where (`a`.`id_grup` = `anggota_grup_kontak`.`id_grup`)) AS `jumlah_anggota` + from `kontak_grup` `a`'); + + DB::statement( + "CREATE VIEW dokumen_hidup AS SELECT * FROM dokumen WHERE deleted <> 1" + ); + + DB::statement("CREATE VIEW keluarga_aktif AS SELECT k.* + FROM tweb_keluarga k + LEFT JOIN tweb_penduduk p ON k.nik_kepala = p.id + WHERE p.status_dasar = 1"); + + DB::statement("CREATE VIEW `master_inventaris` AS + SELECT 'inventaris_asset' AS asset, inventaris_asset.id, inventaris_asset.nama_barang, inventaris_asset.kode_barang, 'Baik' AS kondisi, inventaris_asset.keterangan, inventaris_asset.asal, inventaris_asset.tahun_pengadaan FROM inventaris_asset WHERE visible = 1 + UNION ALL SELECT 'inventaris_gedung' AS asset, inventaris_gedung.id, inventaris_gedung.nama_barang, inventaris_gedung.kode_barang, inventaris_gedung.kondisi_bangunan, inventaris_gedung.keterangan, inventaris_gedung.asal, YEAR( inventaris_gedung.tanggal_dokument) AS tahun_pengadaan FROM inventaris_gedung WHERE visible = 1 + UNION ALL SELECT 'inventaris_jalan' AS asset, inventaris_jalan.id, inventaris_jalan.nama_barang, inventaris_jalan.kode_barang, inventaris_jalan.kondisi, inventaris_jalan.keterangan, inventaris_jalan.asal, YEAR ( inventaris_jalan.tanggal_dokument ) AS tahun_pengadaan FROM inventaris_jalan WHERE visible = 1 + UNION ALL SELECT 'inventaris_peralatan' AS asset, inventaris_peralatan.id, inventaris_peralatan.nama_barang, inventaris_peralatan.kode_barang, 'Baik', inventaris_peralatan.keterangan, inventaris_peralatan.asal, inventaris_peralatan.tahun_pengadaan FROM inventaris_peralatan WHERE visible = 1"); + + DB::statement( + "CREATE VIEW penduduk_hidup AS SELECT * FROM tweb_penduduk WHERE status_dasar = 1" + ); + + DB::statement("CREATE VIEW `rekap_mutasi_inventaris` AS + SELECT 'inventaris_asset' AS asset, id_inventaris_asset, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_asset WHERE visible = 1 + UNION ALL SELECT 'inventaris_gedung', id_inventaris_gedung, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_gedung WHERE visible = 1 + UNION ALL SELECT 'inventaris_jalan', id_inventaris_jalan, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_jalan WHERE visible = 1 + UNION ALL SELECT 'inventaris_peralatan', id_inventaris_peralatan, status_mutasi, jenis_mutasi, tahun_mutasi, keterangan FROM mutasi_inventaris_peralatan WHERE visible = 1"); + + DB::statement("CREATE VIEW `daftar_kontak` AS + select `a`.`id_kontak` AS `id_kontak`,`a`.`id_pend` AS `id_pend`,`b`.`nama` AS `nama`,`a`.`no_hp` AS `no_hp`,(case when (`b`.`sex` = '1') then 'Laki-laki' else 'Perempuan' end) AS `sex`,`b`.`alamat_sekarang` AS `alamat_sekarang` + from (`kontak` `a` left join `tweb_penduduk` `b` on((`a`.`id_pend` = `b`.`id`)))"); + + DB::statement( + "CREATE VIEW `daftar_anggota_grup` AS select `a`.`id_grup_kontak` AS `id_grup_kontak`,`a`.`id_grup` AS `id_grup`,`c`.`nama_grup` AS `nama_grup`,`b`.`id_kontak` AS `id_kontak`,`b`.`nama` AS `nama`,`b`.`no_hp` AS `no_hp`,`b`.`sex` AS `sex`,`b`.`alamat_sekarang` AS `alamat_sekarang` from ((`anggota_grup_kontak` `a` left join `daftar_kontak` `b` on((`a`.`id_kontak` = `b`.`id_kontak`))) left join `kontak_grup` `c` on((`a`.`id_grup` = `c`.`id_grup`)))" + ); + + log_message("error", "Jalankan " . __FUNCTION__); + } +} diff --git a/donjo-app/models/seeders/Seeder.php b/donjo-app/models/seeders/Seeder.php index 964d991a1e..0202b581c9 100644 --- a/donjo-app/models/seeders/Seeder.php +++ b/donjo-app/models/seeders/Seeder.php @@ -80,7 +80,7 @@ public function run() $this->load->database(); $this->load->model('database_model'); $this->database_model->impor_data_awal_analisis(); - $this->database_model->cek_migrasi(true); + $this->database_model->cek_migrasi(); $this->load->model('config_model'); $this->config_model->isi_config(); } diff --git a/donjo-app/views/analisis_master/import.php b/donjo-app/views/analisis_master/import.php index 7fd0375d69..296ba2e5d1 100644 --- a/donjo-app/views/analisis_master/import.php +++ b/donjo-app/views/analisis_master/import.php @@ -1,50 +1,24 @@ - -
      - + +
      +load->view('global/validasi_form'); ?> diff --git a/donjo-app/views/analisis_respon/import/data_unduh.php b/donjo-app/views/analisis_respon/import/data_unduh.php index dc4fa3035c..ce8d237e06 100644 --- a/donjo-app/views/analisis_respon/import/data_unduh.php +++ b/donjo-app/views/analisis_respon/import/data_unduh.php @@ -158,9 +158,9 @@ foreach ($data['par'] as $jawab): if ($pt['id'] == $jawab['id_indikator'] && $false == 0): if ($pt['id_tipe'] == 1): - $isi = $jawab['kode_jawaban']; + $isi = ($tipe == 1) ? $jawab['jawaban'] : $jawab['kode_jawaban']; elseif ($pt['id_tipe'] == 2 && $pt['is_teks'] == 0): - $isi .= $jawab['kode_jawaban'] . ','; + $isi .= ($tipe == 1) ? $jawab['jawaban'] : $jawab['kode_jawaban'] . ','; elseif ($pt['id_tipe'] == 2 && $pt['is_teks'] == 1): $isi .= $jawab['jawaban'] . ','; else: diff --git a/donjo-app/views/bumindes/pembangunan/tanah_di_desa/form_tanah_di_desa.php b/donjo-app/views/bumindes/pembangunan/tanah_di_desa/form_tanah_di_desa.php index 1585fa7c5e..21ab7f2a2f 100644 --- a/donjo-app/views/bumindes/pembangunan/tanah_di_desa/form_tanah_di_desa.php +++ b/donjo-app/views/bumindes/pembangunan/tanah_di_desa/form_tanah_di_desa.php @@ -464,14 +464,13 @@ class="fa fa-check"> Simpan $("#lain_lain").attr("disabled", true); $("#mutasi").attr("disabled", true); $("#keterangan").attr("disabled", true); - $('#nik_penduduk').hide(); $('#pilihan_penduduk').hide(); $('#pilihan_pemilik').hide(); $('#form_footer').hide(); } else { - pilih_pemilik((jenis_pemilik ?: 1?> )) + pilih_pemilik('jenis_pemilik ?? 1 ?>'); } }); diff --git a/donjo-app/views/bumindes/pembangunan/tanah_kas_desa/form_tanah_kas_desa.php b/donjo-app/views/bumindes/pembangunan/tanah_kas_desa/form_tanah_kas_desa.php index 92cac9a5ff..89841c7f29 100644 --- a/donjo-app/views/bumindes/pembangunan/tanah_kas_desa/form_tanah_kas_desa.php +++ b/donjo-app/views/bumindes/pembangunan/tanah_kas_desa/form_tanah_kas_desa.php @@ -44,544 +44,553 @@ ?>
      -
      -
      -
      - -
      -
      -
      - -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      - -
      -
      -
      -

      Pilih Asal Tanah

      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      - - M2 -
      -
      -
      -
      -
      -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      - -
      - -
      -
      -
      -
      -
      - -
      -
      -
      +
      +
      +
      + +
      +
      +
      + +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      +
      + luas, true, 'disabled') ?>/> + M2 +
      +
      +
      +
      > +
      +
      + +
      +
      + +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      + +
      +
      +
      + +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      + +
      +
      +
      + +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      + +
      +
      + + M2 +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      + +
      + +
      +
      +
      +
      +
      + +
      +
      +
      \ No newline at end of file diff --git a/donjo-app/views/covid19/unduh.php b/donjo-app/views/covid19/unduh.php index 6394954784..b2b6c1814d 100644 --- a/donjo-app/views/covid19/unduh.php +++ b/donjo-app/views/covid19/unduh.php @@ -1,43 +1,43 @@ -load->view('data_persil/c_desa_cetak'); +load->view('data_persil/c_desa_cetak'); diff --git a/donjo-app/views/database/backup.php b/donjo-app/views/database/backup.php index 4847475f19..d588236b66 100644 --- a/donjo-app/views/database/backup.php +++ b/donjo-app/views/database/backup.php @@ -44,20 +44,20 @@
      - - - + + +
      @@ -133,37 +133,37 @@ e.preventDefault(); var lokasi; Swal.fire({ - title: 'Backup Inkremental', - text: "Backup Inkremental membutuhkan resource yang besar dan membuat akses ke aplikasi menjadi lambat. Disarankan menjalankan backup Inkremental disaat aplikasi tidak di akses.", - footer: `
      Backup Inkremental akan berjalan di belakang layar dan tidak bisa dibatalkan sampai proses selesai
      `, - icon: "warning", - showCancelButton: true, - confirmButtonText: 'Lanjutkan', + title: 'Backup Inkremental', + text: "Backup Inkremental membutuhkan resource yang besar dan membuat akses ke aplikasi menjadi lambat. Disarankan menjalankan backup Inkremental disaat aplikasi tidak di akses.", + footer: `
      Backup Inkremental akan berjalan di belakang layar dan tidak bisa dibatalkan sampai proses selesai
      `, + icon: "warning", + showCancelButton: true, + confirmButtonText: 'Lanjutkan', }).then((result) => { /* Read more about isConfirmed, isDenied below */ if (result.isConfirmed) { - Swal.fire({ - title: 'Lokasi Simpan', - showDenyButton: true, - showCancelButton: false, - confirmButtonText: 'Temporary folder', - denyButtonText: `Backup folder`, - footer: ` -
      -
        -
      • Temporary folder : file backup akan terhapus otomatis oleh sistem
      • -
      • folder backup : file backup akan disimpan di dalam folder backup_inkremental dan tidak akan dihapus oleh sistem.
      • -
      -
      - `, + Swal.fire({ + title: 'Lokasi Simpan', + showDenyButton: true, + showCancelButton: false, + confirmButtonText: 'Temporary folder', + denyButtonText: `Backup folder`, + footer: ` +
      +
        +
      • Temporary folder : file backup akan terhapus otomatis oleh sistem
      • +
      • folder backup : file backup akan disimpan di dalam folder backup_inkremental dan tidak akan dihapus oleh sistem.
      • +
      +
      + `, }).then((result) => { - if (result.isConfirmed) { - backup('null') - } else if (result.isDenied) { - backup('backup') - }else{ - return; - } + if (result.isConfirmed) { + backup('null') + } else if (result.isDenied) { + backup('backup') + }else{ + return; + } }) }else{ return; diff --git a/donjo-app/views/dokumen/form.php b/donjo-app/views/dokumen/form.php index 3ff308eb6c..4347d9d6a3 100644 --- a/donjo-app/views/dokumen/form.php +++ b/donjo-app/views/dokumen/form.php @@ -32,12 +32,6 @@ -
      - -
      - -
      -
      diff --git a/donjo-app/views/dpt/dpt_unduh.php b/donjo-app/views/dpt/dpt_unduh.php index 389131017f..3036c2c3c0 100644 --- a/donjo-app/views/dpt/dpt_unduh.php +++ b/donjo-app/views/dpt/dpt_unduh.php @@ -1,43 +1,43 @@ - + + @@ -42,9 +44,10 @@ } - + + setting->tampilan_anjungan == 1 && ! empty($this->setting->tampilan_anjungan_slider)) : ?> @@ -234,8 +237,10 @@ + + diff --git a/donjo-app/views/fmandiri/template.php b/donjo-app/views/fmandiri/template.php index 7eca5777ee..b4a0cee685 100644 --- a/donjo-app/views/fmandiri/template.php +++ b/donjo-app/views/fmandiri/template.php @@ -73,8 +73,10 @@ + + controller == 'lapak') : ?> @@ -360,7 +362,9 @@ }); + + \ No newline at end of file diff --git a/donjo-app/views/footer.php b/donjo-app/views/footer.php index 49ee0b1d3f..4c019d7a55 100644 --- a/donjo-app/views/footer.php +++ b/donjo-app/views/footer.php @@ -71,6 +71,12 @@ + diff --git a/donjo-app/views/inventaris/laporan/inventaris_print_mutasi.php b/donjo-app/views/inventaris/laporan/inventaris_print_mutasi.php index 36f30e201d..852db4eba0 100644 --- a/donjo-app/views/inventaris/laporan/inventaris_print_mutasi.php +++ b/donjo-app/views/inventaris/laporan/inventaris_print_mutasi.php @@ -4,16 +4,18 @@ + +
      + +