diff --git a/app/Controllers/Kewilayahan/Kytp.php b/app/Controllers/Kewilayahan/Kytp.php index 625d9b53..38273550 100644 --- a/app/Controllers/Kewilayahan/Kytp.php +++ b/app/Controllers/Kewilayahan/Kytp.php @@ -18,9 +18,7 @@ class Kytp extends Controller use ResponseTrait; public function index() { - $db = \Config\Database::connect(); - // $data['all_propinsi'] = $db->table('KPDL_V_BATAS_DESA')->select('ADM1_PCODE, ADM1_EN')->distinct()->get()->getResult() ; - // dd($data['all_propinsi']); + $db = \Config\Database::connect(); $data = []; if (session('isLogin')) { echo view('inc/head'); @@ -35,9 +33,15 @@ class Kytp extends Controller public function graph_matoa() { + $opsiWilZona = $this->request->getPost('opsiWilZona') ?? null; + if (!in_array($opsiWilZona, ['wilayah', 'zona', ''])) { + $dataReturn['poi_agg'] = []; + $dataReturn['kpdl_agg'] = []; + } else { - $dataReturn['poi_agg'] = $this->get_poi_agg(); - $dataReturn['kpdl_agg'] = $this->get_kpdl_agg(); + $dataReturn['poi_agg'] = $this->get_poi_agg(); + $dataReturn['kpdl_agg'] = $this->get_kpdl_agg(); + } return json_encode($dataReturn); } diff --git a/app/Controllers/Kewilayahan/Ref.php b/app/Controllers/Kewilayahan/Ref.php index 168c4a06..2875c72d 100644 --- a/app/Controllers/Kewilayahan/Ref.php +++ b/app/Controllers/Kewilayahan/Ref.php @@ -110,13 +110,13 @@ class Ref extends Controller public function zpzp() { $db = \Config\Database::connect(); - $kpp = $this->request->getGet('kpp'); - $seksi = $this->request->getGet('seksi'); - $ar = $this->request->getGet('ar'); + $kpp = $this->request->getPost('kpp'); + $seksi = $this->request->getPost('seksi'); + $ar = $this->request->getPost('ar'); $data = $db->table('KPDL_ZP_NAS_DIFF') ->select("OGC_FID as value, NO_URUT || '-' || ATTRIBUTE1 as label") ->distinct() - ->whereIn('KD_KPP', $kpp) + ->where('KD_KPP', $kpp) ->whereIn('KD_UNIT_OR', $seksi) ->whereIn('NIP_AR', $ar) ->orderBy('LABEL')->get()->getResult(); @@ -128,6 +128,108 @@ class Ref extends Controller return json_encode(($data)); } + public function kanwilPratama() + { + + $db = \Config\Database::connect(); + $data = $db->table('DIM_KANTOR') + ->select('KD_KANWIL as value, NM_KANTOR as label') + ->where('ID_JNS_KANTOR', 23) + ->orderBy('NM_KANTOR')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } + + public function kppPratama() + { + $kanwil = $this->request->getGet('kanwil'); + $db = \Config\Database::connect(); + $data = $db->table('DIM_KANTOR') + ->select('KD_KPP as value, NM_KANTOR as label') + ->where('KD_KANWIL', $kanwil) + ->where('ID_JNS_KANTOR', 24) + ->orderBy('NM_KANTOR')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } + + public function kanwil() + { + + $db = \Config\Database::connect(); + $data = $db->table('DIM_KANTOR') + ->select('KD_KANWIL as value, NM_KANTOR as label') + ->whereIn('ID_JNS_KANTOR', [21, 23]) + ->orderBy('NM_KANTOR')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } + + public function kpp() + { + $kanwil = $this->request->getGet('kanwil'); + $db = \Config\Database::connect(); + $data = $db->table('DIM_KANTOR') + ->select('KD_KPP as value, NM_KANTOR as label') + ->where('KD_KANWIL', $kanwil) + ->whereIn('ID_JNS_KANTOR', [22, 24]) + ->orderBy('NM_KANTOR')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } + + public function seksi() + { + $kpp = $this->request->getGet('kpp'); + $db = \Config\Database::connect(); + $data = $db->table('PEGAWAI')->distinct() + ->select('KD_UNIT_ORGANISASI as value, NAMA_UNIT_ES4 as label') + ->where('KPPADM', $kpp) + ->where('NAMA_JABATAN', "Account Representative") + ->orderBy('NAMA_UNIT_ES4')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } + + public function ar() + { + $kpp = $this->request->getPost('kpp'); + $kd_unit_organisasi = $this->request->getPost('seksi'); + $db = \Config\Database::connect(); + $data = $db->table('PEGAWAI')->distinct() + + ->select('NIP9 as value, NAMA as label') + ->where('KPPADM', $kpp) + ->whereIn('KD_UNIT_ORGANISASI', $kd_unit_organisasi) + ->where('NAMA_JABATAN', "Account Representative") + ->orderBy('NAMA')->get()->getResult(); + + foreach ($data as $key => $val) { + $val->value = $val->value; + } + + return json_encode($data); + } public function change_case($arr) { return array_change_key_case($arr, CASE_LOWER); diff --git a/app/Controllers/Kewilayahan/Sebaran/Identifikasi.php b/app/Controllers/Kewilayahan/Sebaran/Identifikasi.php index 4ed131bd..847bbde9 100644 --- a/app/Controllers/Kewilayahan/Sebaran/Identifikasi.php +++ b/app/Controllers/Kewilayahan/Sebaran/Identifikasi.php @@ -6,9 +6,11 @@ class Identifikasi extends \App\Controllers\Kewilayahan\Kytp { protected function data($request) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); @@ -23,6 +25,14 @@ class Identifikasi extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $npwp->get()->getResult(); $ret = []; diff --git a/app/Controllers/Kewilayahan/Sebaran/IdentifikasiLapangan.php b/app/Controllers/Kewilayahan/Sebaran/IdentifikasiLapangan.php index e1c72cae..d2ed84ba 100644 --- a/app/Controllers/Kewilayahan/Sebaran/IdentifikasiLapangan.php +++ b/app/Controllers/Kewilayahan/Sebaran/IdentifikasiLapangan.php @@ -9,9 +9,11 @@ class IdentifikasiLapangan extends \App\Controllers\Kewilayahan\Kytp protected function dataKpdl($request, $bulan) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); $KpdlLibrary = new KpdlLibrary; @@ -30,6 +32,13 @@ class IdentifikasiLapangan extends \App\Controllers\Kewilayahan\Kytp if ($opsiWilZona == 'zona') { $npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('NIP_PEREKAM', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } $npwp = $npwp->getCompiledSelect(); @@ -60,6 +69,15 @@ class IdentifikasiLapangan extends \App\Controllers\Kewilayahan\Kytp if ($opsiWilZona == 'zona') { $data = $data->whereIn('ID_POLY_ZONA', $id_poly_zona); } + + if ($opsiWilZona == 'perekam') { + $data = $data->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $data = $data->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $data->getCompiledSelect(); $dataRet = $db->newQuery() diff --git a/app/Controllers/Kewilayahan/Sebaran/JenisStatus.php b/app/Controllers/Kewilayahan/Sebaran/JenisStatus.php index 9f800870..23573d91 100644 --- a/app/Controllers/Kewilayahan/Sebaran/JenisStatus.php +++ b/app/Controllers/Kewilayahan/Sebaran/JenisStatus.php @@ -6,9 +6,11 @@ class JenisStatus extends \App\Controllers\Kewilayahan\Kytp { protected function data($request, $jenisOrStatus) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); @@ -37,6 +39,14 @@ class JenisStatus extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $npwp->get()->getResult(); $ret = []; diff --git a/app/Controllers/Kewilayahan/Sebaran/KLU.php b/app/Controllers/Kewilayahan/Sebaran/KLU.php index b37e326f..2922d8d1 100644 --- a/app/Controllers/Kewilayahan/Sebaran/KLU.php +++ b/app/Controllers/Kewilayahan/Sebaran/KLU.php @@ -6,9 +6,11 @@ class KLU extends \App\Controllers\Kewilayahan\Kytp { protected function data($request, $jenischart) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); $npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A')->select('NPWP, KD_GOLPOK, NM_GOLPOK, JUMLAH_PEMBAYARAN_THN_TERAKHIR')->distinct() @@ -26,6 +28,14 @@ class KLU extends \App\Controllers\Kewilayahan\Kytp $npwp = $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $agg = "count(1) as JML"; if ($jenischart == 'dataRupiahBayar') { $agg = "SUM(JUMLAH_PEMBAYARAN_THN_TERAKHIR) as JML"; diff --git a/app/Controllers/Kewilayahan/Sebaran/PayComp.php b/app/Controllers/Kewilayahan/Sebaran/PayComp.php index 79928af3..a663735e 100644 --- a/app/Controllers/Kewilayahan/Sebaran/PayComp.php +++ b/app/Controllers/Kewilayahan/Sebaran/PayComp.php @@ -8,9 +8,11 @@ class PayComp extends \App\Controllers\Kewilayahan\Kytp { protected function dataC($request, $tahun, $bulan) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); //npwp @@ -24,6 +26,14 @@ class PayComp extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $db->newQuery() ->select("'" . $tahun . '-' . $bulan . "' AS THN_BLN, B.JML|| ' bulan' as KETERANGAN, COUNT(1) AS Y", false) ->fromSubquery($npwp, 'A') diff --git a/app/Controllers/Kewilayahan/Sebaran/Pembayaran.php b/app/Controllers/Kewilayahan/Sebaran/Pembayaran.php index 6225da84..d3998df7 100644 --- a/app/Controllers/Kewilayahan/Sebaran/Pembayaran.php +++ b/app/Controllers/Kewilayahan/Sebaran/Pembayaran.php @@ -8,17 +8,11 @@ class Pembayaran extends \App\Controllers\Kewilayahan\Kytp { protected function dataC($request, $tahun, $bulan) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; - // $tahun = $this->request->getPost('tahun') ?? date('Y'); - // $bulan = $this->request->getPost('bulan') ?? date('m'); - - // $opsiWilZona = ''; - // $adm4_pcode = ''; - // $id_poly_zona = ''; - // $tahun = date('Y'); - // $bulan = date('m'); + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); //npwp @@ -32,6 +26,14 @@ class Pembayaran extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $db->newQuery() ->select("'" . $tahun . '-' . $bulan . "' AS THN_BLN, NVL(WARNA_BYR, 'black') WARNA_BYR, COUNT(1) AS Y") ->fromSubquery($npwp, 'A') diff --git a/app/Controllers/Kewilayahan/Sebaran/Pengampu.php b/app/Controllers/Kewilayahan/Sebaran/Pengampu.php index 4f78de5f..0a74f9ab 100644 --- a/app/Controllers/Kewilayahan/Sebaran/Pengampu.php +++ b/app/Controllers/Kewilayahan/Sebaran/Pengampu.php @@ -7,21 +7,24 @@ class Pengampu extends \App\Controllers\Kewilayahan\Kytp protected function data($request, $jenis) { ini_set('max_input_vars', 3000); - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); - $npwp = $db->table('KPDL_MV_LOKASI_SUBJEK')->select("NM_KANTOR_PENGAMPU, count(1) JML", false) + $npwp = $db->table('KPDL_MV_LOKASI_SUBJEK')->select("NM_KANTOR_PENGAMPU, count(DISTINCT NPWP) JML", false) ->groupBy("NM_KANTOR_PENGAMPU")->orderBy("JML", 'desc'); switch ($jenis) { case 'assign': - + $npwp = $npwp->where("NPWP IS NOT NULL"); break; case 'unassign': - $npwp = $npwp->where("NM_KANTOR_PENGAMPU", "NPWP TIDAK DITEMUKAN"); + $npwp = $npwp->where("NPWP IS NOT NULL") + ->where("NIP_AR_PENGAMPU IS NULL"); break; default: @@ -36,6 +39,14 @@ class Pengampu extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $npwp->get()->getResult(); $ret = []; diff --git a/app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php b/app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php index 654cc096..34e0258b 100644 --- a/app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php +++ b/app/Controllers/Kewilayahan/Sebaran/SPTTAhunan.php @@ -6,9 +6,11 @@ class SPTTAhunan extends \App\Controllers\Kewilayahan\Kytp { protected function data($request, $tahun) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); $npwp = $db->table('KPDL_MV_LOKASI_SUBJEK A')->select('NPWP, B.KETERANGAN')->distinct() @@ -23,6 +25,14 @@ class SPTTAhunan extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $data = $db->newQuery() ->fromSubquery($npwp, "A") ->select("KETERANGAN, count(1) as JML") diff --git a/app/Controllers/Kewilayahan/Sebaran/Sof.php b/app/Controllers/Kewilayahan/Sebaran/Sof.php index 90a2abb9..02959bff 100644 --- a/app/Controllers/Kewilayahan/Sebaran/Sof.php +++ b/app/Controllers/Kewilayahan/Sebaran/Sof.php @@ -8,9 +8,11 @@ class Sof extends \App\Controllers\Kewilayahan\Kytp { protected function dataC($request, $tahun, $bulan) { - $opsiWilZona = $request->getPost('opsiWilZona'); - $adm4_pcode = $request->getPost('adm4_pcode') ?? []; - $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $opsiWilZona = $request->getPost('opsiWilZona'); + $adm4_pcode = $request->getPost('adm4_pcode') ?? []; + $id_poly_zona = $request->getPost('id_poly_zona') ?? []; + $nip_ar_perekam = $request->getPost('nip_ar_perekam') ?? []; + $nip_ar_pengampu = $request->getPost('nip_ar_pengampu') ?? []; $db = \Config\Database::connect(); //npwp @@ -24,6 +26,14 @@ class Sof extends \App\Controllers\Kewilayahan\Kytp $npwp->whereIn('ID_POLY_ZONA', $id_poly_zona); } + if ($opsiWilZona == 'perekam') { + $npwp = $npwp->whereIn('CREATED_BY', $nip_ar_perekam); + } + + if ($opsiWilZona == 'pengampu') { + $npwp = $npwp->whereIn('NIP_AR_PENGAMPU', $nip_ar_pengampu); + } + $sqlBulanIni = $db->newQuery() ->select("'" . $tahun . '-' . $bulan . "' AS THN_BLN, B.LAPISAN, count(1) JML", false) ->fromSubquery($npwp, 'A') diff --git a/app/Views/inc/navbar.php b/app/Views/inc/navbar.php index ec4fe61f..4fbce46e 100644 --- a/app/Views/inc/navbar.php +++ b/app/Views/inc/navbar.php @@ -8,7 +8,7 @@ -
0&&n p+d&&(g=p+d),b 0:a.length)||!u),o=n||this.getExtremesFromAll||this.options.getExtremesFromAll||this.cropped||!p||(S[l+m]||i)>=x&&(S[l-m]||i)<=y,r&&o)if(s=a.length)for(;s--;)I(a[s])&&(d[w++]=a[s]);else d[w++]=a;let E={activeYData:d,dataMin:v(d),dataMax:b(d)};return P(this,"afterGetExtremes",{dataExtremes:E}),E}applyExtremes(){let t=this.getExtremes();return this.dataMin=t.dataMin,this.dataMax=t.dataMax,t}getFirstValidPoint(t,n=0,e=1){let r=t.length,o=n;for(;o>=0&&o p?i-p:y-(o?p:0)),m(r.options.pointWidth)&&(T-=Math.round(((O=A=Math.ceil(r.options.pointWidth))-u)/2)),e.centerInCategory&&!e.stacking&&(T=t.adjustForMissingColumns(T,O,r,d)),r.barX=T,r.pointWidth=O,r.tooltipPos=n.inverted?[c(l.len+l.pos-n.plotLeft-S,l.pos-n.plotLeft,l.len+l.pos-n.plotLeft),a.len+a.pos-n.plotTop-T-A/2,C]:[a.left-n.plotLeft+T+A/2,c(S+l.pos-n.plotTop,l.pos-n.plotTop,l.len+l.pos-n.plotTop),C],r.shapeType=t.pointClass.prototype.shapeType||"roundedRect",r.shapeArgs=t.crispCol(T,r.isNull?y:E,A,r.isNull?0:C)})),h(this,"afterColumnTranslate")}drawGraph(){this.group[this.dense?"addClass":"removeClass"]("highcharts-dense-data")}pointAttribs(t,n){let e,r,o,i=this.options,a=this.pointAttrToOptions||{},l=a.stroke||"borderColor",p=a["stroke-width"]||"borderWidth",c=t&&t.color||this.color,d=t&&t[l]||i[l]||c,m=t&&t.options.dashStyle||i.dashStyle,u=t&&t[p]||i[p]||this[p]||0,h=v(t&&t.opacity,i.opacity,1);t&&this.zones.length&&(r=t.getZone(),c=t.options.color||r&&(r.color||t.nonZonedColor)||this.color,r&&(d=r.borderColor||d,m=r.dashStyle||m,u=r.borderWidth||u)),n&&t&&(o=(e=b(i.states[n],t.options.states&&t.options.states[n]||{})).brightness,c=e.color||void 0!==o&&s(c).brighten(e.brightness).get()||c,d=e[l]||d,u=e[p]||u,m=e.dashStyle||m,h=v(e.opacity,h));let f={fill:c,stroke:d,"stroke-width":u,opacity:h};return m&&(f.dashstyle=m),f}drawPoints(t=this.points){let n,e=this,r=this.chart,o=e.options,i=r.renderer,a=o.animationLimit||250;t.forEach((function(t){let l=t.plotY,s=t.graphic,p=!!s,c=s&&r.pointCountt?.enabled))}function e(t,n,e,r,o){let{chart:i,enabledDataSorting:s}=this,p=this.isCartesian&&i.inverted,c=t.plotX,m=t.plotY,h=e.rotation||0,f=a(c)&&a(m)&&i.isInsidePlot(c,Math.round(m),{inverted:p,paneCoordinates:!0,series:this}),g=0===h&&"justify"===u(e.overflow,s?"none":"justify"),b=this.visible&&!1!==t.visible&&a(c)&&(t.series.forceDL||s&&!g||f||u(e.inside,!!this.options.stacking)&&r&&i.isInsidePlot(c,p?r.x+1:r.y+r.height-1,{inverted:p,paneCoordinates:!0,series:this})),v=t.pos();if(b&&v){var x;let a=n.getBBox(),c=n.getBBox(void 0,0),m={right:1,center:.5}[e.align||0]||0,y={bottom:1,middle:.5}[e.verticalAlign||0]||0;if(r=l({x:v[0],y:Math.round(v[1]),width:0,height:0},r||{}),"plotEdges"===e.alignTo&&this.isCartesian&&(r[p?"x":"y"]=0,r[p?"width":"height"]=this.yAxis?.len||0),l(e,{width:a.width,height:a.height}),x=r,s&&this.xAxis&&!g&&this.setDataLabelStartPos(t,n,o,f,x),n.align(d(e,{width:c.width,height:c.height}),!1,r,!1),n.alignAttr.x+=m*(c.width-a.width),n.alignAttr.y+=y*(c.height-a.height),n[n.placed?"animate":"attr"]({x:n.alignAttr.x+(a.width-c.width)/2,y:n.alignAttr.y+(a.height-c.height)/2,rotationOriginX:(n.width||0)/2,rotationOriginY:(n.height||0)/2}),g&&r.height>=0)this.justifyDataLabel(n,e,n.alignAttr,a,r,o);else if(u(e.crop,!0)){let{x:t,y:e}=n.alignAttr;b=i.isInsidePlot(t,e,{paneCoordinates:!0,series:this})&&i.isInsidePlot(t+a.width-1,e+a.height-1,{paneCoordinates:!0,series:this})}e.shape&&!h&&n[o?"attr":"animate"]({anchorX:v[0],anchorY:v[1]})}o&&s&&(n.placed=!1),b||s&&!g?(n.show(),n.placed=!0):(n.hide(),n.placed=!1)}function r(){return this.plotGroup("dataLabelsGroup","data-labels",this.hasRendered?"inherit":"hidden",this.options.dataLabels.zIndex||6)}function g(t){let n=this.hasRendered||0,e=this.initDataLabelsGroup().attr({opacity:+n});return!n&&e&&(this.visible&&e.show(),this.options.animation?e.animate({opacity:1},t):e.attr({opacity:1})),e}function b(t){let n;t=t||this.points;let e=this,r=e.chart,l=e.options,p=r.renderer,{backgroundColor:d,plotBackgroundColor:g}=r.options.chart,b=p.getContrast(c(g)&&g||c(d)&&d||"#000000"),v=y(e),{animation:w,defer:k}=v[0],S=k?o(r,w,e):{defer:0,duration:0};s(this,"drawDataLabels"),e.hasDataLabels?.()&&(n=this.initDataLabels(S),t.forEach((t=>{let o=t.dataLabels||[];f(x(v,t.dlOptions||t.options?.dataLabels)).forEach(((d,f)=>{let g,v,x,y,w,k=d.enabled&&(t.visible||t.dataLabelOnHidden)&&(!t.isNull||t.dataLabelOnNull)&&function(t,n){let e=n.filter;if(e){let n=e.operator,r=t[e.property],o=e.value;return">"===n&&r>o||"<"===n&&r (n.labelrank||0)-(t.labelrank||0)));for(let n=0;n {i(t,(t=>{t.label&&n.push(t.label)}))}));for(let e of t.series||[])if(e.visible&&e.hasDataLabels?.()){let r=e=>{for(let r of e)r.visible&&(r.dataLabels||[]).forEach((e=>{let o=e.options||{};e.labelrank=a(o.labelrank,r.labelrank,r.shapeArgs?.height),o.allowOverlap??Number(o.distance)>0?(e.oldOpacity=e.opacity,e.newOpacity=1,s(e,t)):n.push(e)}))};r(e.nodes||[]),r(e.points)}this.hideOverlappingLabels(n)}return{compose:function(t){let n=t.prototype;n.hideOverlappingLabels||(n.hideOverlappingLabels=l,r(t,"render",p))}}})),e(n,"Extensions/BorderRadius.js",[n["Core/Defaults.js"],n["Core/Globals.js"],n["Core/Utilities.js"]],(function(t,n,e){let{defaultOptions:r}=t,{noop:o}=n,{addEvent:i,extend:a,isObject:l,merge:s,relativeLength:p}=e,c={radius:0,scope:"stack",where:void 0},d=o,m=o;function u(t,n,e,r,o={}){let i=d(t,n,e,r,o),{innerR:a=0,r:l=e,start:s=0,end:c=0}=o;if(o.open||!o.borderRadius)return i;let m=c-s,u=Math.sin(m/2),h=Math.max(Math.min(p(o.borderRadius||0,l-a),(l-a)/2,l*u/(1+u)),0),f=Math.min(h,m/Math.PI*2*a),g=i.length-1;for(;g--;)!function(t,n,e){let r,o,i,a=t[n],l=t[n+1];if("Z"===l[0]&&(l=t[0]),"M"!==a[0]&&"L"!==a[0]||"A"!==l[0]?"A"===a[0]&&("M"===l[0]||"L"===l[0])&&(r=l,o=a):(r=a,o=l,i=!0),r&&o&&o.params){let a=o[1],l=o[5],s=o.params,{start:p,end:c,cx:d,cy:m}=s,u=l?a-e:a+e,h=u?Math.asin(e/u):0,f=l?h:-h,g=Math.cos(h)*u;i?(s.start=p+f,r[1]=d+g*Math.cos(p),r[2]=m+g*Math.sin(p),t.splice(n+1,0,["A",e,e,0,0,1,d+a*Math.cos(s.start),m+a*Math.sin(s.start)])):(s.end=c-f,o[6]=d+a*Math.cos(s.end),o[7]=m+a*Math.sin(s.end),t.splice(n+1,0,["A",e,e,0,0,1,d+g*Math.cos(c),m+g*Math.sin(c)])),o[4]=Math.abs(s.end-s.start)=0?w:0,k=k>=0?k:1),1===e.length&&(k=0),w===k)for(o=0;o{let r=L(e,t),o=L(e,n);return o
',pointFormat:"x: {point.x}
y: {point.y}
"}}})),e(n,"Series/Scatter/ScatterSeries.js",[n["Series/Scatter/ScatterSeriesDefaults.js"],n["Core/Series/SeriesRegistry.js"],n["Core/Utilities.js"]],(function(t,n,e){let{column:r,line:o}=n.seriesTypes,{addEvent:i,extend:a,merge:l}=e;class s extends o{applyJitter(){let t=this,n=this.options.jitter,e=this.points.length;n&&this.points.forEach((function(r,o){["x","y"].forEach((function(i,a){if(n[i]&&!r.isNull){let l=`plot${i.toUpperCase()}`,s=t[`${i}Axis`],p=n[i]*s.transA;if(s&&!s.logarithmic){let t=Math.max(0,(r[l]||0)-p),n=Math.min(s.len,(r[l]||0)+p);r[l]=t+(n-t)*function(t){let n=1e4*Math.sin(t);return n-Math.floor(n)}(o+a*e),"x"===i&&(r.clientX=r.plotX)}}}))}))}drawGraph(){this.options.lineWidth?super.drawGraph():this.graph&&(this.graph=this.graph.destroy())}}return s.defaultOptions=l(o.defaultOptions,t),a(s.prototype,{drawTracker:r.prototype.drawTracker,sorted:!1,requireSorting:!1,noSharedTooltip:!0,trackerGroups:["group","markerGroup","dataLabelsGroup"]}),i(s,"afterTranslate",(function(){this.applyJitter()})),n.registerSeriesType("scatter",s),s})),e(n,"Series/CenteredUtilities.js",[n["Core/Globals.js"],n["Core/Series/Series.js"],n["Core/Utilities.js"]],(function(t,n,e){var r,o;let{deg2rad:i}=t,{fireEvent:a,isNumber:l,pick:s,relativeLength:p}=e;return(o=r||(r={})).getCenter=function(){let t,e,r,o=this.options,i=this.chart,c=2*(o.slicedOffset||0),d=i.plotWidth-2*c,m=i.plotHeight-2*c,u=o.center,h=Math.min(d,m),f=o.thickness,g=o.size,b=o.innerSize||0;"string"==typeof g&&(g=parseFloat(g)),"string"==typeof b&&(b=parseFloat(b));let v=[s(u[0],"50%"),s(u[1],"50%"),s(g&&g<0?void 0:o.size,"100%"),s(b&&b<0?void 0:o.innerSize||0,"0%")];for(!i.angular||this instanceof n||(v[3]=0),e=0;e<4;++e)r=v[e],t=e<2||2===e&&/%$/.test(r),v[e]=p(r,[d,m,h,v[2]][e])+(t?c:0);return v[3]>v[2]&&(v[3]=v[2]),l(f)&&2*f-1&&(i[p]=!(a[p]=m))}}else u=ht(u===a?u.splice(b,u.length):u),o?o(null,a,u,s):f.apply(a,u)}))}function gt(t){for(var r,o,i,a=t.length,l=n.relative[t[0].type],s=l||n.relative[" "],p=l?1:0,d=mt((function(t){return t===r}),s,!0),m=mt((function(t){return c.call(r,t)>-1}),s,!0),u=[function(t,n,o){var i=!l&&(o||n!=e)||((r=n).nodeType?d(t,n,o):m(t,n,o));return r=null,i}];p1&&ut(u),p>1&&dt(t.slice(0,p-1).concat({value:" "===t[p-2].type?"*":""})).replace(j,"$1"),o,p0,i=t.length>0,a=function(a,l,p,c,m){var u,h,g,b=0,x="0",y=a&&[],w=[],k=e,S=a||i&&n.find.TAG("*",m),E=v+=null==k?1:Math.random()||.1,O=S.length;for(m&&(e=l==s||l||m);x!==O&&null!=(u=S[x]);x++){if(i&&u){for(h=0,l||u.ownerDocument==s||(st(u),p=!d);g=t[h++];)if(g(u,l||s,p)){f.call(c,u);break}m&&(v=E)}o&&((u=!g&&u)&&b--,a&&y.push(u))}if(b+=x,o&&x!==b){for(h=0;g=r[h++];)g(y,w,l,p);if(a){if(b>0)for(;x--;)y[x]||w[x]||(w[x]=A.call(c));w=ht(w)}f.apply(c,w),m&&!a&&w.length>0&&b+r.length>1&&C.uniqueSort(c)}return m&&(v=E,e=k),y};return o?nt(a):a}(a,i)),l.selector=t}return l}function vt(t,e,r,o){var i,a,l,s,p,c="function"==typeof t&&t,m=!o&&ct(t=c.selector||t);if(r=r||[],1===m.length){if((a=m[0]=m[0].slice(0)).length>2&&"ID"===(l=a[0]).type&&9===e.nodeType&&d&&n.relative[a[1].type]){if(!(e=(n.find.ID(l.matches[0].replace($,K),e)||[])[0]))return r;c&&(e=e.parentNode),t=t.slice(a.shift().value.length)}for(i=V.needsContext.test(t)?0:a.length;i--&&(l=a[i],!n.relative[s=l.type]);)if((p=n.find[s])&&(o=p(l.matches[0].replace($,K),Y.test(a[0].type)&<(e.parentNode)||e))){if(a.splice(i,1),!(t=o.length&&dt(a)))return f.apply(r,o),r;break}}return(c||bt(t,m))(o,e,!d,r,!e||Y.test(t)&<(e.parentNode)||e),r}pt.prototype=n.filters=n.pseudos,n.setFilters=new pt,g.sortStable=b.split("").sort(E).join("")===b,st(),g.sortDetached=et((function(t){return 1&t.compareDocumentPosition(s.createElement("fieldset"))})),C.find=J,C.expr[":"]=C.expr.pseudos,C.unique=C.uniqueSort,J.compile=bt,J.select=vt,J.setDocument=st,J.tokenize=ct,J.escape=C.escapeSelector,J.getText=C.text,J.isXML=C.isXMLDoc,J.selectors=C.expr,J.support=C.support,J.uniqueSort=C.uniqueSort}();var z=function(t,n,e){for(var r=[],o=void 0!==e;(t=t[n])&&9!==t.nodeType;)if(1===t.nodeType){if(o&&C(t).is(e))break;r.push(t)}return r},_=function(t,n){for(var e=[];t;t=t.nextSibling)1===t.nodeType&&t!==n&&e.push(t);return e},F=C.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function H(t,n,e){return b(n)?C.grep(t,(function(t,r){return!!n.call(t,r,t)!==e})):n.nodeType?C.grep(t,(function(t){return t===n!==e})):"string"!=typeof n?C.grep(t,(function(t){return c.call(n,t)>-1!==e})):C.filter(n,t,e)}C.filter=function(t,n,e){var r=n[0];return e&&(t=":not("+t+")"),1===n.length&&1===r.nodeType?C.find.matchesSelector(r,t)?[r]:[]:C.find.matches(t,C.grep(n,(function(t){return 1===t.nodeType})))},C.fn.extend({find:function(t){var n,e,r=this.length,o=this;if("string"!=typeof t)return this.pushStack(C(t).filter((function(){for(n=0;n1,null,!0)},removeData:function(t){return this.each((function(){st.remove(this,t)}))}}),C.extend({queue:function(t,n,e){var r;if(t)return n=(n||"fx")+"queue",r=lt.get(t,n),e&&(!r||Array.isArray(e)?r=lt.access(t,n,C.makeArray(e)):r.push(e)),r||[]},dequeue:function(t,n){n=n||"fx";var e=C.queue(t,n),r=e.length,o=e.shift(),i=C._queueHooks(t,n);"inprogress"===o&&(o=e.shift(),r--),o&&("fx"===n&&e.unshift("inprogress"),delete i.stop,o.call(t,(function(){C.dequeue(t,n)}),i)),!r&&i&&i.empty.fire()},_queueHooks:function(t,n){var e=n+"queueHooks";return lt.get(t,e)||lt.access(t,e,{empty:C.Callbacks("once memory").add((function(){lt.remove(t,[n+"queue",e])}))})}}),C.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length","
"],col:[2,"
"],tr:[2,"","
"],td:[3,"
"],_default:[0,"",""]};function Pt(t,n){var e;return e=void 0!==t.getElementsByTagName?t.getElementsByTagName(n||"*"):void 0!==t.querySelectorAll?t.querySelectorAll(n||"*"):[],void 0===n||n&&T(t,n)?C.merge([t],e):e}function Mt(t,n){for(var e=0,r=t.length;e"," -1:C.find(o,this,null,[p]).length),a[o]&&i.push(r);i.length&&l.push({elem:p,handlers:i})}return p=this,s-1)&&(e=!0);return e||(t.selectedIndex=-1),i}}}}),C.each(["radio","checkbox"],(function(){C.valHooks[this]={set:function(t,n){if(Array.isArray(n))return t.checked=C.inArray(C(t).val(),n)>-1}},g.checkOn||(C.valHooks[this].get=function(t){return null===t.getAttribute("value")?"on":t.value})}));var Mn=r.location,Ln={guid:Date.now()},jn=/\?/;C.parseXML=function(t){var n,e;if(!t||"string"!=typeof t)return null;try{n=(new r.DOMParser).parseFromString(t,"text/xml")}catch(t){}return e=n&&n.getElementsByTagName("parsererror")[0],n&&!e||C.error("Invalid XML: "+(e?C.map(e.childNodes,(function(t){return t.textContent})).join("\n"):t)),n};var Nn=/^(?:focusinfocus|focusoutblur)$/,In=function(t){t.stopPropagation()};C.extend(C.event,{trigger:function(t,n,e,o){var i,a,l,s,p,c,d,m,h=[e||x],f=u.call(t,"type")?t.type:t,g=u.call(t,"namespace")?t.namespace.split("."):[];if(a=m=l=e=e||x,3!==e.nodeType&&8!==e.nodeType&&!Nn.test(f+C.event.triggered)&&(f.indexOf(".")>-1&&(g=f.split("."),f=g.shift(),g.sort()),p=f.indexOf(":")<0&&"on"+f,(t=t[C.expando]?t:new C.Event(f,"object"==typeof t&&t)).isTrigger=o?2:3,t.namespace=g.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=e),n=null==n?[t]:C.makeArray(n,[t]),d=C.event.special[f]||{},o||!d.trigger||!1!==d.trigger.apply(e,n))){if(!o&&!d.noBubble&&!v(e)){for(s=d.delegateType||f,Nn.test(s+f)||(a=a.parentNode);a;a=a.parentNode)h.push(a),l=a;l===(e.ownerDocument||x)&&h.push(l.defaultView||l.parentWindow||r)}for(i=0;(a=h[i++])&&!t.isPropagationStopped();)m=a,t.type=i>1?s:d.bindType||f,(c=(lt.get(a,"events")||Object.create(null))[t.type]&<.get(a,"handle"))&&c.apply(a,n),(c=p&&a[p])&&c.apply&&it(a)&&(t.result=c.apply(a,n),!1===t.result&&t.preventDefault());return t.type=f,o||t.isDefaultPrevented()||d._default&&!1!==d._default.apply(h.pop(),n)||!it(e)||p&&b(e[f])&&!v(e)&&((l=e[p])&&(e[p]=null),C.event.triggered=f,t.isPropagationStopped()&&m.addEventListener(f,In),e[f](),t.isPropagationStopped()&&m.removeEventListener(f,In),C.event.triggered=void 0,l&&(e[p]=l)),t.result}},simulate:function(t,n,e){var r=C.extend(new C.Event,e,{type:t,isSimulated:!0});C.event.trigger(r,null,n)}}),C.fn.extend({trigger:function(t,n){return this.each((function(){C.event.trigger(t,n,this)}))},triggerHandler:function(t,n){var e=this[0];if(e)return C.event.trigger(t,n,e,!0)}});var Rn=/\[\]$/,Dn=/\r?\n/g,zn=/^(?:submit|button|image|reset|file)$/i,_n=/^(?:input|select|textarea|keygen)/i;function Fn(t,n,e,r){var o;if(Array.isArray(n))C.each(n,(function(n,o){e||Rn.test(t)?r(t,o):Fn(t+"["+("object"==typeof o&&null!=o?n:"")+"]",o,e,r)}));else if(e||"object"!==k(n))r(t,n);else for(o in n)Fn(t+"["+o+"]",n[o],e,r)}C.param=function(t,n){var e,r=[],o=function(t,n){var e=b(n)?n():n;r[r.length]=encodeURIComponent(t)+"="+encodeURIComponent(null==e?"":e)};if(null==t)return"";if(Array.isArray(t)||t.jquery&&!C.isPlainObject(t))C.each(t,(function(){o(this.name,this.value)}));else for(e in t)Fn(e,t[e],n,o);return r.join("&")},C.fn.extend({serialize:function(){return C.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var t=C.prop(this,"elements");return t?C.makeArray(t):this})).filter((function(){var t=this.type;return this.name&&!C(this).is(":disabled")&&_n.test(this.nodeName)&&!zn.test(t)&&(this.checked||!Ct.test(t))})).map((function(t,n){var e=C(this).val();return null==e?null:Array.isArray(e)?C.map(e,(function(t){return{name:n.name,value:t.replace(Dn,"\r\n")}})):{name:n.name,value:e.replace(Dn,"\r\n")}})).get()}});var Bn=/%20/g,Hn=/#.*$/,Wn=/([?&])_=[^&]*/,Un=/^(.*?):[ \t]*([^\r\n]*)$/gm,Vn=/^(?:GET|HEAD)$/,Gn=/^\/\//,qn={},Xn={},Yn="*/".concat("*"),$n=x.createElement("a");function Kn(t){return function(n,e){"string"!=typeof n&&(e=n,n="*");var r,o=0,i=n.toLowerCase().match(X)||[];if(b(e))for(;r=i[o++];)"+"===r[0]?(r=r.slice(1)||"*",(t[r]=t[r]||[]).unshift(e)):(t[r]=t[r]||[]).push(e)}}function Zn(t,n,e,r){var o={},i=t===Xn;function a(l){var s;return o[l]=!0,C.each(t[l]||[],(function(t,l){var p=l(n,e,r);return"string"!=typeof p||i||o[p]?i?!(s=p):void 0:(n.dataTypes.unshift(p),a(p),!1)})),s}return a(n.dataTypes[0])||!o["*"]&&a("*")}function Qn(t,n){var e,r,o=C.ajaxSettings.flatOptions||{};for(e in n)void 0!==n[e]&&((o[e]?t:r||(r={}))[e]=n[e]);return r&&C.extend(!0,t,r),t}$n.href=Mn.href,C.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Mn.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Mn.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Yn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":C.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(t,n){return n?Qn(Qn(t,C.ajaxSettings),n):Qn(C.ajaxSettings,t)},ajaxPrefilter:Kn(qn),ajaxTransport:Kn(Xn),ajax:function(t,n){"object"==typeof t&&(n=t,t=void 0),n=n||{};var e,o,i,a,l,s,p,c,d,m,u=C.ajaxSetup({},n),h=u.context||u,f=u.context&&(h.nodeType||h.jquery)?C(h):C.event,g=C.Deferred(),b=C.Callbacks("once memory"),v=u.statusCode||{},y={},w={},k="canceled",S={readyState:0,getResponseHeader:function(t){var n;if(p){if(!a)for(a={};n=Un.exec(i);)a[n[1].toLowerCase()+" "]=(a[n[1].toLowerCase()+" "]||[]).concat(n[2]);n=a[t.toLowerCase()+" "]}return null==n?null:n.join(", ")},getAllResponseHeaders:function(){return p?i:null},setRequestHeader:function(t,n){return null==p&&(t=w[t.toLowerCase()]=w[t.toLowerCase()]||t,y[t]=n),this},overrideMimeType:function(t){return null==p&&(u.mimeType=t),this},statusCode:function(t){var n;if(t)if(p)S.always(t[S.status]);else for(n in t)v[n]=[v[n],t[n]];return this},abort:function(t){var n=t||k;return e&&e.abort(n),E(0,n),this}};if(g.promise(S),u.url=((t||u.url||Mn.href)+"").replace(Gn,Mn.protocol+"//"),u.type=n.method||n.type||u.method||u.type,u.dataTypes=(u.dataType||"*").toLowerCase().match(X)||[""],null==u.crossDomain){s=x.createElement("a");try{s.href=u.url,s.href=s.href,u.crossDomain=$n.protocol+"//"+$n.host!=s.protocol+"//"+s.host}catch(t){u.crossDomain=!0}}if(u.data&&u.processData&&"string"!=typeof u.data&&(u.data=C.param(u.data,u.traditional)),Zn(qn,u,n,S),p)return S;for(d in(c=C.event&&u.global)&&0==C.active++&&C.event.trigger("ajaxStart"),u.type=u.type.toUpperCase(),u.hasContent=!Vn.test(u.type),o=u.url.replace(Hn,""),u.hasContent?u.data&&u.processData&&0===(u.contentType||"").indexOf("application/x-www-form-urlencoded")&&(u.data=u.data.replace(Bn,"+")):(m=u.url.slice(o.length),u.data&&(u.processData||"string"==typeof u.data)&&(o+=(jn.test(o)?"&":"?")+u.data,delete u.data),!1===u.cache&&(o=o.replace(Wn,"$1"),m=(jn.test(o)?"&":"?")+"_="+Ln.guid+++m),u.url=o+m),u.ifModified&&(C.lastModified[o]&&S.setRequestHeader("If-Modified-Since",C.lastModified[o]),C.etag[o]&&S.setRequestHeader("If-None-Match",C.etag[o])),(u.data&&u.hasContent&&!1!==u.contentType||n.contentType)&&S.setRequestHeader("Content-Type",u.contentType),S.setRequestHeader("Accept",u.dataTypes[0]&&u.accepts[u.dataTypes[0]]?u.accepts[u.dataTypes[0]]+("*"!==u.dataTypes[0]?", "+Yn+"; q=0.01":""):u.accepts["*"]),u.headers)S.setRequestHeader(d,u.headers[d]);if(u.beforeSend&&(!1===u.beforeSend.call(h,S,u)||p))return S.abort();if(k="abort",b.add(u.complete),S.done(u.success),S.fail(u.error),e=Zn(Xn,u,n,S)){if(S.readyState=1,c&&f.trigger("ajaxSend",[S,u]),p)return S;u.async&&u.timeout>0&&(l=r.setTimeout((function(){S.abort("timeout")}),u.timeout));try{p=!1,e.send(y,E)}catch(t){if(p)throw t;E(-1,t)}}else E(-1,"No Transport");function E(t,n,a,s){var d,m,x,y,w,k=n;p||(p=!0,l&&r.clearTimeout(l),e=void 0,i=s||"",S.readyState=t>0?4:0,d=t>=200&&t<300||304===t,a&&(y=function(t,n,e){for(var r,o,i,a,l=t.contents,s=t.dataTypes;"*"===s[0];)s.shift(),void 0===r&&(r=t.mimeType||n.getResponseHeader("Content-Type"));if(r)for(o in l)if(l[o]&&l[o].test(r)){s.unshift(o);break}if(s[0]in e)i=s[0];else{for(o in e){if(!s[0]||t.converters[o+" "+s[0]]){i=o;break}a||(a=o)}i=i||a}if(i)return i!==s[0]&&s.unshift(i),e[i]}(u,S,a)),!d&&C.inArray("script",u.dataTypes)>-1&&C.inArray("json",u.dataTypes)<0&&(u.converters["text script"]=function(){}),y=function(t,n,e,r){var o,i,a,l,s,p={},c=t.dataTypes.slice();if(c[1])for(a in t.converters)p[a.toLowerCase()]=t.converters[a];for(i=c.shift();i;)if(t.responseFields[i]&&(e[t.responseFields[i]]=n),!s&&r&&t.dataFilter&&(n=t.dataFilter(n,t.dataType)),s=i,i=c.shift())if("*"===i)i=s;else if("*"!==s&&s!==i){if(!(a=p[s+" "+i]||p["* "+i]))for(o in p)if((l=o.split(" "))[1]===i&&(a=p[s+" "+l[0]]||p["* "+l[0]])){!0===a?a=p[o]:!0!==p[o]&&(i=l[0],c.unshift(l[1]));break}if(!0!==a)if(a&&t.throws)n=a(n);else try{n=a(n)}catch(t){return{state:"parsererror",error:a?t:"No conversion from "+s+" to "+i}}}return{state:"success",data:n}}(u,y,S,d),d?(u.ifModified&&((w=S.getResponseHeader("Last-Modified"))&&(C.lastModified[o]=w),(w=S.getResponseHeader("etag"))&&(C.etag[o]=w)),204===t||"HEAD"===u.type?k="nocontent":304===t?k="notmodified":(k=y.state,m=y.data,d=!(x=y.error))):(x=k,!t&&k||(k="error",t<0&&(t=0))),S.status=t,S.statusText=(n||k)+"",d?g.resolveWith(h,[m,k,S]):g.rejectWith(h,[S,k,x]),S.statusCode(v),v=void 0,c&&f.trigger(d?"ajaxSuccess":"ajaxError",[S,u,d?m:x]),b.fireWith(h,[S,k]),c&&(f.trigger("ajaxComplete",[S,u]),--C.active||C.event.trigger("ajaxStop")))}return S},getJSON:function(t,n,e){return C.get(t,n,e,"json")},getScript:function(t,n){return C.get(t,void 0,n,"script")}}),C.each(["get","post"],(function(t,n){C[n]=function(t,e,r,o){return b(e)&&(o=o||r,r=e,e=void 0),C.ajax(C.extend({url:t,type:n,dataType:o,data:e,success:r},C.isPlainObject(t)&&t))}})),C.ajaxPrefilter((function(t){var n;for(n in t.headers)"content-type"===n.toLowerCase()&&(t.contentType=t.headers[n]||"")})),C._evalUrl=function(t,n,e){return C.ajax({url:t,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(t){C.globalEval(t,n,e)}})},C.fn.extend({wrapAll:function(t){var n;return this[0]&&(b(t)&&(t=t.call(this[0])),n=C(t,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&n.insertBefore(this[0]),n.map((function(){for(var t=this;t.firstElementChild;)t=t.firstElementChild;return t})).append(this)),this},wrapInner:function(t){return b(t)?this.each((function(n){C(this).wrapInner(t.call(this,n))})):this.each((function(){var n=C(this),e=n.contents();e.length?e.wrapAll(t):n.append(t)}))},wrap:function(t){var n=b(t);return this.each((function(e){C(this).wrapAll(n?t.call(this,e):t)}))},unwrap:function(t){return this.parent(t).not("body").each((function(){C(this).replaceWith(this.childNodes)})),this}}),C.expr.pseudos.hidden=function(t){return!C.expr.pseudos.visible(t)},C.expr.pseudos.visible=function(t){return!!(t.offsetWidth||t.offsetHeight||t.getClientRects().length)},C.ajaxSettings.xhr=function(){try{return new r.XMLHttpRequest}catch(t){}};var Jn={0:200,1223:204},te=C.ajaxSettings.xhr();g.cors=!!te&&"withCredentials"in te,g.ajax=te=!!te,C.ajaxTransport((function(t){var n,e;if(g.cors||te&&!t.crossDomain)return{send:function(o,i){var a,l=t.xhr();if(l.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)l[a]=t.xhrFields[a];for(a in t.mimeType&&l.overrideMimeType&&l.overrideMimeType(t.mimeType),t.crossDomain||o["X-Requested-With"]||(o["X-Requested-With"]="XMLHttpRequest"),o)l.setRequestHeader(a,o[a]);n=function(t){return function(){n&&(n=e=l.onload=l.onerror=l.onabort=l.ontimeout=l.onreadystatechange=null,"abort"===t?l.abort():"error"===t?"number"!=typeof l.status?i(0,"error"):i(l.status,l.statusText):i(Jn[l.status]||l.status,l.statusText,"text"!==(l.responseType||"text")||"string"!=typeof l.responseText?{binary:l.response}:{text:l.responseText},l.getAllResponseHeaders()))}},l.onload=n(),e=l.onerror=l.ontimeout=n("error"),void 0!==l.onabort?l.onabort=e:l.onreadystatechange=function(){4===l.readyState&&r.setTimeout((function(){n&&e()}))},n=n("abort");try{l.send(t.hasContent&&t.data||null)}catch(t){if(n)throw t}},abort:function(){n&&n()}}})),C.ajaxPrefilter((function(t){t.crossDomain&&(t.contents.script=!1)})),C.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(t){return C.globalEval(t),t}}}),C.ajaxPrefilter("script",(function(t){void 0===t.cache&&(t.cache=!1),t.crossDomain&&(t.type="GET")})),C.ajaxTransport("script",(function(t){var n,e;if(t.crossDomain||t.scriptAttrs)return{send:function(r,o){n=C("