-
Peringatan $isi
-
";
- }
-
- public function modal($name, $judul, $isi)
- {
- return "
-
";
- }
-
- public function Kembali()
- {
- return "
";
- }
-
- public function btn_input()
- {
- return "";
- }
-
- public function save_riwayat(){}
-
- public function notif_success($text)
- {
- return "
-
- ";
- }
- public function umur($tgl_lahir='')
- {
- if ($tgl_lahir==null) {
- return;
- }
- // Tanggal Lahir
- $birthday = $tgl_lahir;
-
- // Convert Ke Date Time
- $biday = new DateTime($birthday);
- $today = new DateTime();
-
- $diff = $today->diff($biday);
-
- // Display
- return $diff->y ." Tahun";
- }
-
-}
diff --git a/application/models/CoreUploadFoto.php b/application/models/CoreUploadFoto.php
deleted file mode 100644
index cf4bc0c..0000000
--- a/application/models/CoreUploadFoto.php
+++ /dev/null
@@ -1,31 +0,0 @@
-load->library('upload');
- //Codeigniter : Write Less Do More
- }
-
- public function get_nama_foto(){
- return $this->nama_foto;
- }
-
- public function upload_foto($path){
- $config['upload_path'] = $path; //path folder
- $config['allowed_types'] = 'gif|jpg|png|jpeg|bmp|JPG|PNG|JPEG|BMP|GIF'; //type yang dapat diakses
- $config['encrypt_name'] = TRUE; //nama yang terupload nantinya
- $this->upload->initialize($config);
- if(!empty($_FILES['filefoto']['name'])){
- if ($this->upload->do_upload('filefoto')){
- $gbr = $this->upload->data();
- $this->nama_foto = $gbr['file_name'];
- return true;
- }
- }
- return false;
- }
-}
diff --git a/application/models/ModelAKG.php b/application/models/ModelAKG.php
deleted file mode 100644
index 7e6b725..0000000
--- a/application/models/ModelAKG.php
+++ /dev/null
@@ -1,21 +0,0 @@
-db->get_where("kalori")->result();
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("kalori", array("id_kalori" => $id))->row_array();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelAPI/GetAPI.php b/application/models/ModelAPI/GetAPI.php
deleted file mode 100644
index 9dd6973..0000000
--- a/application/models/ModelAPI/GetAPI.php
+++ /dev/null
@@ -1,29 +0,0 @@
-request('POST', $this->base_url, [
- 'form_params' => [
- 'grant_type' => 'client_credentials',
- 'client_id' => 'PKL2023',
- 'client_secret' => 'PKLSERU'
- ]
- ]);
-
- // Ambil respons JSON dari server
- $response = $request->getBody()->getContents();
-
- // Parsing respons JSON untuk mendapatkan token
- $data = json_decode($response, true);
-
- // Mengembalikan access token
- return $data['access_token'];
- }
-}
diff --git a/application/models/ModelAlamat.php b/application/models/ModelAlamat.php
deleted file mode 100644
index bf8770e..0000000
--- a/application/models/ModelAlamat.php
+++ /dev/null
@@ -1,56 +0,0 @@
-db
- ->where("data_user_iddata_user",$id_user)
- ->get("alamat_user")->result();
- }
-
- public function get_data_edit($id){
- return $this->db
- ->where("idalamat_user",$id)
- ->get("alamat_user")->row();
- }
-
- public function get_Provinsi($index=0, $end=0)
- {
- if ($index > 0) {
- $this->db->limit($index, $end);
- }
- return $this->db->get("provinces");
- }
-
- public function get_Kabupaten($id_provinsi)
- {
- $this->db->where("province_id", $id_provinsi);
- return $this->db->get("regencie");
- }
-
- public function get_Kecamatan($id_kabupaten="")
- {
- $this->db->where("regency_id", $id_kabupaten);
- return $this->db->get("districts");
- }
-
- public function getNamaProvinsi($id)
- {
- $this->db->where("id",$id);
- return $this->db->get("provinces")->row_array()['name'];
- }
- public function getNamaKabupaten($id)
- {
- $this->db->where("id",$id);
- return $this->db->get("regencie")->row_array()['name'];
- }
-
-
-}
diff --git a/application/models/ModelAnalisis.php b/application/models/ModelAnalisis.php
deleted file mode 100644
index 141f414..0000000
--- a/application/models/ModelAnalisis.php
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
-{
- $this->db->select('kalori.energi, konsumsi.user_id_user, user.nama, GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan, GROUP_CONCAT(bahan_makanan.urt SEPARATOR ", ") as urt, GROUP_CONCAT(bahan_makanan.energi SEPARATOR ", ") as energi, SUM(bahan_makanan.energi) as total_kalori');
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
- $this->db->group_by('konsumsi.waktu');
-
- $result = $this->db->get()->result();
-
- // Menambahkan status kalori ke setiap entri dalam hasil
- foreach ($result as $record) {
- if ($record->total_kalori < $record->energi) {
- $record->kalori_status = "Kalori tidak tercukupi";
- } else {
- $record->kalori_status = "Kalori mencukupi";
- }
- }
-
- return $result;
-}
-
-
- public function get_data2($from, $till)
- {
- $this->db->select('konsumsi.waktu, bahan_makanan.nama_makanan, user.nama, SUM(bahan_makanan.energi) as total_kalori');
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->group_by('konsumsi.waktu');
-
- // Add WHERE conditions for date range
- $this->db->where('konsumsi.waktu >=', $from);
- $this->db->where('konsumsi.waktu <=', $till);
-
- $result = $this->db->get()->result();
-
- return $result;
- }
-
- public function get_status()
-{
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama, GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan, SUM(bahan_makanan.energi) as total_kalori, SUM(bahan_makanan.karbohidrat) as total_karbohidrat, SUM(bahan_makanan.protein) as total_protein, SUM(bahan_makanan.lemak) as total_lemak, SUM(bahan_makanan.besi) as total_besi, SUM(bahan_makanan.vitamina) as total_vitamina, SUM(bahan_makanan.vitaminc) as total_vitaminc, kalori.*');
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
-
- $this->db->where('kalori.awal <=', 'user.umur');
- $this->db->where('kalori.akhir >=', 'user.umur');
- $this->db->where('kalori.jenis_kelamin', 'user.jekel');
- $this->db->group_by('konsumsi.waktu');
-
- $result = $this->db->get()->result();
-
- // Menambahkan kondisi untuk memeriksa jika total kalori kurang dari target
- foreach ($result as $record) {
- if ($record->total_kalori < $record->kalori_target) {
- $record->kalori_status = "Kalori tidak tercukupi";
- } else {
- $record->kalori_status = "Kalori mencukupi";
- }
- }
-
- return $result;
-}
-
- public function get_status2()
- {
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama');
- $this->db->select('GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan');
- $this->db->select('SUM(bahan_makanan.energi) as total_kalori');
- $this->db->select('SUM(bahan_makanan.karbohidrat) as total_karbohidrat');
- $this->db->select('SUM(bahan_makanan.protein) as total_protein');
- $this->db->select('SUM(bahan_makanan.lemak) as total_lemak');
- $this->db->select('SUM(bahan_makanan.besi) as total_besi');
- $this->db->select('SUM(bahan_makanan.vitamina) as total_vitamina');
- $this->db->select('SUM(bahan_makanan.vitaminc) as total_vitaminc');
- $this->db->select('kalori.*');
-
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
-
- $this->db->where('user.umur >= kalori.awal');
- $this->db->where('user.umur <= kalori.akhir');
- $this->db->group_by('konsumsi.waktu');
-
- $query = $this->db->get()->result();
- return $query;
-
- }
-
- public function getketer($id_user, $waktu, $keterangan)
- {
- $this->db->select(
- 'bahan_makanan.kategori, bahan_makanan.nama_makanan, bahan_makanan.kuantitas, ' .
- 'bahan_makanan.besaran, bahan_makanan.urt, bahan_makanan.energi, ' .
- 'bahan_makanan.karbohidrat, bahan_makanan.protein, bahan_makanan.lemak, ' .
- 'bahan_makanan.besi, bahan_makanan.vitamina, bahan_makanan.vitaminc, ' .
- 'konsumsi.idkonsumsi, konsumsi.waktu, bahan_makanan.id_makanan, ' .
- 'user.id_user, konsumsi.keterangan'
- );
- $this->db->from('konsumsi');
- $this->db->join('konsumsi_detail', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('bahan_makanan', 'bahan_makanan.id_makanan = konsumsi_detail.id_makanan');
- $this->db->join('user', 'konsumsi.user_id_user = user.id_user');
- $this->db->where('id_user', $id_user);
- $this->db->where('waktu', $waktu);
- $this->db->where('keterangan', $keterangan);
- $query = $this->db->get();
-
- return $query->result();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelAnggota.php b/application/models/ModelAnggota.php
deleted file mode 100644
index 2ad13aa..0000000
--- a/application/models/ModelAnggota.php
+++ /dev/null
@@ -1,17 +0,0 @@
-db->get_where("data_user",["iddata_user"=>$iddata_user]);
- }
-
-}
diff --git a/application/models/ModelArtikel.php b/application/models/ModelArtikel.php
deleted file mode 100644
index 13fcbdd..0000000
--- a/application/models/ModelArtikel.php
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
- {
- return $this->db->get_where("artikel")->result();
- }
-
- public function insert($data)
- {
- return $this->db->table($this->table)->insert($data);
- }
- public function count_artikel()
- {
- return $this->db->count_all("artikel");
- }
- public function get_data_edit($id)
-{
- $result = $this->db->get_where("artikel", array("id_artikel" => $id))->row_array();
-
- if ($result !== null) {
- return $result;
- } else {
- // Handle the case where no matching data was found, e.g., by returning an empty array or showing an error message.
- return array(); // You can customize this based on your requirements.
- }
-}
-
-}
diff --git a/application/models/ModelBunga.php b/application/models/ModelBunga.php
deleted file mode 100644
index 48f6d75..0000000
--- a/application/models/ModelBunga.php
+++ /dev/null
@@ -1,20 +0,0 @@
-db
- ->where("pusat_idpusat", $this->session->userdata('idpusat'))
- ->where("idjenis_rekening", $idjenis_rekening)
- ->get("bunga_pinjaman")->row_array();
- }
-}
diff --git a/application/models/ModelDarah.php b/application/models/ModelDarah.php
deleted file mode 100644
index 0a8fd27..0000000
--- a/application/models/ModelDarah.php
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
- {
- $this->db->select('darah.id_darah, darah.status, DATE_FORMAT(darah.tanggal, "%Y-%m") AS bulan, user.nama');
- $this->db->select('GROUP_CONCAT(darah.tanggal SEPARATOR ", ") as tanggal');
- $this->db->select('GROUP_CONCAT(darah.status SEPARATOR ", ") as status');
- $this->db->from('darah');
- $this->db->join('user', 'user.id_user = darah.id_user');
- $this->db->group_by('bulan, user.nama');
-
- $result = $this->db->get()->result();
-
- // Tambahkan status "lengkap" atau "tidak lengkap" ke setiap entri
- foreach ($result as $record) {
- if ($record->status === 'sudah') {
- $record->status_darah = 'lengkap';
- } else {
- $record->status_darah = 'tidak lengkap';
- }
- }
-
- return $result;
- }
-
-
-
- public function get_data_darah2($bulan,$tahun)
- {
- $this->db->select('darah.id_darah, darah.status, DATE_FORMAT(darah.tanggal, "%Y-%m") AS bulan, user.nama');
- $this->db->select('GROUP_CONCAT(darah.tanggal SEPARATOR ", ") as tanggal');
- $this->db->select('GROUP_CONCAT(darah.status SEPARATOR ", ") as status');
- $this->db->from('darah');
- $this->db->join('user', 'user.id_user = darah.id_user');
- $this->db->group_by('bulan, user.nama');
-
- $this->db->where('DATE_FORMAT(darah.tanggal, "%Y-%m") =', date("Y-m", strtotime($tahun . "-" . $bulan)));
-
- $result = $this->db->get()->result();
- foreach ($result as $record) {
- if ($record->status === 'sudah') {
- $record->status_darah = 'lengkap';
- } else {
- $record->status_darah = 'tidak lengkap';
- }
- }
- return $result;
- }
-
-}
\ No newline at end of file
diff --git a/application/models/ModelIMT.php b/application/models/ModelIMT.php
deleted file mode 100644
index 02d0483..0000000
--- a/application/models/ModelIMT.php
+++ /dev/null
@@ -1,21 +0,0 @@
-db->get_where("imt")->result();
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("imt", array("id_imt" => $id))->row_array();
- }
-}
diff --git a/application/models/ModelJawaban.php b/application/models/ModelJawaban.php
deleted file mode 100644
index 7718353..0000000
--- a/application/models/ModelJawaban.php
+++ /dev/null
@@ -1,39 +0,0 @@
-db->get_where("jawaban")->result();
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("jawaban", array("id_jawaban" => $id))->row_array();
- }
-
- public function get_jawaban_edit()
- {
- return $this->db
- ->select('*')
- ->from('jawaban')
- ->join('pertanyaan', 'pertanyaan.id_pertanyaan = jawaban.id_pertanyaan', 'left')
- ->get()->result();
- }
- public function get_data2()
- {
- return $this->db
- ->join("user","user.id_user=pertanyaan.id_user")
- ->join("jawaban","jawaban.id_pertanyaan=pertanyaan.id_pertanyaan")
- ->where("pertanyaan.is_answer", "1")
- ->get("pertanyaan")->result();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelKategori.php b/application/models/ModelKategori.php
deleted file mode 100644
index a08e38d..0000000
--- a/application/models/ModelKategori.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
- {
- return $this->db->get_where("kategori")->result();
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("kategori", array("id_kategori" => $id))->row_array();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelKonsumsi.php b/application/models/ModelKonsumsi.php
deleted file mode 100644
index c00cb15..0000000
--- a/application/models/ModelKonsumsi.php
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
- {
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_jajanan,
- SUM(bahan_makanan.energi * konsumsi_detail.kuantitas) as total_kalori');
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->group_by('konsumsi.waktu');
-
- $result = $this->db->get()->result();
-
- return $result;
- }
-
- public function get_data2($from, $till)
- {
- $this->db->select('konsumsi.waktu, bahan_makanan.nama_makanan, user.nama,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.nama_makanan END SEPARATOR ", ") as jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.urt END SEPARATOR ", ") as urt_jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN bahan_makanan.energi * konsumsi_detail.kuantitas END SEPARATOR ", ") as energi_jajanan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 1 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_makanan_pokok,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 2 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_lauk_pauk,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 3 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_sayuran,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 4 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_buah_buahan,
- GROUP_CONCAT(CASE WHEN bahan_makanan.kategori = 5 THEN konsumsi_detail.kuantitas END SEPARATOR ", ") as kuantitas_jajanan,
- SUM(bahan_makanan.energi * konsumsi_detail.kuantitas) as total_kalori');
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->group_by('konsumsi.waktu, konsumsi.user_id_user');
-
- // Add WHERE conditions for date range
- $this->db->where('konsumsi.waktu >=', $from);
- $this->db->where('konsumsi.waktu <=', $till);
-
- $result = $this->db->get()->result();
-
- return $result;
- }
-
- public function get_status()
- {
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama');
- $this->db->select('GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan');
- $this->db->select('SUM(bahan_makanan.energi * konsumsi_detail.kuantitas) as total_kalori');
- $this->db->select('SUM(bahan_makanan.karbohidrat * konsumsi_detail.kuantitas) as total_karbohidrat');
- $this->db->select('SUM(bahan_makanan.protein * konsumsi_detail.kuantitas) as total_protein');
- $this->db->select('SUM(bahan_makanan.lemak * konsumsi_detail.kuantitas) as total_lemak');
- $this->db->select('SUM(bahan_makanan.besi * konsumsi_detail.kuantitas) as total_besi');
- $this->db->select('SUM(bahan_makanan.vitamina * konsumsi_detail.kuantitas) as total_vitamina');
- $this->db->select('SUM(bahan_makanan.vitaminc * konsumsi_detail.kuantitas) as total_vitaminc');
- $this->db->select('kalori.*');
-
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
-
- $this->db->where('user.umur >= kalori.awal');
- $this->db->where('user.umur <= kalori.akhir');
- $this->db->group_by('konsumsi.waktu');
-
- $query = $this->db->get()->result();
- return $query;
-
- }
-
- public function get_status2($from, $till)
- {
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama');
- $this->db->select('GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan');
- $this->db->select('SUM(bahan_makanan.energi * konsumsi_detail.kuantitas) as total_kalori');
- $this->db->select('SUM(bahan_makanan.karbohidrat * konsumsi_detail.kuantitas) as total_karbohidrat');
- $this->db->select('SUM(bahan_makanan.protein * konsumsi_detail.kuantitas) as total_protein');
- $this->db->select('SUM(bahan_makanan.lemak * konsumsi_detail.kuantitas) as total_lemak');
- $this->db->select('SUM(bahan_makanan.besi * konsumsi_detail.kuantitas) as total_besi');
- $this->db->select('SUM(bahan_makanan.vitamina * konsumsi_detail.kuantitas) as total_vitamina');
- $this->db->select('SUM(bahan_makanan.vitaminc * konsumsi_detail.kuantitas) as total_vitaminc');
- $this->db->select('kalori.*');
-
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
-
- $this->db->where('user.umur >= kalori.awal');
- $this->db->where('user.umur <= kalori.akhir');
- $this->db->where('konsumsi.waktu >=', $from);
- $this->db->where('konsumsi.waktu <=', $till);
- $this->db->group_by('konsumsi.waktu, konsumsi.user_id_user');
-
- $query = $this->db->get()->result();
- return $query;
- }
-
- public function get_analisis($from,$till)
- {
- $this->db->select('konsumsi.waktu, konsumsi.user_id_user, user.nama');
- $this->db->select('GROUP_CONCAT(bahan_makanan.nama_makanan SEPARATOR ", ") as nama_makanan');
- $this->db->select('SUM(bahan_makanan.energi * konsumsi_detail.kuantitas) as total_kalori');
- $this->db->select('SUM(CASE WHEN konsumsi.keterangan = "Sarapan" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_sarapan');
- $this->db->select('SUM(CASE WHEN konsumsi.keterangan = "Makan Siang" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_siang');
- $this->db->select('SUM(CASE WHEN konsumsi.keterangan = "Makan Malam" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_malam');
- // Sarapan
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 1 AND konsumsi.keterangan = "Sarapan" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_sarapan_pokok');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 2 AND konsumsi.keterangan = "Sarapan" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_sarapan_lauk');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 3 AND konsumsi.keterangan = "Sarapan" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_sarapan_sayur');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 4 AND konsumsi.keterangan = "Sarapan" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_sarapan_buah');
-
- // Makan Siang
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 1 AND konsumsi.keterangan = "Makan Siang" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_siang_pokok');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 2 AND konsumsi.keterangan = "Makan Siang" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_siang_lauk');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 3 AND konsumsi.keterangan = "Makan Siang" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_siang_sayur');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 4 AND konsumsi.keterangan = "Makan Siang" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_siang_buah');
-
- // Makan Malam
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 1 AND konsumsi.keterangan = "Makan Malam" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_malam_pokok');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 2 AND konsumsi.keterangan = "Makan malam" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_malam_lauk');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 3 AND konsumsi.keterangan = "Makan Malam" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_malam_sayur');
- $this->db->select('SUM(CASE WHEN bahan_makanan.kategori = 4 AND konsumsi.keterangan = "Makan Malam" THEN bahan_makanan.energi * konsumsi_detail.kuantitas ELSE 0 END) as total_malam_buah');
-
- // Subquery untuk total kalori makanan pokok pada sarapan
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Sarapan" AND bm.kategori = 1 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_sarapan_pokok');
-
- // Subquery untuk total kalori lauk pauk pada sarapan
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Sarapan" AND bm.kategori = 2 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_sarapan_lauk');
-
- // Subquery untuk total kalori sayuran pada sarapan
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Sarapan" AND bm.kategori = 3 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_sarapan_sayur');
-
- // Subquery untuk total kalori buah-buahan pada sarapan
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Sarapan" AND bm.kategori = 4 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_sarapan_buah');
-
- // Subquery untuk total kalori makanan pokok pada makan siang
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Siang" AND bm.kategori = 1 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_siang_pokok');
-
- // Subquery untuk total kalori lauk pauk pada makan siang
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Siang" AND bm.kategori = 2 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_siang_lauk');
-
- // Subquery untuk total kalori sayuran pada makan siang
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Siang" AND bm.kategori = 3 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_siang_sayur');
-
- // Subquery untuk total kalori buah-buahan pada makan siang
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Siang" AND bm.kategori = 4 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_siang_buah');
-
- // Subquery untuk total kalori makanan pokok pada makan malam
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Malam" AND bm.kategori = 1 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_malam_pokok');
-
- // Subquery untuk total kalori lauk pauk pada makan malam
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Malam" AND bm.kategori = 2 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_malam_lauk');
-
- // Subquery untuk total kalori sayuran pada makan malam
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Malam" AND bm.kategori = 3 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_malam_sayur');
-
- // Subquery untuk total kalori buah-buahan pada makan malam
- // $this->db->select('(
- // SELECT SUM(bm.energi * konsumsi_detail.kuantitas)
- // FROM bahan_makanan AS bm
- // JOIN konsumsi_detail AS kd ON kd.id_makanan = bm.id_makanan
- // WHERE konsumsi.keterangan = "Makan Malam" AND bm.kategori = 4 AND kd.id_konsumsi = konsumsi.idkonsumsi
- // ) as total_malam_buah');
- $this->db->select('kalori.*');
-
- $this->db->from('bahan_makanan');
- $this->db->join('konsumsi_detail', 'konsumsi_detail.id_makanan = bahan_makanan.id_makanan');
- $this->db->join('konsumsi', 'konsumsi.idkonsumsi = konsumsi_detail.id_konsumsi');
- $this->db->join('user', 'user.id_user = konsumsi.user_id_user');
- $this->db->join('kalori', 'kalori.jenis_kelamin = user.jekel');
-
- $this->db->where('user.umur >= kalori.awal');
- $this->db->where('user.umur <= kalori.akhir');
- $this->db->where('konsumsi.waktu >=', $from);
- $this->db->where('konsumsi.waktu <=', $till);
- $this->db->group_by('konsumsi.waktu, konsumsi.user_id_user');
-
- $query = $this->db->get()->result();
- return $query;
-
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelLaporan.php b/application/models/ModelLaporan.php
deleted file mode 100644
index 4087e0d..0000000
--- a/application/models/ModelLaporan.php
+++ /dev/null
@@ -1,98 +0,0 @@
-db->select('*, SUM(total_pembayaran) as totalSemua,tanggal as tgl');
- $this->db->where('status_pemesanan', '4');
- $this->db->where("mitra_idmitra", $_SESSION["idmitra"]);
- $this->db->group_by('tanggal');
- return $this->db->get('pemesanan');
- }
-
- public function getAnggota()
- {
- return $this->db->get('data_user');
- }
-
- public function getBarang()
- {
- return $this->db->get("barang");
- }
-
- public function getTransaksi($tgl = null)
- {
- if ($tgl != null || $tgl != "") {
- $this->db->where("tanggal", date("Y-m-d", strtotime($tgl)));
- }
- $this->db->where('status_pemesanan', '4');
- $this->db->where("mitra_idmitra", $_SESSION["idmitra"]);
- return $this->db->get('pemesanan');
- }
-
- public function getPendapatan($tgl = null)
- {
- $this->db->select('*, SUM(total_pembayaran) as totalSemua');
- if ($tgl != null || $tgl != "") {
- $this->db->where("tanggal", date("Y-m-d", strtotime($tgl)));
- }
- $this->db->group_by('tanggal');
- $this->db->where('status_pemesanan', '4');
- $this->db->where("mitra_idmitra", $_SESSION["idmitra"]);
- return $this->db->get('pemesanan');
- }
-
- public function getSisaHutangAnggota($id)
- {
- $this->db->select("(SUM(harus_dibayar) - SUM(pembayaran)) as total");
- $this->db->join("bayar_hutang","bayar_hutang.pemesanan_idpemesanan = pemesanan.idpemesanan", "left");
- // $this->db->where("data_user_iddata_user", $id);
- $this->db->where("metode_pembayaran", 2);
- $this->db->where("status_hutang", 0);
- $this->db->group_by("pemesanan_idpemesanan");
- return $this->db->get("pemesanan");
- }
-
- public function getHutangAnggota($id)
- {
- $this->db->select("SUM(harus_dibayar) as total");
- $this->db->where("data_user_iddata_user", $id);
- $this->db->where("metode_pembayaran", 2);
- $this->db->where("status_hutang", 0);
- return $this->db->get("pemesanan");
- }
-
- public function getListHutangAnggota($id)
- {
- $this->db->where("data_user_iddata_user", $id);
- $this->db->where("metode_pembayaran", 2);
- $this->db->where("status_hutang", 0);
- return $this->db->get("pemesanan");
- }
-
- public function getListCicilanHutangAnggota($id)
- {
- $this->db->where("pemesanan_idpemesanan", $id);
- return $this->db->get("bayar_hutang");
- }
-
- public function getListSisaHutangAnggota($id)
- {
- $this->db->select("pemesanan.idpemesanan, pemesanan.tanggal, pemesanan.status_hutang, harus_dibayar - SUM(pembayaran) as harus_dibayar");
- $this->db->join("bayar_hutang","bayar_hutang.pemesanan_idpemesanan = pemesanan.idpemesanan", "left");
- // $this->db->where("data_user_iddata_user", $id);
- $this->db->where("metode_pembayaran", 2);
- $this->db->where("status_hutang", 0);
- $this->db->group_by("pemesanan_idpemesanan");
- return $this->db->get("pemesanan");
- }
-
-}
diff --git a/application/models/ModelLinear.php b/application/models/ModelLinear.php
deleted file mode 100644
index ec3d84c..0000000
--- a/application/models/ModelLinear.php
+++ /dev/null
@@ -1,33 +0,0 @@
- [2020, 2021, 2022, 2023, 2024],
- 'cases' => [156, 86, 43, 66, 62]
- ];
- }
-
- public function calculate_regression($years, $cases) {
- $n = count($years);
- $sum_x = array_sum($years);
- $sum_y = array_sum($cases);
- $sum_x_squared = array_sum(array_map(function($x) { return $x * $x; }, $years));
- $sum_xy = array_sum(array_map(function($x, $y) { return $x * $y; }, $years, $cases));
-
- $slope = ($n * $sum_xy - $sum_x * $sum_y) / ($n * $sum_x_squared - $sum_x * $sum_x);
- $intercept = ($sum_y - $slope * $sum_x) / $n;
-
- return [
- 'slope' => $slope,
- 'intercept' => $intercept
- ];
- }
-
- public function forecast($slope, $intercept, $next_year) {
- return $slope * $next_year + $intercept;
- }
-}
diff --git a/application/models/ModelMakanan.php b/application/models/ModelMakanan.php
deleted file mode 100644
index cf3641e..0000000
--- a/application/models/ModelMakanan.php
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
- * @since v.1.0
-
- **/
-
-
- public function __construct()
- {
- parent::__construct();
- //Codeigniter : Write Less Do More
- }
-
- public function get_data()
- {
- return $this->db
- ->join("kategori","kategori.id_kategori=bahan_makanan.kategori")
- ->get("bahan_makanan")->result();
- }
-
- public function insert($data)
- {
- return $this->db->table($this->table)->insert($data);
- }
- public function count_makanan()
- {
- return $this->db->count_all("bahan_makanan");
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("bahan_makanan", array("id_makanan" => $id))->row_array();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelMitra.php b/application/models/ModelMitra.php
deleted file mode 100644
index 9fd0d1c..0000000
--- a/application/models/ModelMitra.php
+++ /dev/null
@@ -1,32 +0,0 @@
-db->get("pusat");
- }
-
- public function get_data($idpusat = null){
- if ($idpusat != null || $idpusat != "") {
- $this->db->where("pusat_idpusat",$idpusat);
- }
- return $this->db->get('mitra');
- }
-
- public function get_data_mitra($idmitra=null)
- {
- if ($idmitra != null || $idmitra != "") {
- $this->db->where("mitra.idmitra",$idmitra);
- }
- return $this->db->get('mitra');
- }
-
-}
diff --git a/application/models/ModelPertanyaan.php b/application/models/ModelPertanyaan.php
deleted file mode 100644
index 7829b52..0000000
--- a/application/models/ModelPertanyaan.php
+++ /dev/null
@@ -1,39 +0,0 @@
-db->get_where("pertanyaan")->result();
- }
-
- public function get_data_edit($id)
- {
- return $this->db->get_where("pertanyaan", array("id_pertanyaan" => $id))->row_array();
- }
-
- public function get_jawaban_edit($id)
- {
- return $this->db
- ->join("pertanyaan", "pertanyaan.id_pertanyaan = jawaban.id_pertanyaan")
- ->where("jawaban.id_pertanyaan", $id)
- ->get("jawaban")
- ->row_array();
- }
- public function get_data2()
- {
- return $this->db
- ->join("user","user.id_user=pertanyaan.id_user")
- ->join("jawaban","jawaban.id_pertanyaan=pertanyaan.id_pertanyaan")
- ->where("pertanyaan.is_answer", "1")
- ->get("pertanyaan")->result();
- }
-}
\ No newline at end of file
diff --git a/application/models/ModelVoucer.php b/application/models/ModelVoucer.php
deleted file mode 100644
index 00fed8d..0000000
--- a/application/models/ModelVoucer.php
+++ /dev/null
@@ -1,55 +0,0 @@
-db->where("pusat_idpusat", $idpusat);
- }
- return $this->db->get("voucer");
- }
-
- function getData($idvoucer)
- {
- $this->db->where("idvoucer", $idvoucer);
- return $this->db->get("voucer");
- }
-
- function get_anggota($id, $idpusat = null)
- {
- $this->db->join("voucer_user", "voucer_user.data_user_iddata_user = data_user.iddata_user AND voucer_user.voucer_idvoucer = ".$id,"left");
- $this->db->where("data_user.status_anggota", 1);
- if ($idpusat != null || $idpusat != "") {
- $this->db->where("data_user.pusat_idpusat", $idpusat);
- }
- return $this->db->get("data_user");
- }
-
- public function get_voucer_anggota($iduser=null, $idvoucer = null, $status_voucer = null, $idpemesanan = null)
- {
- if ($idpemesanan != null) {
- $this->db->where("pemesanan_idpemesanan", $idpemesanan);
- }
- if ($iduser != null) {
- $this->db->where("data_user_iddata_user", $iduser);
- }
- if ($idvoucer != null) {
- $this->db->where("voucer_idvoucer", $idvoucer);
- }
- if ($status_voucer != null) {
- $this->db->where("status_voucer", $status_voucer);
- }
- $this->db->join("voucer", "voucer.idvoucer = voucer_user.voucer_idvoucer");
- return $this->db->get("voucer_user");
- }
-
-
-}
diff --git a/application/views/AKG/edit.php b/application/views/AKG/edit.php
deleted file mode 100644
index ebfe0bd..0000000
--- a/application/views/AKG/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
- uri->segment(3)); ?>
-
- load->view($form) ?>
- Core->btn_input() ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/AKG/form.php b/application/views/AKG/form.php
deleted file mode 100644
index 85e114d..0000000
--- a/application/views/AKG/form.php
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/application/views/AKG/form_edit.php b/application/views/AKG/form_edit.php
deleted file mode 100644
index dca66c1..0000000
--- a/application/views/AKG/form_edit.php
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/AKG/input.php b/application/views/AKG/input.php
deleted file mode 100644
index e4d0392..0000000
--- a/application/views/AKG/input.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form) ?>
- Core->btn_input() ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/AKG/list.php b/application/views/AKG/list.php
deleted file mode 100644
index 90c57ba..0000000
--- a/application/views/AKG/list.php
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- Core->Hapus_disable(); ?>
-
-
- Core->Hapus_aktif(); ?>
-
-
\ No newline at end of file
diff --git a/application/views/Analisis/list.php b/application/views/Analisis/list.php
deleted file mode 100644
index 9d0e99d..0000000
--- a/application/views/Analisis/list.php
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- Tanggal |
- Nama |
- Total Kalori |
- Keterangan |
- Opsi |
-
-
-
-
-
-
-
- waktu)) ?>
- |
-
- nama ?>
- |
-
- total_kalori, 0);
- echo $total_kalori.' kkal'; ?>
- |
-
- energi * 40 / 100;
- $ppokok = $sarapan * 30 / 100;
- $plauk = $sarapan * 20 / 100;
- $psayur = $sarapan * 30 / 100;
- $pbuah = $sarapan * 20 / 100;
- // Makan Siang
- $siang = $data->energi * 40 / 100;
- $spokok = $siang * 30 / 100;
- $slauk = $siang * 20 / 100;
- $ssayur = $siang * 30 / 100;
- $sbuah = $siang * 20 / 100;
- // Makan Malam
- $malam = $data->energi * 20 / 100;
- $mpokok = $malam * 30 / 100;
- $mlauk = $malam * 20 / 100;
- $msayur = $malam * 30 / 100;
- $mbuah = $malam * 20 / 100;
- ?>
- total_sarapan != $sarapan && $data->total_siang != $siang && $data->total_malam != $malam){
- if($data->total_sarapan_pokok != $ppokok && $data->total_sarapan_lauk != $plauk && $data->total_sarapan_sayur != $psayur && $data->total_sarapan_buah != $pbuah && $data->total_siang_pokok != $spokok && $data->total_siang_lauk != $slauk && $data->total_siang_sayur != $ssayur && $data->total_siang_buah != $sbuah && $data->total_malam_pokok != $mpokok && $data->total_malam_lauk != $mlauk && $data->total_malam_sayur != $msayur && $data->total_malam_buah != $mbuah){
- echo "Kalori tidak sesuai, isi piringku tidak sesuai";
- }else{
- echo "Kalori tidak sesuai, isi piringku sesuai";
- }
- }else{
- if($data->total_sarapan_pokok != $ppokok && $data->total_sarapan_lauk != $plauk && $data->total_sarapan_sayur != $psayur && $data->total_sarapan_buah != $pbuah && $data->total_siang_pokok != $spokok && $data->total_siang_lauk != $slauk && $data->total_siang_sayur != $ssayur && $data->total_siang_buah != $sbuah && $data->total_malam_pokok != $mpokok && $data->total_malam_lauk != $mlauk && $data->total_malam_sayur != $msayur && $data->total_malam_buah != $mbuah){
- echo "Kalori sesuai, isi piringku tidak sesuai";
- }else{
- echo "Kalori sesuai, isi piringku sesuai";
- }
- } ?>
- total_sarapan_pokok ?>
- |
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
Tanggal: waktu)) ?>
-
Nama: nama ?>
-
Total Kalori: total_kalori, 0);
- echo $total_kalori.' kkal'; ?>
-
-
-
-
-
-
-
Sarapan :
-
Makanan Pokok
-
Lauk Pauk
-
Sayuran
-
Buah-Buahan
-
-
-
Total Kalori
- total_sarapan, 0); ?>
-
- total_sarapan_pokok, 0); ?>
-
- total_sarapan_lauk, 0); ?>
-
- total_sarapan_sayur, 0); ?>
-
- total_sarapan_buah, 0); ?>
-
-
-
-
Target Kalori
-
-
-
-
-
-
-
-
Keterangan
- total_sarapan!=$sarapan){ ?>
-
-
-
-
- total_sarapan_pokok!=$ppokok){ ?>
-
-
-
-
- total_sarapan_lauk!=$plauk){ ?>
-
-
-
-
- total_sarapan_sayur!=$psayur){ ?>
-
-
-
-
- total_sarapan_buah!=$pbuah){ ?>
-
-
-
-
-
-
-
-
-
-
Makan Siang :
-
Makanan Pokok
-
Lauk Pauk
-
Sayuran
-
Buah-Buahan
-
-
-
Total Kalori
- total_siang, 0); ?>
-
- total_siang_pokok, 0); ?>
-
- total_siang_lauk, 0); ?>
-
- total_siang_sayur, 0); ?>
-
- total_siang_buah, 0); ?>
-
-
-
-
Target Kalori
-
-
-
-
-
-
-
-
Keterangan
- total_siang!=$siang){ ?>
-
-
-
-
- total_siang_pokok!=$spokok){ ?>
-
-
-
-
- total_siang_lauk!=$slauk){ ?>
-
-
-
-
- total_siang_sayur!=$ssayur){ ?>
-
-
-
-
- total_siang_buah!=$sbuah){ ?>
-
-
-
-
-
-
-
-
-
-
Makan Malam :
-
Makanan Pokok
-
Lauk Pauk
-
Sayuran
-
Buah-Buahan
-
-
-
Total Kalori
- total_malam, 0); ?>
-
- total_malam_pokok, 0); ?>
-
- total_malam_lauk, 0); ?>
-
- total_malam_sayur, 0); ?>
-
- total_malam_buah, 0); ?>
-
-
-
-
Target Kalori
-
-
-
-
-
-
-
-
Keterangan
- total_malam!=$malam){ ?>
-
-
-
-
- total_malam_pokok!=$mpokok){ ?>
-
-
-
-
- total_malam_lauk!=$mlauk){ ?>
-
-
-
-
- total_malam_sayur!=$msayur){ ?>
-
-
-
-
- total_malam_buah!=$mbuah){ ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Artikel/edit.php b/application/views/Artikel/edit.php
deleted file mode 100644
index 69c03fd..0000000
--- a/application/views/Artikel/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Artikel/form.php b/application/views/Artikel/form.php
deleted file mode 100644
index 4e55bcb..0000000
--- a/application/views/Artikel/form.php
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Artikel/form_edit.php b/application/views/Artikel/form_edit.php
deleted file mode 100644
index c6c767b..0000000
--- a/application/views/Artikel/form_edit.php
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Artikel/input.php b/application/views/Artikel/input.php
deleted file mode 100644
index 7cf7333..0000000
--- a/application/views/Artikel/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Artikel/list.php b/application/views/Artikel/list.php
deleted file mode 100644
index 248de8c..0000000
--- a/application/views/Artikel/list.php
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
Core->Hapus_disable(); ?>
-
Core->Hapus_aktif(); ?>
-
diff --git a/application/views/Artikel/view.php b/application/views/Artikel/view.php
deleted file mode 100644
index 57445a3..0000000
--- a/application/views/Artikel/view.php
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/application/views/FAQ/edit.php b/application/views/FAQ/edit.php
deleted file mode 100644
index 9096a94..0000000
--- a/application/views/FAQ/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/FAQ/form.php b/application/views/FAQ/form.php
deleted file mode 100644
index 4fd1e56..0000000
--- a/application/views/FAQ/form.php
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/application/views/FAQ/input.php b/application/views/FAQ/input.php
deleted file mode 100644
index 201b4b0..0000000
--- a/application/views/FAQ/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/FAQ/list.php b/application/views/FAQ/list.php
deleted file mode 100644
index f8bf79c..0000000
--- a/application/views/FAQ/list.php
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
- Core->Hapus_disable(); ?>
-
-
- Core->Hapus_aktif(); ?>
-
-
\ No newline at end of file
diff --git a/application/views/IMT/edit.php b/application/views/IMT/edit.php
deleted file mode 100644
index 44342fb..0000000
--- a/application/views/IMT/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
- uri->segment(3)); ?>
-
- load->view($form) ?>
- Core->btn_input() ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/IMT/form.php b/application/views/IMT/form.php
deleted file mode 100644
index 5232479..0000000
--- a/application/views/IMT/form.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/application/views/IMT/form_edit.php b/application/views/IMT/form_edit.php
deleted file mode 100644
index a9a5ec2..0000000
--- a/application/views/IMT/form_edit.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/application/views/IMT/input.php b/application/views/IMT/input.php
deleted file mode 100644
index aaa4bfe..0000000
--- a/application/views/IMT/input.php
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form) ?>
- Core->btn_input() ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/IMT/list.php b/application/views/IMT/list.php
deleted file mode 100644
index 4b4ec50..0000000
--- a/application/views/IMT/list.php
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
- Core->Hapus_disable(); ?>
-
-
- Core->Hapus_aktif(); ?>
-
-
\ No newline at end of file
diff --git a/application/views/Jawaban/edit.php b/application/views/Jawaban/edit.php
deleted file mode 100644
index 1041e13..0000000
--- a/application/views/Jawaban/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Jawaban/form.php b/application/views/Jawaban/form.php
deleted file mode 100644
index f9ae98a..0000000
--- a/application/views/Jawaban/form.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/application/views/Jawaban/input.php b/application/views/Jawaban/input.php
deleted file mode 100644
index a14e8c1..0000000
--- a/application/views/Jawaban/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Jawaban/list.php b/application/views/Jawaban/list.php
deleted file mode 100644
index 1df1ba5..0000000
--- a/application/views/Jawaban/list.php
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
Core->Hapus_disable(); ?>
-
Core->Hapus_aktif(); ?>
-
diff --git a/application/views/Kategori/edit.php b/application/views/Kategori/edit.php
deleted file mode 100644
index 8b71a3a..0000000
--- a/application/views/Kategori/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Kategori/form.php b/application/views/Kategori/form.php
deleted file mode 100644
index c3cbf81..0000000
--- a/application/views/Kategori/form.php
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/application/views/Kategori/input.php b/application/views/Kategori/input.php
deleted file mode 100644
index b2ae873..0000000
--- a/application/views/Kategori/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Kategori/list.php b/application/views/Kategori/list.php
deleted file mode 100644
index 38cd1ae..0000000
--- a/application/views/Kategori/list.php
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
- Core->Hapus_disable(); ?>
-
-
- Core->Hapus_aktif(); ?>
-
-
\ No newline at end of file
diff --git a/application/views/Laporan/cetak_darah.php b/application/views/Laporan/cetak_darah.php
deleted file mode 100644
index 3e087ff..0000000
--- a/application/views/Laporan/cetak_darah.php
+++ /dev/null
@@ -1,44 +0,0 @@
-AddPage('P');
-$i = 0;
-foreach ($data as $value) {
-$html = '
LAPORAN RIWAYAT DARAH
-
-
- Bulan: ' . date("F", strtotime($value->bulan)) . ' |
- Tahun: ' . $tahun . ' |
-
-
-
-
-
- Bulan dan Tahun |
- Nama |
- Status Tambah Darah |
-
';
- }
-$total = 0;
-$jm = 0;
-foreach ($data as $value) {
- $i++;
- $html .= '
- ' . date("F Y", strtotime($value->bulan)). ' |
- ' . $value->nama . ' |
- ' . $value->status_darah . ' |
-
';
- if ($value->status != 0) {
- $total += $value->status_darah;
- $jm += 1;
- }
-}
-
-
-$total = $total / $jm;
-$html .= '
';
-$pdf->writeHTML($html, true, false, true, false, '');
-ob_end_clean();
-$pdf->Output('LAPORAN_TAMBAH_DARAH_' . $bulan . '.pdf', 'I');
-?>
diff --git a/application/views/Laporan/cetak_gizi.php b/application/views/Laporan/cetak_gizi.php
deleted file mode 100644
index 5ce7332..0000000
--- a/application/views/Laporan/cetak_gizi.php
+++ /dev/null
@@ -1,41 +0,0 @@
-AddPage('P');
-$i = 0;
-$html = '
LAPORAN RIWAYAT STATUS GIZI
-
DARI TGL: ' . $mulai . ' S/D TGL: ' . $sampai . '
-
-
- Waktu |
- Nama |
- Keterangan |
-
';
-
-$total = 0;
-$jm = 0;
-foreach ($data as $value) {
- $i++;
- $html .= '
- ' . date("d-m-Y", strtotime($value->waktu)) . ' |
- ' . $value->nama . ' | ';
- if($value->total_kalori!=$value->energi && $value->total_karbohidrat!=$value->karbohidrat && $value->total_protein!=$value->protein && $value->total_lemak!=$value->lemak && $value->total_besi!=$value->besi && $value->total_vitamina!=$value->vitamina && $value->total_vitaminc!=$value->vitaminc){
- $html .= 'Gizi Kurang Mencukupi | ';
- }else{
- $html .='Gizi Tercukupi | ';
- }
- $html .='
';
- if ($value->total_kalori != 0) {
- $total += $value->total_kalori;
- $jm += 1;
- }
-}
-
-
-$total = $total / $jm;
-$html .= '
';
-$pdf->writeHTML($html, true, false, true, false, '');
-ob_end_clean();
-$pdf->Output('LAPORAN_GIZI_' . $sampai . '.pdf', 'I');
-?>
diff --git a/application/views/Laporan/cetak_konsumsi.php b/application/views/Laporan/cetak_konsumsi.php
deleted file mode 100644
index bad301a..0000000
--- a/application/views/Laporan/cetak_konsumsi.php
+++ /dev/null
@@ -1,37 +0,0 @@
-AddPage('P');
-$i = 0;
-$html = '
LAPORAN RIWAYAT KONSUMSI PENGGUNA
-
DARI TGL: ' . $mulai . ' S/D TGL: ' . $sampai . '
-
-
- Waktu |
- Nama |
- Total Kalori |
-
';
-
-$total = 0;
-$jm = 0;
-foreach ($data as $value) {
- $i++;
- $html .= '
- ' . date("d-m-Y", strtotime($value->waktu)) . ' |
- ' . $value->nama . ' |
- ' . round($value->total_kalori, 0) . ' |
-
';
- if ($value->total_kalori != 0) {
- $total += round($value->total_kalori);
- $jm += 1;
- }
-}
-
-
-$total = $total / $jm;
-$html .= '
';
-$pdf->writeHTML($html, true, false, true, false, '');
-ob_end_clean();
-$pdf->Output('LAPORAN_KALORI_' . $sampai . '.pdf', 'I');
-?>
diff --git a/application/views/Laporan/darah.php b/application/views/Laporan/darah.php
deleted file mode 100644
index 49a2798..0000000
--- a/application/views/Laporan/darah.php
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Laporan/darah_detail.php b/application/views/Laporan/darah_detail.php
deleted file mode 100644
index 92a9a0d..0000000
--- a/application/views/Laporan/darah_detail.php
+++ /dev/null
@@ -1,118 +0,0 @@
-
-
-
- Bulan dan Tahun |
- Nama |
- Status Tambah Darah |
- Detail |
-
-
-
-
-
-
-
-
- bulan)) ?>
- |
-
- nama ?>
- |
-
- status);
- $isLengkap = true;
-
- foreach ($status as $s) {
- if ($s != 'sudah') {
- $isLengkap = false;
- break; // Keluar dari perulangan jika ada yang belum
- }
- }
-
- if ($isLengkap) {
- echo "Lengkap";
- } else {
- echo "Tidak lengkap";
- }
-?>
- |
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
Bulan dan Tahun:
- bulan)) ?>
-
-
Nama:
- nama ?>
-
-
Status Tambah Darah:
- status);
- $isLengkap = true;
-
- foreach ($status as $s) {
- if ($s != 'sudah') {
- $isLengkap = false;
- break; // Keluar dari perulangan jika ada yang belum
- }
- }
-
- if ($isLengkap) {
- echo "Lengkap";
- } else {
- echo "Tidak lengkap";
- }?>
-
- tanggal); ?>
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Laporan/gizi.php b/application/views/Laporan/gizi.php
deleted file mode 100644
index 9d90fd5..0000000
--- a/application/views/Laporan/gizi.php
+++ /dev/null
@@ -1,279 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Tanggal |
- Nama |
- Keterangan |
- Opsi |
-
-
-
-
-
-
- waktu)) ?>
- |
-
- nama ?>
- |
-
-
- total_kalori!=$data->energi && $data->total_karbohidrat!=$data->karbohidrat && $data->total_protein!=$data->protein && $data->total_lemak!=$data->lemak && $data->total_besi!=$data->besi && $data->total_vitamina!=$data->vitamina && $data->total_vitaminc!=$data->vitaminc){
- echo "Gizi Kurang Mencukupi";
- }else{
- echo "Gizi Tercukupi";
- } ?>
- |
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
Tanggal: waktu)) ?>
-
Nama: nama ?>
-
-
- nama_makanan); ?>
- urt); ?>
- energi); ?>
-
-
-
Total Kalori
-
total_kalori, 0);
- echo $total_kalori.' kkal'; ?>
-
-
-
Target Kalori
-
energi.' kkal'; ?>
-
-
-
Keterangan
- total_kalori!=$data->energi){ ?>
-
-
-
-
-
-
-
-
-
Total Karbohidrat
-
total_karbohidrat, 0);
- echo $total_karbohidrat.' g'; ?>
-
-
-
Target Karbohidrat
-
karbohidrat.' g'; ?>
-
-
-
Keterangan
- total_karbohidrat!=$data->karbohidrat){ ?>
-
-
-
-
-
-
-
-
-
Total Protein
-
total_protein, 0);
- echo $total_protein.' g'; ?>
-
-
-
Target Protein
-
protein.' g'; ?>
-
-
-
Keterangan
- total_protein!=$data->protein){ ?>
-
-
-
-
-
-
-
-
-
Total Lemak
-
total_lemak, 0);
- echo $total_lemak.' g'; ?>
-
-
-
Target Lemak
-
lemak.' g'; ?>
-
-
-
Keterangan
- total_lemak!=$data->lemak){ ?>
-
-
-
-
-
-
-
-
-
Total Besi
-
total_besi, 0);
- echo $total_besi.' mg'; ?>
-
-
-
Target Besi
-
besi.' mg'; ?>
-
-
-
Keterangan
- total_besi!=$data->besi){ ?>
-
-
-
-
-
-
-
-
-
Total Vitamin A
-
total_vitamina, 0);
- echo $total_vitamina.' mcg'; ?>
-
-
-
Target Vitamin A
-
vitamina.' mcg'; ?>
-
-
-
Keterangan
- total_vitamina!=$data->vitamina){ ?>
-
-
-
-
-
-
-
-
-
Total Vitamin C
-
total_vitaminc, 0);
- echo $total_vitaminc.' mg'; ?>
-
-
-
Target Vitamin C
-
vitaminc.' mg'; ?>
-
-
-
Keterangan
- total_vitaminc!=$data->vitaminc){ ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Laporan/konsumsi.php b/application/views/Laporan/konsumsi.php
deleted file mode 100644
index 4982dca..0000000
--- a/application/views/Laporan/konsumsi.php
+++ /dev/null
@@ -1,364 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Tanggal |
- Nama |
- Total Kalori |
- Opsi |
-
-
-
-
-
-
-
- waktu)) ?>
- |
-
- nama ?>
- |
-
- total_kalori, 0);
- echo $total_kalori.' kkal'; ?> |
-
-
-
-
-
- |
-
-
-
-
-
-
-
-
-
Tanggal: waktu)) ?>
-
Nama: nama ?>
-
Total Kalori: total_kalori, 0);
- echo $total_kalori.' kkal'; ?>
-
-
- makanan_pokok); ?>
- lauk_pauk); ?>
- sayuran); ?>
- buah_buahan); ?>
- jajanan); ?>
-
- urt_makanan_pokok); ?>
- urt_lauk_pauk); ?>
- urt_sayuran); ?>
- urt_buah_buahan); ?>
- urt_jajanan); ?>
-
- energi_makanan_pokok); ?>
- energi_lauk_pauk); ?>
- energi_sayuran); ?>
- energi_buah_buahan); ?>
- energi_jajanan); ?>
-
- kuantitas_makanan_pokok); ?>
- kuantitas_lauk_pauk); ?>
- kuantitas_sayuran); ?>
- kuantitas_buah_buahan); ?>
- kuantitas_jajanan); ?>
-
-
Makanan Pokok :
-
-
-
Nama Makanan
-
-
-
-
-
-
-
-
-
-
-
-
Lauk Pauk :
-
-
-
Nama Makanan
-
-
-
-
-
-
-
-
-
-
-
-
Sayuran :
-
-
-
Nama Makanan
-
-
-
-
-
-
-
-
-
-
-
-
Buah-Buahan :
-
-
-
Nama Makanan
-
-
-
-
-
-
-
-
-
-
-
-
Jajanan :
-
-
-
Nama Makanan
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Linear/list.php b/application/views/Linear/list.php
deleted file mode 100644
index 68dbb27..0000000
--- a/application/views/Linear/list.php
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
Linear Regression Forecast
-
-
-
Linear Regression Forecast
-
Koefisien (Slope):
-
Intercept:
-
Perkiraan jumlah kasus stunting di tahun 2025:
-
Data Kasus
-
-
-
- Tahun |
- Jumlah Kasus |
-
-
-
- $year): ?>
-
- |
- |
-
-
-
-
-
-
diff --git a/application/views/Makanan/edit.php b/application/views/Makanan/edit.php
deleted file mode 100644
index 9edac2f..0000000
--- a/application/views/Makanan/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Makanan/form.php b/application/views/Makanan/form.php
deleted file mode 100644
index 872d275..0000000
--- a/application/views/Makanan/form.php
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/application/views/Makanan/form_edit.php b/application/views/Makanan/form_edit.php
deleted file mode 100644
index b9495a6..0000000
--- a/application/views/Makanan/form_edit.php
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/application/views/Makanan/input.php b/application/views/Makanan/input.php
deleted file mode 100644
index a7c20ea..0000000
--- a/application/views/Makanan/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Makanan/list.php b/application/views/Makanan/list.php
deleted file mode 100644
index 739d2a1..0000000
--- a/application/views/Makanan/list.php
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
Core->Hapus_disable(); ?>
-
Core->Hapus_aktif(); ?>
-
diff --git a/application/views/Pertanyaan/edit.php b/application/views/Pertanyaan/edit.php
deleted file mode 100644
index fc34110..0000000
--- a/application/views/Pertanyaan/edit.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
- uri->segment(3));?>
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
diff --git a/application/views/Pertanyaan/form.php b/application/views/Pertanyaan/form.php
deleted file mode 100644
index 4fd1e56..0000000
--- a/application/views/Pertanyaan/form.php
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/application/views/Pertanyaan/form2.php b/application/views/Pertanyaan/form2.php
deleted file mode 100644
index 5744eb6..0000000
--- a/application/views/Pertanyaan/form2.php
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Core->btn_input() ?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Pertanyaan/input.php b/application/views/Pertanyaan/input.php
deleted file mode 100644
index 529bde8..0000000
--- a/application/views/Pertanyaan/input.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- load->view($form)?>
- Core->btn_input()?>
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/application/views/Pertanyaan/list.php b/application/views/Pertanyaan/list.php
deleted file mode 100644
index f8cb33b..0000000
--- a/application/views/Pertanyaan/list.php
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
- Core->Hapus_disable(); ?>
-
-
- Core->Hapus_aktif(); ?>
-
-
\ No newline at end of file
diff --git a/foto/agunan/17_142091305_1631083127.jpeg b/foto/agunan/17_142091305_1631083127.jpeg
deleted file mode 100644
index 3f41373..0000000
Binary files a/foto/agunan/17_142091305_1631083127.jpeg and /dev/null differ
diff --git a/foto/agunan/18_125345770_1631084267.jpeg b/foto/agunan/18_125345770_1631084267.jpeg
deleted file mode 100644
index 3f41373..0000000
Binary files a/foto/agunan/18_125345770_1631084267.jpeg and /dev/null differ
diff --git a/foto/agunan/20_326624267_1631092198.jpeg b/foto/agunan/20_326624267_1631092198.jpeg
deleted file mode 100644
index 3f41373..0000000
Binary files a/foto/agunan/20_326624267_1631092198.jpeg and /dev/null differ
diff --git a/foto/agunan/21b1098abd13e7a18c6a34d89fb72f2b.png b/foto/agunan/21b1098abd13e7a18c6a34d89fb72f2b.png
deleted file mode 100644
index 583a617..0000000
Binary files a/foto/agunan/21b1098abd13e7a18c6a34d89fb72f2b.png and /dev/null differ
diff --git a/foto/agunan/2c88c9f396271826211d6d78439fcfcb.jpg b/foto/agunan/2c88c9f396271826211d6d78439fcfcb.jpg
deleted file mode 100644
index 8f7118b..0000000
Binary files a/foto/agunan/2c88c9f396271826211d6d78439fcfcb.jpg and /dev/null differ
diff --git a/foto/agunan/4a1152169dc0432ece78f26b6e95c8cb.png b/foto/agunan/4a1152169dc0432ece78f26b6e95c8cb.png
deleted file mode 100644
index c8f127a..0000000
Binary files a/foto/agunan/4a1152169dc0432ece78f26b6e95c8cb.png and /dev/null differ
diff --git a/foto/agunan/509bcd11983681b352d34d5fb63a4be1.png b/foto/agunan/509bcd11983681b352d34d5fb63a4be1.png
deleted file mode 100644
index 583a617..0000000
Binary files a/foto/agunan/509bcd11983681b352d34d5fb63a4be1.png and /dev/null differ
diff --git a/foto/foto_banner/3.png b/foto/foto_banner/3.png
deleted file mode 100644
index ab1c510..0000000
Binary files a/foto/foto_banner/3.png and /dev/null differ
diff --git a/foto/foto_banner/699647.png b/foto/foto_banner/699647.png
deleted file mode 100644
index a2ecd5b..0000000
Binary files a/foto/foto_banner/699647.png and /dev/null differ
diff --git a/foto/foto_banner/9191758_26363.jpg b/foto/foto_banner/9191758_26363.jpg
deleted file mode 100644
index 3174e2d..0000000
Binary files a/foto/foto_banner/9191758_26363.jpg and /dev/null differ
diff --git a/foto/foto_banner/Banner-diskon-Jejualan-large.jpg b/foto/foto_banner/Banner-diskon-Jejualan-large.jpg
deleted file mode 100644
index 91f9863..0000000
Binary files a/foto/foto_banner/Banner-diskon-Jejualan-large.jpg and /dev/null differ
diff --git a/foto/foto_banner/Discount.jpg b/foto/foto_banner/Discount.jpg
deleted file mode 100644
index 32b0506..0000000
Binary files a/foto/foto_banner/Discount.jpg and /dev/null differ
diff --git a/foto/foto_banner/IMG_20221013_161632.jpg b/foto/foto_banner/IMG_20221013_161632.jpg
deleted file mode 100644
index 71914c1..0000000
Binary files a/foto/foto_banner/IMG_20221013_161632.jpg and /dev/null differ
diff --git a/foto/foto_banner/Promo_Weekend.jpg b/foto/foto_banner/Promo_Weekend.jpg
deleted file mode 100644
index 21543bf..0000000
Binary files a/foto/foto_banner/Promo_Weekend.jpg and /dev/null differ
diff --git a/foto/foto_banner/Screenshot_(1388).png b/foto/foto_banner/Screenshot_(1388).png
deleted file mode 100644
index 9c423b6..0000000
Binary files a/foto/foto_banner/Screenshot_(1388).png and /dev/null differ
diff --git a/foto/foto_banner/Screenshot_(669).png b/foto/foto_banner/Screenshot_(669).png
deleted file mode 100644
index a0b263b..0000000
Binary files a/foto/foto_banner/Screenshot_(669).png and /dev/null differ
diff --git a/foto/foto_banner/Tokyo_Ghoul.jpg b/foto/foto_banner/Tokyo_Ghoul.jpg
deleted file mode 100644
index 43dea3b..0000000
Binary files a/foto/foto_banner/Tokyo_Ghoul.jpg and /dev/null differ
diff --git a/foto/foto_banner/Toska_Putih_Illustrasi_Hari_Kesehatan_Dunia_Banner.png b/foto/foto_banner/Toska_Putih_Illustrasi_Hari_Kesehatan_Dunia_Banner.png
deleted file mode 100644
index 2634ea8..0000000
Binary files a/foto/foto_banner/Toska_Putih_Illustrasi_Hari_Kesehatan_Dunia_Banner.png and /dev/null differ
diff --git a/foto/foto_banner/Untitled.jpg b/foto/foto_banner/Untitled.jpg
deleted file mode 100644
index e053910..0000000
Binary files a/foto/foto_banner/Untitled.jpg and /dev/null differ
diff --git a/foto/foto_banner/Untitled1.jpg b/foto/foto_banner/Untitled1.jpg
deleted file mode 100644
index e053910..0000000
Binary files a/foto/foto_banner/Untitled1.jpg and /dev/null differ
diff --git a/foto/foto_banner/Vincent_Valentine.jpg b/foto/foto_banner/Vincent_Valentine.jpg
deleted file mode 100644
index 0d9e4cd..0000000
Binary files a/foto/foto_banner/Vincent_Valentine.jpg and /dev/null differ
diff --git a/foto/foto_banner/bannerresep.png b/foto/foto_banner/bannerresep.png
deleted file mode 100644
index c194e24..0000000
Binary files a/foto/foto_banner/bannerresep.png and /dev/null differ
diff --git a/foto/foto_banner/blog-banner-karnaval-24-02.jpg b/foto/foto_banner/blog-banner-karnaval-24-02.jpg
deleted file mode 100644
index f8befbe..0000000
Binary files a/foto/foto_banner/blog-banner-karnaval-24-02.jpg and /dev/null differ
diff --git a/foto/foto_banner/desain_antangin6.png b/foto/foto_banner/desain_antangin6.png
deleted file mode 100644
index f2f77f2..0000000
Binary files a/foto/foto_banner/desain_antangin6.png and /dev/null differ
diff --git a/foto/foto_banner/desain_belankon8.png b/foto/foto_banner/desain_belankon8.png
deleted file mode 100644
index 12b380e..0000000
Binary files a/foto/foto_banner/desain_belankon8.png and /dev/null differ
diff --git a/foto/foto_banner/download.jpg b/foto/foto_banner/download.jpg
deleted file mode 100644
index bdc3eec..0000000
Binary files a/foto/foto_banner/download.jpg and /dev/null differ
diff --git a/foto/foto_banner/listpulsa.jpg b/foto/foto_banner/listpulsa.jpg
deleted file mode 100644
index 2f71392..0000000
Binary files a/foto/foto_banner/listpulsa.jpg and /dev/null differ
diff --git a/foto/foto_banner/makananminuman2.png b/foto/foto_banner/makananminuman2.png
deleted file mode 100644
index 49bf538..0000000
Binary files a/foto/foto_banner/makananminuman2.png and /dev/null differ
diff --git a/foto/foto_banner/promo-top-up-diamon-free-fire-gopay.jpg b/foto/foto_banner/promo-top-up-diamon-free-fire-gopay.jpg
deleted file mode 100644
index 3dbe070..0000000
Binary files a/foto/foto_banner/promo-top-up-diamon-free-fire-gopay.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh.jpg b/foto/foto_banner/promo_contoh.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh1.jpg b/foto/foto_banner/promo_contoh1.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh1.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh2.jpg b/foto/foto_banner/promo_contoh2.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh2.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh3.jpg b/foto/foto_banner/promo_contoh3.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh3.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh4.jpg b/foto/foto_banner/promo_contoh4.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh4.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh5.jpg b/foto/foto_banner/promo_contoh5.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh5.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh6.jpg b/foto/foto_banner/promo_contoh6.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh6.jpg and /dev/null differ
diff --git a/foto/foto_banner/promo_contoh7.jpg b/foto/foto_banner/promo_contoh7.jpg
deleted file mode 100644
index 72c1285..0000000
Binary files a/foto/foto_banner/promo_contoh7.jpg and /dev/null differ
diff --git a/foto/foto_banner/sembako.jpg b/foto/foto_banner/sembako.jpg
deleted file mode 100644
index 51ba4de..0000000
Binary files a/foto/foto_banner/sembako.jpg and /dev/null differ
diff --git a/foto/foto_banner/tinytan.jpg b/foto/foto_banner/tinytan.jpg
deleted file mode 100644
index 4dd1a69..0000000
Binary files a/foto/foto_banner/tinytan.jpg and /dev/null differ
diff --git a/foto/foto_banner/v870-tang-30.jpg b/foto/foto_banner/v870-tang-30.jpg
deleted file mode 100644
index d6481b3..0000000
Binary files a/foto/foto_banner/v870-tang-30.jpg and /dev/null differ
diff --git a/foto/foto_barang/000000664452_02_800.jpg b/foto/foto_barang/000000664452_02_800.jpg
deleted file mode 100644
index ee8b88a..0000000
Binary files a/foto/foto_barang/000000664452_02_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/000000904596_01_800.jpg b/foto/foto_barang/000000904596_01_800.jpg
deleted file mode 100644
index 36bf4a7..0000000
Binary files a/foto/foto_barang/000000904596_01_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/000001084830_01_800.jpg b/foto/foto_barang/000001084830_01_800.jpg
deleted file mode 100644
index 142e266..0000000
Binary files a/foto/foto_barang/000001084830_01_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/000bb31a9ee02f2f7c33ddc2dea8c771.jpg b/foto/foto_barang/000bb31a9ee02f2f7c33ddc2dea8c771.jpg
deleted file mode 100644
index d1cf3d6..0000000
Binary files a/foto/foto_barang/000bb31a9ee02f2f7c33ddc2dea8c771.jpg and /dev/null differ
diff --git a/foto/foto_barang/00fba23fd019efd57033f2173afb71ae.jpg b/foto/foto_barang/00fba23fd019efd57033f2173afb71ae.jpg
deleted file mode 100644
index e442751..0000000
Binary files a/foto/foto_barang/00fba23fd019efd57033f2173afb71ae.jpg and /dev/null differ
diff --git a/foto/foto_barang/0163af8a-7e32-4c03-87d0-5c077b5b02f6.jpg b/foto/foto_barang/0163af8a-7e32-4c03-87d0-5c077b5b02f6.jpg
deleted file mode 100644
index 83bc8be..0000000
Binary files a/foto/foto_barang/0163af8a-7e32-4c03-87d0-5c077b5b02f6.jpg and /dev/null differ
diff --git a/foto/foto_barang/02bc438346b996851b26fb0e22e36bdd.jpg b/foto/foto_barang/02bc438346b996851b26fb0e22e36bdd.jpg
deleted file mode 100644
index 562e3d3..0000000
Binary files a/foto/foto_barang/02bc438346b996851b26fb0e22e36bdd.jpg and /dev/null differ
diff --git a/foto/foto_barang/0341fb044c8633b5cbee2513cc1c1004.jpg b/foto/foto_barang/0341fb044c8633b5cbee2513cc1c1004.jpg
deleted file mode 100644
index 08ebe76..0000000
Binary files a/foto/foto_barang/0341fb044c8633b5cbee2513cc1c1004.jpg and /dev/null differ
diff --git a/foto/foto_barang/03d97593-8944-484c-a531-583e47e58ce2.jpg b/foto/foto_barang/03d97593-8944-484c-a531-583e47e58ce2.jpg
deleted file mode 100644
index b29d7aa..0000000
Binary files a/foto/foto_barang/03d97593-8944-484c-a531-583e47e58ce2.jpg and /dev/null differ
diff --git a/foto/foto_barang/04479963c63025e60b06b26cb76e0f87.jpg b/foto/foto_barang/04479963c63025e60b06b26cb76e0f87.jpg
deleted file mode 100644
index ce361dc..0000000
Binary files a/foto/foto_barang/04479963c63025e60b06b26cb76e0f87.jpg and /dev/null differ
diff --git a/foto/foto_barang/0453f673-7589-42d6-9837-b26a4cc97c55.jpg b/foto/foto_barang/0453f673-7589-42d6-9837-b26a4cc97c55.jpg
deleted file mode 100644
index a5e692a..0000000
Binary files a/foto/foto_barang/0453f673-7589-42d6-9837-b26a4cc97c55.jpg and /dev/null differ
diff --git a/foto/foto_barang/052897f8-492c-4b3f-80a8-1b225cd3f413.jpg b/foto/foto_barang/052897f8-492c-4b3f-80a8-1b225cd3f413.jpg
deleted file mode 100644
index e4f6ff7..0000000
Binary files a/foto/foto_barang/052897f8-492c-4b3f-80a8-1b225cd3f413.jpg and /dev/null differ
diff --git a/foto/foto_barang/069bc5126db2ac18091967d7d17c14fc.jpg b/foto/foto_barang/069bc5126db2ac18091967d7d17c14fc.jpg
deleted file mode 100644
index b54facf..0000000
Binary files a/foto/foto_barang/069bc5126db2ac18091967d7d17c14fc.jpg and /dev/null differ
diff --git a/foto/foto_barang/06a29151fc771dbdb0c3e7c392abc5f1.jpg b/foto/foto_barang/06a29151fc771dbdb0c3e7c392abc5f1.jpg
deleted file mode 100644
index 0e79c9f..0000000
Binary files a/foto/foto_barang/06a29151fc771dbdb0c3e7c392abc5f1.jpg and /dev/null differ
diff --git a/foto/foto_barang/0798094bc7116d5e3c8c659bd4abcaa9.jpg b/foto/foto_barang/0798094bc7116d5e3c8c659bd4abcaa9.jpg
deleted file mode 100644
index 97d92cb..0000000
Binary files a/foto/foto_barang/0798094bc7116d5e3c8c659bd4abcaa9.jpg and /dev/null differ
diff --git a/foto/foto_barang/07b10585688e88a470e64ecb4d3ccb98.jpg b/foto/foto_barang/07b10585688e88a470e64ecb4d3ccb98.jpg
deleted file mode 100644
index 14fd8cc..0000000
Binary files a/foto/foto_barang/07b10585688e88a470e64ecb4d3ccb98.jpg and /dev/null differ
diff --git a/foto/foto_barang/091ca63757c3214c5b1eedfd7b1d6f8d.jpg b/foto/foto_barang/091ca63757c3214c5b1eedfd7b1d6f8d.jpg
deleted file mode 100644
index 5122eff..0000000
Binary files a/foto/foto_barang/091ca63757c3214c5b1eedfd7b1d6f8d.jpg and /dev/null differ
diff --git a/foto/foto_barang/0931256shutterstock-143435113780x390.jpg b/foto/foto_barang/0931256shutterstock-143435113780x390.jpg
deleted file mode 100644
index 136e1b3..0000000
Binary files a/foto/foto_barang/0931256shutterstock-143435113780x390.jpg and /dev/null differ
diff --git a/foto/foto_barang/09eebb4bd543124abb95af0c288030a0.jpg b/foto/foto_barang/09eebb4bd543124abb95af0c288030a0.jpg
deleted file mode 100644
index b8f470b..0000000
Binary files a/foto/foto_barang/09eebb4bd543124abb95af0c288030a0.jpg and /dev/null differ
diff --git a/foto/foto_barang/0_194779ca-ee24-4d84-a1c1-d59b88d15c87_384_384.jpg b/foto/foto_barang/0_194779ca-ee24-4d84-a1c1-d59b88d15c87_384_384.jpg
deleted file mode 100644
index 44b4729..0000000
Binary files a/foto/foto_barang/0_194779ca-ee24-4d84-a1c1-d59b88d15c87_384_384.jpg and /dev/null differ
diff --git a/foto/foto_barang/0_34b415b9-2cc5-49f1-984f-a463664fc2d5_520_390.jpg b/foto/foto_barang/0_34b415b9-2cc5-49f1-984f-a463664fc2d5_520_390.jpg
deleted file mode 100644
index 444478c..0000000
Binary files a/foto/foto_barang/0_34b415b9-2cc5-49f1-984f-a463664fc2d5_520_390.jpg and /dev/null differ
diff --git a/foto/foto_barang/0a4a6e57-eaab-49fd-8a39-9174c44e0a75.jpg b/foto/foto_barang/0a4a6e57-eaab-49fd-8a39-9174c44e0a75.jpg
deleted file mode 100644
index 63f23da..0000000
Binary files a/foto/foto_barang/0a4a6e57-eaab-49fd-8a39-9174c44e0a75.jpg and /dev/null differ
diff --git a/foto/foto_barang/0b2da1e3-240b-4255-800e-f45f2de4a9eb.jpg b/foto/foto_barang/0b2da1e3-240b-4255-800e-f45f2de4a9eb.jpg
deleted file mode 100644
index 8dc98fa..0000000
Binary files a/foto/foto_barang/0b2da1e3-240b-4255-800e-f45f2de4a9eb.jpg and /dev/null differ
diff --git a/foto/foto_barang/0b975378aa533a86ae1dc494e260016f_tn.jpg b/foto/foto_barang/0b975378aa533a86ae1dc494e260016f_tn.jpg
deleted file mode 100644
index 4e9b1e6..0000000
Binary files a/foto/foto_barang/0b975378aa533a86ae1dc494e260016f_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/0be93435-8b5a-4fda-9483-4d9ef7f92abb.jpg b/foto/foto_barang/0be93435-8b5a-4fda-9483-4d9ef7f92abb.jpg
deleted file mode 100644
index 49b57d2..0000000
Binary files a/foto/foto_barang/0be93435-8b5a-4fda-9483-4d9ef7f92abb.jpg and /dev/null differ
diff --git a/foto/foto_barang/0c429aafe6c3de8d6ab67058b2bb2c35.jpg b/foto/foto_barang/0c429aafe6c3de8d6ab67058b2bb2c35.jpg
deleted file mode 100644
index dc98f86..0000000
Binary files a/foto/foto_barang/0c429aafe6c3de8d6ab67058b2bb2c35.jpg and /dev/null differ
diff --git a/foto/foto_barang/0f2adcc7-38ff-4433-8283-d276970bf65a.jpg b/foto/foto_barang/0f2adcc7-38ff-4433-8283-d276970bf65a.jpg
deleted file mode 100644
index 4ca02aa..0000000
Binary files a/foto/foto_barang/0f2adcc7-38ff-4433-8283-d276970bf65a.jpg and /dev/null differ
diff --git a/foto/foto_barang/1.jpg b/foto/foto_barang/1.jpg
deleted file mode 100644
index 7e0dd70..0000000
Binary files a/foto/foto_barang/1.jpg and /dev/null differ
diff --git a/foto/foto_barang/1.png b/foto/foto_barang/1.png
deleted file mode 100644
index 9c29cf6..0000000
Binary files a/foto/foto_barang/1.png and /dev/null differ
diff --git a/foto/foto_barang/10.jpg b/foto/foto_barang/10.jpg
deleted file mode 100644
index 54d024a..0000000
Binary files a/foto/foto_barang/10.jpg and /dev/null differ
diff --git a/foto/foto_barang/10000021_1.jpg b/foto/foto_barang/10000021_1.jpg
deleted file mode 100644
index 8d9557e..0000000
Binary files a/foto/foto_barang/10000021_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/100000289_9eef28bf-c2d1-4d39-aa97-22dab3ebf195_1280_1280.jpg b/foto/foto_barang/100000289_9eef28bf-c2d1-4d39-aa97-22dab3ebf195_1280_1280.jpg
deleted file mode 100644
index 2ac863a..0000000
Binary files a/foto/foto_barang/100000289_9eef28bf-c2d1-4d39-aa97-22dab3ebf195_1280_1280.jpg and /dev/null differ
diff --git a/foto/foto_barang/10000341_1.jpg b/foto/foto_barang/10000341_1.jpg
deleted file mode 100644
index 39872c1..0000000
Binary files a/foto/foto_barang/10000341_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/10003373_1.jpg b/foto/foto_barang/10003373_1.jpg
deleted file mode 100644
index d264d11..0000000
Binary files a/foto/foto_barang/10003373_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/10004032_2.jpg b/foto/foto_barang/10004032_2.jpg
deleted file mode 100644
index 2a6fb97..0000000
Binary files a/foto/foto_barang/10004032_2.jpg and /dev/null differ
diff --git a/foto/foto_barang/100088933_74475af7-73a9-489b-8676-8ee0f2ea1669_999_999.jpg b/foto/foto_barang/100088933_74475af7-73a9-489b-8676-8ee0f2ea1669_999_999.jpg
deleted file mode 100644
index c91e142..0000000
Binary files a/foto/foto_barang/100088933_74475af7-73a9-489b-8676-8ee0f2ea1669_999_999.jpg and /dev/null differ
diff --git a/foto/foto_barang/10034899_1.jpg b/foto/foto_barang/10034899_1.jpg
deleted file mode 100644
index db2b8e6..0000000
Binary files a/foto/foto_barang/10034899_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/10037013_1.jpg b/foto/foto_barang/10037013_1.jpg
deleted file mode 100644
index 28a1b44..0000000
Binary files a/foto/foto_barang/10037013_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/10038352_1.jpg b/foto/foto_barang/10038352_1.jpg
deleted file mode 100644
index 5507a3b..0000000
Binary files a/foto/foto_barang/10038352_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/101.jpg b/foto/foto_barang/101.jpg
deleted file mode 100644
index 9c33cab..0000000
Binary files a/foto/foto_barang/101.jpg and /dev/null differ
diff --git a/foto/foto_barang/102.jpg b/foto/foto_barang/102.jpg
deleted file mode 100644
index 462482f..0000000
Binary files a/foto/foto_barang/102.jpg and /dev/null differ
diff --git a/foto/foto_barang/1021.jpg b/foto/foto_barang/1021.jpg
deleted file mode 100644
index 462482f..0000000
Binary files a/foto/foto_barang/1021.jpg and /dev/null differ
diff --git a/foto/foto_barang/103.jpg b/foto/foto_barang/103.jpg
deleted file mode 100644
index d9910eb..0000000
Binary files a/foto/foto_barang/103.jpg and /dev/null differ
diff --git a/foto/foto_barang/104.jpg b/foto/foto_barang/104.jpg
deleted file mode 100644
index 37e405f..0000000
Binary files a/foto/foto_barang/104.jpg and /dev/null differ
diff --git a/foto/foto_barang/106.jpg b/foto/foto_barang/106.jpg
deleted file mode 100644
index f3b8b85..0000000
Binary files a/foto/foto_barang/106.jpg and /dev/null differ
diff --git a/foto/foto_barang/107.jpg b/foto/foto_barang/107.jpg
deleted file mode 100644
index d5d3352..0000000
Binary files a/foto/foto_barang/107.jpg and /dev/null differ
diff --git a/foto/foto_barang/107491504_7f6a0236-427e-4aef-8532-da467de37a39_600_600.jpg b/foto/foto_barang/107491504_7f6a0236-427e-4aef-8532-da467de37a39_600_600.jpg
deleted file mode 100644
index 7be7e49..0000000
Binary files a/foto/foto_barang/107491504_7f6a0236-427e-4aef-8532-da467de37a39_600_600.jpg and /dev/null differ
diff --git a/foto/foto_barang/108.jpg b/foto/foto_barang/108.jpg
deleted file mode 100644
index e014aa6..0000000
Binary files a/foto/foto_barang/108.jpg and /dev/null differ
diff --git a/foto/foto_barang/10847525_3839cf55-f668-42d3-a459-a8629396a3ed_700_700.jpg b/foto/foto_barang/10847525_3839cf55-f668-42d3-a459-a8629396a3ed_700_700.jpg
deleted file mode 100644
index a3009eb..0000000
Binary files a/foto/foto_barang/10847525_3839cf55-f668-42d3-a459-a8629396a3ed_700_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/109.jpg b/foto/foto_barang/109.jpg
deleted file mode 100644
index 2bdd362..0000000
Binary files a/foto/foto_barang/109.jpg and /dev/null differ
diff --git a/foto/foto_barang/11.jpg b/foto/foto_barang/11.jpg
deleted file mode 100644
index 1fd3b16..0000000
Binary files a/foto/foto_barang/11.jpg and /dev/null differ
diff --git a/foto/foto_barang/110.jpg b/foto/foto_barang/110.jpg
deleted file mode 100644
index 20ca3ab..0000000
Binary files a/foto/foto_barang/110.jpg and /dev/null differ
diff --git a/foto/foto_barang/1105f47d9e9f181d5fb85021e60b9243.jpg b/foto/foto_barang/1105f47d9e9f181d5fb85021e60b9243.jpg
deleted file mode 100644
index 1c98b37..0000000
Binary files a/foto/foto_barang/1105f47d9e9f181d5fb85021e60b9243.jpg and /dev/null differ
diff --git a/foto/foto_barang/111.jpg b/foto/foto_barang/111.jpg
deleted file mode 100644
index 135574e..0000000
Binary files a/foto/foto_barang/111.jpg and /dev/null differ
diff --git a/foto/foto_barang/1111.jpg b/foto/foto_barang/1111.jpg
deleted file mode 100644
index ab2b815..0000000
Binary files a/foto/foto_barang/1111.jpg and /dev/null differ
diff --git a/foto/foto_barang/1113630_M6iMAx-Ry6L85OgOBYK6pagysGA6YCk0_hbuBsp-bcQ-removebg-preview.png b/foto/foto_barang/1113630_M6iMAx-Ry6L85OgOBYK6pagysGA6YCk0_hbuBsp-bcQ-removebg-preview.png
deleted file mode 100644
index 12485d2..0000000
Binary files a/foto/foto_barang/1113630_M6iMAx-Ry6L85OgOBYK6pagysGA6YCk0_hbuBsp-bcQ-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/112.jpg b/foto/foto_barang/112.jpg
deleted file mode 100644
index 77ca1a4..0000000
Binary files a/foto/foto_barang/112.jpg and /dev/null differ
diff --git a/foto/foto_barang/113.jpg b/foto/foto_barang/113.jpg
deleted file mode 100644
index 8244ada..0000000
Binary files a/foto/foto_barang/113.jpg and /dev/null differ
diff --git a/foto/foto_barang/114.jpg b/foto/foto_barang/114.jpg
deleted file mode 100644
index f833c4c..0000000
Binary files a/foto/foto_barang/114.jpg and /dev/null differ
diff --git a/foto/foto_barang/115.jpg b/foto/foto_barang/115.jpg
deleted file mode 100644
index dfb4e6c..0000000
Binary files a/foto/foto_barang/115.jpg and /dev/null differ
diff --git a/foto/foto_barang/1151.jpg b/foto/foto_barang/1151.jpg
deleted file mode 100644
index dfb4e6c..0000000
Binary files a/foto/foto_barang/1151.jpg and /dev/null differ
diff --git a/foto/foto_barang/116.jpg b/foto/foto_barang/116.jpg
deleted file mode 100644
index d342e64..0000000
Binary files a/foto/foto_barang/116.jpg and /dev/null differ
diff --git a/foto/foto_barang/117.jpg b/foto/foto_barang/117.jpg
deleted file mode 100644
index 93f88de..0000000
Binary files a/foto/foto_barang/117.jpg and /dev/null differ
diff --git a/foto/foto_barang/118.jpg b/foto/foto_barang/118.jpg
deleted file mode 100644
index 5f9f9e3..0000000
Binary files a/foto/foto_barang/118.jpg and /dev/null differ
diff --git a/foto/foto_barang/118283_11-7-2022_10-33-45.png b/foto/foto_barang/118283_11-7-2022_10-33-45.png
deleted file mode 100644
index bd20c4d..0000000
Binary files a/foto/foto_barang/118283_11-7-2022_10-33-45.png and /dev/null differ
diff --git a/foto/foto_barang/119.jpg b/foto/foto_barang/119.jpg
deleted file mode 100644
index e78921c..0000000
Binary files a/foto/foto_barang/119.jpg and /dev/null differ
diff --git a/foto/foto_barang/12.jpg b/foto/foto_barang/12.jpg
deleted file mode 100644
index 306e365..0000000
Binary files a/foto/foto_barang/12.jpg and /dev/null differ
diff --git a/foto/foto_barang/120.jpg b/foto/foto_barang/120.jpg
deleted file mode 100644
index 1f8df70..0000000
Binary files a/foto/foto_barang/120.jpg and /dev/null differ
diff --git a/foto/foto_barang/121.jpg b/foto/foto_barang/121.jpg
deleted file mode 100644
index 9bff845..0000000
Binary files a/foto/foto_barang/121.jpg and /dev/null differ
diff --git a/foto/foto_barang/1211.jpg b/foto/foto_barang/1211.jpg
deleted file mode 100644
index f1836d2..0000000
Binary files a/foto/foto_barang/1211.jpg and /dev/null differ
diff --git a/foto/foto_barang/1214936b69ee1244a30c4fa9a3f1c54a.jpg b/foto/foto_barang/1214936b69ee1244a30c4fa9a3f1c54a.jpg
deleted file mode 100644
index 1da2951..0000000
Binary files a/foto/foto_barang/1214936b69ee1244a30c4fa9a3f1c54a.jpg and /dev/null differ
diff --git a/foto/foto_barang/122.jpg b/foto/foto_barang/122.jpg
deleted file mode 100644
index 532fa2b..0000000
Binary files a/foto/foto_barang/122.jpg and /dev/null differ
diff --git a/foto/foto_barang/123.jpg b/foto/foto_barang/123.jpg
deleted file mode 100644
index f639210..0000000
Binary files a/foto/foto_barang/123.jpg and /dev/null differ
diff --git a/foto/foto_barang/124.jpg b/foto/foto_barang/124.jpg
deleted file mode 100644
index f243ced..0000000
Binary files a/foto/foto_barang/124.jpg and /dev/null differ
diff --git a/foto/foto_barang/125.jpg b/foto/foto_barang/125.jpg
deleted file mode 100644
index 0c6abfc..0000000
Binary files a/foto/foto_barang/125.jpg and /dev/null differ
diff --git a/foto/foto_barang/126.jpg b/foto/foto_barang/126.jpg
deleted file mode 100644
index 7d6d778..0000000
Binary files a/foto/foto_barang/126.jpg and /dev/null differ
diff --git a/foto/foto_barang/127.jpg b/foto/foto_barang/127.jpg
deleted file mode 100644
index 2ce694b..0000000
Binary files a/foto/foto_barang/127.jpg and /dev/null differ
diff --git a/foto/foto_barang/128.jpg b/foto/foto_barang/128.jpg
deleted file mode 100644
index 2f4f32b..0000000
Binary files a/foto/foto_barang/128.jpg and /dev/null differ
diff --git a/foto/foto_barang/128.png b/foto/foto_barang/128.png
deleted file mode 100644
index 2b5d969..0000000
Binary files a/foto/foto_barang/128.png and /dev/null differ
diff --git a/foto/foto_barang/129.jpg b/foto/foto_barang/129.jpg
deleted file mode 100644
index eb5534e..0000000
Binary files a/foto/foto_barang/129.jpg and /dev/null differ
diff --git a/foto/foto_barang/12a1445d8b2c1b02ddb7cf7213882784.jpg b/foto/foto_barang/12a1445d8b2c1b02ddb7cf7213882784.jpg
deleted file mode 100644
index 80a954f..0000000
Binary files a/foto/foto_barang/12a1445d8b2c1b02ddb7cf7213882784.jpg and /dev/null differ
diff --git a/foto/foto_barang/13.jpg b/foto/foto_barang/13.jpg
deleted file mode 100644
index 6b154df..0000000
Binary files a/foto/foto_barang/13.jpg and /dev/null differ
diff --git a/foto/foto_barang/130.jpg b/foto/foto_barang/130.jpg
deleted file mode 100644
index 3a7205e..0000000
Binary files a/foto/foto_barang/130.jpg and /dev/null differ
diff --git a/foto/foto_barang/131.jpg b/foto/foto_barang/131.jpg
deleted file mode 100644
index d29661d..0000000
Binary files a/foto/foto_barang/131.jpg and /dev/null differ
diff --git a/foto/foto_barang/1311.jpg b/foto/foto_barang/1311.jpg
deleted file mode 100644
index 898b5ea..0000000
Binary files a/foto/foto_barang/1311.jpg and /dev/null differ
diff --git a/foto/foto_barang/132.jpg b/foto/foto_barang/132.jpg
deleted file mode 100644
index 0509edf..0000000
Binary files a/foto/foto_barang/132.jpg and /dev/null differ
diff --git a/foto/foto_barang/132e3ade54cdceeaabbd2a0e694c34b7.jpg b/foto/foto_barang/132e3ade54cdceeaabbd2a0e694c34b7.jpg
deleted file mode 100644
index 89daf0e..0000000
Binary files a/foto/foto_barang/132e3ade54cdceeaabbd2a0e694c34b7.jpg and /dev/null differ
diff --git a/foto/foto_barang/133.jpg b/foto/foto_barang/133.jpg
deleted file mode 100644
index 98f1e0e..0000000
Binary files a/foto/foto_barang/133.jpg and /dev/null differ
diff --git a/foto/foto_barang/134.jpg b/foto/foto_barang/134.jpg
deleted file mode 100644
index 3e59513..0000000
Binary files a/foto/foto_barang/134.jpg and /dev/null differ
diff --git a/foto/foto_barang/135.jpg b/foto/foto_barang/135.jpg
deleted file mode 100644
index 0cf3c7f..0000000
Binary files a/foto/foto_barang/135.jpg and /dev/null differ
diff --git a/foto/foto_barang/136.jpg b/foto/foto_barang/136.jpg
deleted file mode 100644
index ff99cdd..0000000
Binary files a/foto/foto_barang/136.jpg and /dev/null differ
diff --git a/foto/foto_barang/137.jpg b/foto/foto_barang/137.jpg
deleted file mode 100644
index 96dea74..0000000
Binary files a/foto/foto_barang/137.jpg and /dev/null differ
diff --git a/foto/foto_barang/138.jpg b/foto/foto_barang/138.jpg
deleted file mode 100644
index acc37d0..0000000
Binary files a/foto/foto_barang/138.jpg and /dev/null differ
diff --git a/foto/foto_barang/139.jpg b/foto/foto_barang/139.jpg
deleted file mode 100644
index 05af56c..0000000
Binary files a/foto/foto_barang/139.jpg and /dev/null differ
diff --git a/foto/foto_barang/13_935.jpg b/foto/foto_barang/13_935.jpg
deleted file mode 100644
index 1b6309b..0000000
Binary files a/foto/foto_barang/13_935.jpg and /dev/null differ
diff --git a/foto/foto_barang/13b32f240e9b977b96f378b8448e3a20.jpg b/foto/foto_barang/13b32f240e9b977b96f378b8448e3a20.jpg
deleted file mode 100644
index 479be54..0000000
Binary files a/foto/foto_barang/13b32f240e9b977b96f378b8448e3a20.jpg and /dev/null differ
diff --git a/foto/foto_barang/13d4ff675f4f2ceafea3132228f8e1f1.jpg b/foto/foto_barang/13d4ff675f4f2ceafea3132228f8e1f1.jpg
deleted file mode 100644
index e341a65..0000000
Binary files a/foto/foto_barang/13d4ff675f4f2ceafea3132228f8e1f1.jpg and /dev/null differ
diff --git a/foto/foto_barang/13e0f24cea6566246b5d6bb0227f20c5.jpg b/foto/foto_barang/13e0f24cea6566246b5d6bb0227f20c5.jpg
deleted file mode 100644
index df8c2c9..0000000
Binary files a/foto/foto_barang/13e0f24cea6566246b5d6bb0227f20c5.jpg and /dev/null differ
diff --git a/foto/foto_barang/13ebafc9b5f6476359a95437b3a9845a.jpg b/foto/foto_barang/13ebafc9b5f6476359a95437b3a9845a.jpg
deleted file mode 100644
index d92fd32..0000000
Binary files a/foto/foto_barang/13ebafc9b5f6476359a95437b3a9845a.jpg and /dev/null differ
diff --git a/foto/foto_barang/14.jpg b/foto/foto_barang/14.jpg
deleted file mode 100644
index ad85264..0000000
Binary files a/foto/foto_barang/14.jpg and /dev/null differ
diff --git a/foto/foto_barang/140.jpg b/foto/foto_barang/140.jpg
deleted file mode 100644
index 767b320..0000000
Binary files a/foto/foto_barang/140.jpg and /dev/null differ
diff --git a/foto/foto_barang/141.jpg b/foto/foto_barang/141.jpg
deleted file mode 100644
index 6751643..0000000
Binary files a/foto/foto_barang/141.jpg and /dev/null differ
diff --git a/foto/foto_barang/142.jpg b/foto/foto_barang/142.jpg
deleted file mode 100644
index e98484d..0000000
Binary files a/foto/foto_barang/142.jpg and /dev/null differ
diff --git a/foto/foto_barang/143.jpg b/foto/foto_barang/143.jpg
deleted file mode 100644
index c6cce49..0000000
Binary files a/foto/foto_barang/143.jpg and /dev/null differ
diff --git a/foto/foto_barang/143daecc96307cd9db9b6acef4ca6d7a.jpg b/foto/foto_barang/143daecc96307cd9db9b6acef4ca6d7a.jpg
deleted file mode 100644
index 082ab71..0000000
Binary files a/foto/foto_barang/143daecc96307cd9db9b6acef4ca6d7a.jpg and /dev/null differ
diff --git a/foto/foto_barang/144.jpg b/foto/foto_barang/144.jpg
deleted file mode 100644
index 8934339..0000000
Binary files a/foto/foto_barang/144.jpg and /dev/null differ
diff --git a/foto/foto_barang/145.jpg b/foto/foto_barang/145.jpg
deleted file mode 100644
index 46f0ad4..0000000
Binary files a/foto/foto_barang/145.jpg and /dev/null differ
diff --git a/foto/foto_barang/146.jpg b/foto/foto_barang/146.jpg
deleted file mode 100644
index d464f2d..0000000
Binary files a/foto/foto_barang/146.jpg and /dev/null differ
diff --git a/foto/foto_barang/14664_1624937215_1254.jpg b/foto/foto_barang/14664_1624937215_1254.jpg
deleted file mode 100644
index fc3946b..0000000
Binary files a/foto/foto_barang/14664_1624937215_1254.jpg and /dev/null differ
diff --git a/foto/foto_barang/147.jpg b/foto/foto_barang/147.jpg
deleted file mode 100644
index fae9566..0000000
Binary files a/foto/foto_barang/147.jpg and /dev/null differ
diff --git a/foto/foto_barang/148.jpg b/foto/foto_barang/148.jpg
deleted file mode 100644
index b6aca46..0000000
Binary files a/foto/foto_barang/148.jpg and /dev/null differ
diff --git a/foto/foto_barang/149.jpg b/foto/foto_barang/149.jpg
deleted file mode 100644
index d0fee8f..0000000
Binary files a/foto/foto_barang/149.jpg and /dev/null differ
diff --git a/foto/foto_barang/15.jpg b/foto/foto_barang/15.jpg
deleted file mode 100644
index 4edbc1e..0000000
Binary files a/foto/foto_barang/15.jpg and /dev/null differ
diff --git a/foto/foto_barang/150.jpg b/foto/foto_barang/150.jpg
deleted file mode 100644
index 5ac13a6..0000000
Binary files a/foto/foto_barang/150.jpg and /dev/null differ
diff --git a/foto/foto_barang/151.jpg b/foto/foto_barang/151.jpg
deleted file mode 100644
index b9d4cab..0000000
Binary files a/foto/foto_barang/151.jpg and /dev/null differ
diff --git a/foto/foto_barang/152.jpg b/foto/foto_barang/152.jpg
deleted file mode 100644
index c51a344..0000000
Binary files a/foto/foto_barang/152.jpg and /dev/null differ
diff --git a/foto/foto_barang/153.jpg b/foto/foto_barang/153.jpg
deleted file mode 100644
index bb29708..0000000
Binary files a/foto/foto_barang/153.jpg and /dev/null differ
diff --git a/foto/foto_barang/154.jpg b/foto/foto_barang/154.jpg
deleted file mode 100644
index 610cc99..0000000
Binary files a/foto/foto_barang/154.jpg and /dev/null differ
diff --git a/foto/foto_barang/154fe83b5ed584a7e7202e79cc0f0b71.jpg b/foto/foto_barang/154fe83b5ed584a7e7202e79cc0f0b71.jpg
deleted file mode 100644
index 454d19c..0000000
Binary files a/foto/foto_barang/154fe83b5ed584a7e7202e79cc0f0b71.jpg and /dev/null differ
diff --git a/foto/foto_barang/155.jpg b/foto/foto_barang/155.jpg
deleted file mode 100644
index 32905d5..0000000
Binary files a/foto/foto_barang/155.jpg and /dev/null differ
diff --git a/foto/foto_barang/156.jpg b/foto/foto_barang/156.jpg
deleted file mode 100644
index 9003eca..0000000
Binary files a/foto/foto_barang/156.jpg and /dev/null differ
diff --git a/foto/foto_barang/157.jpg b/foto/foto_barang/157.jpg
deleted file mode 100644
index 845020b..0000000
Binary files a/foto/foto_barang/157.jpg and /dev/null differ
diff --git a/foto/foto_barang/1571729363_Kiss_Barley_1.jpg b/foto/foto_barang/1571729363_Kiss_Barley_1.jpg
deleted file mode 100644
index 36f50fc..0000000
Binary files a/foto/foto_barang/1571729363_Kiss_Barley_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/158.jpg b/foto/foto_barang/158.jpg
deleted file mode 100644
index 349660f..0000000
Binary files a/foto/foto_barang/158.jpg and /dev/null differ
diff --git a/foto/foto_barang/1588838919_Mi_Kering_Eko_Mie_1.jpg b/foto/foto_barang/1588838919_Mi_Kering_Eko_Mie_1.jpg
deleted file mode 100644
index 80b777a..0000000
Binary files a/foto/foto_barang/1588838919_Mi_Kering_Eko_Mie_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/159.jpg b/foto/foto_barang/159.jpg
deleted file mode 100644
index 6b154df..0000000
Binary files a/foto/foto_barang/159.jpg and /dev/null differ
diff --git a/foto/foto_barang/16.jpg b/foto/foto_barang/16.jpg
deleted file mode 100644
index b21c4e6..0000000
Binary files a/foto/foto_barang/16.jpg and /dev/null differ
diff --git a/foto/foto_barang/160.jpg b/foto/foto_barang/160.jpg
deleted file mode 100644
index 6b154df..0000000
Binary files a/foto/foto_barang/160.jpg and /dev/null differ
diff --git a/foto/foto_barang/161.jpg b/foto/foto_barang/161.jpg
deleted file mode 100644
index 92f7991..0000000
Binary files a/foto/foto_barang/161.jpg and /dev/null differ
diff --git a/foto/foto_barang/162.jpg b/foto/foto_barang/162.jpg
deleted file mode 100644
index 92f7991..0000000
Binary files a/foto/foto_barang/162.jpg and /dev/null differ
diff --git a/foto/foto_barang/163.jpg b/foto/foto_barang/163.jpg
deleted file mode 100644
index 67f94d1..0000000
Binary files a/foto/foto_barang/163.jpg and /dev/null differ
diff --git a/foto/foto_barang/1637231791_daia_daia_-_softener_violet_1-8kg_full02.jpg b/foto/foto_barang/1637231791_daia_daia_-_softener_violet_1-8kg_full02.jpg
deleted file mode 100644
index 010050a..0000000
Binary files a/foto/foto_barang/1637231791_daia_daia_-_softener_violet_1-8kg_full02.jpg and /dev/null differ
diff --git a/foto/foto_barang/1637740685_NUVO_BW_REF_CAREPROTECT_450ML_PINK.jpg b/foto/foto_barang/1637740685_NUVO_BW_REF_CAREPROTECT_450ML_PINK.jpg
deleted file mode 100644
index 98a240d..0000000
Binary files a/foto/foto_barang/1637740685_NUVO_BW_REF_CAREPROTECT_450ML_PINK.jpg and /dev/null differ
diff --git a/foto/foto_barang/164.jpg b/foto/foto_barang/164.jpg
deleted file mode 100644
index a980283..0000000
Binary files a/foto/foto_barang/164.jpg and /dev/null differ
diff --git a/foto/foto_barang/165.jpg b/foto/foto_barang/165.jpg
deleted file mode 100644
index e356d9d..0000000
Binary files a/foto/foto_barang/165.jpg and /dev/null differ
diff --git a/foto/foto_barang/166.jpg b/foto/foto_barang/166.jpg
deleted file mode 100644
index 6d64ad0..0000000
Binary files a/foto/foto_barang/166.jpg and /dev/null differ
diff --git a/foto/foto_barang/167.jpg b/foto/foto_barang/167.jpg
deleted file mode 100644
index d3aaeb9..0000000
Binary files a/foto/foto_barang/167.jpg and /dev/null differ
diff --git a/foto/foto_barang/1671.jpg b/foto/foto_barang/1671.jpg
deleted file mode 100644
index d3aaeb9..0000000
Binary files a/foto/foto_barang/1671.jpg and /dev/null differ
diff --git a/foto/foto_barang/168.jpg b/foto/foto_barang/168.jpg
deleted file mode 100644
index 7e35288..0000000
Binary files a/foto/foto_barang/168.jpg and /dev/null differ
diff --git a/foto/foto_barang/16838.jpg b/foto/foto_barang/16838.jpg
deleted file mode 100644
index 4469e6c..0000000
Binary files a/foto/foto_barang/16838.jpg and /dev/null differ
diff --git a/foto/foto_barang/16843.jpg b/foto/foto_barang/16843.jpg
deleted file mode 100644
index 7b9ad3e..0000000
Binary files a/foto/foto_barang/16843.jpg and /dev/null differ
diff --git a/foto/foto_barang/168431.jpg b/foto/foto_barang/168431.jpg
deleted file mode 100644
index 7b9ad3e..0000000
Binary files a/foto/foto_barang/168431.jpg and /dev/null differ
diff --git a/foto/foto_barang/169.jpg b/foto/foto_barang/169.jpg
deleted file mode 100644
index 207ca1a..0000000
Binary files a/foto/foto_barang/169.jpg and /dev/null differ
diff --git a/foto/foto_barang/16dd5ecb156667f6f2cdfc1e31022097.jpg b/foto/foto_barang/16dd5ecb156667f6f2cdfc1e31022097.jpg
deleted file mode 100644
index 6226cd5..0000000
Binary files a/foto/foto_barang/16dd5ecb156667f6f2cdfc1e31022097.jpg and /dev/null differ
diff --git a/foto/foto_barang/17.jpg b/foto/foto_barang/17.jpg
deleted file mode 100644
index 24ebc90..0000000
Binary files a/foto/foto_barang/17.jpg and /dev/null differ
diff --git a/foto/foto_barang/170.jpg b/foto/foto_barang/170.jpg
deleted file mode 100644
index 2e79159..0000000
Binary files a/foto/foto_barang/170.jpg and /dev/null differ
diff --git a/foto/foto_barang/171.jpg b/foto/foto_barang/171.jpg
deleted file mode 100644
index 22324d6..0000000
Binary files a/foto/foto_barang/171.jpg and /dev/null differ
diff --git a/foto/foto_barang/172.jpg b/foto/foto_barang/172.jpg
deleted file mode 100644
index ec6c181..0000000
Binary files a/foto/foto_barang/172.jpg and /dev/null differ
diff --git a/foto/foto_barang/173.jpg b/foto/foto_barang/173.jpg
deleted file mode 100644
index 202446b..0000000
Binary files a/foto/foto_barang/173.jpg and /dev/null differ
diff --git a/foto/foto_barang/174.jpg b/foto/foto_barang/174.jpg
deleted file mode 100644
index f73db48..0000000
Binary files a/foto/foto_barang/174.jpg and /dev/null differ
diff --git a/foto/foto_barang/175.jpg b/foto/foto_barang/175.jpg
deleted file mode 100644
index 53bd07a..0000000
Binary files a/foto/foto_barang/175.jpg and /dev/null differ
diff --git a/foto/foto_barang/176.jpg b/foto/foto_barang/176.jpg
deleted file mode 100644
index cc60a30..0000000
Binary files a/foto/foto_barang/176.jpg and /dev/null differ
diff --git a/foto/foto_barang/17604010_541438eb-9183-4270-bcbc-364898ce95af_400_400.jpg b/foto/foto_barang/17604010_541438eb-9183-4270-bcbc-364898ce95af_400_400.jpg
deleted file mode 100644
index 070e592..0000000
Binary files a/foto/foto_barang/17604010_541438eb-9183-4270-bcbc-364898ce95af_400_400.jpg and /dev/null differ
diff --git a/foto/foto_barang/1761.jpg b/foto/foto_barang/1761.jpg
deleted file mode 100644
index cc60a30..0000000
Binary files a/foto/foto_barang/1761.jpg and /dev/null differ
diff --git a/foto/foto_barang/177.jpg b/foto/foto_barang/177.jpg
deleted file mode 100644
index 592404d..0000000
Binary files a/foto/foto_barang/177.jpg and /dev/null differ
diff --git a/foto/foto_barang/178.jpg b/foto/foto_barang/178.jpg
deleted file mode 100644
index 42ab233..0000000
Binary files a/foto/foto_barang/178.jpg and /dev/null differ
diff --git a/foto/foto_barang/17837a7ea403582daa6ad59d726032ed.jpg b/foto/foto_barang/17837a7ea403582daa6ad59d726032ed.jpg
deleted file mode 100644
index 5cf1717..0000000
Binary files a/foto/foto_barang/17837a7ea403582daa6ad59d726032ed.jpg and /dev/null differ
diff --git a/foto/foto_barang/179.jpg b/foto/foto_barang/179.jpg
deleted file mode 100644
index 8f5c095..0000000
Binary files a/foto/foto_barang/179.jpg and /dev/null differ
diff --git a/foto/foto_barang/17edaa38b0400567cfa83dc3f43ba32a.jpg b/foto/foto_barang/17edaa38b0400567cfa83dc3f43ba32a.jpg
deleted file mode 100644
index e09534e..0000000
Binary files a/foto/foto_barang/17edaa38b0400567cfa83dc3f43ba32a.jpg and /dev/null differ
diff --git a/foto/foto_barang/18.jpg b/foto/foto_barang/18.jpg
deleted file mode 100644
index 97c0703..0000000
Binary files a/foto/foto_barang/18.jpg and /dev/null differ
diff --git a/foto/foto_barang/180.jpg b/foto/foto_barang/180.jpg
deleted file mode 100644
index b9745c5..0000000
Binary files a/foto/foto_barang/180.jpg and /dev/null differ
diff --git a/foto/foto_barang/1808c0c9423fa3cfbc3a37035cfbb364.jpg b/foto/foto_barang/1808c0c9423fa3cfbc3a37035cfbb364.jpg
deleted file mode 100644
index 8d28381..0000000
Binary files a/foto/foto_barang/1808c0c9423fa3cfbc3a37035cfbb364.jpg and /dev/null differ
diff --git a/foto/foto_barang/181.jpg b/foto/foto_barang/181.jpg
deleted file mode 100644
index cba1fa5..0000000
Binary files a/foto/foto_barang/181.jpg and /dev/null differ
diff --git a/foto/foto_barang/1816402d-d62d-4da1-b9c0-558bca92c462.jpg b/foto/foto_barang/1816402d-d62d-4da1-b9c0-558bca92c462.jpg
deleted file mode 100644
index e0f86a9..0000000
Binary files a/foto/foto_barang/1816402d-d62d-4da1-b9c0-558bca92c462.jpg and /dev/null differ
diff --git a/foto/foto_barang/182.jpg b/foto/foto_barang/182.jpg
deleted file mode 100644
index 8585739..0000000
Binary files a/foto/foto_barang/182.jpg and /dev/null differ
diff --git a/foto/foto_barang/183.jpg b/foto/foto_barang/183.jpg
deleted file mode 100644
index 5d430a5..0000000
Binary files a/foto/foto_barang/183.jpg and /dev/null differ
diff --git a/foto/foto_barang/184.jpg b/foto/foto_barang/184.jpg
deleted file mode 100644
index 6305a88..0000000
Binary files a/foto/foto_barang/184.jpg and /dev/null differ
diff --git a/foto/foto_barang/1851.jpg b/foto/foto_barang/1851.jpg
deleted file mode 100644
index 8381076..0000000
Binary files a/foto/foto_barang/1851.jpg and /dev/null differ
diff --git a/foto/foto_barang/187.jpg b/foto/foto_barang/187.jpg
deleted file mode 100644
index 99e592f..0000000
Binary files a/foto/foto_barang/187.jpg and /dev/null differ
diff --git a/foto/foto_barang/188.jpg b/foto/foto_barang/188.jpg
deleted file mode 100644
index 656560f..0000000
Binary files a/foto/foto_barang/188.jpg and /dev/null differ
diff --git a/foto/foto_barang/1886896_488c5bc7-9739-4b4a-b2c5-0089ae8a5275.jpg b/foto/foto_barang/1886896_488c5bc7-9739-4b4a-b2c5-0089ae8a5275.jpg
deleted file mode 100644
index 3f2f3f0..0000000
Binary files a/foto/foto_barang/1886896_488c5bc7-9739-4b4a-b2c5-0089ae8a5275.jpg and /dev/null differ
diff --git a/foto/foto_barang/189.jpg b/foto/foto_barang/189.jpg
deleted file mode 100644
index 4784d07..0000000
Binary files a/foto/foto_barang/189.jpg and /dev/null differ
diff --git a/foto/foto_barang/18a7779b6187b10ebf4abee1936c6587.jpg b/foto/foto_barang/18a7779b6187b10ebf4abee1936c6587.jpg
deleted file mode 100644
index df10c38..0000000
Binary files a/foto/foto_barang/18a7779b6187b10ebf4abee1936c6587.jpg and /dev/null differ
diff --git a/foto/foto_barang/19.jpg b/foto/foto_barang/19.jpg
deleted file mode 100644
index 51ae70f..0000000
Binary files a/foto/foto_barang/19.jpg and /dev/null differ
diff --git a/foto/foto_barang/190.jpg b/foto/foto_barang/190.jpg
deleted file mode 100644
index 22658a2..0000000
Binary files a/foto/foto_barang/190.jpg and /dev/null differ
diff --git a/foto/foto_barang/191.jpg b/foto/foto_barang/191.jpg
deleted file mode 100644
index 7aaaa9d..0000000
Binary files a/foto/foto_barang/191.jpg and /dev/null differ
diff --git a/foto/foto_barang/192.jpg b/foto/foto_barang/192.jpg
deleted file mode 100644
index a43f376..0000000
Binary files a/foto/foto_barang/192.jpg and /dev/null differ
diff --git a/foto/foto_barang/192e76afec6639fa7ed7c83a1fc81e2d.jpg b/foto/foto_barang/192e76afec6639fa7ed7c83a1fc81e2d.jpg
deleted file mode 100644
index c6c8987..0000000
Binary files a/foto/foto_barang/192e76afec6639fa7ed7c83a1fc81e2d.jpg and /dev/null differ
diff --git a/foto/foto_barang/193.jpg b/foto/foto_barang/193.jpg
deleted file mode 100644
index bebf83f..0000000
Binary files a/foto/foto_barang/193.jpg and /dev/null differ
diff --git a/foto/foto_barang/19372_1639985185_6344.jpg b/foto/foto_barang/19372_1639985185_6344.jpg
deleted file mode 100644
index d2804ce..0000000
Binary files a/foto/foto_barang/19372_1639985185_6344.jpg and /dev/null differ
diff --git a/foto/foto_barang/194.jpg b/foto/foto_barang/194.jpg
deleted file mode 100644
index 16ce0c4..0000000
Binary files a/foto/foto_barang/194.jpg and /dev/null differ
diff --git a/foto/foto_barang/195.jpg b/foto/foto_barang/195.jpg
deleted file mode 100644
index 7e6a568..0000000
Binary files a/foto/foto_barang/195.jpg and /dev/null differ
diff --git a/foto/foto_barang/196.jpg b/foto/foto_barang/196.jpg
deleted file mode 100644
index 885aaa4..0000000
Binary files a/foto/foto_barang/196.jpg and /dev/null differ
diff --git a/foto/foto_barang/197.jpg b/foto/foto_barang/197.jpg
deleted file mode 100644
index 4491dfd..0000000
Binary files a/foto/foto_barang/197.jpg and /dev/null differ
diff --git a/foto/foto_barang/19792438_0c7f902d-487b-4cbd-9d3b-c30d6af66de1_1000_1000.jpg b/foto/foto_barang/19792438_0c7f902d-487b-4cbd-9d3b-c30d6af66de1_1000_1000.jpg
deleted file mode 100644
index 0fcceb9..0000000
Binary files a/foto/foto_barang/19792438_0c7f902d-487b-4cbd-9d3b-c30d6af66de1_1000_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/19792438_263d2fcd-b839-4404-8a44-ac957c230af5_1024_1024.jpg b/foto/foto_barang/19792438_263d2fcd-b839-4404-8a44-ac957c230af5_1024_1024.jpg
deleted file mode 100644
index b5aefdb..0000000
Binary files a/foto/foto_barang/19792438_263d2fcd-b839-4404-8a44-ac957c230af5_1024_1024.jpg and /dev/null differ
diff --git a/foto/foto_barang/19792438_8df4609e-62bd-4e34-b02b-a998bc74c9c4_800_800.jpg b/foto/foto_barang/19792438_8df4609e-62bd-4e34-b02b-a998bc74c9c4_800_800.jpg
deleted file mode 100644
index b1e8a65..0000000
Binary files a/foto/foto_barang/19792438_8df4609e-62bd-4e34-b02b-a998bc74c9c4_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/198.jpg b/foto/foto_barang/198.jpg
deleted file mode 100644
index 405e732..0000000
Binary files a/foto/foto_barang/198.jpg and /dev/null differ
diff --git a/foto/foto_barang/199.jpg b/foto/foto_barang/199.jpg
deleted file mode 100644
index 3b30acb..0000000
Binary files a/foto/foto_barang/199.jpg and /dev/null differ
diff --git a/foto/foto_barang/1_500.jpg b/foto/foto_barang/1_500.jpg
deleted file mode 100644
index 6568038..0000000
Binary files a/foto/foto_barang/1_500.jpg and /dev/null differ
diff --git a/foto/foto_barang/1_500.png b/foto/foto_barang/1_500.png
deleted file mode 100644
index 2195dcb..0000000
Binary files a/foto/foto_barang/1_500.png and /dev/null differ
diff --git a/foto/foto_barang/1_A6624770001001_20210420152451561_base.png b/foto/foto_barang/1_A6624770001001_20210420152451561_base.png
deleted file mode 100644
index 671499d..0000000
Binary files a/foto/foto_barang/1_A6624770001001_20210420152451561_base.png and /dev/null differ
diff --git a/foto/foto_barang/1c13e5fd62b12856d2aa02afd434e14a.jpg b/foto/foto_barang/1c13e5fd62b12856d2aa02afd434e14a.jpg
deleted file mode 100644
index c8a6650..0000000
Binary files a/foto/foto_barang/1c13e5fd62b12856d2aa02afd434e14a.jpg and /dev/null differ
diff --git a/foto/foto_barang/1cb18fe1-9d6c-4580-ac67-789ec320d868.jpg b/foto/foto_barang/1cb18fe1-9d6c-4580-ac67-789ec320d868.jpg
deleted file mode 100644
index b0f5619..0000000
Binary files a/foto/foto_barang/1cb18fe1-9d6c-4580-ac67-789ec320d868.jpg and /dev/null differ
diff --git a/foto/foto_barang/1e2e1182-20a1-49d2-88b4-772967490f8f.jpg b/foto/foto_barang/1e2e1182-20a1-49d2-88b4-772967490f8f.jpg
deleted file mode 100644
index b3c1c14..0000000
Binary files a/foto/foto_barang/1e2e1182-20a1-49d2-88b4-772967490f8f.jpg and /dev/null differ
diff --git a/foto/foto_barang/1ea1b3220cfc29ed8a7a529729240930.jpg b/foto/foto_barang/1ea1b3220cfc29ed8a7a529729240930.jpg
deleted file mode 100644
index 4b50c52..0000000
Binary files a/foto/foto_barang/1ea1b3220cfc29ed8a7a529729240930.jpg and /dev/null differ
diff --git a/foto/foto_barang/1f07bb15ee1c19e6c08e01252726f486.jpg b/foto/foto_barang/1f07bb15ee1c19e6c08e01252726f486.jpg
deleted file mode 100644
index 21fca11..0000000
Binary files a/foto/foto_barang/1f07bb15ee1c19e6c08e01252726f486.jpg and /dev/null differ
diff --git a/foto/foto_barang/1fd7d62ac46176cc0c04dc9328cd8eef.jpg b/foto/foto_barang/1fd7d62ac46176cc0c04dc9328cd8eef.jpg
deleted file mode 100644
index 8ff7c2e..0000000
Binary files a/foto/foto_barang/1fd7d62ac46176cc0c04dc9328cd8eef.jpg and /dev/null differ
diff --git a/foto/foto_barang/2.jpg b/foto/foto_barang/2.jpg
deleted file mode 100644
index 0202ca3..0000000
Binary files a/foto/foto_barang/2.jpg and /dev/null differ
diff --git a/foto/foto_barang/20.jpg b/foto/foto_barang/20.jpg
deleted file mode 100644
index d3e7a63..0000000
Binary files a/foto/foto_barang/20.jpg and /dev/null differ
diff --git a/foto/foto_barang/200.jpg b/foto/foto_barang/200.jpg
deleted file mode 100644
index 60d60a4..0000000
Binary files a/foto/foto_barang/200.jpg and /dev/null differ
diff --git a/foto/foto_barang/20005835_1.jpg b/foto/foto_barang/20005835_1.jpg
deleted file mode 100644
index e266733..0000000
Binary files a/foto/foto_barang/20005835_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20017081_1.jpg b/foto/foto_barang/20017081_1.jpg
deleted file mode 100644
index 6b2e930..0000000
Binary files a/foto/foto_barang/20017081_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20019597_1.jpg b/foto/foto_barang/20019597_1.jpg
deleted file mode 100644
index f05c952..0000000
Binary files a/foto/foto_barang/20019597_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20025762_1.jpg b/foto/foto_barang/20025762_1.jpg
deleted file mode 100644
index 5524589..0000000
Binary files a/foto/foto_barang/20025762_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20027448_1.jpg b/foto/foto_barang/20027448_1.jpg
deleted file mode 100644
index 5b9f540..0000000
Binary files a/foto/foto_barang/20027448_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20029782_1.jpg b/foto/foto_barang/20029782_1.jpg
deleted file mode 100644
index a7d4d6c..0000000
Binary files a/foto/foto_barang/20029782_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20034993_1.jpg b/foto/foto_barang/20034993_1.jpg
deleted file mode 100644
index 50d3a55..0000000
Binary files a/foto/foto_barang/20034993_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20066440_1.jpg b/foto/foto_barang/20066440_1.jpg
deleted file mode 100644
index 4e981ab..0000000
Binary files a/foto/foto_barang/20066440_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20087413_1.jpg b/foto/foto_barang/20087413_1.jpg
deleted file mode 100644
index 7289dc3..0000000
Binary files a/foto/foto_barang/20087413_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20093191_1.jpg b/foto/foto_barang/20093191_1.jpg
deleted file mode 100644
index 367a022..0000000
Binary files a/foto/foto_barang/20093191_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20098412_2.jpg b/foto/foto_barang/20098412_2.jpg
deleted file mode 100644
index cb681cc..0000000
Binary files a/foto/foto_barang/20098412_2.jpg and /dev/null differ
diff --git a/foto/foto_barang/201.png b/foto/foto_barang/201.png
deleted file mode 100644
index 90dc096..0000000
Binary files a/foto/foto_barang/201.png and /dev/null differ
diff --git a/foto/foto_barang/20107749_1.jpg b/foto/foto_barang/20107749_1.jpg
deleted file mode 100644
index c7c66a3..0000000
Binary files a/foto/foto_barang/20107749_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20109265_1.jpg b/foto/foto_barang/20109265_1.jpg
deleted file mode 100644
index c430c3b..0000000
Binary files a/foto/foto_barang/20109265_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/20109616_1.jpg b/foto/foto_barang/20109616_1.jpg
deleted file mode 100644
index 2dee950..0000000
Binary files a/foto/foto_barang/20109616_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/202.jpg b/foto/foto_barang/202.jpg
deleted file mode 100644
index 0e2a132..0000000
Binary files a/foto/foto_barang/202.jpg and /dev/null differ
diff --git a/foto/foto_barang/203.jpg b/foto/foto_barang/203.jpg
deleted file mode 100644
index 0e77d82..0000000
Binary files a/foto/foto_barang/203.jpg and /dev/null differ
diff --git a/foto/foto_barang/204.jpg b/foto/foto_barang/204.jpg
deleted file mode 100644
index 4f29161..0000000
Binary files a/foto/foto_barang/204.jpg and /dev/null differ
diff --git a/foto/foto_barang/2048280_3ccde703-c2b3-4cf4-8d22-5e9b8ff25606_1224_1224.jpg b/foto/foto_barang/2048280_3ccde703-c2b3-4cf4-8d22-5e9b8ff25606_1224_1224.jpg
deleted file mode 100644
index f2b0d74..0000000
Binary files a/foto/foto_barang/2048280_3ccde703-c2b3-4cf4-8d22-5e9b8ff25606_1224_1224.jpg and /dev/null differ
diff --git a/foto/foto_barang/2048280_a23c1631-49b7-49b1-b8e9-8c79a2ff49f5_1224_1224.jpg b/foto/foto_barang/2048280_a23c1631-49b7-49b1-b8e9-8c79a2ff49f5_1224_1224.jpg
deleted file mode 100644
index 2070a65..0000000
Binary files a/foto/foto_barang/2048280_a23c1631-49b7-49b1-b8e9-8c79a2ff49f5_1224_1224.jpg and /dev/null differ
diff --git a/foto/foto_barang/205.jpg b/foto/foto_barang/205.jpg
deleted file mode 100644
index 62802b3..0000000
Binary files a/foto/foto_barang/205.jpg and /dev/null differ
diff --git a/foto/foto_barang/206.png b/foto/foto_barang/206.png
deleted file mode 100644
index 7ec34be..0000000
Binary files a/foto/foto_barang/206.png and /dev/null differ
diff --git a/foto/foto_barang/207.jpg b/foto/foto_barang/207.jpg
deleted file mode 100644
index 0a1a8a0..0000000
Binary files a/foto/foto_barang/207.jpg and /dev/null differ
diff --git a/foto/foto_barang/209.jpg b/foto/foto_barang/209.jpg
deleted file mode 100644
index 84ed3c1..0000000
Binary files a/foto/foto_barang/209.jpg and /dev/null differ
diff --git a/foto/foto_barang/21.jpg b/foto/foto_barang/21.jpg
deleted file mode 100644
index 57e6f4b..0000000
Binary files a/foto/foto_barang/21.jpg and /dev/null differ
diff --git a/foto/foto_barang/210.jpg b/foto/foto_barang/210.jpg
deleted file mode 100644
index 2e6ae8b..0000000
Binary files a/foto/foto_barang/210.jpg and /dev/null differ
diff --git a/foto/foto_barang/211.jpg b/foto/foto_barang/211.jpg
deleted file mode 100644
index acf8acc..0000000
Binary files a/foto/foto_barang/211.jpg and /dev/null differ
diff --git a/foto/foto_barang/211f6f18d32c733a9a39e66cdeb22152.jpg b/foto/foto_barang/211f6f18d32c733a9a39e66cdeb22152.jpg
deleted file mode 100644
index 30af0de..0000000
Binary files a/foto/foto_barang/211f6f18d32c733a9a39e66cdeb22152.jpg and /dev/null differ
diff --git a/foto/foto_barang/213.jpg b/foto/foto_barang/213.jpg
deleted file mode 100644
index c2b56a9..0000000
Binary files a/foto/foto_barang/213.jpg and /dev/null differ
diff --git a/foto/foto_barang/2130004-20211017034138-67622747670731227.jpg b/foto/foto_barang/2130004-20211017034138-67622747670731227.jpg
deleted file mode 100644
index e0227d9..0000000
Binary files a/foto/foto_barang/2130004-20211017034138-67622747670731227.jpg and /dev/null differ
diff --git a/foto/foto_barang/2130004-20211117052115-70418427084814331.jpg b/foto/foto_barang/2130004-20211117052115-70418427084814331.jpg
deleted file mode 100644
index d1bf0ed..0000000
Binary files a/foto/foto_barang/2130004-20211117052115-70418427084814331.jpg and /dev/null differ
diff --git a/foto/foto_barang/214.jpg b/foto/foto_barang/214.jpg
deleted file mode 100644
index 9f330a1..0000000
Binary files a/foto/foto_barang/214.jpg and /dev/null differ
diff --git a/foto/foto_barang/215.jpg b/foto/foto_barang/215.jpg
deleted file mode 100644
index eac7de7..0000000
Binary files a/foto/foto_barang/215.jpg and /dev/null differ
diff --git a/foto/foto_barang/216.jpg b/foto/foto_barang/216.jpg
deleted file mode 100644
index 8d97f7a..0000000
Binary files a/foto/foto_barang/216.jpg and /dev/null differ
diff --git a/foto/foto_barang/217.jpg b/foto/foto_barang/217.jpg
deleted file mode 100644
index 32d2268..0000000
Binary files a/foto/foto_barang/217.jpg and /dev/null differ
diff --git a/foto/foto_barang/218.jpg b/foto/foto_barang/218.jpg
deleted file mode 100644
index 0b8c719..0000000
Binary files a/foto/foto_barang/218.jpg and /dev/null differ
diff --git a/foto/foto_barang/219.jpg b/foto/foto_barang/219.jpg
deleted file mode 100644
index 59e10df..0000000
Binary files a/foto/foto_barang/219.jpg and /dev/null differ
diff --git a/foto/foto_barang/21d551ab2ec2f145376e2d10352b9873.jpg b/foto/foto_barang/21d551ab2ec2f145376e2d10352b9873.jpg
deleted file mode 100644
index aeed566..0000000
Binary files a/foto/foto_barang/21d551ab2ec2f145376e2d10352b9873.jpg and /dev/null differ
diff --git a/foto/foto_barang/21f9bc00582ca80e916fc40ae6702906.jpg b/foto/foto_barang/21f9bc00582ca80e916fc40ae6702906.jpg
deleted file mode 100644
index 1abe1a6..0000000
Binary files a/foto/foto_barang/21f9bc00582ca80e916fc40ae6702906.jpg and /dev/null differ
diff --git a/foto/foto_barang/22.jpg b/foto/foto_barang/22.jpg
deleted file mode 100644
index 53fdbbf..0000000
Binary files a/foto/foto_barang/22.jpg and /dev/null differ
diff --git a/foto/foto_barang/220.jpg b/foto/foto_barang/220.jpg
deleted file mode 100644
index 5b6f6de..0000000
Binary files a/foto/foto_barang/220.jpg and /dev/null differ
diff --git a/foto/foto_barang/221.jpg b/foto/foto_barang/221.jpg
deleted file mode 100644
index a62e0b0..0000000
Binary files a/foto/foto_barang/221.jpg and /dev/null differ
diff --git a/foto/foto_barang/2211.jpg b/foto/foto_barang/2211.jpg
deleted file mode 100644
index af67ee7..0000000
Binary files a/foto/foto_barang/2211.jpg and /dev/null differ
diff --git a/foto/foto_barang/22145196_07c94707-6d3b-4dee-b28a-83c6bb9711fa_800_800.jpg b/foto/foto_barang/22145196_07c94707-6d3b-4dee-b28a-83c6bb9711fa_800_800.jpg
deleted file mode 100644
index 732d374..0000000
Binary files a/foto/foto_barang/22145196_07c94707-6d3b-4dee-b28a-83c6bb9711fa_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/22145196_46a51036-67c5-4136-9931-e99406249acc_1000_1000.jpg b/foto/foto_barang/22145196_46a51036-67c5-4136-9931-e99406249acc_1000_1000.jpg
deleted file mode 100644
index 55994fe..0000000
Binary files a/foto/foto_barang/22145196_46a51036-67c5-4136-9931-e99406249acc_1000_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/222.jpg b/foto/foto_barang/222.jpg
deleted file mode 100644
index 8b0146e..0000000
Binary files a/foto/foto_barang/222.jpg and /dev/null differ
diff --git a/foto/foto_barang/222b2304d89a410f0590698f644c5634.jpg b/foto/foto_barang/222b2304d89a410f0590698f644c5634.jpg
deleted file mode 100644
index 467da39..0000000
Binary files a/foto/foto_barang/222b2304d89a410f0590698f644c5634.jpg and /dev/null differ
diff --git a/foto/foto_barang/223.jpg b/foto/foto_barang/223.jpg
deleted file mode 100644
index df1f598..0000000
Binary files a/foto/foto_barang/223.jpg and /dev/null differ
diff --git a/foto/foto_barang/22325161_0f26683e-fdef-4239-b450-01e4c29fa104_2000_2000.jpg b/foto/foto_barang/22325161_0f26683e-fdef-4239-b450-01e4c29fa104_2000_2000.jpg
deleted file mode 100644
index 32af5c1..0000000
Binary files a/foto/foto_barang/22325161_0f26683e-fdef-4239-b450-01e4c29fa104_2000_2000.jpg and /dev/null differ
diff --git a/foto/foto_barang/224.jpg b/foto/foto_barang/224.jpg
deleted file mode 100644
index 3715c41..0000000
Binary files a/foto/foto_barang/224.jpg and /dev/null differ
diff --git a/foto/foto_barang/225.jpg b/foto/foto_barang/225.jpg
deleted file mode 100644
index f954a18..0000000
Binary files a/foto/foto_barang/225.jpg and /dev/null differ
diff --git a/foto/foto_barang/226.jpg b/foto/foto_barang/226.jpg
deleted file mode 100644
index 74b9e11..0000000
Binary files a/foto/foto_barang/226.jpg and /dev/null differ
diff --git a/foto/foto_barang/227.jpg b/foto/foto_barang/227.jpg
deleted file mode 100644
index b18c1c6..0000000
Binary files a/foto/foto_barang/227.jpg and /dev/null differ
diff --git a/foto/foto_barang/229.jpg b/foto/foto_barang/229.jpg
deleted file mode 100644
index 1aa40fe..0000000
Binary files a/foto/foto_barang/229.jpg and /dev/null differ
diff --git a/foto/foto_barang/2290694_5b610dc3-3fa1-4bdf-b389-39ad1465baca_1920_1920.jpg b/foto/foto_barang/2290694_5b610dc3-3fa1-4bdf-b389-39ad1465baca_1920_1920.jpg
deleted file mode 100644
index 4faba18..0000000
Binary files a/foto/foto_barang/2290694_5b610dc3-3fa1-4bdf-b389-39ad1465baca_1920_1920.jpg and /dev/null differ
diff --git a/foto/foto_barang/23.jpg b/foto/foto_barang/23.jpg
deleted file mode 100644
index dbe7a32..0000000
Binary files a/foto/foto_barang/23.jpg and /dev/null differ
diff --git a/foto/foto_barang/230.jpg b/foto/foto_barang/230.jpg
deleted file mode 100644
index d9bc741..0000000
Binary files a/foto/foto_barang/230.jpg and /dev/null differ
diff --git a/foto/foto_barang/2305c147-849a-4a57-9c82-a2030342949a.jpg b/foto/foto_barang/2305c147-849a-4a57-9c82-a2030342949a.jpg
deleted file mode 100644
index c1738cf..0000000
Binary files a/foto/foto_barang/2305c147-849a-4a57-9c82-a2030342949a.jpg and /dev/null differ
diff --git a/foto/foto_barang/231.jpg b/foto/foto_barang/231.jpg
deleted file mode 100644
index deb58a6..0000000
Binary files a/foto/foto_barang/231.jpg and /dev/null differ
diff --git a/foto/foto_barang/231e5758114d110b19600061fb0e6771.jpg b/foto/foto_barang/231e5758114d110b19600061fb0e6771.jpg
deleted file mode 100644
index 1983f7f..0000000
Binary files a/foto/foto_barang/231e5758114d110b19600061fb0e6771.jpg and /dev/null differ
diff --git a/foto/foto_barang/232.jpg b/foto/foto_barang/232.jpg
deleted file mode 100644
index 1e078e6..0000000
Binary files a/foto/foto_barang/232.jpg and /dev/null differ
diff --git a/foto/foto_barang/2340ceafa152b15fdc714fc751509c0b.jpg b/foto/foto_barang/2340ceafa152b15fdc714fc751509c0b.jpg
deleted file mode 100644
index f2ec9a4..0000000
Binary files a/foto/foto_barang/2340ceafa152b15fdc714fc751509c0b.jpg and /dev/null differ
diff --git a/foto/foto_barang/239.jpg b/foto/foto_barang/239.jpg
deleted file mode 100644
index 241aa5c..0000000
Binary files a/foto/foto_barang/239.jpg and /dev/null differ
diff --git a/foto/foto_barang/23959426ad48f020901d0c8cd9642a32.jpg b/foto/foto_barang/23959426ad48f020901d0c8cd9642a32.jpg
deleted file mode 100644
index 6ac03b9..0000000
Binary files a/foto/foto_barang/23959426ad48f020901d0c8cd9642a32.jpg and /dev/null differ
diff --git a/foto/foto_barang/23dad75d-a6ad-4c38-806c-f2ddeb34e612.jpg b/foto/foto_barang/23dad75d-a6ad-4c38-806c-f2ddeb34e612.jpg
deleted file mode 100644
index bf61115..0000000
Binary files a/foto/foto_barang/23dad75d-a6ad-4c38-806c-f2ddeb34e612.jpg and /dev/null differ
diff --git a/foto/foto_barang/24.jpg b/foto/foto_barang/24.jpg
deleted file mode 100644
index 84392e8..0000000
Binary files a/foto/foto_barang/24.jpg and /dev/null differ
diff --git a/foto/foto_barang/240.jpeg b/foto/foto_barang/240.jpeg
deleted file mode 100644
index 776391f..0000000
Binary files a/foto/foto_barang/240.jpeg and /dev/null differ
diff --git a/foto/foto_barang/241.jpg b/foto/foto_barang/241.jpg
deleted file mode 100644
index 2d5be8a..0000000
Binary files a/foto/foto_barang/241.jpg and /dev/null differ
diff --git a/foto/foto_barang/24132062_6d12e4f9-8294-4f61-b7cf-2605b6ec8382_2048_2048.jpg b/foto/foto_barang/24132062_6d12e4f9-8294-4f61-b7cf-2605b6ec8382_2048_2048.jpg
deleted file mode 100644
index 678915c..0000000
Binary files a/foto/foto_barang/24132062_6d12e4f9-8294-4f61-b7cf-2605b6ec8382_2048_2048.jpg and /dev/null differ
diff --git a/foto/foto_barang/24132062_9b178fac-24d9-4802-8988-52b222d5c162_2048_2048.jpg b/foto/foto_barang/24132062_9b178fac-24d9-4802-8988-52b222d5c162_2048_2048.jpg
deleted file mode 100644
index b778c5d..0000000
Binary files a/foto/foto_barang/24132062_9b178fac-24d9-4802-8988-52b222d5c162_2048_2048.jpg and /dev/null differ
diff --git a/foto/foto_barang/242.jpg b/foto/foto_barang/242.jpg
deleted file mode 100644
index bb29da1..0000000
Binary files a/foto/foto_barang/242.jpg and /dev/null differ
diff --git a/foto/foto_barang/243.png b/foto/foto_barang/243.png
deleted file mode 100644
index 8955a60..0000000
Binary files a/foto/foto_barang/243.png and /dev/null differ
diff --git a/foto/foto_barang/244.jpg b/foto/foto_barang/244.jpg
deleted file mode 100644
index abdc062..0000000
Binary files a/foto/foto_barang/244.jpg and /dev/null differ
diff --git a/foto/foto_barang/246.jpg b/foto/foto_barang/246.jpg
deleted file mode 100644
index 4b8b93c..0000000
Binary files a/foto/foto_barang/246.jpg and /dev/null differ
diff --git a/foto/foto_barang/2467131_432efd9b-07b9-4581-9c59-4ee417fb0d2f_800_800.jpg b/foto/foto_barang/2467131_432efd9b-07b9-4581-9c59-4ee417fb0d2f_800_800.jpg
deleted file mode 100644
index 75716dc..0000000
Binary files a/foto/foto_barang/2467131_432efd9b-07b9-4581-9c59-4ee417fb0d2f_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/247.png b/foto/foto_barang/247.png
deleted file mode 100644
index 35ea14f..0000000
Binary files a/foto/foto_barang/247.png and /dev/null differ
diff --git a/foto/foto_barang/249.jpg b/foto/foto_barang/249.jpg
deleted file mode 100644
index baafe79..0000000
Binary files a/foto/foto_barang/249.jpg and /dev/null differ
diff --git a/foto/foto_barang/24bfbe21e4448f87fe7e52c3ec603b12.jpg b/foto/foto_barang/24bfbe21e4448f87fe7e52c3ec603b12.jpg
deleted file mode 100644
index acd2c02..0000000
Binary files a/foto/foto_barang/24bfbe21e4448f87fe7e52c3ec603b12.jpg and /dev/null differ
diff --git a/foto/foto_barang/24df58bf-673f-4065-8946-1399e27b4895.jpg b/foto/foto_barang/24df58bf-673f-4065-8946-1399e27b4895.jpg
deleted file mode 100644
index bb9dd1e..0000000
Binary files a/foto/foto_barang/24df58bf-673f-4065-8946-1399e27b4895.jpg and /dev/null differ
diff --git a/foto/foto_barang/25.jpg b/foto/foto_barang/25.jpg
deleted file mode 100644
index cd13d52..0000000
Binary files a/foto/foto_barang/25.jpg and /dev/null differ
diff --git a/foto/foto_barang/250.jpg b/foto/foto_barang/250.jpg
deleted file mode 100644
index d91b8c3..0000000
Binary files a/foto/foto_barang/250.jpg and /dev/null differ
diff --git a/foto/foto_barang/251.png b/foto/foto_barang/251.png
deleted file mode 100644
index d3afc1b..0000000
Binary files a/foto/foto_barang/251.png and /dev/null differ
diff --git a/foto/foto_barang/252.jpg b/foto/foto_barang/252.jpg
deleted file mode 100644
index 1ecbd7e..0000000
Binary files a/foto/foto_barang/252.jpg and /dev/null differ
diff --git a/foto/foto_barang/253.jpg b/foto/foto_barang/253.jpg
deleted file mode 100644
index 5df0056..0000000
Binary files a/foto/foto_barang/253.jpg and /dev/null differ
diff --git a/foto/foto_barang/256.jpg b/foto/foto_barang/256.jpg
deleted file mode 100644
index 5c34fc1..0000000
Binary files a/foto/foto_barang/256.jpg and /dev/null differ
diff --git a/foto/foto_barang/26.jpg b/foto/foto_barang/26.jpg
deleted file mode 100644
index 543ac76..0000000
Binary files a/foto/foto_barang/26.jpg and /dev/null differ
diff --git a/foto/foto_barang/265fc138d38d4015855679f7925c6c31.jpg b/foto/foto_barang/265fc138d38d4015855679f7925c6c31.jpg
deleted file mode 100644
index b6ca3dd..0000000
Binary files a/foto/foto_barang/265fc138d38d4015855679f7925c6c31.jpg and /dev/null differ
diff --git a/foto/foto_barang/266.jpg b/foto/foto_barang/266.jpg
deleted file mode 100644
index 56ccb5d..0000000
Binary files a/foto/foto_barang/266.jpg and /dev/null differ
diff --git a/foto/foto_barang/267.jpg b/foto/foto_barang/267.jpg
deleted file mode 100644
index 1c5628d..0000000
Binary files a/foto/foto_barang/267.jpg and /dev/null differ
diff --git a/foto/foto_barang/268.jpg b/foto/foto_barang/268.jpg
deleted file mode 100644
index fe4fa2e..0000000
Binary files a/foto/foto_barang/268.jpg and /dev/null differ
diff --git a/foto/foto_barang/269.jpg b/foto/foto_barang/269.jpg
deleted file mode 100644
index 901dfbb..0000000
Binary files a/foto/foto_barang/269.jpg and /dev/null differ
diff --git a/foto/foto_barang/27.jpg b/foto/foto_barang/27.jpg
deleted file mode 100644
index 68ac345..0000000
Binary files a/foto/foto_barang/27.jpg and /dev/null differ
diff --git a/foto/foto_barang/271.jpg b/foto/foto_barang/271.jpg
deleted file mode 100644
index 0506ea6..0000000
Binary files a/foto/foto_barang/271.jpg and /dev/null differ
diff --git a/foto/foto_barang/272848_ee9f6ede-6ddc-4950-8775-ca97261408bb_800_800.jpg b/foto/foto_barang/272848_ee9f6ede-6ddc-4950-8775-ca97261408bb_800_800.jpg
deleted file mode 100644
index 543f967..0000000
Binary files a/foto/foto_barang/272848_ee9f6ede-6ddc-4950-8775-ca97261408bb_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/274.jpg b/foto/foto_barang/274.jpg
deleted file mode 100644
index 69a3a34..0000000
Binary files a/foto/foto_barang/274.jpg and /dev/null differ
diff --git a/foto/foto_barang/27b7647f4419229d92bbc5b2ee219d9b.jpg b/foto/foto_barang/27b7647f4419229d92bbc5b2ee219d9b.jpg
deleted file mode 100644
index e93bec5..0000000
Binary files a/foto/foto_barang/27b7647f4419229d92bbc5b2ee219d9b.jpg and /dev/null differ
diff --git a/foto/foto_barang/28.jpg b/foto/foto_barang/28.jpg
deleted file mode 100644
index 53fdbbf..0000000
Binary files a/foto/foto_barang/28.jpg and /dev/null differ
diff --git a/foto/foto_barang/281418652c86e20daf64e18a98a468d1.jpg b/foto/foto_barang/281418652c86e20daf64e18a98a468d1.jpg
deleted file mode 100644
index 9e82b1a..0000000
Binary files a/foto/foto_barang/281418652c86e20daf64e18a98a468d1.jpg and /dev/null differ
diff --git a/foto/foto_barang/28642369_567213b5-fae2-4c73-a035-4fb7a491cc01_748_748.jpg b/foto/foto_barang/28642369_567213b5-fae2-4c73-a035-4fb7a491cc01_748_748.jpg
deleted file mode 100644
index 18252ec..0000000
Binary files a/foto/foto_barang/28642369_567213b5-fae2-4c73-a035-4fb7a491cc01_748_748.jpg and /dev/null differ
diff --git a/foto/foto_barang/2898303_6d39c332-9c2c-42e9-aecd-8892d1eb7e71_426_426.jpg b/foto/foto_barang/2898303_6d39c332-9c2c-42e9-aecd-8892d1eb7e71_426_426.jpg
deleted file mode 100644
index f57ec34..0000000
Binary files a/foto/foto_barang/2898303_6d39c332-9c2c-42e9-aecd-8892d1eb7e71_426_426.jpg and /dev/null differ
diff --git a/foto/foto_barang/2_product_variant_1369.jpg b/foto/foto_barang/2_product_variant_1369.jpg
deleted file mode 100644
index c169ff3..0000000
Binary files a/foto/foto_barang/2_product_variant_1369.jpg and /dev/null differ
diff --git a/foto/foto_barang/2ad89229084b0d0b9d4b7435d6b5aeee.jpg b/foto/foto_barang/2ad89229084b0d0b9d4b7435d6b5aeee.jpg
deleted file mode 100644
index 6b19de3..0000000
Binary files a/foto/foto_barang/2ad89229084b0d0b9d4b7435d6b5aeee.jpg and /dev/null differ
diff --git a/foto/foto_barang/2add15ceb8aabb3b66641e49c62611c7.jpg b/foto/foto_barang/2add15ceb8aabb3b66641e49c62611c7.jpg
deleted file mode 100644
index d714da9..0000000
Binary files a/foto/foto_barang/2add15ceb8aabb3b66641e49c62611c7.jpg and /dev/null differ
diff --git a/foto/foto_barang/2b28466c-3835-48a1-ad0d-9e491164088a.jpg b/foto/foto_barang/2b28466c-3835-48a1-ad0d-9e491164088a.jpg
deleted file mode 100644
index bb60a15..0000000
Binary files a/foto/foto_barang/2b28466c-3835-48a1-ad0d-9e491164088a.jpg and /dev/null differ
diff --git a/foto/foto_barang/2bffa541b6c331f4d322b672ff0e9d4f.jpg b/foto/foto_barang/2bffa541b6c331f4d322b672ff0e9d4f.jpg
deleted file mode 100644
index 3901f45..0000000
Binary files a/foto/foto_barang/2bffa541b6c331f4d322b672ff0e9d4f.jpg and /dev/null differ
diff --git a/foto/foto_barang/2c8b80988a38c10685c5232545d9d423.jpg b/foto/foto_barang/2c8b80988a38c10685c5232545d9d423.jpg
deleted file mode 100644
index 2fa286f..0000000
Binary files a/foto/foto_barang/2c8b80988a38c10685c5232545d9d423.jpg and /dev/null differ
diff --git a/foto/foto_barang/2d5c8437b8aa2d673dab31816839630f.jpg b/foto/foto_barang/2d5c8437b8aa2d673dab31816839630f.jpg
deleted file mode 100644
index bf10682..0000000
Binary files a/foto/foto_barang/2d5c8437b8aa2d673dab31816839630f.jpg and /dev/null differ
diff --git a/foto/foto_barang/2e91838bafd12aefae98c0c28c4866f5.jpg b/foto/foto_barang/2e91838bafd12aefae98c0c28c4866f5.jpg
deleted file mode 100644
index e0f111b..0000000
Binary files a/foto/foto_barang/2e91838bafd12aefae98c0c28c4866f5.jpg and /dev/null differ
diff --git a/foto/foto_barang/2ec7193e3516c78d624df1b83c139be1.jpg b/foto/foto_barang/2ec7193e3516c78d624df1b83c139be1.jpg
deleted file mode 100644
index 7814fa4..0000000
Binary files a/foto/foto_barang/2ec7193e3516c78d624df1b83c139be1.jpg and /dev/null differ
diff --git a/foto/foto_barang/2fc9a5bcc5b126e2b088fe2f33a16b95.jpg b/foto/foto_barang/2fc9a5bcc5b126e2b088fe2f33a16b95.jpg
deleted file mode 100644
index 4fc3a42..0000000
Binary files a/foto/foto_barang/2fc9a5bcc5b126e2b088fe2f33a16b95.jpg and /dev/null differ
diff --git a/foto/foto_barang/3.jpg b/foto/foto_barang/3.jpg
deleted file mode 100644
index 5673ee0..0000000
Binary files a/foto/foto_barang/3.jpg and /dev/null differ
diff --git a/foto/foto_barang/301.jpg b/foto/foto_barang/301.jpg
deleted file mode 100644
index 2cf5257..0000000
Binary files a/foto/foto_barang/301.jpg and /dev/null differ
diff --git a/foto/foto_barang/302.jpg b/foto/foto_barang/302.jpg
deleted file mode 100644
index 04b34d2..0000000
Binary files a/foto/foto_barang/302.jpg and /dev/null differ
diff --git a/foto/foto_barang/303.jpg b/foto/foto_barang/303.jpg
deleted file mode 100644
index 46ebe8b..0000000
Binary files a/foto/foto_barang/303.jpg and /dev/null differ
diff --git a/foto/foto_barang/304.jpg b/foto/foto_barang/304.jpg
deleted file mode 100644
index ee9c17b..0000000
Binary files a/foto/foto_barang/304.jpg and /dev/null differ
diff --git a/foto/foto_barang/305.jpg b/foto/foto_barang/305.jpg
deleted file mode 100644
index 84b94ae..0000000
Binary files a/foto/foto_barang/305.jpg and /dev/null differ
diff --git a/foto/foto_barang/306.jpg b/foto/foto_barang/306.jpg
deleted file mode 100644
index a0f5184..0000000
Binary files a/foto/foto_barang/306.jpg and /dev/null differ
diff --git a/foto/foto_barang/307.jpg b/foto/foto_barang/307.jpg
deleted file mode 100644
index 0ba7015..0000000
Binary files a/foto/foto_barang/307.jpg and /dev/null differ
diff --git a/foto/foto_barang/308.jpg b/foto/foto_barang/308.jpg
deleted file mode 100644
index 1081c4f..0000000
Binary files a/foto/foto_barang/308.jpg and /dev/null differ
diff --git a/foto/foto_barang/30daa624567149db1af8bb11bd393023.jpg b/foto/foto_barang/30daa624567149db1af8bb11bd393023.jpg
deleted file mode 100644
index 8673f30..0000000
Binary files a/foto/foto_barang/30daa624567149db1af8bb11bd393023.jpg and /dev/null differ
diff --git a/foto/foto_barang/31.jpg b/foto/foto_barang/31.jpg
deleted file mode 100644
index bb99f14..0000000
Binary files a/foto/foto_barang/31.jpg and /dev/null differ
diff --git a/foto/foto_barang/311.jpg b/foto/foto_barang/311.jpg
deleted file mode 100644
index 564a849..0000000
Binary files a/foto/foto_barang/311.jpg and /dev/null differ
diff --git a/foto/foto_barang/3111.jpg b/foto/foto_barang/3111.jpg
deleted file mode 100644
index a29706e..0000000
Binary files a/foto/foto_barang/3111.jpg and /dev/null differ
diff --git a/foto/foto_barang/312.jpg b/foto/foto_barang/312.jpg
deleted file mode 100644
index ee2b34a..0000000
Binary files a/foto/foto_barang/312.jpg and /dev/null differ
diff --git a/foto/foto_barang/3124046c-9ea5-40bb-83c2-38607f1d6158.jpg b/foto/foto_barang/3124046c-9ea5-40bb-83c2-38607f1d6158.jpg
deleted file mode 100644
index 6408577..0000000
Binary files a/foto/foto_barang/3124046c-9ea5-40bb-83c2-38607f1d6158.jpg and /dev/null differ
diff --git a/foto/foto_barang/313.jpg b/foto/foto_barang/313.jpg
deleted file mode 100644
index 5ea10d8..0000000
Binary files a/foto/foto_barang/313.jpg and /dev/null differ
diff --git a/foto/foto_barang/314.jpg b/foto/foto_barang/314.jpg
deleted file mode 100644
index 0370771..0000000
Binary files a/foto/foto_barang/314.jpg and /dev/null differ
diff --git a/foto/foto_barang/3147244_dafd4067-9c32-4103-9a7a-61d8da260007_774_1032.jpg b/foto/foto_barang/3147244_dafd4067-9c32-4103-9a7a-61d8da260007_774_1032.jpg
deleted file mode 100644
index 9ab7202..0000000
Binary files a/foto/foto_barang/3147244_dafd4067-9c32-4103-9a7a-61d8da260007_774_1032.jpg and /dev/null differ
diff --git a/foto/foto_barang/315.jpg b/foto/foto_barang/315.jpg
deleted file mode 100644
index 538605a..0000000
Binary files a/foto/foto_barang/315.jpg and /dev/null differ
diff --git a/foto/foto_barang/316.jpg b/foto/foto_barang/316.jpg
deleted file mode 100644
index da36c6a..0000000
Binary files a/foto/foto_barang/316.jpg and /dev/null differ
diff --git a/foto/foto_barang/317.jpg b/foto/foto_barang/317.jpg
deleted file mode 100644
index e4fbe9d..0000000
Binary files a/foto/foto_barang/317.jpg and /dev/null differ
diff --git a/foto/foto_barang/317a4608b43528d814e7f044522f9498.jpg b/foto/foto_barang/317a4608b43528d814e7f044522f9498.jpg
deleted file mode 100644
index a3eeb2a..0000000
Binary files a/foto/foto_barang/317a4608b43528d814e7f044522f9498.jpg and /dev/null differ
diff --git a/foto/foto_barang/318.jpg b/foto/foto_barang/318.jpg
deleted file mode 100644
index 5c02753..0000000
Binary files a/foto/foto_barang/318.jpg and /dev/null differ
diff --git a/foto/foto_barang/319.jpg b/foto/foto_barang/319.jpg
deleted file mode 100644
index eab6f4a..0000000
Binary files a/foto/foto_barang/319.jpg and /dev/null differ
diff --git a/foto/foto_barang/32.jpg b/foto/foto_barang/32.jpg
deleted file mode 100644
index 7a50ba5..0000000
Binary files a/foto/foto_barang/32.jpg and /dev/null differ
diff --git a/foto/foto_barang/320.jpg b/foto/foto_barang/320.jpg
deleted file mode 100644
index b569fd3..0000000
Binary files a/foto/foto_barang/320.jpg and /dev/null differ
diff --git a/foto/foto_barang/32073352_d58eae88-15e3-4b5f-9ca4-17e8581f51e0_762_762.jpg b/foto/foto_barang/32073352_d58eae88-15e3-4b5f-9ca4-17e8581f51e0_762_762.jpg
deleted file mode 100644
index 1711564..0000000
Binary files a/foto/foto_barang/32073352_d58eae88-15e3-4b5f-9ca4-17e8581f51e0_762_762.jpg and /dev/null differ
diff --git a/foto/foto_barang/321.jpg b/foto/foto_barang/321.jpg
deleted file mode 100644
index 053b36b..0000000
Binary files a/foto/foto_barang/321.jpg and /dev/null differ
diff --git a/foto/foto_barang/324.jpg b/foto/foto_barang/324.jpg
deleted file mode 100644
index 139abd1..0000000
Binary files a/foto/foto_barang/324.jpg and /dev/null differ
diff --git a/foto/foto_barang/325.jpg b/foto/foto_barang/325.jpg
deleted file mode 100644
index 2201b94..0000000
Binary files a/foto/foto_barang/325.jpg and /dev/null differ
diff --git a/foto/foto_barang/326.jpg b/foto/foto_barang/326.jpg
deleted file mode 100644
index 82759fe..0000000
Binary files a/foto/foto_barang/326.jpg and /dev/null differ
diff --git a/foto/foto_barang/32659899_bf786c10-cc63-4a4b-9629-96e8c741dce0_453_435.jpg b/foto/foto_barang/32659899_bf786c10-cc63-4a4b-9629-96e8c741dce0_453_435.jpg
deleted file mode 100644
index 1115c3c..0000000
Binary files a/foto/foto_barang/32659899_bf786c10-cc63-4a4b-9629-96e8c741dce0_453_435.jpg and /dev/null differ
diff --git a/foto/foto_barang/327.jpg b/foto/foto_barang/327.jpg
deleted file mode 100644
index 1462d9f..0000000
Binary files a/foto/foto_barang/327.jpg and /dev/null differ
diff --git a/foto/foto_barang/328.jpg b/foto/foto_barang/328.jpg
deleted file mode 100644
index 2623e12..0000000
Binary files a/foto/foto_barang/328.jpg and /dev/null differ
diff --git a/foto/foto_barang/329.jpg b/foto/foto_barang/329.jpg
deleted file mode 100644
index a30bc5d..0000000
Binary files a/foto/foto_barang/329.jpg and /dev/null differ
diff --git a/foto/foto_barang/32cca2ecd0f7c00412cb1f449eb3ac6f.jpg b/foto/foto_barang/32cca2ecd0f7c00412cb1f449eb3ac6f.jpg
deleted file mode 100644
index 85e050c..0000000
Binary files a/foto/foto_barang/32cca2ecd0f7c00412cb1f449eb3ac6f.jpg and /dev/null differ
diff --git a/foto/foto_barang/33.jpg b/foto/foto_barang/33.jpg
deleted file mode 100644
index 1234cdb..0000000
Binary files a/foto/foto_barang/33.jpg and /dev/null differ
diff --git a/foto/foto_barang/330.jpg b/foto/foto_barang/330.jpg
deleted file mode 100644
index c8c2b3f..0000000
Binary files a/foto/foto_barang/330.jpg and /dev/null differ
diff --git a/foto/foto_barang/331.jpg b/foto/foto_barang/331.jpg
deleted file mode 100644
index f49f83a..0000000
Binary files a/foto/foto_barang/331.jpg and /dev/null differ
diff --git a/foto/foto_barang/332.jpg b/foto/foto_barang/332.jpg
deleted file mode 100644
index fcb2d28..0000000
Binary files a/foto/foto_barang/332.jpg and /dev/null differ
diff --git a/foto/foto_barang/333.jpg b/foto/foto_barang/333.jpg
deleted file mode 100644
index 788bf8d..0000000
Binary files a/foto/foto_barang/333.jpg and /dev/null differ
diff --git a/foto/foto_barang/334.jpg b/foto/foto_barang/334.jpg
deleted file mode 100644
index adec189..0000000
Binary files a/foto/foto_barang/334.jpg and /dev/null differ
diff --git a/foto/foto_barang/334aba38070f0ebe89ea334a8aedbb68.jpg b/foto/foto_barang/334aba38070f0ebe89ea334a8aedbb68.jpg
deleted file mode 100644
index 1d2203c..0000000
Binary files a/foto/foto_barang/334aba38070f0ebe89ea334a8aedbb68.jpg and /dev/null differ
diff --git a/foto/foto_barang/335.jpg b/foto/foto_barang/335.jpg
deleted file mode 100644
index 07417b5..0000000
Binary files a/foto/foto_barang/335.jpg and /dev/null differ
diff --git a/foto/foto_barang/335389480a9422aeaaf15dcc5ddfec9d.jpg b/foto/foto_barang/335389480a9422aeaaf15dcc5ddfec9d.jpg
deleted file mode 100644
index d2750ed..0000000
Binary files a/foto/foto_barang/335389480a9422aeaaf15dcc5ddfec9d.jpg and /dev/null differ
diff --git a/foto/foto_barang/336.jpg b/foto/foto_barang/336.jpg
deleted file mode 100644
index 3e63637..0000000
Binary files a/foto/foto_barang/336.jpg and /dev/null differ
diff --git a/foto/foto_barang/337.jpg b/foto/foto_barang/337.jpg
deleted file mode 100644
index 107a455..0000000
Binary files a/foto/foto_barang/337.jpg and /dev/null differ
diff --git a/foto/foto_barang/338.jpg b/foto/foto_barang/338.jpg
deleted file mode 100644
index d2145f0..0000000
Binary files a/foto/foto_barang/338.jpg and /dev/null differ
diff --git a/foto/foto_barang/339.jpg b/foto/foto_barang/339.jpg
deleted file mode 100644
index d87322e..0000000
Binary files a/foto/foto_barang/339.jpg and /dev/null differ
diff --git a/foto/foto_barang/33a89b870cd5c6cc90253ce9720cadae.jpg b/foto/foto_barang/33a89b870cd5c6cc90253ce9720cadae.jpg
deleted file mode 100644
index a6e8678..0000000
Binary files a/foto/foto_barang/33a89b870cd5c6cc90253ce9720cadae.jpg and /dev/null differ
diff --git a/foto/foto_barang/34.jpg b/foto/foto_barang/34.jpg
deleted file mode 100644
index c8e1a03..0000000
Binary files a/foto/foto_barang/34.jpg and /dev/null differ
diff --git a/foto/foto_barang/340.jpg b/foto/foto_barang/340.jpg
deleted file mode 100644
index 9dcba83..0000000
Binary files a/foto/foto_barang/340.jpg and /dev/null differ
diff --git a/foto/foto_barang/341.jpg b/foto/foto_barang/341.jpg
deleted file mode 100644
index ed16500..0000000
Binary files a/foto/foto_barang/341.jpg and /dev/null differ
diff --git a/foto/foto_barang/341cb548e431d228aea3e36ad461a765.jpg b/foto/foto_barang/341cb548e431d228aea3e36ad461a765.jpg
deleted file mode 100644
index e7391db..0000000
Binary files a/foto/foto_barang/341cb548e431d228aea3e36ad461a765.jpg and /dev/null differ
diff --git a/foto/foto_barang/342.jpg b/foto/foto_barang/342.jpg
deleted file mode 100644
index b9810dc..0000000
Binary files a/foto/foto_barang/342.jpg and /dev/null differ
diff --git a/foto/foto_barang/343.jpg b/foto/foto_barang/343.jpg
deleted file mode 100644
index ac92fbd..0000000
Binary files a/foto/foto_barang/343.jpg and /dev/null differ
diff --git a/foto/foto_barang/344.jpg b/foto/foto_barang/344.jpg
deleted file mode 100644
index db4a899..0000000
Binary files a/foto/foto_barang/344.jpg and /dev/null differ
diff --git a/foto/foto_barang/345.jpg b/foto/foto_barang/345.jpg
deleted file mode 100644
index 4f58be8..0000000
Binary files a/foto/foto_barang/345.jpg and /dev/null differ
diff --git a/foto/foto_barang/346.jpg b/foto/foto_barang/346.jpg
deleted file mode 100644
index 42c4d9f..0000000
Binary files a/foto/foto_barang/346.jpg and /dev/null differ
diff --git a/foto/foto_barang/347.jpg b/foto/foto_barang/347.jpg
deleted file mode 100644
index 33a3344..0000000
Binary files a/foto/foto_barang/347.jpg and /dev/null differ
diff --git a/foto/foto_barang/348.jpg b/foto/foto_barang/348.jpg
deleted file mode 100644
index 1db7fe7..0000000
Binary files a/foto/foto_barang/348.jpg and /dev/null differ
diff --git a/foto/foto_barang/349.jpg b/foto/foto_barang/349.jpg
deleted file mode 100644
index 431973e..0000000
Binary files a/foto/foto_barang/349.jpg and /dev/null differ
diff --git a/foto/foto_barang/35.jpg b/foto/foto_barang/35.jpg
deleted file mode 100644
index f7d192c..0000000
Binary files a/foto/foto_barang/35.jpg and /dev/null differ
diff --git a/foto/foto_barang/352.jpg b/foto/foto_barang/352.jpg
deleted file mode 100644
index 9690738..0000000
Binary files a/foto/foto_barang/352.jpg and /dev/null differ
diff --git a/foto/foto_barang/353.jpg b/foto/foto_barang/353.jpg
deleted file mode 100644
index 5f2c0db..0000000
Binary files a/foto/foto_barang/353.jpg and /dev/null differ
diff --git a/foto/foto_barang/354.jpg b/foto/foto_barang/354.jpg
deleted file mode 100644
index a57b868..0000000
Binary files a/foto/foto_barang/354.jpg and /dev/null differ
diff --git a/foto/foto_barang/355.jpg b/foto/foto_barang/355.jpg
deleted file mode 100644
index 9be128f..0000000
Binary files a/foto/foto_barang/355.jpg and /dev/null differ
diff --git a/foto/foto_barang/356.jpg b/foto/foto_barang/356.jpg
deleted file mode 100644
index aa4ccac..0000000
Binary files a/foto/foto_barang/356.jpg and /dev/null differ
diff --git a/foto/foto_barang/357.jpg b/foto/foto_barang/357.jpg
deleted file mode 100644
index 2fea915..0000000
Binary files a/foto/foto_barang/357.jpg and /dev/null differ
diff --git a/foto/foto_barang/358.jpg b/foto/foto_barang/358.jpg
deleted file mode 100644
index f7948ea..0000000
Binary files a/foto/foto_barang/358.jpg and /dev/null differ
diff --git a/foto/foto_barang/359.jpg b/foto/foto_barang/359.jpg
deleted file mode 100644
index 159e720..0000000
Binary files a/foto/foto_barang/359.jpg and /dev/null differ
diff --git a/foto/foto_barang/35c77fec8e40b6d1e6b33b8d5adffe42.jpg b/foto/foto_barang/35c77fec8e40b6d1e6b33b8d5adffe42.jpg
deleted file mode 100644
index 42df490..0000000
Binary files a/foto/foto_barang/35c77fec8e40b6d1e6b33b8d5adffe42.jpg and /dev/null differ
diff --git a/foto/foto_barang/35d255b2-caf4-4c3b-ad5c-199efd13245a.jpg b/foto/foto_barang/35d255b2-caf4-4c3b-ad5c-199efd13245a.jpg
deleted file mode 100644
index 64036fe..0000000
Binary files a/foto/foto_barang/35d255b2-caf4-4c3b-ad5c-199efd13245a.jpg and /dev/null differ
diff --git a/foto/foto_barang/361.jpg b/foto/foto_barang/361.jpg
deleted file mode 100644
index 3e08471..0000000
Binary files a/foto/foto_barang/361.jpg and /dev/null differ
diff --git a/foto/foto_barang/3611450_8bb3cd66-5988-455e-886b-187d750b9ce5_700_700.jpg b/foto/foto_barang/3611450_8bb3cd66-5988-455e-886b-187d750b9ce5_700_700.jpg
deleted file mode 100644
index 396f27e..0000000
Binary files a/foto/foto_barang/3611450_8bb3cd66-5988-455e-886b-187d750b9ce5_700_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/362.jpg b/foto/foto_barang/362.jpg
deleted file mode 100644
index b3e21df..0000000
Binary files a/foto/foto_barang/362.jpg and /dev/null differ
diff --git a/foto/foto_barang/363.jpg b/foto/foto_barang/363.jpg
deleted file mode 100644
index 00e13f4..0000000
Binary files a/foto/foto_barang/363.jpg and /dev/null differ
diff --git a/foto/foto_barang/364.jpg b/foto/foto_barang/364.jpg
deleted file mode 100644
index a202d0f..0000000
Binary files a/foto/foto_barang/364.jpg and /dev/null differ
diff --git a/foto/foto_barang/365.jpg b/foto/foto_barang/365.jpg
deleted file mode 100644
index 313c8b9..0000000
Binary files a/foto/foto_barang/365.jpg and /dev/null differ
diff --git a/foto/foto_barang/366.jpg b/foto/foto_barang/366.jpg
deleted file mode 100644
index 468be75..0000000
Binary files a/foto/foto_barang/366.jpg and /dev/null differ
diff --git a/foto/foto_barang/366465-01.jpg b/foto/foto_barang/366465-01.jpg
deleted file mode 100644
index ad94762..0000000
Binary files a/foto/foto_barang/366465-01.jpg and /dev/null differ
diff --git a/foto/foto_barang/367.jpg b/foto/foto_barang/367.jpg
deleted file mode 100644
index d2917f2..0000000
Binary files a/foto/foto_barang/367.jpg and /dev/null differ
diff --git a/foto/foto_barang/368.jpg b/foto/foto_barang/368.jpg
deleted file mode 100644
index b78cc87..0000000
Binary files a/foto/foto_barang/368.jpg and /dev/null differ
diff --git a/foto/foto_barang/369.jpg b/foto/foto_barang/369.jpg
deleted file mode 100644
index 074f0c5..0000000
Binary files a/foto/foto_barang/369.jpg and /dev/null differ
diff --git a/foto/foto_barang/370.jpg b/foto/foto_barang/370.jpg
deleted file mode 100644
index 074f0c5..0000000
Binary files a/foto/foto_barang/370.jpg and /dev/null differ
diff --git a/foto/foto_barang/371.jpg b/foto/foto_barang/371.jpg
deleted file mode 100644
index ff16b4f..0000000
Binary files a/foto/foto_barang/371.jpg and /dev/null differ
diff --git a/foto/foto_barang/37140a1104cb9d36954aefa921505174.jpg b/foto/foto_barang/37140a1104cb9d36954aefa921505174.jpg
deleted file mode 100644
index 002adf5..0000000
Binary files a/foto/foto_barang/37140a1104cb9d36954aefa921505174.jpg and /dev/null differ
diff --git a/foto/foto_barang/372.jpg b/foto/foto_barang/372.jpg
deleted file mode 100644
index 310dffa..0000000
Binary files a/foto/foto_barang/372.jpg and /dev/null differ
diff --git a/foto/foto_barang/373.jpg b/foto/foto_barang/373.jpg
deleted file mode 100644
index ff16b4f..0000000
Binary files a/foto/foto_barang/373.jpg and /dev/null differ
diff --git a/foto/foto_barang/374.jpg b/foto/foto_barang/374.jpg
deleted file mode 100644
index ee700c4..0000000
Binary files a/foto/foto_barang/374.jpg and /dev/null differ
diff --git a/foto/foto_barang/377.jpg b/foto/foto_barang/377.jpg
deleted file mode 100644
index c9c5172..0000000
Binary files a/foto/foto_barang/377.jpg and /dev/null differ
diff --git a/foto/foto_barang/378.jpg b/foto/foto_barang/378.jpg
deleted file mode 100644
index 7774280..0000000
Binary files a/foto/foto_barang/378.jpg and /dev/null differ
diff --git a/foto/foto_barang/379.jpg b/foto/foto_barang/379.jpg
deleted file mode 100644
index ef624ff..0000000
Binary files a/foto/foto_barang/379.jpg and /dev/null differ
diff --git a/foto/foto_barang/380.jpg b/foto/foto_barang/380.jpg
deleted file mode 100644
index c83b986..0000000
Binary files a/foto/foto_barang/380.jpg and /dev/null differ
diff --git a/foto/foto_barang/381.jpg b/foto/foto_barang/381.jpg
deleted file mode 100644
index e85d783..0000000
Binary files a/foto/foto_barang/381.jpg and /dev/null differ
diff --git a/foto/foto_barang/382.jpg b/foto/foto_barang/382.jpg
deleted file mode 100644
index b8b13aa..0000000
Binary files a/foto/foto_barang/382.jpg and /dev/null differ
diff --git a/foto/foto_barang/383.jpg b/foto/foto_barang/383.jpg
deleted file mode 100644
index 4f9f1d8..0000000
Binary files a/foto/foto_barang/383.jpg and /dev/null differ
diff --git a/foto/foto_barang/384.jpg b/foto/foto_barang/384.jpg
deleted file mode 100644
index 6eddb73..0000000
Binary files a/foto/foto_barang/384.jpg and /dev/null differ
diff --git a/foto/foto_barang/385.jpg b/foto/foto_barang/385.jpg
deleted file mode 100644
index 222b2e2..0000000
Binary files a/foto/foto_barang/385.jpg and /dev/null differ
diff --git a/foto/foto_barang/386.jpg b/foto/foto_barang/386.jpg
deleted file mode 100644
index 3259bc4..0000000
Binary files a/foto/foto_barang/386.jpg and /dev/null differ
diff --git a/foto/foto_barang/387.jpg b/foto/foto_barang/387.jpg
deleted file mode 100644
index d0be69e..0000000
Binary files a/foto/foto_barang/387.jpg and /dev/null differ
diff --git a/foto/foto_barang/388.jpg b/foto/foto_barang/388.jpg
deleted file mode 100644
index fcbf1af..0000000
Binary files a/foto/foto_barang/388.jpg and /dev/null differ
diff --git a/foto/foto_barang/389.jpg b/foto/foto_barang/389.jpg
deleted file mode 100644
index 8325249..0000000
Binary files a/foto/foto_barang/389.jpg and /dev/null differ
diff --git a/foto/foto_barang/390.jpg b/foto/foto_barang/390.jpg
deleted file mode 100644
index 25c1642..0000000
Binary files a/foto/foto_barang/390.jpg and /dev/null differ
diff --git a/foto/foto_barang/391.jpg b/foto/foto_barang/391.jpg
deleted file mode 100644
index 71c940b..0000000
Binary files a/foto/foto_barang/391.jpg and /dev/null differ
diff --git a/foto/foto_barang/392.jpg b/foto/foto_barang/392.jpg
deleted file mode 100644
index d3ada08..0000000
Binary files a/foto/foto_barang/392.jpg and /dev/null differ
diff --git a/foto/foto_barang/392619054.png b/foto/foto_barang/392619054.png
deleted file mode 100644
index 0b5bd21..0000000
Binary files a/foto/foto_barang/392619054.png and /dev/null differ
diff --git a/foto/foto_barang/393.jpg b/foto/foto_barang/393.jpg
deleted file mode 100644
index fd309aa..0000000
Binary files a/foto/foto_barang/393.jpg and /dev/null differ
diff --git a/foto/foto_barang/398.jpg b/foto/foto_barang/398.jpg
deleted file mode 100644
index 31c60c3..0000000
Binary files a/foto/foto_barang/398.jpg and /dev/null differ
diff --git a/foto/foto_barang/399.jpg b/foto/foto_barang/399.jpg
deleted file mode 100644
index 04804d6..0000000
Binary files a/foto/foto_barang/399.jpg and /dev/null differ
diff --git a/foto/foto_barang/39d153db398c59f84321a18ff921a854.jpg b/foto/foto_barang/39d153db398c59f84321a18ff921a854.jpg
deleted file mode 100644
index 38dbcf6..0000000
Binary files a/foto/foto_barang/39d153db398c59f84321a18ff921a854.jpg and /dev/null differ
diff --git a/foto/foto_barang/3a1d61e35560831e2603cab43e02f2b2.jpg b/foto/foto_barang/3a1d61e35560831e2603cab43e02f2b2.jpg
deleted file mode 100644
index bf84d65..0000000
Binary files a/foto/foto_barang/3a1d61e35560831e2603cab43e02f2b2.jpg and /dev/null differ
diff --git a/foto/foto_barang/3aced4e6-9e62-495b-945c-6226e0feabc2.jpg b/foto/foto_barang/3aced4e6-9e62-495b-945c-6226e0feabc2.jpg
deleted file mode 100644
index 42dc3db..0000000
Binary files a/foto/foto_barang/3aced4e6-9e62-495b-945c-6226e0feabc2.jpg and /dev/null differ
diff --git a/foto/foto_barang/3b59180d7572b0628d88b20700a0e322.jpg b/foto/foto_barang/3b59180d7572b0628d88b20700a0e322.jpg
deleted file mode 100644
index 482cccc..0000000
Binary files a/foto/foto_barang/3b59180d7572b0628d88b20700a0e322.jpg and /dev/null differ
diff --git a/foto/foto_barang/3c405bc1a7fa83917d94cb7af57e5495.jpg b/foto/foto_barang/3c405bc1a7fa83917d94cb7af57e5495.jpg
deleted file mode 100644
index 0180381..0000000
Binary files a/foto/foto_barang/3c405bc1a7fa83917d94cb7af57e5495.jpg and /dev/null differ
diff --git a/foto/foto_barang/3cae982e7db94b415cacaed830e1b31b.jpg b/foto/foto_barang/3cae982e7db94b415cacaed830e1b31b.jpg
deleted file mode 100644
index 25dd020..0000000
Binary files a/foto/foto_barang/3cae982e7db94b415cacaed830e1b31b.jpg and /dev/null differ
diff --git a/foto/foto_barang/3cfa261ca2691b4f837a04a4d6384902.jpg b/foto/foto_barang/3cfa261ca2691b4f837a04a4d6384902.jpg
deleted file mode 100644
index 1d5047b..0000000
Binary files a/foto/foto_barang/3cfa261ca2691b4f837a04a4d6384902.jpg and /dev/null differ
diff --git a/foto/foto_barang/3e2adb154f4cb4fa66416725752e0ef1.jpg b/foto/foto_barang/3e2adb154f4cb4fa66416725752e0ef1.jpg
deleted file mode 100644
index 9f3a767..0000000
Binary files a/foto/foto_barang/3e2adb154f4cb4fa66416725752e0ef1.jpg and /dev/null differ
diff --git a/foto/foto_barang/3eb101cf2d8f008c2d5931d101818e42.jpg b/foto/foto_barang/3eb101cf2d8f008c2d5931d101818e42.jpg
deleted file mode 100644
index 828d082..0000000
Binary files a/foto/foto_barang/3eb101cf2d8f008c2d5931d101818e42.jpg and /dev/null differ
diff --git a/foto/foto_barang/4.jpg b/foto/foto_barang/4.jpg
deleted file mode 100644
index 8509726..0000000
Binary files a/foto/foto_barang/4.jpg and /dev/null differ
diff --git a/foto/foto_barang/400.jpg b/foto/foto_barang/400.jpg
deleted file mode 100644
index be85693..0000000
Binary files a/foto/foto_barang/400.jpg and /dev/null differ
diff --git a/foto/foto_barang/401.jpg b/foto/foto_barang/401.jpg
deleted file mode 100644
index 9012e41..0000000
Binary files a/foto/foto_barang/401.jpg and /dev/null differ
diff --git a/foto/foto_barang/402.jpg b/foto/foto_barang/402.jpg
deleted file mode 100644
index ea7bd6e..0000000
Binary files a/foto/foto_barang/402.jpg and /dev/null differ
diff --git a/foto/foto_barang/403.jpg b/foto/foto_barang/403.jpg
deleted file mode 100644
index ee3ac5c..0000000
Binary files a/foto/foto_barang/403.jpg and /dev/null differ
diff --git a/foto/foto_barang/404.jpg b/foto/foto_barang/404.jpg
deleted file mode 100644
index d125225..0000000
Binary files a/foto/foto_barang/404.jpg and /dev/null differ
diff --git a/foto/foto_barang/405.jpg b/foto/foto_barang/405.jpg
deleted file mode 100644
index 1dd5fc3..0000000
Binary files a/foto/foto_barang/405.jpg and /dev/null differ
diff --git a/foto/foto_barang/406.jpg b/foto/foto_barang/406.jpg
deleted file mode 100644
index 0fc31f1..0000000
Binary files a/foto/foto_barang/406.jpg and /dev/null differ
diff --git a/foto/foto_barang/407.jpg b/foto/foto_barang/407.jpg
deleted file mode 100644
index 1d5ff98..0000000
Binary files a/foto/foto_barang/407.jpg and /dev/null differ
diff --git a/foto/foto_barang/40788768_a3b7e930-1b4c-48e6-8d55-6da8a9239cf0_500_500.jpg b/foto/foto_barang/40788768_a3b7e930-1b4c-48e6-8d55-6da8a9239cf0_500_500.jpg
deleted file mode 100644
index e095496..0000000
Binary files a/foto/foto_barang/40788768_a3b7e930-1b4c-48e6-8d55-6da8a9239cf0_500_500.jpg and /dev/null differ
diff --git a/foto/foto_barang/408.jpg b/foto/foto_barang/408.jpg
deleted file mode 100644
index a721b1f..0000000
Binary files a/foto/foto_barang/408.jpg and /dev/null differ
diff --git a/foto/foto_barang/409.jpg b/foto/foto_barang/409.jpg
deleted file mode 100644
index 5d1f98d..0000000
Binary files a/foto/foto_barang/409.jpg and /dev/null differ
diff --git a/foto/foto_barang/40c22f0e18607ffc6685904ec88318bd.jpg b/foto/foto_barang/40c22f0e18607ffc6685904ec88318bd.jpg
deleted file mode 100644
index 3d10ce1..0000000
Binary files a/foto/foto_barang/40c22f0e18607ffc6685904ec88318bd.jpg and /dev/null differ
diff --git a/foto/foto_barang/40c2502b22014a20bfb550aabf28b42b.jpg b/foto/foto_barang/40c2502b22014a20bfb550aabf28b42b.jpg
deleted file mode 100644
index b2a3907..0000000
Binary files a/foto/foto_barang/40c2502b22014a20bfb550aabf28b42b.jpg and /dev/null differ
diff --git a/foto/foto_barang/40f8d2aaf02f7937ef9c08234d458b05-removebg-preview.png b/foto/foto_barang/40f8d2aaf02f7937ef9c08234d458b05-removebg-preview.png
deleted file mode 100644
index 48f61be..0000000
Binary files a/foto/foto_barang/40f8d2aaf02f7937ef9c08234d458b05-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/41.jpg b/foto/foto_barang/41.jpg
deleted file mode 100644
index 746e3f1..0000000
Binary files a/foto/foto_barang/41.jpg and /dev/null differ
diff --git a/foto/foto_barang/410.jpg b/foto/foto_barang/410.jpg
deleted file mode 100644
index b7d04aa..0000000
Binary files a/foto/foto_barang/410.jpg and /dev/null differ
diff --git a/foto/foto_barang/411.jpg b/foto/foto_barang/411.jpg
deleted file mode 100644
index 9a7f8af..0000000
Binary files a/foto/foto_barang/411.jpg and /dev/null differ
diff --git a/foto/foto_barang/412.jpg b/foto/foto_barang/412.jpg
deleted file mode 100644
index 8723943..0000000
Binary files a/foto/foto_barang/412.jpg and /dev/null differ
diff --git a/foto/foto_barang/4121.jpg b/foto/foto_barang/4121.jpg
deleted file mode 100644
index 8723943..0000000
Binary files a/foto/foto_barang/4121.jpg and /dev/null differ
diff --git a/foto/foto_barang/41396175_6d07f2f0-1953-47cc-9fb3-33681fdf5411_700_700.jpg b/foto/foto_barang/41396175_6d07f2f0-1953-47cc-9fb3-33681fdf5411_700_700.jpg
deleted file mode 100644
index 55b95e2..0000000
Binary files a/foto/foto_barang/41396175_6d07f2f0-1953-47cc-9fb3-33681fdf5411_700_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/414.jpg b/foto/foto_barang/414.jpg
deleted file mode 100644
index a1187d0..0000000
Binary files a/foto/foto_barang/414.jpg and /dev/null differ
diff --git a/foto/foto_barang/416.jpg b/foto/foto_barang/416.jpg
deleted file mode 100644
index ef91818..0000000
Binary files a/foto/foto_barang/416.jpg and /dev/null differ
diff --git a/foto/foto_barang/417.jpg b/foto/foto_barang/417.jpg
deleted file mode 100644
index e5cc434..0000000
Binary files a/foto/foto_barang/417.jpg and /dev/null differ
diff --git a/foto/foto_barang/418.jpg b/foto/foto_barang/418.jpg
deleted file mode 100644
index 3eb312a..0000000
Binary files a/foto/foto_barang/418.jpg and /dev/null differ
diff --git a/foto/foto_barang/419.jpg b/foto/foto_barang/419.jpg
deleted file mode 100644
index f131b2d..0000000
Binary files a/foto/foto_barang/419.jpg and /dev/null differ
diff --git a/foto/foto_barang/42.jpg b/foto/foto_barang/42.jpg
deleted file mode 100644
index 2872c59..0000000
Binary files a/foto/foto_barang/42.jpg and /dev/null differ
diff --git a/foto/foto_barang/420.jpg b/foto/foto_barang/420.jpg
deleted file mode 100644
index be80cf4..0000000
Binary files a/foto/foto_barang/420.jpg and /dev/null differ
diff --git a/foto/foto_barang/421.jpg b/foto/foto_barang/421.jpg
deleted file mode 100644
index 12c24a9..0000000
Binary files a/foto/foto_barang/421.jpg and /dev/null differ
diff --git a/foto/foto_barang/422.jpg b/foto/foto_barang/422.jpg
deleted file mode 100644
index 8ae129a..0000000
Binary files a/foto/foto_barang/422.jpg and /dev/null differ
diff --git a/foto/foto_barang/4221.jpg b/foto/foto_barang/4221.jpg
deleted file mode 100644
index 8ae129a..0000000
Binary files a/foto/foto_barang/4221.jpg and /dev/null differ
diff --git a/foto/foto_barang/423.jpg b/foto/foto_barang/423.jpg
deleted file mode 100644
index 9341a02..0000000
Binary files a/foto/foto_barang/423.jpg and /dev/null differ
diff --git a/foto/foto_barang/424.jpg b/foto/foto_barang/424.jpg
deleted file mode 100644
index 6f8be01..0000000
Binary files a/foto/foto_barang/424.jpg and /dev/null differ
diff --git a/foto/foto_barang/425.jpg b/foto/foto_barang/425.jpg
deleted file mode 100644
index 2a7eb7c..0000000
Binary files a/foto/foto_barang/425.jpg and /dev/null differ
diff --git a/foto/foto_barang/426.jpg b/foto/foto_barang/426.jpg
deleted file mode 100644
index 43cd6e1..0000000
Binary files a/foto/foto_barang/426.jpg and /dev/null differ
diff --git a/foto/foto_barang/427.jpg b/foto/foto_barang/427.jpg
deleted file mode 100644
index f47663f..0000000
Binary files a/foto/foto_barang/427.jpg and /dev/null differ
diff --git a/foto/foto_barang/428.jpg b/foto/foto_barang/428.jpg
deleted file mode 100644
index 326e134..0000000
Binary files a/foto/foto_barang/428.jpg and /dev/null differ
diff --git a/foto/foto_barang/429.jpg b/foto/foto_barang/429.jpg
deleted file mode 100644
index 98529ee..0000000
Binary files a/foto/foto_barang/429.jpg and /dev/null differ
diff --git a/foto/foto_barang/43.jpg b/foto/foto_barang/43.jpg
deleted file mode 100644
index 5cf8314..0000000
Binary files a/foto/foto_barang/43.jpg and /dev/null differ
diff --git a/foto/foto_barang/430.jpg b/foto/foto_barang/430.jpg
deleted file mode 100644
index 27e7792..0000000
Binary files a/foto/foto_barang/430.jpg and /dev/null differ
diff --git a/foto/foto_barang/4301.jpg b/foto/foto_barang/4301.jpg
deleted file mode 100644
index 27e7792..0000000
Binary files a/foto/foto_barang/4301.jpg and /dev/null differ
diff --git a/foto/foto_barang/432.jpg b/foto/foto_barang/432.jpg
deleted file mode 100644
index 08242dc..0000000
Binary files a/foto/foto_barang/432.jpg and /dev/null differ
diff --git a/foto/foto_barang/433.jpg b/foto/foto_barang/433.jpg
deleted file mode 100644
index b7943d1..0000000
Binary files a/foto/foto_barang/433.jpg and /dev/null differ
diff --git a/foto/foto_barang/435.jpg b/foto/foto_barang/435.jpg
deleted file mode 100644
index 0d5c553..0000000
Binary files a/foto/foto_barang/435.jpg and /dev/null differ
diff --git a/foto/foto_barang/435c18efa741cec976199cbbc6f840f6.jpg b/foto/foto_barang/435c18efa741cec976199cbbc6f840f6.jpg
deleted file mode 100644
index 92a28be..0000000
Binary files a/foto/foto_barang/435c18efa741cec976199cbbc6f840f6.jpg and /dev/null differ
diff --git a/foto/foto_barang/436.jpg b/foto/foto_barang/436.jpg
deleted file mode 100644
index 6c96baa..0000000
Binary files a/foto/foto_barang/436.jpg and /dev/null differ
diff --git a/foto/foto_barang/4372363_3a63e4c2-a9d0-4683-a8e8-ed8aeafe1da7_652_652.jpg b/foto/foto_barang/4372363_3a63e4c2-a9d0-4683-a8e8-ed8aeafe1da7_652_652.jpg
deleted file mode 100644
index 08d8af3..0000000
Binary files a/foto/foto_barang/4372363_3a63e4c2-a9d0-4683-a8e8-ed8aeafe1da7_652_652.jpg and /dev/null differ
diff --git a/foto/foto_barang/438.jpg b/foto/foto_barang/438.jpg
deleted file mode 100644
index 48797db..0000000
Binary files a/foto/foto_barang/438.jpg and /dev/null differ
diff --git a/foto/foto_barang/439.jpg b/foto/foto_barang/439.jpg
deleted file mode 100644
index 7b609e4..0000000
Binary files a/foto/foto_barang/439.jpg and /dev/null differ
diff --git a/foto/foto_barang/439823_de5d5fdb-6f9d-4c6c-b256-06b7f20a4862_600_600.jpg b/foto/foto_barang/439823_de5d5fdb-6f9d-4c6c-b256-06b7f20a4862_600_600.jpg
deleted file mode 100644
index 4ec02f5..0000000
Binary files a/foto/foto_barang/439823_de5d5fdb-6f9d-4c6c-b256-06b7f20a4862_600_600.jpg and /dev/null differ
diff --git a/foto/foto_barang/440.jpg b/foto/foto_barang/440.jpg
deleted file mode 100644
index a9e3654..0000000
Binary files a/foto/foto_barang/440.jpg and /dev/null differ
diff --git a/foto/foto_barang/441.jpg b/foto/foto_barang/441.jpg
deleted file mode 100644
index 62afb3c..0000000
Binary files a/foto/foto_barang/441.jpg and /dev/null differ
diff --git a/foto/foto_barang/442.jpg b/foto/foto_barang/442.jpg
deleted file mode 100644
index 50991ca..0000000
Binary files a/foto/foto_barang/442.jpg and /dev/null differ
diff --git a/foto/foto_barang/443.jpg b/foto/foto_barang/443.jpg
deleted file mode 100644
index 16950fc..0000000
Binary files a/foto/foto_barang/443.jpg and /dev/null differ
diff --git a/foto/foto_barang/4442c9aaa7e32a9e6b319b40ffede894.jpg b/foto/foto_barang/4442c9aaa7e32a9e6b319b40ffede894.jpg
deleted file mode 100644
index 67aa787..0000000
Binary files a/foto/foto_barang/4442c9aaa7e32a9e6b319b40ffede894.jpg and /dev/null differ
diff --git a/foto/foto_barang/444a72312ccf0d9d07058925a87676bd.jpg b/foto/foto_barang/444a72312ccf0d9d07058925a87676bd.jpg
deleted file mode 100644
index ddf641d..0000000
Binary files a/foto/foto_barang/444a72312ccf0d9d07058925a87676bd.jpg and /dev/null differ
diff --git a/foto/foto_barang/446.jpg b/foto/foto_barang/446.jpg
deleted file mode 100644
index cd306f0..0000000
Binary files a/foto/foto_barang/446.jpg and /dev/null differ
diff --git a/foto/foto_barang/447.jpg b/foto/foto_barang/447.jpg
deleted file mode 100644
index 8aa4a8f..0000000
Binary files a/foto/foto_barang/447.jpg and /dev/null differ
diff --git a/foto/foto_barang/448.jpg b/foto/foto_barang/448.jpg
deleted file mode 100644
index 722d944..0000000
Binary files a/foto/foto_barang/448.jpg and /dev/null differ
diff --git a/foto/foto_barang/449.jpg b/foto/foto_barang/449.jpg
deleted file mode 100644
index 8cd04fa..0000000
Binary files a/foto/foto_barang/449.jpg and /dev/null differ
diff --git a/foto/foto_barang/450.jpg b/foto/foto_barang/450.jpg
deleted file mode 100644
index ee178d5..0000000
Binary files a/foto/foto_barang/450.jpg and /dev/null differ
diff --git a/foto/foto_barang/451.jpg b/foto/foto_barang/451.jpg
deleted file mode 100644
index 7ab196f..0000000
Binary files a/foto/foto_barang/451.jpg and /dev/null differ
diff --git a/foto/foto_barang/452.jpg b/foto/foto_barang/452.jpg
deleted file mode 100644
index 8fb4e48..0000000
Binary files a/foto/foto_barang/452.jpg and /dev/null differ
diff --git a/foto/foto_barang/453.jpg b/foto/foto_barang/453.jpg
deleted file mode 100644
index 77d7102..0000000
Binary files a/foto/foto_barang/453.jpg and /dev/null differ
diff --git a/foto/foto_barang/454.jpg b/foto/foto_barang/454.jpg
deleted file mode 100644
index ac47f4b..0000000
Binary files a/foto/foto_barang/454.jpg and /dev/null differ
diff --git a/foto/foto_barang/455.jpg b/foto/foto_barang/455.jpg
deleted file mode 100644
index 58c684d..0000000
Binary files a/foto/foto_barang/455.jpg and /dev/null differ
diff --git a/foto/foto_barang/456.jpg b/foto/foto_barang/456.jpg
deleted file mode 100644
index 83f0d5b..0000000
Binary files a/foto/foto_barang/456.jpg and /dev/null differ
diff --git a/foto/foto_barang/457.jpg b/foto/foto_barang/457.jpg
deleted file mode 100644
index cc2af68..0000000
Binary files a/foto/foto_barang/457.jpg and /dev/null differ
diff --git a/foto/foto_barang/458.jpg b/foto/foto_barang/458.jpg
deleted file mode 100644
index 2057ca1..0000000
Binary files a/foto/foto_barang/458.jpg and /dev/null differ
diff --git a/foto/foto_barang/459.jpg b/foto/foto_barang/459.jpg
deleted file mode 100644
index b9c2bd2..0000000
Binary files a/foto/foto_barang/459.jpg and /dev/null differ
diff --git a/foto/foto_barang/45f2b939-90ee-4456-a5be-ced7c1e4a80d.jpg b/foto/foto_barang/45f2b939-90ee-4456-a5be-ced7c1e4a80d.jpg
deleted file mode 100644
index 5d82f31..0000000
Binary files a/foto/foto_barang/45f2b939-90ee-4456-a5be-ced7c1e4a80d.jpg and /dev/null differ
diff --git a/foto/foto_barang/460.jpg b/foto/foto_barang/460.jpg
deleted file mode 100644
index 5b058c5..0000000
Binary files a/foto/foto_barang/460.jpg and /dev/null differ
diff --git a/foto/foto_barang/461.jpg b/foto/foto_barang/461.jpg
deleted file mode 100644
index 2dc9493..0000000
Binary files a/foto/foto_barang/461.jpg and /dev/null differ
diff --git a/foto/foto_barang/462.jpg b/foto/foto_barang/462.jpg
deleted file mode 100644
index e160662..0000000
Binary files a/foto/foto_barang/462.jpg and /dev/null differ
diff --git a/foto/foto_barang/463.jpg b/foto/foto_barang/463.jpg
deleted file mode 100644
index 5045d2b..0000000
Binary files a/foto/foto_barang/463.jpg and /dev/null differ
diff --git a/foto/foto_barang/464.jpg b/foto/foto_barang/464.jpg
deleted file mode 100644
index ce84599..0000000
Binary files a/foto/foto_barang/464.jpg and /dev/null differ
diff --git a/foto/foto_barang/46429ae76a8d6acef28e15fbbb35464a.jpg b/foto/foto_barang/46429ae76a8d6acef28e15fbbb35464a.jpg
deleted file mode 100644
index dbd11ae..0000000
Binary files a/foto/foto_barang/46429ae76a8d6acef28e15fbbb35464a.jpg and /dev/null differ
diff --git a/foto/foto_barang/465.jpg b/foto/foto_barang/465.jpg
deleted file mode 100644
index b884d15..0000000
Binary files a/foto/foto_barang/465.jpg and /dev/null differ
diff --git a/foto/foto_barang/466.jpg b/foto/foto_barang/466.jpg
deleted file mode 100644
index 82e6a4f..0000000
Binary files a/foto/foto_barang/466.jpg and /dev/null differ
diff --git a/foto/foto_barang/467.jpg b/foto/foto_barang/467.jpg
deleted file mode 100644
index dcfeca2..0000000
Binary files a/foto/foto_barang/467.jpg and /dev/null differ
diff --git a/foto/foto_barang/46791590452b7d7711803b0372e3c23e.jpg b/foto/foto_barang/46791590452b7d7711803b0372e3c23e.jpg
deleted file mode 100644
index c64ef70..0000000
Binary files a/foto/foto_barang/46791590452b7d7711803b0372e3c23e.jpg and /dev/null differ
diff --git a/foto/foto_barang/46805211_5df870d8-b9e9-4b5a-bd1c-01d4408d2ea9_1000_1000.jpg b/foto/foto_barang/46805211_5df870d8-b9e9-4b5a-bd1c-01d4408d2ea9_1000_1000.jpg
deleted file mode 100644
index 14458dd..0000000
Binary files a/foto/foto_barang/46805211_5df870d8-b9e9-4b5a-bd1c-01d4408d2ea9_1000_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/469.jpg b/foto/foto_barang/469.jpg
deleted file mode 100644
index 503c2df..0000000
Binary files a/foto/foto_barang/469.jpg and /dev/null differ
diff --git a/foto/foto_barang/470.jpg b/foto/foto_barang/470.jpg
deleted file mode 100644
index 83812e3..0000000
Binary files a/foto/foto_barang/470.jpg and /dev/null differ
diff --git a/foto/foto_barang/471.jpg b/foto/foto_barang/471.jpg
deleted file mode 100644
index 55b0662..0000000
Binary files a/foto/foto_barang/471.jpg and /dev/null differ
diff --git a/foto/foto_barang/472.jpg b/foto/foto_barang/472.jpg
deleted file mode 100644
index c9c5c80..0000000
Binary files a/foto/foto_barang/472.jpg and /dev/null differ
diff --git a/foto/foto_barang/473.jpg b/foto/foto_barang/473.jpg
deleted file mode 100644
index c0e70d6..0000000
Binary files a/foto/foto_barang/473.jpg and /dev/null differ
diff --git a/foto/foto_barang/478.jpg b/foto/foto_barang/478.jpg
deleted file mode 100644
index 4f75049..0000000
Binary files a/foto/foto_barang/478.jpg and /dev/null differ
diff --git a/foto/foto_barang/479.jpg b/foto/foto_barang/479.jpg
deleted file mode 100644
index 853ad10..0000000
Binary files a/foto/foto_barang/479.jpg and /dev/null differ
diff --git a/foto/foto_barang/480.jpg b/foto/foto_barang/480.jpg
deleted file mode 100644
index 41ef7ee..0000000
Binary files a/foto/foto_barang/480.jpg and /dev/null differ
diff --git a/foto/foto_barang/481.jpg b/foto/foto_barang/481.jpg
deleted file mode 100644
index d98c5c0..0000000
Binary files a/foto/foto_barang/481.jpg and /dev/null differ
diff --git a/foto/foto_barang/4815077_18d30c70-0639-41f5-ba92-93d960142e45_2048_2048.jpg b/foto/foto_barang/4815077_18d30c70-0639-41f5-ba92-93d960142e45_2048_2048.jpg
deleted file mode 100644
index c6fc881..0000000
Binary files a/foto/foto_barang/4815077_18d30c70-0639-41f5-ba92-93d960142e45_2048_2048.jpg and /dev/null differ
diff --git a/foto/foto_barang/4816411_5b44644b-f397-43b1-afc8-beb6338eacc3_2048_2048.jpg b/foto/foto_barang/4816411_5b44644b-f397-43b1-afc8-beb6338eacc3_2048_2048.jpg
deleted file mode 100644
index 0ebf6eb..0000000
Binary files a/foto/foto_barang/4816411_5b44644b-f397-43b1-afc8-beb6338eacc3_2048_2048.jpg and /dev/null differ
diff --git a/foto/foto_barang/482.jpg b/foto/foto_barang/482.jpg
deleted file mode 100644
index ac50f43..0000000
Binary files a/foto/foto_barang/482.jpg and /dev/null differ
diff --git a/foto/foto_barang/483.jpg b/foto/foto_barang/483.jpg
deleted file mode 100644
index 73a6a02..0000000
Binary files a/foto/foto_barang/483.jpg and /dev/null differ
diff --git a/foto/foto_barang/484.jpg b/foto/foto_barang/484.jpg
deleted file mode 100644
index 7108577..0000000
Binary files a/foto/foto_barang/484.jpg and /dev/null differ
diff --git a/foto/foto_barang/485.jpg b/foto/foto_barang/485.jpg
deleted file mode 100644
index c86bad2..0000000
Binary files a/foto/foto_barang/485.jpg and /dev/null differ
diff --git a/foto/foto_barang/486.jpg b/foto/foto_barang/486.jpg
deleted file mode 100644
index 0a2e006..0000000
Binary files a/foto/foto_barang/486.jpg and /dev/null differ
diff --git a/foto/foto_barang/487.jpg b/foto/foto_barang/487.jpg
deleted file mode 100644
index 9780c57..0000000
Binary files a/foto/foto_barang/487.jpg and /dev/null differ
diff --git a/foto/foto_barang/48710637-cf7e-47b4-abb5-ac164aaddb36.jpg b/foto/foto_barang/48710637-cf7e-47b4-abb5-ac164aaddb36.jpg
deleted file mode 100644
index 0492514..0000000
Binary files a/foto/foto_barang/48710637-cf7e-47b4-abb5-ac164aaddb36.jpg and /dev/null differ
diff --git a/foto/foto_barang/488.jpg b/foto/foto_barang/488.jpg
deleted file mode 100644
index 557acc6..0000000
Binary files a/foto/foto_barang/488.jpg and /dev/null differ
diff --git a/foto/foto_barang/489.jpg b/foto/foto_barang/489.jpg
deleted file mode 100644
index 03c3dae..0000000
Binary files a/foto/foto_barang/489.jpg and /dev/null differ
diff --git a/foto/foto_barang/490.jpg b/foto/foto_barang/490.jpg
deleted file mode 100644
index 3687b9f..0000000
Binary files a/foto/foto_barang/490.jpg and /dev/null differ
diff --git a/foto/foto_barang/491.jpg b/foto/foto_barang/491.jpg
deleted file mode 100644
index be5cf2b..0000000
Binary files a/foto/foto_barang/491.jpg and /dev/null differ
diff --git a/foto/foto_barang/492.jpg b/foto/foto_barang/492.jpg
deleted file mode 100644
index f840aa1..0000000
Binary files a/foto/foto_barang/492.jpg and /dev/null differ
diff --git a/foto/foto_barang/493.jpg b/foto/foto_barang/493.jpg
deleted file mode 100644
index 4e9d250..0000000
Binary files a/foto/foto_barang/493.jpg and /dev/null differ
diff --git a/foto/foto_barang/4936d08b58c54cfffdb4c13beaf7e3e6.jpg b/foto/foto_barang/4936d08b58c54cfffdb4c13beaf7e3e6.jpg
deleted file mode 100644
index f80f338..0000000
Binary files a/foto/foto_barang/4936d08b58c54cfffdb4c13beaf7e3e6.jpg and /dev/null differ
diff --git a/foto/foto_barang/494.jpg b/foto/foto_barang/494.jpg
deleted file mode 100644
index 55502f2..0000000
Binary files a/foto/foto_barang/494.jpg and /dev/null differ
diff --git a/foto/foto_barang/495.jpg b/foto/foto_barang/495.jpg
deleted file mode 100644
index 99d0f9b..0000000
Binary files a/foto/foto_barang/495.jpg and /dev/null differ
diff --git a/foto/foto_barang/496.jpg b/foto/foto_barang/496.jpg
deleted file mode 100644
index ba4a3af..0000000
Binary files a/foto/foto_barang/496.jpg and /dev/null differ
diff --git a/foto/foto_barang/497.jpg b/foto/foto_barang/497.jpg
deleted file mode 100644
index b81cd9c..0000000
Binary files a/foto/foto_barang/497.jpg and /dev/null differ
diff --git a/foto/foto_barang/499.jpg b/foto/foto_barang/499.jpg
deleted file mode 100644
index d60b362..0000000
Binary files a/foto/foto_barang/499.jpg and /dev/null differ
diff --git a/foto/foto_barang/4a81072e11c07cbfd7e9395c7ac301df.jpg b/foto/foto_barang/4a81072e11c07cbfd7e9395c7ac301df.jpg
deleted file mode 100644
index a107024..0000000
Binary files a/foto/foto_barang/4a81072e11c07cbfd7e9395c7ac301df.jpg and /dev/null differ
diff --git a/foto/foto_barang/4af93b403bb67da7c7359b79534aee92.jpg b/foto/foto_barang/4af93b403bb67da7c7359b79534aee92.jpg
deleted file mode 100644
index de3a54c..0000000
Binary files a/foto/foto_barang/4af93b403bb67da7c7359b79534aee92.jpg and /dev/null differ
diff --git a/foto/foto_barang/4b4723c6c8e1f44f9be9c0904342320b_tn.jpg b/foto/foto_barang/4b4723c6c8e1f44f9be9c0904342320b_tn.jpg
deleted file mode 100644
index bb5f1ba..0000000
Binary files a/foto/foto_barang/4b4723c6c8e1f44f9be9c0904342320b_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/4b816732_2e95_4417_a693_35c18e23cbe5.jpg b/foto/foto_barang/4b816732_2e95_4417_a693_35c18e23cbe5.jpg
deleted file mode 100644
index 3f22fe8..0000000
Binary files a/foto/foto_barang/4b816732_2e95_4417_a693_35c18e23cbe5.jpg and /dev/null differ
diff --git a/foto/foto_barang/4c2c9e55c2824db0e1c0333dc0848b76.jpg b/foto/foto_barang/4c2c9e55c2824db0e1c0333dc0848b76.jpg
deleted file mode 100644
index dcd93c1..0000000
Binary files a/foto/foto_barang/4c2c9e55c2824db0e1c0333dc0848b76.jpg and /dev/null differ
diff --git a/foto/foto_barang/4c483760-1351-457d-be4b-687a1d728031.jpg b/foto/foto_barang/4c483760-1351-457d-be4b-687a1d728031.jpg
deleted file mode 100644
index 9845ce1..0000000
Binary files a/foto/foto_barang/4c483760-1351-457d-be4b-687a1d728031.jpg and /dev/null differ
diff --git a/foto/foto_barang/4d721d4dac643ea781f78641028f19d9.jpg b/foto/foto_barang/4d721d4dac643ea781f78641028f19d9.jpg
deleted file mode 100644
index b522d02..0000000
Binary files a/foto/foto_barang/4d721d4dac643ea781f78641028f19d9.jpg and /dev/null differ
diff --git a/foto/foto_barang/4dc4b31c9d81884d66fdf28a193ec8b7.jpg b/foto/foto_barang/4dc4b31c9d81884d66fdf28a193ec8b7.jpg
deleted file mode 100644
index 9c01c41..0000000
Binary files a/foto/foto_barang/4dc4b31c9d81884d66fdf28a193ec8b7.jpg and /dev/null differ
diff --git a/foto/foto_barang/4defa4072d81d50fb752d9fc699c03a0.jpg b/foto/foto_barang/4defa4072d81d50fb752d9fc699c03a0.jpg
deleted file mode 100644
index c93384a..0000000
Binary files a/foto/foto_barang/4defa4072d81d50fb752d9fc699c03a0.jpg and /dev/null differ
diff --git a/foto/foto_barang/4e590ea9-ea9a-4618-8d43-f0e952b6f4c1.jpg b/foto/foto_barang/4e590ea9-ea9a-4618-8d43-f0e952b6f4c1.jpg
deleted file mode 100644
index da9a455..0000000
Binary files a/foto/foto_barang/4e590ea9-ea9a-4618-8d43-f0e952b6f4c1.jpg and /dev/null differ
diff --git a/foto/foto_barang/4f4a933678f7fc4e4af9c2382c10db28.jpg b/foto/foto_barang/4f4a933678f7fc4e4af9c2382c10db28.jpg
deleted file mode 100644
index ad22b8e..0000000
Binary files a/foto/foto_barang/4f4a933678f7fc4e4af9c2382c10db28.jpg and /dev/null differ
diff --git a/foto/foto_barang/4f727fa7dc6593cba2dc3bc80a100d1b.jpg b/foto/foto_barang/4f727fa7dc6593cba2dc3bc80a100d1b.jpg
deleted file mode 100644
index 2437b9d..0000000
Binary files a/foto/foto_barang/4f727fa7dc6593cba2dc3bc80a100d1b.jpg and /dev/null differ
diff --git a/foto/foto_barang/4fa5d22fa29e0a58fb3b5259a54e31b1.jpg b/foto/foto_barang/4fa5d22fa29e0a58fb3b5259a54e31b1.jpg
deleted file mode 100644
index 4748708..0000000
Binary files a/foto/foto_barang/4fa5d22fa29e0a58fb3b5259a54e31b1.jpg and /dev/null differ
diff --git a/foto/foto_barang/4fe525ec47ce024abb5ba8f2111e3b88_tn.jpg b/foto/foto_barang/4fe525ec47ce024abb5ba8f2111e3b88_tn.jpg
deleted file mode 100644
index 2e30333..0000000
Binary files a/foto/foto_barang/4fe525ec47ce024abb5ba8f2111e3b88_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/5.jpg b/foto/foto_barang/5.jpg
deleted file mode 100644
index 58cd037..0000000
Binary files a/foto/foto_barang/5.jpg and /dev/null differ
diff --git a/foto/foto_barang/5.png b/foto/foto_barang/5.png
deleted file mode 100644
index 7b236ac..0000000
Binary files a/foto/foto_barang/5.png and /dev/null differ
diff --git a/foto/foto_barang/500.jpg b/foto/foto_barang/500.jpg
deleted file mode 100644
index 137792a..0000000
Binary files a/foto/foto_barang/500.jpg and /dev/null differ
diff --git a/foto/foto_barang/5001.jpg b/foto/foto_barang/5001.jpg
deleted file mode 100644
index cfe1be7..0000000
Binary files a/foto/foto_barang/5001.jpg and /dev/null differ
diff --git a/foto/foto_barang/50011.jpg b/foto/foto_barang/50011.jpg
deleted file mode 100644
index cfe1be7..0000000
Binary files a/foto/foto_barang/50011.jpg and /dev/null differ
diff --git a/foto/foto_barang/5042355_3e40dff9-7a7b-4aad-b82f-c07432cb608e.jpg b/foto/foto_barang/5042355_3e40dff9-7a7b-4aad-b82f-c07432cb608e.jpg
deleted file mode 100644
index 0c0d6dd..0000000
Binary files a/foto/foto_barang/5042355_3e40dff9-7a7b-4aad-b82f-c07432cb608e.jpg and /dev/null differ
diff --git a/foto/foto_barang/505978_17-3-2021_11-22-10.png b/foto/foto_barang/505978_17-3-2021_11-22-10.png
deleted file mode 100644
index eecdd48..0000000
Binary files a/foto/foto_barang/505978_17-3-2021_11-22-10.png and /dev/null differ
diff --git a/foto/foto_barang/505978_17-3-2021_11-22-101.png b/foto/foto_barang/505978_17-3-2021_11-22-101.png
deleted file mode 100644
index eecdd48..0000000
Binary files a/foto/foto_barang/505978_17-3-2021_11-22-101.png and /dev/null differ
diff --git a/foto/foto_barang/50e8a7dee594a8ba6754b2978b188e3e.jpg b/foto/foto_barang/50e8a7dee594a8ba6754b2978b188e3e.jpg
deleted file mode 100644
index 4d8bbba..0000000
Binary files a/foto/foto_barang/50e8a7dee594a8ba6754b2978b188e3e.jpg and /dev/null differ
diff --git a/foto/foto_barang/51.jpg b/foto/foto_barang/51.jpg
deleted file mode 100644
index b063c0b..0000000
Binary files a/foto/foto_barang/51.jpg and /dev/null differ
diff --git a/foto/foto_barang/51154060-702f-4b39-9221-ab2b08b964ae.jpg b/foto/foto_barang/51154060-702f-4b39-9221-ab2b08b964ae.jpg
deleted file mode 100644
index aae017c..0000000
Binary files a/foto/foto_barang/51154060-702f-4b39-9221-ab2b08b964ae.jpg and /dev/null differ
diff --git a/foto/foto_barang/5140c0b8c34fd1f23abab3c285088ced.jpg b/foto/foto_barang/5140c0b8c34fd1f23abab3c285088ced.jpg
deleted file mode 100644
index 9601330..0000000
Binary files a/foto/foto_barang/5140c0b8c34fd1f23abab3c285088ced.jpg and /dev/null differ
diff --git a/foto/foto_barang/5158090_246224f7-9a8f-499f-8d40-e677fcd48bec.jpg b/foto/foto_barang/5158090_246224f7-9a8f-499f-8d40-e677fcd48bec.jpg
deleted file mode 100644
index d879656..0000000
Binary files a/foto/foto_barang/5158090_246224f7-9a8f-499f-8d40-e677fcd48bec.jpg and /dev/null differ
diff --git a/foto/foto_barang/516035190f7a9bab364cebf26bfcf5bd.jpg b/foto/foto_barang/516035190f7a9bab364cebf26bfcf5bd.jpg
deleted file mode 100644
index e0d78a0..0000000
Binary files a/foto/foto_barang/516035190f7a9bab364cebf26bfcf5bd.jpg and /dev/null differ
diff --git a/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c6.jpg b/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c6.jpg
deleted file mode 100644
index 37187eb..0000000
Binary files a/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c6.jpg and /dev/null differ
diff --git a/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c61.jpg b/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c61.jpg
deleted file mode 100644
index 37187eb..0000000
Binary files a/foto/foto_barang/52b22ebf8b67555551941f5f3d2502c61.jpg and /dev/null differ
diff --git a/foto/foto_barang/53389207d1b852a254cc954d79809746_tn.jpg b/foto/foto_barang/53389207d1b852a254cc954d79809746_tn.jpg
deleted file mode 100644
index 2426870..0000000
Binary files a/foto/foto_barang/53389207d1b852a254cc954d79809746_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/533b1b06c8c19ef1d5af002be500f516.jpg b/foto/foto_barang/533b1b06c8c19ef1d5af002be500f516.jpg
deleted file mode 100644
index 70fa8ab..0000000
Binary files a/foto/foto_barang/533b1b06c8c19ef1d5af002be500f516.jpg and /dev/null differ
diff --git a/foto/foto_barang/5372526_4c69ac17-4c69-4625-8b16-4376d672cc38_472_472.jpg b/foto/foto_barang/5372526_4c69ac17-4c69-4625-8b16-4376d672cc38_472_472.jpg
deleted file mode 100644
index b6f9089..0000000
Binary files a/foto/foto_barang/5372526_4c69ac17-4c69-4625-8b16-4376d672cc38_472_472.jpg and /dev/null differ
diff --git a/foto/foto_barang/53c9a36d098965fbd3c641a52303202a.jpg b/foto/foto_barang/53c9a36d098965fbd3c641a52303202a.jpg
deleted file mode 100644
index a51ab95..0000000
Binary files a/foto/foto_barang/53c9a36d098965fbd3c641a52303202a.jpg and /dev/null differ
diff --git a/foto/foto_barang/54.jpg b/foto/foto_barang/54.jpg
deleted file mode 100644
index 0f7165a..0000000
Binary files a/foto/foto_barang/54.jpg and /dev/null differ
diff --git a/foto/foto_barang/545c686d2dfed1802e47a610927f0549.jpg b/foto/foto_barang/545c686d2dfed1802e47a610927f0549.jpg
deleted file mode 100644
index 5d12953..0000000
Binary files a/foto/foto_barang/545c686d2dfed1802e47a610927f0549.jpg and /dev/null differ
diff --git a/foto/foto_barang/546b0098-c8e4-47b3-96a8-95e4c9e50d53.jpg b/foto/foto_barang/546b0098-c8e4-47b3-96a8-95e4c9e50d53.jpg
deleted file mode 100644
index 9d12510..0000000
Binary files a/foto/foto_barang/546b0098-c8e4-47b3-96a8-95e4c9e50d53.jpg and /dev/null differ
diff --git a/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b.jpg b/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b.jpg
deleted file mode 100644
index a22d241..0000000
Binary files a/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b.jpg and /dev/null differ
diff --git a/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b1.jpg b/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b1.jpg
deleted file mode 100644
index a22d241..0000000
Binary files a/foto/foto_barang/54ec5d1eccfbf97e1cef470e045a2d0b1.jpg and /dev/null differ
diff --git a/foto/foto_barang/55.jpg b/foto/foto_barang/55.jpg
deleted file mode 100644
index 6899eee..0000000
Binary files a/foto/foto_barang/55.jpg and /dev/null differ
diff --git a/foto/foto_barang/555e5b255e9022001d9a44205ef4f878.jpg b/foto/foto_barang/555e5b255e9022001d9a44205ef4f878.jpg
deleted file mode 100644
index 5234f57..0000000
Binary files a/foto/foto_barang/555e5b255e9022001d9a44205ef4f878.jpg and /dev/null differ
diff --git a/foto/foto_barang/556224_5-8-2020_13-46-24.jpeg b/foto/foto_barang/556224_5-8-2020_13-46-24.jpeg
deleted file mode 100644
index ec131fc..0000000
Binary files a/foto/foto_barang/556224_5-8-2020_13-46-24.jpeg and /dev/null differ
diff --git a/foto/foto_barang/561779581df9ff8feb9c8c1f2fed572e.jpg b/foto/foto_barang/561779581df9ff8feb9c8c1f2fed572e.jpg
deleted file mode 100644
index b695914..0000000
Binary files a/foto/foto_barang/561779581df9ff8feb9c8c1f2fed572e.jpg and /dev/null differ
diff --git a/foto/foto_barang/57.jpg b/foto/foto_barang/57.jpg
deleted file mode 100644
index 514015a..0000000
Binary files a/foto/foto_barang/57.jpg and /dev/null differ
diff --git a/foto/foto_barang/58.jpg b/foto/foto_barang/58.jpg
deleted file mode 100644
index ccd8b3f..0000000
Binary files a/foto/foto_barang/58.jpg and /dev/null differ
diff --git a/foto/foto_barang/58abb3dae1f51d94f26964c95c332ba6.jpg b/foto/foto_barang/58abb3dae1f51d94f26964c95c332ba6.jpg
deleted file mode 100644
index a9f77cc..0000000
Binary files a/foto/foto_barang/58abb3dae1f51d94f26964c95c332ba6.jpg and /dev/null differ
diff --git a/foto/foto_barang/5_500.jpg b/foto/foto_barang/5_500.jpg
deleted file mode 100644
index c4eb1da..0000000
Binary files a/foto/foto_barang/5_500.jpg and /dev/null differ
diff --git a/foto/foto_barang/5b562924-2e82-46fd-a4e5-a20f0ea46c54.jpg b/foto/foto_barang/5b562924-2e82-46fd-a4e5-a20f0ea46c54.jpg
deleted file mode 100644
index ab76453..0000000
Binary files a/foto/foto_barang/5b562924-2e82-46fd-a4e5-a20f0ea46c54.jpg and /dev/null differ
diff --git a/foto/foto_barang/5bca8290-e0f2-4666-85fe-b2e7b3842b8c.jpg b/foto/foto_barang/5bca8290-e0f2-4666-85fe-b2e7b3842b8c.jpg
deleted file mode 100644
index c312823..0000000
Binary files a/foto/foto_barang/5bca8290-e0f2-4666-85fe-b2e7b3842b8c.jpg and /dev/null differ
diff --git a/foto/foto_barang/5c5a13f7-2463-4223-94f8-1ecb875cb8dd.jpg b/foto/foto_barang/5c5a13f7-2463-4223-94f8-1ecb875cb8dd.jpg
deleted file mode 100644
index ef82bec..0000000
Binary files a/foto/foto_barang/5c5a13f7-2463-4223-94f8-1ecb875cb8dd.jpg and /dev/null differ
diff --git a/foto/foto_barang/5c970b010dde79d3110922d712d2db5f.jpg b/foto/foto_barang/5c970b010dde79d3110922d712d2db5f.jpg
deleted file mode 100644
index 7ee8fca..0000000
Binary files a/foto/foto_barang/5c970b010dde79d3110922d712d2db5f.jpg and /dev/null differ
diff --git a/foto/foto_barang/5cb9b163-e493-494b-87da-a62e84ab8c55.jpg b/foto/foto_barang/5cb9b163-e493-494b-87da-a62e84ab8c55.jpg
deleted file mode 100644
index 0f02e98..0000000
Binary files a/foto/foto_barang/5cb9b163-e493-494b-87da-a62e84ab8c55.jpg and /dev/null differ
diff --git a/foto/foto_barang/5cda2585c436359fd8941d5b9d57e309.jpg b/foto/foto_barang/5cda2585c436359fd8941d5b9d57e309.jpg
deleted file mode 100644
index c087220..0000000
Binary files a/foto/foto_barang/5cda2585c436359fd8941d5b9d57e309.jpg and /dev/null differ
diff --git a/foto/foto_barang/5d7513988dbd6490c5eb0a3bcdbe75dd.jpg b/foto/foto_barang/5d7513988dbd6490c5eb0a3bcdbe75dd.jpg
deleted file mode 100644
index 1e9986e..0000000
Binary files a/foto/foto_barang/5d7513988dbd6490c5eb0a3bcdbe75dd.jpg and /dev/null differ
diff --git a/foto/foto_barang/5d96ab988950cf1f03c476d1bb7ebddb.jpg b/foto/foto_barang/5d96ab988950cf1f03c476d1bb7ebddb.jpg
deleted file mode 100644
index 75b15d0..0000000
Binary files a/foto/foto_barang/5d96ab988950cf1f03c476d1bb7ebddb.jpg and /dev/null differ
diff --git a/foto/foto_barang/5db74316707803c6050f88639c9a1992.jpg b/foto/foto_barang/5db74316707803c6050f88639c9a1992.jpg
deleted file mode 100644
index 49508bc..0000000
Binary files a/foto/foto_barang/5db74316707803c6050f88639c9a1992.jpg and /dev/null differ
diff --git a/foto/foto_barang/5e06425643e87005eaf2d7c3c4f07f8f.jpg b/foto/foto_barang/5e06425643e87005eaf2d7c3c4f07f8f.jpg
deleted file mode 100644
index 0a9f705..0000000
Binary files a/foto/foto_barang/5e06425643e87005eaf2d7c3c4f07f8f.jpg and /dev/null differ
diff --git a/foto/foto_barang/5e2671d023d70.jpg b/foto/foto_barang/5e2671d023d70.jpg
deleted file mode 100644
index 621245c..0000000
Binary files a/foto/foto_barang/5e2671d023d70.jpg and /dev/null differ
diff --git a/foto/foto_barang/5e589bb4-ba27-4ea7-b185-e5da7a44b8fa.jpg b/foto/foto_barang/5e589bb4-ba27-4ea7-b185-e5da7a44b8fa.jpg
deleted file mode 100644
index c7b64a6..0000000
Binary files a/foto/foto_barang/5e589bb4-ba27-4ea7-b185-e5da7a44b8fa.jpg and /dev/null differ
diff --git a/foto/foto_barang/5f0fcd3ea3788.jpg b/foto/foto_barang/5f0fcd3ea3788.jpg
deleted file mode 100644
index d438c6e..0000000
Binary files a/foto/foto_barang/5f0fcd3ea3788.jpg and /dev/null differ
diff --git a/foto/foto_barang/6.jpg b/foto/foto_barang/6.jpg
deleted file mode 100644
index 9ef112e..0000000
Binary files a/foto/foto_barang/6.jpg and /dev/null differ
diff --git a/foto/foto_barang/600562b64d6b9.jpg b/foto/foto_barang/600562b64d6b9.jpg
deleted file mode 100644
index e5e1512..0000000
Binary files a/foto/foto_barang/600562b64d6b9.jpg and /dev/null differ
diff --git a/foto/foto_barang/600571e3bce0c.jpg b/foto/foto_barang/600571e3bce0c.jpg
deleted file mode 100644
index d59f9cf..0000000
Binary files a/foto/foto_barang/600571e3bce0c.jpg and /dev/null differ
diff --git a/foto/foto_barang/601.jpg b/foto/foto_barang/601.jpg
deleted file mode 100644
index 35c56e9..0000000
Binary files a/foto/foto_barang/601.jpg and /dev/null differ
diff --git a/foto/foto_barang/601b7fc7d1118.jpg b/foto/foto_barang/601b7fc7d1118.jpg
deleted file mode 100644
index b6997b7..0000000
Binary files a/foto/foto_barang/601b7fc7d1118.jpg and /dev/null differ
diff --git a/foto/foto_barang/602.jpg b/foto/foto_barang/602.jpg
deleted file mode 100644
index 6235731..0000000
Binary files a/foto/foto_barang/602.jpg and /dev/null differ
diff --git a/foto/foto_barang/6020c136872190220307_NUVO_BW_ACTIVE_COOL_REFF_250_ML.jpg b/foto/foto_barang/6020c136872190220307_NUVO_BW_ACTIVE_COOL_REFF_250_ML.jpg
deleted file mode 100644
index b6652d4..0000000
Binary files a/foto/foto_barang/6020c136872190220307_NUVO_BW_ACTIVE_COOL_REFF_250_ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/603.jpg b/foto/foto_barang/603.jpg
deleted file mode 100644
index cba8032..0000000
Binary files a/foto/foto_barang/603.jpg and /dev/null differ
diff --git a/foto/foto_barang/604.jpg b/foto/foto_barang/604.jpg
deleted file mode 100644
index f1cb78b..0000000
Binary files a/foto/foto_barang/604.jpg and /dev/null differ
diff --git a/foto/foto_barang/6045a99bf3304MARLBORO_FILTER_BLACK_12.png b/foto/foto_barang/6045a99bf3304MARLBORO_FILTER_BLACK_12.png
deleted file mode 100644
index be2026e..0000000
Binary files a/foto/foto_barang/6045a99bf3304MARLBORO_FILTER_BLACK_12.png and /dev/null differ
diff --git a/foto/foto_barang/605.jpg b/foto/foto_barang/605.jpg
deleted file mode 100644
index 76eca7b..0000000
Binary files a/foto/foto_barang/605.jpg and /dev/null differ
diff --git a/foto/foto_barang/606.jpg b/foto/foto_barang/606.jpg
deleted file mode 100644
index 91a9f0d..0000000
Binary files a/foto/foto_barang/606.jpg and /dev/null differ
diff --git a/foto/foto_barang/607.jpg b/foto/foto_barang/607.jpg
deleted file mode 100644
index acf4ae3..0000000
Binary files a/foto/foto_barang/607.jpg and /dev/null differ
diff --git a/foto/foto_barang/608.jpg b/foto/foto_barang/608.jpg
deleted file mode 100644
index da805db..0000000
Binary files a/foto/foto_barang/608.jpg and /dev/null differ
diff --git a/foto/foto_barang/609.jpg b/foto/foto_barang/609.jpg
deleted file mode 100644
index f422970..0000000
Binary files a/foto/foto_barang/609.jpg and /dev/null differ
diff --git a/foto/foto_barang/610.jpg b/foto/foto_barang/610.jpg
deleted file mode 100644
index ad388ed..0000000
Binary files a/foto/foto_barang/610.jpg and /dev/null differ
diff --git a/foto/foto_barang/611.jpg b/foto/foto_barang/611.jpg
deleted file mode 100644
index f85c786..0000000
Binary files a/foto/foto_barang/611.jpg and /dev/null differ
diff --git a/foto/foto_barang/612.jpg b/foto/foto_barang/612.jpg
deleted file mode 100644
index a83004c..0000000
Binary files a/foto/foto_barang/612.jpg and /dev/null differ
diff --git a/foto/foto_barang/613.jpg b/foto/foto_barang/613.jpg
deleted file mode 100644
index 937cc5f..0000000
Binary files a/foto/foto_barang/613.jpg and /dev/null differ
diff --git a/foto/foto_barang/614.jpg b/foto/foto_barang/614.jpg
deleted file mode 100644
index 1cba87c..0000000
Binary files a/foto/foto_barang/614.jpg and /dev/null differ
diff --git a/foto/foto_barang/615.jpg b/foto/foto_barang/615.jpg
deleted file mode 100644
index fbd5ab2..0000000
Binary files a/foto/foto_barang/615.jpg and /dev/null differ
diff --git a/foto/foto_barang/616.jpg b/foto/foto_barang/616.jpg
deleted file mode 100644
index 6a9f562..0000000
Binary files a/foto/foto_barang/616.jpg and /dev/null differ
diff --git a/foto/foto_barang/617.jpg b/foto/foto_barang/617.jpg
deleted file mode 100644
index 1b72216..0000000
Binary files a/foto/foto_barang/617.jpg and /dev/null differ
diff --git a/foto/foto_barang/618.jpg b/foto/foto_barang/618.jpg
deleted file mode 100644
index 367950d..0000000
Binary files a/foto/foto_barang/618.jpg and /dev/null differ
diff --git a/foto/foto_barang/619.jpg b/foto/foto_barang/619.jpg
deleted file mode 100644
index 097b894..0000000
Binary files a/foto/foto_barang/619.jpg and /dev/null differ
diff --git a/foto/foto_barang/61xrsbMWN5L__AC_SX522_.jpg b/foto/foto_barang/61xrsbMWN5L__AC_SX522_.jpg
deleted file mode 100644
index 81e3a52..0000000
Binary files a/foto/foto_barang/61xrsbMWN5L__AC_SX522_.jpg and /dev/null differ
diff --git a/foto/foto_barang/61xrsbMWN5L__AC_SX522_1.jpg b/foto/foto_barang/61xrsbMWN5L__AC_SX522_1.jpg
deleted file mode 100644
index 81e3a52..0000000
Binary files a/foto/foto_barang/61xrsbMWN5L__AC_SX522_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/621.jpg b/foto/foto_barang/621.jpg
deleted file mode 100644
index 4139835..0000000
Binary files a/foto/foto_barang/621.jpg and /dev/null differ
diff --git a/foto/foto_barang/622.jpg b/foto/foto_barang/622.jpg
deleted file mode 100644
index e461884..0000000
Binary files a/foto/foto_barang/622.jpg and /dev/null differ
diff --git a/foto/foto_barang/623.jpg b/foto/foto_barang/623.jpg
deleted file mode 100644
index b7cd22b..0000000
Binary files a/foto/foto_barang/623.jpg and /dev/null differ
diff --git a/foto/foto_barang/623791d5-1588-4005-beb3-b05208869a37.jpg b/foto/foto_barang/623791d5-1588-4005-beb3-b05208869a37.jpg
deleted file mode 100644
index 359e383..0000000
Binary files a/foto/foto_barang/623791d5-1588-4005-beb3-b05208869a37.jpg and /dev/null differ
diff --git a/foto/foto_barang/624.jpg b/foto/foto_barang/624.jpg
deleted file mode 100644
index 437b5ed..0000000
Binary files a/foto/foto_barang/624.jpg and /dev/null differ
diff --git a/foto/foto_barang/625.jpg b/foto/foto_barang/625.jpg
deleted file mode 100644
index 211b0d4..0000000
Binary files a/foto/foto_barang/625.jpg and /dev/null differ
diff --git a/foto/foto_barang/6251.jpg b/foto/foto_barang/6251.jpg
deleted file mode 100644
index 211b0d4..0000000
Binary files a/foto/foto_barang/6251.jpg and /dev/null differ
diff --git a/foto/foto_barang/6256530_970fcfe2-9319-4799-ba2c-9f86b36a3c4a_647_647.jpg b/foto/foto_barang/6256530_970fcfe2-9319-4799-ba2c-9f86b36a3c4a_647_647.jpg
deleted file mode 100644
index 57793b1..0000000
Binary files a/foto/foto_barang/6256530_970fcfe2-9319-4799-ba2c-9f86b36a3c4a_647_647.jpg and /dev/null differ
diff --git a/foto/foto_barang/626.jpg b/foto/foto_barang/626.jpg
deleted file mode 100644
index d0a20bc..0000000
Binary files a/foto/foto_barang/626.jpg and /dev/null differ
diff --git a/foto/foto_barang/627.jpg b/foto/foto_barang/627.jpg
deleted file mode 100644
index 20301f0..0000000
Binary files a/foto/foto_barang/627.jpg and /dev/null differ
diff --git a/foto/foto_barang/628.jpg b/foto/foto_barang/628.jpg
deleted file mode 100644
index 500dbb9..0000000
Binary files a/foto/foto_barang/628.jpg and /dev/null differ
diff --git a/foto/foto_barang/629.jpg b/foto/foto_barang/629.jpg
deleted file mode 100644
index d48bd94..0000000
Binary files a/foto/foto_barang/629.jpg and /dev/null differ
diff --git a/foto/foto_barang/62972aa114dc4503ab622b7fbe0cf0ec.jpg b/foto/foto_barang/62972aa114dc4503ab622b7fbe0cf0ec.jpg
deleted file mode 100644
index dd7a1c6..0000000
Binary files a/foto/foto_barang/62972aa114dc4503ab622b7fbe0cf0ec.jpg and /dev/null differ
diff --git a/foto/foto_barang/63.jpg b/foto/foto_barang/63.jpg
deleted file mode 100644
index 85f155e..0000000
Binary files a/foto/foto_barang/63.jpg and /dev/null differ
diff --git a/foto/foto_barang/630.jpg b/foto/foto_barang/630.jpg
deleted file mode 100644
index e04b106..0000000
Binary files a/foto/foto_barang/630.jpg and /dev/null differ
diff --git a/foto/foto_barang/6307c23a9ceec64f5f6dd1c8d7d0ba95_tn.jpg b/foto/foto_barang/6307c23a9ceec64f5f6dd1c8d7d0ba95_tn.jpg
deleted file mode 100644
index 936c502..0000000
Binary files a/foto/foto_barang/6307c23a9ceec64f5f6dd1c8d7d0ba95_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/631.jpg b/foto/foto_barang/631.jpg
deleted file mode 100644
index a6e0d02..0000000
Binary files a/foto/foto_barang/631.jpg and /dev/null differ
diff --git a/foto/foto_barang/632.jpg b/foto/foto_barang/632.jpg
deleted file mode 100644
index 94d9a5d..0000000
Binary files a/foto/foto_barang/632.jpg and /dev/null differ
diff --git a/foto/foto_barang/633.jpg b/foto/foto_barang/633.jpg
deleted file mode 100644
index 8a713c2..0000000
Binary files a/foto/foto_barang/633.jpg and /dev/null differ
diff --git a/foto/foto_barang/637fe39d124c0d73d16c466aeeb54911.jpg b/foto/foto_barang/637fe39d124c0d73d16c466aeeb54911.jpg
deleted file mode 100644
index 455c4f7..0000000
Binary files a/foto/foto_barang/637fe39d124c0d73d16c466aeeb54911.jpg and /dev/null differ
diff --git a/foto/foto_barang/63fdcd12-6a0e-4cef-84f4-584528855fff.jpg b/foto/foto_barang/63fdcd12-6a0e-4cef-84f4-584528855fff.jpg
deleted file mode 100644
index 0bc3b79..0000000
Binary files a/foto/foto_barang/63fdcd12-6a0e-4cef-84f4-584528855fff.jpg and /dev/null differ
diff --git a/foto/foto_barang/640.jpg b/foto/foto_barang/640.jpg
deleted file mode 100644
index ce4ede0..0000000
Binary files a/foto/foto_barang/640.jpg and /dev/null differ
diff --git a/foto/foto_barang/641.jpg b/foto/foto_barang/641.jpg
deleted file mode 100644
index c2b662b..0000000
Binary files a/foto/foto_barang/641.jpg and /dev/null differ
diff --git a/foto/foto_barang/642.jpg b/foto/foto_barang/642.jpg
deleted file mode 100644
index 5d6ca6c..0000000
Binary files a/foto/foto_barang/642.jpg and /dev/null differ
diff --git a/foto/foto_barang/643.jpg b/foto/foto_barang/643.jpg
deleted file mode 100644
index 8cf2e54..0000000
Binary files a/foto/foto_barang/643.jpg and /dev/null differ
diff --git a/foto/foto_barang/645.jpg b/foto/foto_barang/645.jpg
deleted file mode 100644
index a7f869d..0000000
Binary files a/foto/foto_barang/645.jpg and /dev/null differ
diff --git a/foto/foto_barang/647.jpg b/foto/foto_barang/647.jpg
deleted file mode 100644
index a07e515..0000000
Binary files a/foto/foto_barang/647.jpg and /dev/null differ
diff --git a/foto/foto_barang/648.jpg b/foto/foto_barang/648.jpg
deleted file mode 100644
index 58ea2fd..0000000
Binary files a/foto/foto_barang/648.jpg and /dev/null differ
diff --git a/foto/foto_barang/649.jpg b/foto/foto_barang/649.jpg
deleted file mode 100644
index 4a62894..0000000
Binary files a/foto/foto_barang/649.jpg and /dev/null differ
diff --git a/foto/foto_barang/650.jpg b/foto/foto_barang/650.jpg
deleted file mode 100644
index ff97e19..0000000
Binary files a/foto/foto_barang/650.jpg and /dev/null differ
diff --git a/foto/foto_barang/651.jpg b/foto/foto_barang/651.jpg
deleted file mode 100644
index 63619e5..0000000
Binary files a/foto/foto_barang/651.jpg and /dev/null differ
diff --git a/foto/foto_barang/652.jpg b/foto/foto_barang/652.jpg
deleted file mode 100644
index b980ec1..0000000
Binary files a/foto/foto_barang/652.jpg and /dev/null differ
diff --git a/foto/foto_barang/655.jpg b/foto/foto_barang/655.jpg
deleted file mode 100644
index cec6712..0000000
Binary files a/foto/foto_barang/655.jpg and /dev/null differ
diff --git a/foto/foto_barang/656.jpg b/foto/foto_barang/656.jpg
deleted file mode 100644
index 76c420b..0000000
Binary files a/foto/foto_barang/656.jpg and /dev/null differ
diff --git a/foto/foto_barang/6560275b-82d1-493f-aac2-5bcf79ed7600.jpg b/foto/foto_barang/6560275b-82d1-493f-aac2-5bcf79ed7600.jpg
deleted file mode 100644
index bad21ec..0000000
Binary files a/foto/foto_barang/6560275b-82d1-493f-aac2-5bcf79ed7600.jpg and /dev/null differ
diff --git a/foto/foto_barang/656ba62a84f1cdceb5127fd83ee99c47.jpg b/foto/foto_barang/656ba62a84f1cdceb5127fd83ee99c47.jpg
deleted file mode 100644
index 83c0f3c..0000000
Binary files a/foto/foto_barang/656ba62a84f1cdceb5127fd83ee99c47.jpg and /dev/null differ
diff --git a/foto/foto_barang/657.jpg b/foto/foto_barang/657.jpg
deleted file mode 100644
index 1390ece..0000000
Binary files a/foto/foto_barang/657.jpg and /dev/null differ
diff --git a/foto/foto_barang/658.jpg b/foto/foto_barang/658.jpg
deleted file mode 100644
index 2d2ae7f..0000000
Binary files a/foto/foto_barang/658.jpg and /dev/null differ
diff --git a/foto/foto_barang/659.jpg b/foto/foto_barang/659.jpg
deleted file mode 100644
index 557b2ee..0000000
Binary files a/foto/foto_barang/659.jpg and /dev/null differ
diff --git a/foto/foto_barang/65a186c7171312c91c5a59f3e2f78376.jpg b/foto/foto_barang/65a186c7171312c91c5a59f3e2f78376.jpg
deleted file mode 100644
index 8892de5..0000000
Binary files a/foto/foto_barang/65a186c7171312c91c5a59f3e2f78376.jpg and /dev/null differ
diff --git a/foto/foto_barang/65a186c7171312c91c5a59f3e2f783761.jpg b/foto/foto_barang/65a186c7171312c91c5a59f3e2f783761.jpg
deleted file mode 100644
index 8892de5..0000000
Binary files a/foto/foto_barang/65a186c7171312c91c5a59f3e2f783761.jpg and /dev/null differ
diff --git a/foto/foto_barang/65f9fd4809d83060345999ccc23293acecbff8fb-original.jpg b/foto/foto_barang/65f9fd4809d83060345999ccc23293acecbff8fb-original.jpg
deleted file mode 100644
index df5a29f..0000000
Binary files a/foto/foto_barang/65f9fd4809d83060345999ccc23293acecbff8fb-original.jpg and /dev/null differ
diff --git a/foto/foto_barang/660.jpg b/foto/foto_barang/660.jpg
deleted file mode 100644
index 4b9df14..0000000
Binary files a/foto/foto_barang/660.jpg and /dev/null differ
diff --git a/foto/foto_barang/661.jpg b/foto/foto_barang/661.jpg
deleted file mode 100644
index 711f4fc..0000000
Binary files a/foto/foto_barang/661.jpg and /dev/null differ
diff --git a/foto/foto_barang/662.jpg b/foto/foto_barang/662.jpg
deleted file mode 100644
index d435df6..0000000
Binary files a/foto/foto_barang/662.jpg and /dev/null differ
diff --git a/foto/foto_barang/663.jpg b/foto/foto_barang/663.jpg
deleted file mode 100644
index d9bd43e..0000000
Binary files a/foto/foto_barang/663.jpg and /dev/null differ
diff --git a/foto/foto_barang/664.jpg b/foto/foto_barang/664.jpg
deleted file mode 100644
index 1ac10e1..0000000
Binary files a/foto/foto_barang/664.jpg and /dev/null differ
diff --git a/foto/foto_barang/666.jpg b/foto/foto_barang/666.jpg
deleted file mode 100644
index cb7fb8d..0000000
Binary files a/foto/foto_barang/666.jpg and /dev/null differ
diff --git a/foto/foto_barang/6666.jpg b/foto/foto_barang/6666.jpg
deleted file mode 100644
index 9772523..0000000
Binary files a/foto/foto_barang/6666.jpg and /dev/null differ
diff --git a/foto/foto_barang/667.jpg b/foto/foto_barang/667.jpg
deleted file mode 100644
index 4445122..0000000
Binary files a/foto/foto_barang/667.jpg and /dev/null differ
diff --git a/foto/foto_barang/66777.jpg b/foto/foto_barang/66777.jpg
deleted file mode 100644
index df3ad3c..0000000
Binary files a/foto/foto_barang/66777.jpg and /dev/null differ
diff --git a/foto/foto_barang/668.jpg b/foto/foto_barang/668.jpg
deleted file mode 100644
index b709f69..0000000
Binary files a/foto/foto_barang/668.jpg and /dev/null differ
diff --git a/foto/foto_barang/66a9113a879acc832e67ccfc1444530f.jpg b/foto/foto_barang/66a9113a879acc832e67ccfc1444530f.jpg
deleted file mode 100644
index f51933f..0000000
Binary files a/foto/foto_barang/66a9113a879acc832e67ccfc1444530f.jpg and /dev/null differ
diff --git a/foto/foto_barang/67.jpg b/foto/foto_barang/67.jpg
deleted file mode 100644
index e4e84d5..0000000
Binary files a/foto/foto_barang/67.jpg and /dev/null differ
diff --git a/foto/foto_barang/670.jpg b/foto/foto_barang/670.jpg
deleted file mode 100644
index 1ce2eb1..0000000
Binary files a/foto/foto_barang/670.jpg and /dev/null differ
diff --git a/foto/foto_barang/671.jpg b/foto/foto_barang/671.jpg
deleted file mode 100644
index 9a7012d..0000000
Binary files a/foto/foto_barang/671.jpg and /dev/null differ
diff --git a/foto/foto_barang/672.jpg b/foto/foto_barang/672.jpg
deleted file mode 100644
index 3798a64..0000000
Binary files a/foto/foto_barang/672.jpg and /dev/null differ
diff --git a/foto/foto_barang/673.jpg b/foto/foto_barang/673.jpg
deleted file mode 100644
index 9d74c32..0000000
Binary files a/foto/foto_barang/673.jpg and /dev/null differ
diff --git a/foto/foto_barang/673414cb6a149b33280146fef5d19907.jpg b/foto/foto_barang/673414cb6a149b33280146fef5d19907.jpg
deleted file mode 100644
index 764abb0..0000000
Binary files a/foto/foto_barang/673414cb6a149b33280146fef5d19907.jpg and /dev/null differ
diff --git a/foto/foto_barang/674.jpg b/foto/foto_barang/674.jpg
deleted file mode 100644
index ccbf8c8..0000000
Binary files a/foto/foto_barang/674.jpg and /dev/null differ
diff --git a/foto/foto_barang/6749f1ee8426e926578de89f5415024e.jpg b/foto/foto_barang/6749f1ee8426e926578de89f5415024e.jpg
deleted file mode 100644
index aec75bf..0000000
Binary files a/foto/foto_barang/6749f1ee8426e926578de89f5415024e.jpg and /dev/null differ
diff --git a/foto/foto_barang/6771.jpg b/foto/foto_barang/6771.jpg
deleted file mode 100644
index fa63f71..0000000
Binary files a/foto/foto_barang/6771.jpg and /dev/null differ
diff --git a/foto/foto_barang/677888.jpg b/foto/foto_barang/677888.jpg
deleted file mode 100644
index e87a1bb..0000000
Binary files a/foto/foto_barang/677888.jpg and /dev/null differ
diff --git a/foto/foto_barang/678.jpg b/foto/foto_barang/678.jpg
deleted file mode 100644
index e6b5a29..0000000
Binary files a/foto/foto_barang/678.jpg and /dev/null differ
diff --git a/foto/foto_barang/68.jpg b/foto/foto_barang/68.jpg
deleted file mode 100644
index 782e9ab..0000000
Binary files a/foto/foto_barang/68.jpg and /dev/null differ
diff --git a/foto/foto_barang/680.jpg b/foto/foto_barang/680.jpg
deleted file mode 100644
index e381af0..0000000
Binary files a/foto/foto_barang/680.jpg and /dev/null differ
diff --git a/foto/foto_barang/6819172e-2607-4688-8bd5-96b3af4bd4bb.jpg b/foto/foto_barang/6819172e-2607-4688-8bd5-96b3af4bd4bb.jpg
deleted file mode 100644
index 9268b6f..0000000
Binary files a/foto/foto_barang/6819172e-2607-4688-8bd5-96b3af4bd4bb.jpg and /dev/null differ
diff --git a/foto/foto_barang/684.jpg b/foto/foto_barang/684.jpg
deleted file mode 100644
index 56458fd..0000000
Binary files a/foto/foto_barang/684.jpg and /dev/null differ
diff --git a/foto/foto_barang/684ec33f-60a5-4ddd-b09f-b2048dac7471.jpg b/foto/foto_barang/684ec33f-60a5-4ddd-b09f-b2048dac7471.jpg
deleted file mode 100644
index a299d99..0000000
Binary files a/foto/foto_barang/684ec33f-60a5-4ddd-b09f-b2048dac7471.jpg and /dev/null differ
diff --git a/foto/foto_barang/685.jpg b/foto/foto_barang/685.jpg
deleted file mode 100644
index 7248f7c..0000000
Binary files a/foto/foto_barang/685.jpg and /dev/null differ
diff --git a/foto/foto_barang/686.jpg b/foto/foto_barang/686.jpg
deleted file mode 100644
index 863fe9e..0000000
Binary files a/foto/foto_barang/686.jpg and /dev/null differ
diff --git a/foto/foto_barang/687.jpg b/foto/foto_barang/687.jpg
deleted file mode 100644
index 00f57ea..0000000
Binary files a/foto/foto_barang/687.jpg and /dev/null differ
diff --git a/foto/foto_barang/688.jpg b/foto/foto_barang/688.jpg
deleted file mode 100644
index 3d34590..0000000
Binary files a/foto/foto_barang/688.jpg and /dev/null differ
diff --git a/foto/foto_barang/68868663_7fc2b381-a9c0-4d76-88ff-86c0fc07c7f5_921_921.jpg b/foto/foto_barang/68868663_7fc2b381-a9c0-4d76-88ff-86c0fc07c7f5_921_921.jpg
deleted file mode 100644
index e5aa157..0000000
Binary files a/foto/foto_barang/68868663_7fc2b381-a9c0-4d76-88ff-86c0fc07c7f5_921_921.jpg and /dev/null differ
diff --git a/foto/foto_barang/689.jpg b/foto/foto_barang/689.jpg
deleted file mode 100644
index 08ac43e..0000000
Binary files a/foto/foto_barang/689.jpg and /dev/null differ
diff --git a/foto/foto_barang/69.jpg b/foto/foto_barang/69.jpg
deleted file mode 100644
index 4fec699..0000000
Binary files a/foto/foto_barang/69.jpg and /dev/null differ
diff --git a/foto/foto_barang/690.jpg b/foto/foto_barang/690.jpg
deleted file mode 100644
index 5c9613f..0000000
Binary files a/foto/foto_barang/690.jpg and /dev/null differ
diff --git a/foto/foto_barang/690300_27-2-2021_23-30-19.png b/foto/foto_barang/690300_27-2-2021_23-30-19.png
deleted file mode 100644
index 6c441a1..0000000
Binary files a/foto/foto_barang/690300_27-2-2021_23-30-19.png and /dev/null differ
diff --git a/foto/foto_barang/691.jpg b/foto/foto_barang/691.jpg
deleted file mode 100644
index d179df0..0000000
Binary files a/foto/foto_barang/691.jpg and /dev/null differ
diff --git a/foto/foto_barang/692.jpg b/foto/foto_barang/692.jpg
deleted file mode 100644
index 152fd7e..0000000
Binary files a/foto/foto_barang/692.jpg and /dev/null differ
diff --git a/foto/foto_barang/693.jpg b/foto/foto_barang/693.jpg
deleted file mode 100644
index 8983004..0000000
Binary files a/foto/foto_barang/693.jpg and /dev/null differ
diff --git a/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_1152.jpg b/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_1152.jpg
deleted file mode 100644
index 4667cd9..0000000
Binary files a/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_1152.jpg and /dev/null differ
diff --git a/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_11521.jpg b/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_11521.jpg
deleted file mode 100644
index 4667cd9..0000000
Binary files a/foto/foto_barang/693881_2c905484-83e9-4fa8-b997-0439f2cff231_1152_11521.jpg and /dev/null differ
diff --git a/foto/foto_barang/695.jpg b/foto/foto_barang/695.jpg
deleted file mode 100644
index 4d13888..0000000
Binary files a/foto/foto_barang/695.jpg and /dev/null differ
diff --git a/foto/foto_barang/696.jpg b/foto/foto_barang/696.jpg
deleted file mode 100644
index 82b8ea3..0000000
Binary files a/foto/foto_barang/696.jpg and /dev/null differ
diff --git a/foto/foto_barang/697.jpg b/foto/foto_barang/697.jpg
deleted file mode 100644
index da071bc..0000000
Binary files a/foto/foto_barang/697.jpg and /dev/null differ
diff --git a/foto/foto_barang/6988e48f6ccab0ec96efd2676ba98a1f.jpg b/foto/foto_barang/6988e48f6ccab0ec96efd2676ba98a1f.jpg
deleted file mode 100644
index a0aecf1..0000000
Binary files a/foto/foto_barang/6988e48f6ccab0ec96efd2676ba98a1f.jpg and /dev/null differ
diff --git a/foto/foto_barang/699.jpg b/foto/foto_barang/699.jpg
deleted file mode 100644
index 3c20e54..0000000
Binary files a/foto/foto_barang/699.jpg and /dev/null differ
diff --git a/foto/foto_barang/69fad315-9d40-4983-a3c5-18e41e73c057.jpg b/foto/foto_barang/69fad315-9d40-4983-a3c5-18e41e73c057.jpg
deleted file mode 100644
index 8fd91a6..0000000
Binary files a/foto/foto_barang/69fad315-9d40-4983-a3c5-18e41e73c057.jpg and /dev/null differ
diff --git a/foto/foto_barang/6a7c5231c5bfb103ddf1af811560b881.jpg b/foto/foto_barang/6a7c5231c5bfb103ddf1af811560b881.jpg
deleted file mode 100644
index e76a262..0000000
Binary files a/foto/foto_barang/6a7c5231c5bfb103ddf1af811560b881.jpg and /dev/null differ
diff --git a/foto/foto_barang/6bf7f18840ac3a348d86bb7d7446ac7e.jpg b/foto/foto_barang/6bf7f18840ac3a348d86bb7d7446ac7e.jpg
deleted file mode 100644
index d3fa20a..0000000
Binary files a/foto/foto_barang/6bf7f18840ac3a348d86bb7d7446ac7e.jpg and /dev/null differ
diff --git a/foto/foto_barang/6cef45aa0f2d217425ec53227ba91dc9.jpg b/foto/foto_barang/6cef45aa0f2d217425ec53227ba91dc9.jpg
deleted file mode 100644
index 03796c1..0000000
Binary files a/foto/foto_barang/6cef45aa0f2d217425ec53227ba91dc9.jpg and /dev/null differ
diff --git a/foto/foto_barang/6f3ef8ce8cad3e8b7eb835e62791964e.jpg b/foto/foto_barang/6f3ef8ce8cad3e8b7eb835e62791964e.jpg
deleted file mode 100644
index 9a365cd..0000000
Binary files a/foto/foto_barang/6f3ef8ce8cad3e8b7eb835e62791964e.jpg and /dev/null differ
diff --git a/foto/foto_barang/6f408ac2bbc60d7bad118451e43dc7dd.jpg b/foto/foto_barang/6f408ac2bbc60d7bad118451e43dc7dd.jpg
deleted file mode 100644
index 385649f..0000000
Binary files a/foto/foto_barang/6f408ac2bbc60d7bad118451e43dc7dd.jpg and /dev/null differ
diff --git a/foto/foto_barang/6f611b50d40ab7ba995e9e7f0d3b6e6d.jpg b/foto/foto_barang/6f611b50d40ab7ba995e9e7f0d3b6e6d.jpg
deleted file mode 100644
index c618b6d..0000000
Binary files a/foto/foto_barang/6f611b50d40ab7ba995e9e7f0d3b6e6d.jpg and /dev/null differ
diff --git a/foto/foto_barang/7.jpg b/foto/foto_barang/7.jpg
deleted file mode 100644
index 5c021d1..0000000
Binary files a/foto/foto_barang/7.jpg and /dev/null differ
diff --git a/foto/foto_barang/70300cdf0753a65bc1872971599c0f6e.jpg b/foto/foto_barang/70300cdf0753a65bc1872971599c0f6e.jpg
deleted file mode 100644
index 9ba77c3..0000000
Binary files a/foto/foto_barang/70300cdf0753a65bc1872971599c0f6e.jpg and /dev/null differ
diff --git a/foto/foto_barang/70352215_a3f09973-3294-4a28-9f21-3edbc352d3f5_700_700.jpg b/foto/foto_barang/70352215_a3f09973-3294-4a28-9f21-3edbc352d3f5_700_700.jpg
deleted file mode 100644
index 206a58c..0000000
Binary files a/foto/foto_barang/70352215_a3f09973-3294-4a28-9f21-3edbc352d3f5_700_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/71.jpg b/foto/foto_barang/71.jpg
deleted file mode 100644
index 63d1b2e..0000000
Binary files a/foto/foto_barang/71.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_1c45ee66-fde6-489c-a3c8-a79d5db1aee3_1000_1000.jpg b/foto/foto_barang/71160237_1c45ee66-fde6-489c-a3c8-a79d5db1aee3_1000_1000.jpg
deleted file mode 100644
index 286bf3b..0000000
Binary files a/foto/foto_barang/71160237_1c45ee66-fde6-489c-a3c8-a79d5db1aee3_1000_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_20741b9b-0e42-4f85-a892-086d39e1661a_800_800.jpg b/foto/foto_barang/71160237_20741b9b-0e42-4f85-a892-086d39e1661a_800_800.jpg
deleted file mode 100644
index 8d7ca77..0000000
Binary files a/foto/foto_barang/71160237_20741b9b-0e42-4f85-a892-086d39e1661a_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_270f3631-dcdf-4f88-af28-b91f5f872449_700_700.jpg b/foto/foto_barang/71160237_270f3631-dcdf-4f88-af28-b91f5f872449_700_700.jpg
deleted file mode 100644
index 4acc40b..0000000
Binary files a/foto/foto_barang/71160237_270f3631-dcdf-4f88-af28-b91f5f872449_700_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_31f01fb5-8b1f-4988-a955-b59e0d389164_640_640.jpg b/foto/foto_barang/71160237_31f01fb5-8b1f-4988-a955-b59e0d389164_640_640.jpg
deleted file mode 100644
index da2e235..0000000
Binary files a/foto/foto_barang/71160237_31f01fb5-8b1f-4988-a955-b59e0d389164_640_640.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_3cc68a99-adfc-497b-9d41-69e04fbe52d5_500_500.jpg b/foto/foto_barang/71160237_3cc68a99-adfc-497b-9d41-69e04fbe52d5_500_500.jpg
deleted file mode 100644
index 3cf0865..0000000
Binary files a/foto/foto_barang/71160237_3cc68a99-adfc-497b-9d41-69e04fbe52d5_500_500.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_57ddffd5-ba13-4293-a9a9-a52cd462eda0_800_800.jpg b/foto/foto_barang/71160237_57ddffd5-ba13-4293-a9a9-a52cd462eda0_800_800.jpg
deleted file mode 100644
index b836ed3..0000000
Binary files a/foto/foto_barang/71160237_57ddffd5-ba13-4293-a9a9-a52cd462eda0_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_7790dc29-04bc-46af-84c3-03721bf0ee61_380_380.jpg b/foto/foto_barang/71160237_7790dc29-04bc-46af-84c3-03721bf0ee61_380_380.jpg
deleted file mode 100644
index c00798c..0000000
Binary files a/foto/foto_barang/71160237_7790dc29-04bc-46af-84c3-03721bf0ee61_380_380.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_847726f6-03b6-4a7f-a134-2826587ba372_800_800.jpg b/foto/foto_barang/71160237_847726f6-03b6-4a7f-a134-2826587ba372_800_800.jpg
deleted file mode 100644
index 584b846..0000000
Binary files a/foto/foto_barang/71160237_847726f6-03b6-4a7f-a134-2826587ba372_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_925b5b90-c9d7-45bc-a86d-4c41b04d26a6_380_380.jpg b/foto/foto_barang/71160237_925b5b90-c9d7-45bc-a86d-4c41b04d26a6_380_380.jpg
deleted file mode 100644
index 3bf6662..0000000
Binary files a/foto/foto_barang/71160237_925b5b90-c9d7-45bc-a86d-4c41b04d26a6_380_380.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_9946c5e9-bb15-485e-9cde-8ee4d784aca6_800_800.jpg b/foto/foto_barang/71160237_9946c5e9-bb15-485e-9cde-8ee4d784aca6_800_800.jpg
deleted file mode 100644
index 90f2935..0000000
Binary files a/foto/foto_barang/71160237_9946c5e9-bb15-485e-9cde-8ee4d784aca6_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_c37c1e4b-b393-423e-8bd1-c8930bcf6ada_1000_1000.jpg b/foto/foto_barang/71160237_c37c1e4b-b393-423e-8bd1-c8930bcf6ada_1000_1000.jpg
deleted file mode 100644
index c758126..0000000
Binary files a/foto/foto_barang/71160237_c37c1e4b-b393-423e-8bd1-c8930bcf6ada_1000_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_e5475c7b-e0e4-4ff0-a10f-1bf2839c7101_800_800.jpg b/foto/foto_barang/71160237_e5475c7b-e0e4-4ff0-a10f-1bf2839c7101_800_800.jpg
deleted file mode 100644
index 32e0408..0000000
Binary files a/foto/foto_barang/71160237_e5475c7b-e0e4-4ff0-a10f-1bf2839c7101_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_e9136252-b850-40f8-b245-bc7636ff14ce_800_800.jpg b/foto/foto_barang/71160237_e9136252-b850-40f8-b245-bc7636ff14ce_800_800.jpg
deleted file mode 100644
index 5550c69..0000000
Binary files a/foto/foto_barang/71160237_e9136252-b850-40f8-b245-bc7636ff14ce_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_f154e886-fdbd-447d-9267-e6f7f68afabc_1024_1024.jpg b/foto/foto_barang/71160237_f154e886-fdbd-447d-9267-e6f7f68afabc_1024_1024.jpg
deleted file mode 100644
index c73b358..0000000
Binary files a/foto/foto_barang/71160237_f154e886-fdbd-447d-9267-e6f7f68afabc_1024_1024.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_f3759db5-e74a-4292-a6bf-9c0660f02517_300_300.jpg b/foto/foto_barang/71160237_f3759db5-e74a-4292-a6bf-9c0660f02517_300_300.jpg
deleted file mode 100644
index 88f1876..0000000
Binary files a/foto/foto_barang/71160237_f3759db5-e74a-4292-a6bf-9c0660f02517_300_300.jpg and /dev/null differ
diff --git a/foto/foto_barang/71160237_f3df5fab-2b78-458f-8418-77d3f312559a_380_380.jpg b/foto/foto_barang/71160237_f3df5fab-2b78-458f-8418-77d3f312559a_380_380.jpg
deleted file mode 100644
index 9cbab47..0000000
Binary files a/foto/foto_barang/71160237_f3df5fab-2b78-458f-8418-77d3f312559a_380_380.jpg and /dev/null differ
diff --git a/foto/foto_barang/7174530_edd0decc-6a09-483f-931b-59343efc0dfc_774_774.jpg b/foto/foto_barang/7174530_edd0decc-6a09-483f-931b-59343efc0dfc_774_774.jpg
deleted file mode 100644
index 194bc8b..0000000
Binary files a/foto/foto_barang/7174530_edd0decc-6a09-483f-931b-59343efc0dfc_774_774.jpg and /dev/null differ
diff --git a/foto/foto_barang/7180-1-600x721.jpeg b/foto/foto_barang/7180-1-600x721.jpeg
deleted file mode 100644
index 4e1ef83..0000000
Binary files a/foto/foto_barang/7180-1-600x721.jpeg and /dev/null differ
diff --git a/foto/foto_barang/7214aff7-b7e9-48e3-9218-3ad6921f5169.jpg b/foto/foto_barang/7214aff7-b7e9-48e3-9218-3ad6921f5169.jpg
deleted file mode 100644
index 12840a0..0000000
Binary files a/foto/foto_barang/7214aff7-b7e9-48e3-9218-3ad6921f5169.jpg and /dev/null differ
diff --git a/foto/foto_barang/723457_4-2-2019_10-41-43.jpg b/foto/foto_barang/723457_4-2-2019_10-41-43.jpg
deleted file mode 100644
index 1a50136..0000000
Binary files a/foto/foto_barang/723457_4-2-2019_10-41-43.jpg and /dev/null differ
diff --git a/foto/foto_barang/73a9750a-0e7b-4d53-bf62-cc6759d74c76.jpg b/foto/foto_barang/73a9750a-0e7b-4d53-bf62-cc6759d74c76.jpg
deleted file mode 100644
index 8003c03..0000000
Binary files a/foto/foto_barang/73a9750a-0e7b-4d53-bf62-cc6759d74c76.jpg and /dev/null differ
diff --git a/foto/foto_barang/7415072_347d0c9f-0d1d-447f-8f7d-1a6dd6e3ede0_796_796.jpg b/foto/foto_barang/7415072_347d0c9f-0d1d-447f-8f7d-1a6dd6e3ede0_796_796.jpg
deleted file mode 100644
index c5feb36..0000000
Binary files a/foto/foto_barang/7415072_347d0c9f-0d1d-447f-8f7d-1a6dd6e3ede0_796_796.jpg and /dev/null differ
diff --git a/foto/foto_barang/75b97a95707cc3039f9e1c9a7d3a20c6.jpg b/foto/foto_barang/75b97a95707cc3039f9e1c9a7d3a20c6.jpg
deleted file mode 100644
index 19ecd45..0000000
Binary files a/foto/foto_barang/75b97a95707cc3039f9e1c9a7d3a20c6.jpg and /dev/null differ
diff --git a/foto/foto_barang/75bf15359294a0b03050a4aeb0fe24a4.jpg b/foto/foto_barang/75bf15359294a0b03050a4aeb0fe24a4.jpg
deleted file mode 100644
index a5ed19c..0000000
Binary files a/foto/foto_barang/75bf15359294a0b03050a4aeb0fe24a4.jpg and /dev/null differ
diff --git a/foto/foto_barang/76404c4b-1b01-45bd-8afb-e16a1038099f.jpg b/foto/foto_barang/76404c4b-1b01-45bd-8afb-e16a1038099f.jpg
deleted file mode 100644
index 1259332..0000000
Binary files a/foto/foto_barang/76404c4b-1b01-45bd-8afb-e16a1038099f.jpg and /dev/null differ
diff --git a/foto/foto_barang/77.jpg b/foto/foto_barang/77.jpg
deleted file mode 100644
index 85f155e..0000000
Binary files a/foto/foto_barang/77.jpg and /dev/null differ
diff --git a/foto/foto_barang/77168aadc09cdee36f7e3db1f882a19a.jpg b/foto/foto_barang/77168aadc09cdee36f7e3db1f882a19a.jpg
deleted file mode 100644
index 427c1c2..0000000
Binary files a/foto/foto_barang/77168aadc09cdee36f7e3db1f882a19a.jpg and /dev/null differ
diff --git a/foto/foto_barang/78262fe2-0a3f-40c5-8168-a5a55fa9c590.jpg b/foto/foto_barang/78262fe2-0a3f-40c5-8168-a5a55fa9c590.jpg
deleted file mode 100644
index 4a8b639..0000000
Binary files a/foto/foto_barang/78262fe2-0a3f-40c5-8168-a5a55fa9c590.jpg and /dev/null differ
diff --git a/foto/foto_barang/78336dea00ab6e9aa058fe52ab60e51a.jpg b/foto/foto_barang/78336dea00ab6e9aa058fe52ab60e51a.jpg
deleted file mode 100644
index 813b68f..0000000
Binary files a/foto/foto_barang/78336dea00ab6e9aa058fe52ab60e51a.jpg and /dev/null differ
diff --git a/foto/foto_barang/787349cc5835a487ae22a8a467b4cdf8.jpg b/foto/foto_barang/787349cc5835a487ae22a8a467b4cdf8.jpg
deleted file mode 100644
index 8dee4ea..0000000
Binary files a/foto/foto_barang/787349cc5835a487ae22a8a467b4cdf8.jpg and /dev/null differ
diff --git a/foto/foto_barang/78b5beaa0bb92f7b38ac2c1b6a43cf3d.jpg b/foto/foto_barang/78b5beaa0bb92f7b38ac2c1b6a43cf3d.jpg
deleted file mode 100644
index 09ff548..0000000
Binary files a/foto/foto_barang/78b5beaa0bb92f7b38ac2c1b6a43cf3d.jpg and /dev/null differ
diff --git a/foto/foto_barang/79.jpg b/foto/foto_barang/79.jpg
deleted file mode 100644
index 85f155e..0000000
Binary files a/foto/foto_barang/79.jpg and /dev/null differ
diff --git a/foto/foto_barang/7935554_7f6159ef-ffef-4b13-bd48-d8066bdbfbaa_300_300.jpg b/foto/foto_barang/7935554_7f6159ef-ffef-4b13-bd48-d8066bdbfbaa_300_300.jpg
deleted file mode 100644
index bfca814..0000000
Binary files a/foto/foto_barang/7935554_7f6159ef-ffef-4b13-bd48-d8066bdbfbaa_300_300.jpg and /dev/null differ
diff --git a/foto/foto_barang/79ac884ad274fcf794b7c23acb7665fb.jpg b/foto/foto_barang/79ac884ad274fcf794b7c23acb7665fb.jpg
deleted file mode 100644
index e958e9b..0000000
Binary files a/foto/foto_barang/79ac884ad274fcf794b7c23acb7665fb.jpg and /dev/null differ
diff --git a/foto/foto_barang/7a279101-2ce7-4519-ab53-998c936f6556.jpg b/foto/foto_barang/7a279101-2ce7-4519-ab53-998c936f6556.jpg
deleted file mode 100644
index b2a0950..0000000
Binary files a/foto/foto_barang/7a279101-2ce7-4519-ab53-998c936f6556.jpg and /dev/null differ
diff --git a/foto/foto_barang/7b38bc306329af17708030a2633a0249.jpg b/foto/foto_barang/7b38bc306329af17708030a2633a0249.jpg
deleted file mode 100644
index dcccb51..0000000
Binary files a/foto/foto_barang/7b38bc306329af17708030a2633a0249.jpg and /dev/null differ
diff --git a/foto/foto_barang/7b8a6bd428e0413f8f7217a963156309.jpg b/foto/foto_barang/7b8a6bd428e0413f8f7217a963156309.jpg
deleted file mode 100644
index fc2a59a..0000000
Binary files a/foto/foto_barang/7b8a6bd428e0413f8f7217a963156309.jpg and /dev/null differ
diff --git a/foto/foto_barang/7bb609db0a91fe7e87e2718df722b056.jpg b/foto/foto_barang/7bb609db0a91fe7e87e2718df722b056.jpg
deleted file mode 100644
index 12ee68d..0000000
Binary files a/foto/foto_barang/7bb609db0a91fe7e87e2718df722b056.jpg and /dev/null differ
diff --git a/foto/foto_barang/7c491af44ee69ab874ea25f3d629bc10.jpg b/foto/foto_barang/7c491af44ee69ab874ea25f3d629bc10.jpg
deleted file mode 100644
index 9a1991d..0000000
Binary files a/foto/foto_barang/7c491af44ee69ab874ea25f3d629bc10.jpg and /dev/null differ
diff --git a/foto/foto_barang/7ceab445-4960-450e-b613-6eff88b026bd.jpg b/foto/foto_barang/7ceab445-4960-450e-b613-6eff88b026bd.jpg
deleted file mode 100644
index eb88587..0000000
Binary files a/foto/foto_barang/7ceab445-4960-450e-b613-6eff88b026bd.jpg and /dev/null differ
diff --git a/foto/foto_barang/7e9bab6382729c40ac5933ce9d7eea8c.jpg b/foto/foto_barang/7e9bab6382729c40ac5933ce9d7eea8c.jpg
deleted file mode 100644
index fdd0c37..0000000
Binary files a/foto/foto_barang/7e9bab6382729c40ac5933ce9d7eea8c.jpg and /dev/null differ
diff --git a/foto/foto_barang/7efea86c25b06559172bb566388abaea.jpg b/foto/foto_barang/7efea86c25b06559172bb566388abaea.jpg
deleted file mode 100644
index 079823b..0000000
Binary files a/foto/foto_barang/7efea86c25b06559172bb566388abaea.jpg and /dev/null differ
diff --git a/foto/foto_barang/7f851437bdbf665720caabd2eb9fbd4c_tn.jpg b/foto/foto_barang/7f851437bdbf665720caabd2eb9fbd4c_tn.jpg
deleted file mode 100644
index 5b25b78..0000000
Binary files a/foto/foto_barang/7f851437bdbf665720caabd2eb9fbd4c_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/7fdc1509a5c3bfedb59821c8999a9de6.jpg b/foto/foto_barang/7fdc1509a5c3bfedb59821c8999a9de6.jpg
deleted file mode 100644
index b1571c0..0000000
Binary files a/foto/foto_barang/7fdc1509a5c3bfedb59821c8999a9de6.jpg and /dev/null differ
diff --git a/foto/foto_barang/7ffb3e344eae70a4b4babb9247b7e725.jpg b/foto/foto_barang/7ffb3e344eae70a4b4babb9247b7e725.jpg
deleted file mode 100644
index f9de99d..0000000
Binary files a/foto/foto_barang/7ffb3e344eae70a4b4babb9247b7e725.jpg and /dev/null differ
diff --git a/foto/foto_barang/8.jpg b/foto/foto_barang/8.jpg
deleted file mode 100644
index 1c4b612..0000000
Binary files a/foto/foto_barang/8.jpg and /dev/null differ
diff --git a/foto/foto_barang/800.jpg b/foto/foto_barang/800.jpg
deleted file mode 100644
index 063cf9d..0000000
Binary files a/foto/foto_barang/800.jpg and /dev/null differ
diff --git a/foto/foto_barang/801.jpg b/foto/foto_barang/801.jpg
deleted file mode 100644
index 5dbbb87..0000000
Binary files a/foto/foto_barang/801.jpg and /dev/null differ
diff --git a/foto/foto_barang/802.jpg b/foto/foto_barang/802.jpg
deleted file mode 100644
index 3f21241..0000000
Binary files a/foto/foto_barang/802.jpg and /dev/null differ
diff --git a/foto/foto_barang/803.jpg b/foto/foto_barang/803.jpg
deleted file mode 100644
index b06b6d3..0000000
Binary files a/foto/foto_barang/803.jpg and /dev/null differ
diff --git a/foto/foto_barang/804.jpg b/foto/foto_barang/804.jpg
deleted file mode 100644
index fab1bf6..0000000
Binary files a/foto/foto_barang/804.jpg and /dev/null differ
diff --git a/foto/foto_barang/805.jpg b/foto/foto_barang/805.jpg
deleted file mode 100644
index e739fb6..0000000
Binary files a/foto/foto_barang/805.jpg and /dev/null differ
diff --git a/foto/foto_barang/806.jpg b/foto/foto_barang/806.jpg
deleted file mode 100644
index ed08b35..0000000
Binary files a/foto/foto_barang/806.jpg and /dev/null differ
diff --git a/foto/foto_barang/807.jpg b/foto/foto_barang/807.jpg
deleted file mode 100644
index 5c8289a..0000000
Binary files a/foto/foto_barang/807.jpg and /dev/null differ
diff --git a/foto/foto_barang/808.jpg b/foto/foto_barang/808.jpg
deleted file mode 100644
index 3974ea4..0000000
Binary files a/foto/foto_barang/808.jpg and /dev/null differ
diff --git a/foto/foto_barang/80861004_2ad8f263-546f-4f02-a4d6-1c26edf6b67c_720_720.jpg b/foto/foto_barang/80861004_2ad8f263-546f-4f02-a4d6-1c26edf6b67c_720_720.jpg
deleted file mode 100644
index 94bcd2b..0000000
Binary files a/foto/foto_barang/80861004_2ad8f263-546f-4f02-a4d6-1c26edf6b67c_720_720.jpg and /dev/null differ
diff --git a/foto/foto_barang/809.jpg b/foto/foto_barang/809.jpg
deleted file mode 100644
index ff71f80..0000000
Binary files a/foto/foto_barang/809.jpg and /dev/null differ
diff --git a/foto/foto_barang/811.jpg b/foto/foto_barang/811.jpg
deleted file mode 100644
index f9b6d56..0000000
Binary files a/foto/foto_barang/811.jpg and /dev/null differ
diff --git a/foto/foto_barang/812.jpg b/foto/foto_barang/812.jpg
deleted file mode 100644
index a5c8268..0000000
Binary files a/foto/foto_barang/812.jpg and /dev/null differ
diff --git a/foto/foto_barang/813.jpg b/foto/foto_barang/813.jpg
deleted file mode 100644
index d297798..0000000
Binary files a/foto/foto_barang/813.jpg and /dev/null differ
diff --git a/foto/foto_barang/814.jpg b/foto/foto_barang/814.jpg
deleted file mode 100644
index 719eb56..0000000
Binary files a/foto/foto_barang/814.jpg and /dev/null differ
diff --git a/foto/foto_barang/815.jpg b/foto/foto_barang/815.jpg
deleted file mode 100644
index 49c8bd8..0000000
Binary files a/foto/foto_barang/815.jpg and /dev/null differ
diff --git a/foto/foto_barang/8161.jpg b/foto/foto_barang/8161.jpg
deleted file mode 100644
index a92699e..0000000
Binary files a/foto/foto_barang/8161.jpg and /dev/null differ
diff --git a/foto/foto_barang/817.jpg b/foto/foto_barang/817.jpg
deleted file mode 100644
index d9c8308..0000000
Binary files a/foto/foto_barang/817.jpg and /dev/null differ
diff --git a/foto/foto_barang/818.jpg b/foto/foto_barang/818.jpg
deleted file mode 100644
index f05511a..0000000
Binary files a/foto/foto_barang/818.jpg and /dev/null differ
diff --git a/foto/foto_barang/819.jpg b/foto/foto_barang/819.jpg
deleted file mode 100644
index 293cccc..0000000
Binary files a/foto/foto_barang/819.jpg and /dev/null differ
diff --git a/foto/foto_barang/81k4-cDdguL__AC_SL1500_.jpg b/foto/foto_barang/81k4-cDdguL__AC_SL1500_.jpg
deleted file mode 100644
index 6a48616..0000000
Binary files a/foto/foto_barang/81k4-cDdguL__AC_SL1500_.jpg and /dev/null differ
diff --git a/foto/foto_barang/820.jpg b/foto/foto_barang/820.jpg
deleted file mode 100644
index 40e0a63..0000000
Binary files a/foto/foto_barang/820.jpg and /dev/null differ
diff --git a/foto/foto_barang/821.jpg b/foto/foto_barang/821.jpg
deleted file mode 100644
index bdd1c71..0000000
Binary files a/foto/foto_barang/821.jpg and /dev/null differ
diff --git a/foto/foto_barang/822.jpg b/foto/foto_barang/822.jpg
deleted file mode 100644
index 01ae1b1..0000000
Binary files a/foto/foto_barang/822.jpg and /dev/null differ
diff --git a/foto/foto_barang/823.jpg b/foto/foto_barang/823.jpg
deleted file mode 100644
index d6e8bc5..0000000
Binary files a/foto/foto_barang/823.jpg and /dev/null differ
diff --git a/foto/foto_barang/824.jpg b/foto/foto_barang/824.jpg
deleted file mode 100644
index c7dbded..0000000
Binary files a/foto/foto_barang/824.jpg and /dev/null differ
diff --git a/foto/foto_barang/825.jpg b/foto/foto_barang/825.jpg
deleted file mode 100644
index 2857786..0000000
Binary files a/foto/foto_barang/825.jpg and /dev/null differ
diff --git a/foto/foto_barang/825587_26-6-2022_23-10-15.png b/foto/foto_barang/825587_26-6-2022_23-10-15.png
deleted file mode 100644
index 1bacfb6..0000000
Binary files a/foto/foto_barang/825587_26-6-2022_23-10-15.png and /dev/null differ
diff --git a/foto/foto_barang/826.jpg b/foto/foto_barang/826.jpg
deleted file mode 100644
index e46527c..0000000
Binary files a/foto/foto_barang/826.jpg and /dev/null differ
diff --git a/foto/foto_barang/827.jpg b/foto/foto_barang/827.jpg
deleted file mode 100644
index efb75d4..0000000
Binary files a/foto/foto_barang/827.jpg and /dev/null differ
diff --git a/foto/foto_barang/828.jpg b/foto/foto_barang/828.jpg
deleted file mode 100644
index d32f259..0000000
Binary files a/foto/foto_barang/828.jpg and /dev/null differ
diff --git a/foto/foto_barang/83036ab3-5b2d-4d58-8d8e-0dd9e3985134.jpg b/foto/foto_barang/83036ab3-5b2d-4d58-8d8e-0dd9e3985134.jpg
deleted file mode 100644
index 39336a2..0000000
Binary files a/foto/foto_barang/83036ab3-5b2d-4d58-8d8e-0dd9e3985134.jpg and /dev/null differ
diff --git a/foto/foto_barang/830386_31-3-2020_15-19-32.jpg b/foto/foto_barang/830386_31-3-2020_15-19-32.jpg
deleted file mode 100644
index ebb26cb..0000000
Binary files a/foto/foto_barang/830386_31-3-2020_15-19-32.jpg and /dev/null differ
diff --git a/foto/foto_barang/834.jpg b/foto/foto_barang/834.jpg
deleted file mode 100644
index a1f0756..0000000
Binary files a/foto/foto_barang/834.jpg and /dev/null differ
diff --git a/foto/foto_barang/835.jpg b/foto/foto_barang/835.jpg
deleted file mode 100644
index f6ca091..0000000
Binary files a/foto/foto_barang/835.jpg and /dev/null differ
diff --git a/foto/foto_barang/84024216a873772a3afb5eb2e587a133.jpg b/foto/foto_barang/84024216a873772a3afb5eb2e587a133.jpg
deleted file mode 100644
index 619e10c..0000000
Binary files a/foto/foto_barang/84024216a873772a3afb5eb2e587a133.jpg and /dev/null differ
diff --git a/foto/foto_barang/84051771_15efbdd7-350a-4d20-8e48-2e12e55eab8c_1024_1024.jpg b/foto/foto_barang/84051771_15efbdd7-350a-4d20-8e48-2e12e55eab8c_1024_1024.jpg
deleted file mode 100644
index 96ad200..0000000
Binary files a/foto/foto_barang/84051771_15efbdd7-350a-4d20-8e48-2e12e55eab8c_1024_1024.jpg and /dev/null differ
diff --git a/foto/foto_barang/848c5924167cce6f24faf1cdb7d38933.jpg b/foto/foto_barang/848c5924167cce6f24faf1cdb7d38933.jpg
deleted file mode 100644
index 1c9e039..0000000
Binary files a/foto/foto_barang/848c5924167cce6f24faf1cdb7d38933.jpg and /dev/null differ
diff --git a/foto/foto_barang/852629f2b347fd483cd9b4f8d2955696.jpg b/foto/foto_barang/852629f2b347fd483cd9b4f8d2955696.jpg
deleted file mode 100644
index fa87325..0000000
Binary files a/foto/foto_barang/852629f2b347fd483cd9b4f8d2955696.jpg and /dev/null differ
diff --git a/foto/foto_barang/855ff9f02566ae703acb2760d8157114.jpg b/foto/foto_barang/855ff9f02566ae703acb2760d8157114.jpg
deleted file mode 100644
index 72afe09..0000000
Binary files a/foto/foto_barang/855ff9f02566ae703acb2760d8157114.jpg and /dev/null differ
diff --git a/foto/foto_barang/859de732d9f97dd9cc2ef3cbe18cd9fb.jpg b/foto/foto_barang/859de732d9f97dd9cc2ef3cbe18cd9fb.jpg
deleted file mode 100644
index 8c00d65..0000000
Binary files a/foto/foto_barang/859de732d9f97dd9cc2ef3cbe18cd9fb.jpg and /dev/null differ
diff --git a/foto/foto_barang/867321_28-2-2021_0-3-57.png b/foto/foto_barang/867321_28-2-2021_0-3-57.png
deleted file mode 100644
index bece473..0000000
Binary files a/foto/foto_barang/867321_28-2-2021_0-3-57.png and /dev/null differ
diff --git a/foto/foto_barang/8784f0e8-62d2-492a-a733-6d3ea1dd247b.jpg b/foto/foto_barang/8784f0e8-62d2-492a-a733-6d3ea1dd247b.jpg
deleted file mode 100644
index 20ddb6f..0000000
Binary files a/foto/foto_barang/8784f0e8-62d2-492a-a733-6d3ea1dd247b.jpg and /dev/null differ
diff --git a/foto/foto_barang/8841bffb5dbe76b4756d143c34d668f4.jpg b/foto/foto_barang/8841bffb5dbe76b4756d143c34d668f4.jpg
deleted file mode 100644
index 8b7bb08..0000000
Binary files a/foto/foto_barang/8841bffb5dbe76b4756d143c34d668f4.jpg and /dev/null differ
diff --git a/foto/foto_barang/8886020002031.jpg b/foto/foto_barang/8886020002031.jpg
deleted file mode 100644
index b81f7bf..0000000
Binary files a/foto/foto_barang/8886020002031.jpg and /dev/null differ
diff --git a/foto/foto_barang/89.jpg b/foto/foto_barang/89.jpg
deleted file mode 100644
index 079f88d..0000000
Binary files a/foto/foto_barang/89.jpg and /dev/null differ
diff --git a/foto/foto_barang/8973f6adec9a8ace5ae301e5dc74d657.jpg b/foto/foto_barang/8973f6adec9a8ace5ae301e5dc74d657.jpg
deleted file mode 100644
index 5aa257d..0000000
Binary files a/foto/foto_barang/8973f6adec9a8ace5ae301e5dc74d657.jpg and /dev/null differ
diff --git a/foto/foto_barang/8990011998897.jpg b/foto/foto_barang/8990011998897.jpg
deleted file mode 100644
index 85db172..0000000
Binary files a/foto/foto_barang/8990011998897.jpg and /dev/null differ
diff --git a/foto/foto_barang/8991002105676.jpg b/foto/foto_barang/8991002105676.jpg
deleted file mode 100644
index f7a6c9c..0000000
Binary files a/foto/foto_barang/8991002105676.jpg and /dev/null differ
diff --git a/foto/foto_barang/8991102714860.jpg b/foto/foto_barang/8991102714860.jpg
deleted file mode 100644
index cfa8724..0000000
Binary files a/foto/foto_barang/8991102714860.jpg and /dev/null differ
diff --git a/foto/foto_barang/89919181015195.jpg b/foto/foto_barang/89919181015195.jpg
deleted file mode 100644
index 1c9e11f..0000000
Binary files a/foto/foto_barang/89919181015195.jpg and /dev/null differ
diff --git a/foto/foto_barang/899275054091.jpg b/foto/foto_barang/899275054091.jpg
deleted file mode 100644
index 2152220..0000000
Binary files a/foto/foto_barang/899275054091.jpg and /dev/null differ
diff --git a/foto/foto_barang/8993351124001.png b/foto/foto_barang/8993351124001.png
deleted file mode 100644
index 0e523c7..0000000
Binary files a/foto/foto_barang/8993351124001.png and /dev/null differ
diff --git a/foto/foto_barang/8993560027537.jpg b/foto/foto_barang/8993560027537.jpg
deleted file mode 100644
index e2fcd58..0000000
Binary files a/foto/foto_barang/8993560027537.jpg and /dev/null differ
diff --git a/foto/foto_barang/8996001440049.png b/foto/foto_barang/8996001440049.png
deleted file mode 100644
index 9162bff..0000000
Binary files a/foto/foto_barang/8996001440049.png and /dev/null differ
diff --git a/foto/foto_barang/8998866501026.jpg b/foto/foto_barang/8998866501026.jpg
deleted file mode 100644
index 6a02bda..0000000
Binary files a/foto/foto_barang/8998866501026.jpg and /dev/null differ
diff --git a/foto/foto_barang/8999999050009.jpg b/foto/foto_barang/8999999050009.jpg
deleted file mode 100644
index e01b65f..0000000
Binary files a/foto/foto_barang/8999999050009.jpg and /dev/null differ
diff --git a/foto/foto_barang/8afdd6c2f6c10dd4d53bba09b3523576.jpg b/foto/foto_barang/8afdd6c2f6c10dd4d53bba09b3523576.jpg
deleted file mode 100644
index c6d7f31..0000000
Binary files a/foto/foto_barang/8afdd6c2f6c10dd4d53bba09b3523576.jpg and /dev/null differ
diff --git a/foto/foto_barang/8bd4db207090cae8904800f5a12889da.jpg b/foto/foto_barang/8bd4db207090cae8904800f5a12889da.jpg
deleted file mode 100644
index 7ddbdb3..0000000
Binary files a/foto/foto_barang/8bd4db207090cae8904800f5a12889da.jpg and /dev/null differ
diff --git a/foto/foto_barang/8bdea76e-47a9-4e35-887d-986c007ccbff.jpg b/foto/foto_barang/8bdea76e-47a9-4e35-887d-986c007ccbff.jpg
deleted file mode 100644
index 66c5c9a..0000000
Binary files a/foto/foto_barang/8bdea76e-47a9-4e35-887d-986c007ccbff.jpg and /dev/null differ
diff --git a/foto/foto_barang/8bf1b6dd701ba02eba885ab190b1b571.jpg b/foto/foto_barang/8bf1b6dd701ba02eba885ab190b1b571.jpg
deleted file mode 100644
index e37da24..0000000
Binary files a/foto/foto_barang/8bf1b6dd701ba02eba885ab190b1b571.jpg and /dev/null differ
diff --git a/foto/foto_barang/8c24ef1bed3cde78b77847d179aaf18b.jpg b/foto/foto_barang/8c24ef1bed3cde78b77847d179aaf18b.jpg
deleted file mode 100644
index 72d9cf4..0000000
Binary files a/foto/foto_barang/8c24ef1bed3cde78b77847d179aaf18b.jpg and /dev/null differ
diff --git a/foto/foto_barang/8c84ec07584399e7f66056cacbad16f5.jpg b/foto/foto_barang/8c84ec07584399e7f66056cacbad16f5.jpg
deleted file mode 100644
index 1c2c17d..0000000
Binary files a/foto/foto_barang/8c84ec07584399e7f66056cacbad16f5.jpg and /dev/null differ
diff --git a/foto/foto_barang/8cb2ac3eb7c02415a18d0ee6585c3cb7.jpg b/foto/foto_barang/8cb2ac3eb7c02415a18d0ee6585c3cb7.jpg
deleted file mode 100644
index 571c924..0000000
Binary files a/foto/foto_barang/8cb2ac3eb7c02415a18d0ee6585c3cb7.jpg and /dev/null differ
diff --git a/foto/foto_barang/8e6042cb-44b7-46c2-ba7e-5506ce772216.jpg b/foto/foto_barang/8e6042cb-44b7-46c2-ba7e-5506ce772216.jpg
deleted file mode 100644
index 810ed9f..0000000
Binary files a/foto/foto_barang/8e6042cb-44b7-46c2-ba7e-5506ce772216.jpg and /dev/null differ
diff --git a/foto/foto_barang/9.jpg b/foto/foto_barang/9.jpg
deleted file mode 100644
index d641442..0000000
Binary files a/foto/foto_barang/9.jpg and /dev/null differ
diff --git a/foto/foto_barang/90.jpg b/foto/foto_barang/90.jpg
deleted file mode 100644
index 192dda3..0000000
Binary files a/foto/foto_barang/90.jpg and /dev/null differ
diff --git a/foto/foto_barang/9049d9a7ca0830dce567e0a0b0aea812.jpg b/foto/foto_barang/9049d9a7ca0830dce567e0a0b0aea812.jpg
deleted file mode 100644
index 2742652..0000000
Binary files a/foto/foto_barang/9049d9a7ca0830dce567e0a0b0aea812.jpg and /dev/null differ
diff --git a/foto/foto_barang/90a026c2c65c7d7f4028f9606acb1a9a.jpg b/foto/foto_barang/90a026c2c65c7d7f4028f9606acb1a9a.jpg
deleted file mode 100644
index c085871..0000000
Binary files a/foto/foto_barang/90a026c2c65c7d7f4028f9606acb1a9a.jpg and /dev/null differ
diff --git a/foto/foto_barang/91.jpg b/foto/foto_barang/91.jpg
deleted file mode 100644
index 5cc9865..0000000
Binary files a/foto/foto_barang/91.jpg and /dev/null differ
diff --git a/foto/foto_barang/9137d2c9fa8ccd23748789b18b26b54c.jpg b/foto/foto_barang/9137d2c9fa8ccd23748789b18b26b54c.jpg
deleted file mode 100644
index e9b9f10..0000000
Binary files a/foto/foto_barang/9137d2c9fa8ccd23748789b18b26b54c.jpg and /dev/null differ
diff --git a/foto/foto_barang/914e91d5dd8cd2cbc5979f0543048a11.jpg b/foto/foto_barang/914e91d5dd8cd2cbc5979f0543048a11.jpg
deleted file mode 100644
index 8d68aff..0000000
Binary files a/foto/foto_barang/914e91d5dd8cd2cbc5979f0543048a11.jpg and /dev/null differ
diff --git a/foto/foto_barang/91779f628101244265e8a91a0949b651.jpg b/foto/foto_barang/91779f628101244265e8a91a0949b651.jpg
deleted file mode 100644
index 363d54d..0000000
Binary files a/foto/foto_barang/91779f628101244265e8a91a0949b651.jpg and /dev/null differ
diff --git a/foto/foto_barang/92.jpg b/foto/foto_barang/92.jpg
deleted file mode 100644
index 4c1f867..0000000
Binary files a/foto/foto_barang/92.jpg and /dev/null differ
diff --git a/foto/foto_barang/92022c27-c5d5-4a39-a7d1-bc56ebe64bea.jpg b/foto/foto_barang/92022c27-c5d5-4a39-a7d1-bc56ebe64bea.jpg
deleted file mode 100644
index e702e09..0000000
Binary files a/foto/foto_barang/92022c27-c5d5-4a39-a7d1-bc56ebe64bea.jpg and /dev/null differ
diff --git a/foto/foto_barang/920884194_4999d490-eb6c-4b51-8cb2-7a0473791e56_800_800.jpg b/foto/foto_barang/920884194_4999d490-eb6c-4b51-8cb2-7a0473791e56_800_800.jpg
deleted file mode 100644
index f64a3ed..0000000
Binary files a/foto/foto_barang/920884194_4999d490-eb6c-4b51-8cb2-7a0473791e56_800_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/93.jpg b/foto/foto_barang/93.jpg
deleted file mode 100644
index 8fba15b..0000000
Binary files a/foto/foto_barang/93.jpg and /dev/null differ
diff --git a/foto/foto_barang/93b9314738bdb0831b2e16a0dec6af76_tn.jpg b/foto/foto_barang/93b9314738bdb0831b2e16a0dec6af76_tn.jpg
deleted file mode 100644
index 0effe6e..0000000
Binary files a/foto/foto_barang/93b9314738bdb0831b2e16a0dec6af76_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/940bd4f1-6911-4245-8419-a90399443312.jpg b/foto/foto_barang/940bd4f1-6911-4245-8419-a90399443312.jpg
deleted file mode 100644
index f058fc3..0000000
Binary files a/foto/foto_barang/940bd4f1-6911-4245-8419-a90399443312.jpg and /dev/null differ
diff --git a/foto/foto_barang/95649345_55658a0b-a012-4fc9-8ad9-483908ee9cb4_500_500.jpg b/foto/foto_barang/95649345_55658a0b-a012-4fc9-8ad9-483908ee9cb4_500_500.jpg
deleted file mode 100644
index 65667fe..0000000
Binary files a/foto/foto_barang/95649345_55658a0b-a012-4fc9-8ad9-483908ee9cb4_500_500.jpg and /dev/null differ
diff --git a/foto/foto_barang/95906285_0462ddd2-2b1c-45a5-ae8e-5cfcdafa7f6d_1002_1002.jpg b/foto/foto_barang/95906285_0462ddd2-2b1c-45a5-ae8e-5cfcdafa7f6d_1002_1002.jpg
deleted file mode 100644
index 3f1f1c5..0000000
Binary files a/foto/foto_barang/95906285_0462ddd2-2b1c-45a5-ae8e-5cfcdafa7f6d_1002_1002.jpg and /dev/null differ
diff --git a/foto/foto_barang/96.jpg b/foto/foto_barang/96.jpg
deleted file mode 100644
index 7a1413e..0000000
Binary files a/foto/foto_barang/96.jpg and /dev/null differ
diff --git a/foto/foto_barang/96774d5d-7916-4384-b532-fc3934311b89.jpg b/foto/foto_barang/96774d5d-7916-4384-b532-fc3934311b89.jpg
deleted file mode 100644
index ad3713d..0000000
Binary files a/foto/foto_barang/96774d5d-7916-4384-b532-fc3934311b89.jpg and /dev/null differ
diff --git a/foto/foto_barang/9764832_91496f6b-e187-4544-b13e-f17d098e4857_300_300.jpg b/foto/foto_barang/9764832_91496f6b-e187-4544-b13e-f17d098e4857_300_300.jpg
deleted file mode 100644
index ff65516..0000000
Binary files a/foto/foto_barang/9764832_91496f6b-e187-4544-b13e-f17d098e4857_300_300.jpg and /dev/null differ
diff --git a/foto/foto_barang/97712259_22fc54e4-12d7-424f-ad64-6b66a2a3da6d_960_960.jpg b/foto/foto_barang/97712259_22fc54e4-12d7-424f-ad64-6b66a2a3da6d_960_960.jpg
deleted file mode 100644
index 7d9f469..0000000
Binary files a/foto/foto_barang/97712259_22fc54e4-12d7-424f-ad64-6b66a2a3da6d_960_960.jpg and /dev/null differ
diff --git a/foto/foto_barang/97ffda304a565d84458207d0a790f18d.jpg b/foto/foto_barang/97ffda304a565d84458207d0a790f18d.jpg
deleted file mode 100644
index b5bd8e4..0000000
Binary files a/foto/foto_barang/97ffda304a565d84458207d0a790f18d.jpg and /dev/null differ
diff --git a/foto/foto_barang/98b4a3f8accaefb965e467b48b0a77ad.jpg b/foto/foto_barang/98b4a3f8accaefb965e467b48b0a77ad.jpg
deleted file mode 100644
index fd778a4..0000000
Binary files a/foto/foto_barang/98b4a3f8accaefb965e467b48b0a77ad.jpg and /dev/null differ
diff --git a/foto/foto_barang/995f136c5b73237158281dde7bb679ef.jpg b/foto/foto_barang/995f136c5b73237158281dde7bb679ef.jpg
deleted file mode 100644
index 279f47b..0000000
Binary files a/foto/foto_barang/995f136c5b73237158281dde7bb679ef.jpg and /dev/null differ
diff --git a/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d.jpg b/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d.jpg
deleted file mode 100644
index f6cd0e7..0000000
Binary files a/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d.jpg and /dev/null differ
diff --git a/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d1.jpg b/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d1.jpg
deleted file mode 100644
index f6cd0e7..0000000
Binary files a/foto/foto_barang/9a8c8a06d77ddf75f33b061f6150987d1.jpg and /dev/null differ
diff --git a/foto/foto_barang/9b78d408-2a66-4e62-969b-1fe4c9a46b71.jpg b/foto/foto_barang/9b78d408-2a66-4e62-969b-1fe4c9a46b71.jpg
deleted file mode 100644
index bb7f890..0000000
Binary files a/foto/foto_barang/9b78d408-2a66-4e62-969b-1fe4c9a46b71.jpg and /dev/null differ
diff --git a/foto/foto_barang/9c13ec358ffaccb51022a597eda6d8dd.jpg b/foto/foto_barang/9c13ec358ffaccb51022a597eda6d8dd.jpg
deleted file mode 100644
index 426b0be..0000000
Binary files a/foto/foto_barang/9c13ec358ffaccb51022a597eda6d8dd.jpg and /dev/null differ
diff --git a/foto/foto_barang/9cd09676f51c2190bda39d56f8872b9b.jpg b/foto/foto_barang/9cd09676f51c2190bda39d56f8872b9b.jpg
deleted file mode 100644
index e688492..0000000
Binary files a/foto/foto_barang/9cd09676f51c2190bda39d56f8872b9b.jpg and /dev/null differ
diff --git a/foto/foto_barang/9d3745b3-e2dc-4627-9114-3c297555378e.jpg b/foto/foto_barang/9d3745b3-e2dc-4627-9114-3c297555378e.jpg
deleted file mode 100644
index 3400017..0000000
Binary files a/foto/foto_barang/9d3745b3-e2dc-4627-9114-3c297555378e.jpg and /dev/null differ
diff --git a/foto/foto_barang/9d5498a4da50164763dcca102bfd7a4e_tn.jpg b/foto/foto_barang/9d5498a4da50164763dcca102bfd7a4e_tn.jpg
deleted file mode 100644
index 09a1c84..0000000
Binary files a/foto/foto_barang/9d5498a4da50164763dcca102bfd7a4e_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/9debdb47fbfbafb0c1f8369944bc1e1c.jpg b/foto/foto_barang/9debdb47fbfbafb0c1f8369944bc1e1c.jpg
deleted file mode 100644
index e843f96..0000000
Binary files a/foto/foto_barang/9debdb47fbfbafb0c1f8369944bc1e1c.jpg and /dev/null differ
diff --git a/foto/foto_barang/9ded43e66dd94c7819503d806fd0739b.jpg b/foto/foto_barang/9ded43e66dd94c7819503d806fd0739b.jpg
deleted file mode 100644
index 5dd74e2..0000000
Binary files a/foto/foto_barang/9ded43e66dd94c7819503d806fd0739b.jpg and /dev/null differ
diff --git a/foto/foto_barang/9dfe4f7074c8661deef6360815f0262a.jpg b/foto/foto_barang/9dfe4f7074c8661deef6360815f0262a.jpg
deleted file mode 100644
index bbb76ac..0000000
Binary files a/foto/foto_barang/9dfe4f7074c8661deef6360815f0262a.jpg and /dev/null differ
diff --git a/foto/foto_barang/9e15b2c417f17cf132accb22703114c4.jpg b/foto/foto_barang/9e15b2c417f17cf132accb22703114c4.jpg
deleted file mode 100644
index 620b7ec..0000000
Binary files a/foto/foto_barang/9e15b2c417f17cf132accb22703114c4.jpg and /dev/null differ
diff --git a/foto/foto_barang/9e305522-adb8-4527-92b2-009a608f5f41.jpg b/foto/foto_barang/9e305522-adb8-4527-92b2-009a608f5f41.jpg
deleted file mode 100644
index d7c56e8..0000000
Binary files a/foto/foto_barang/9e305522-adb8-4527-92b2-009a608f5f41.jpg and /dev/null differ
diff --git a/foto/foto_barang/9f0e136cf405e5cafa4688e51e86a479.jpg b/foto/foto_barang/9f0e136cf405e5cafa4688e51e86a479.jpg
deleted file mode 100644
index 323a7e9..0000000
Binary files a/foto/foto_barang/9f0e136cf405e5cafa4688e51e86a479.jpg and /dev/null differ
diff --git a/foto/foto_barang/9f25c8f2-f3dd-495d-9f5e-b75cc128ac59.jpg b/foto/foto_barang/9f25c8f2-f3dd-495d-9f5e-b75cc128ac59.jpg
deleted file mode 100644
index 5bef58e..0000000
Binary files a/foto/foto_barang/9f25c8f2-f3dd-495d-9f5e-b75cc128ac59.jpg and /dev/null differ
diff --git a/foto/foto_barang/9fdfce216255b7b779e5ce9661cf9bc3.jpg b/foto/foto_barang/9fdfce216255b7b779e5ce9661cf9bc3.jpg
deleted file mode 100644
index 3d09a33..0000000
Binary files a/foto/foto_barang/9fdfce216255b7b779e5ce9661cf9bc3.jpg and /dev/null differ
diff --git a/foto/foto_barang/ABC-Nasi-Goreng-Bumbu-Pedas-23gr.jpg b/foto/foto_barang/ABC-Nasi-Goreng-Bumbu-Pedas-23gr.jpg
deleted file mode 100644
index ca61603..0000000
Binary files a/foto/foto_barang/ABC-Nasi-Goreng-Bumbu-Pedas-23gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ADEM_SARI_TESONA_6.jpg b/foto/foto_barang/ADEM_SARI_TESONA_6.jpg
deleted file mode 100644
index ab2c182..0000000
Binary files a/foto/foto_barang/ADEM_SARI_TESONA_6.jpg and /dev/null differ
diff --git a/foto/foto_barang/Attack_easy_purple_liq_800ml.jpg b/foto/foto_barang/Attack_easy_purple_liq_800ml.jpg
deleted file mode 100644
index e39042b..0000000
Binary files a/foto/foto_barang/Attack_easy_purple_liq_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Ayam_Kremes+Nasi.jpg b/foto/foto_barang/Ayam_Kremes+Nasi.jpg
deleted file mode 100644
index 12cc090..0000000
Binary files a/foto/foto_barang/Ayam_Kremes+Nasi.jpg and /dev/null differ
diff --git a/foto/foto_barang/Ayam_Pedas_BWI+Nasi.jpg b/foto/foto_barang/Ayam_Pedas_BWI+Nasi.jpg
deleted file mode 100644
index 02a0f78..0000000
Binary files a/foto/foto_barang/Ayam_Pedas_BWI+Nasi.jpg and /dev/null differ
diff --git a/foto/foto_barang/Ayam_crispy.jpg b/foto/foto_barang/Ayam_crispy.jpg
deleted file mode 100644
index d039061..0000000
Binary files a/foto/foto_barang/Ayam_crispy.jpg and /dev/null differ
diff --git a/foto/foto_barang/Ayam_jongor.jpg b/foto/foto_barang/Ayam_jongor.jpg
deleted file mode 100644
index 342adf0..0000000
Binary files a/foto/foto_barang/Ayam_jongor.jpg and /dev/null differ
diff --git a/foto/foto_barang/Ayam_kalasan.jpg b/foto/foto_barang/Ayam_kalasan.jpg
deleted file mode 100644
index 9f3c9e7..0000000
Binary files a/foto/foto_barang/Ayam_kalasan.jpg and /dev/null differ
diff --git a/foto/foto_barang/BAKI_51X30_CM_KAYU_SEGI_RTK.jpg b/foto/foto_barang/BAKI_51X30_CM_KAYU_SEGI_RTK.jpg
deleted file mode 100644
index 4d2016e..0000000
Binary files a/foto/foto_barang/BAKI_51X30_CM_KAYU_SEGI_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/BATERAI_ABC_BESAR.png b/foto/foto_barang/BATERAI_ABC_BESAR.png
deleted file mode 100644
index a6a81a9..0000000
Binary files a/foto/foto_barang/BATERAI_ABC_BESAR.png and /dev/null differ
diff --git a/foto/foto_barang/BEAR_BRAND_GOLD_TEH_PUTIH_140ML.jpg b/foto/foto_barang/BEAR_BRAND_GOLD_TEH_PUTIH_140ML.jpg
deleted file mode 100644
index 53533db..0000000
Binary files a/foto/foto_barang/BEAR_BRAND_GOLD_TEH_PUTIH_140ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/BEDO-FLUB-006C-1.jpg b/foto/foto_barang/BEDO-FLUB-006C-1.jpg
deleted file mode 100644
index b97780b..0000000
Binary files a/foto/foto_barang/BEDO-FLUB-006C-1.jpg and /dev/null differ
diff --git a/foto/foto_barang/BERAS_MACAN_5KG.jpg b/foto/foto_barang/BERAS_MACAN_5KG.jpg
deleted file mode 100644
index 17d8e47..0000000
Binary files a/foto/foto_barang/BERAS_MACAN_5KG.jpg and /dev/null differ
diff --git a/foto/foto_barang/BERAS_MASAYU_5_KG.jpg b/foto/foto_barang/BERAS_MASAYU_5_KG.jpg
deleted file mode 100644
index 6b2f7f2..0000000
Binary files a/foto/foto_barang/BERAS_MASAYU_5_KG.jpg and /dev/null differ
diff --git a/foto/foto_barang/BERAS_PUTRI_KENCANA_LAMINATING_B_5KG.jpg b/foto/foto_barang/BERAS_PUTRI_KENCANA_LAMINATING_B_5KG.jpg
deleted file mode 100644
index ab986bc..0000000
Binary files a/foto/foto_barang/BERAS_PUTRI_KENCANA_LAMINATING_B_5KG.jpg and /dev/null differ
diff --git a/foto/foto_barang/BERAS_PUTRI_KOKI_RICE_PREMIUM_5KG.jpg b/foto/foto_barang/BERAS_PUTRI_KOKI_RICE_PREMIUM_5KG.jpg
deleted file mode 100644
index c085871..0000000
Binary files a/foto/foto_barang/BERAS_PUTRI_KOKI_RICE_PREMIUM_5KG.jpg and /dev/null differ
diff --git a/foto/foto_barang/BISVIT_NABATI_CHOCOLATE.jpg b/foto/foto_barang/BISVIT_NABATI_CHOCOLATE.jpg
deleted file mode 100644
index 46b7fa1..0000000
Binary files a/foto/foto_barang/BISVIT_NABATI_CHOCOLATE.jpg and /dev/null differ
diff --git a/foto/foto_barang/BISVIT_NABATI_SANDWICH_CHEESE.jpg b/foto/foto_barang/BISVIT_NABATI_SANDWICH_CHEESE.jpg
deleted file mode 100644
index 4a8e59a..0000000
Binary files a/foto/foto_barang/BISVIT_NABATI_SANDWICH_CHEESE.jpg and /dev/null differ
diff --git a/foto/foto_barang/BODY_WASH_GIV_PINK_POUCH.png b/foto/foto_barang/BODY_WASH_GIV_PINK_POUCH.png
deleted file mode 100644
index 5e165b2..0000000
Binary files a/foto/foto_barang/BODY_WASH_GIV_PINK_POUCH.png and /dev/null differ
diff --git a/foto/foto_barang/BON_CABE_RS_ORIGINAL_LEVEL_30.jpg b/foto/foto_barang/BON_CABE_RS_ORIGINAL_LEVEL_30.jpg
deleted file mode 100644
index 11cb3d2..0000000
Binary files a/foto/foto_barang/BON_CABE_RS_ORIGINAL_LEVEL_30.jpg and /dev/null differ
diff --git a/foto/foto_barang/BULPEN_STANDART.jpg b/foto/foto_barang/BULPEN_STANDART.jpg
deleted file mode 100644
index 3623130..0000000
Binary files a/foto/foto_barang/BULPEN_STANDART.jpg and /dev/null differ
diff --git a/foto/foto_barang/Balsem_tolak_angin_20gr.jpg b/foto/foto_barang/Balsem_tolak_angin_20gr.jpg
deleted file mode 100644
index 3da6f23..0000000
Binary files a/foto/foto_barang/Balsem_tolak_angin_20gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/Baterai_Remote_Evereday.jpg b/foto/foto_barang/Baterai_Remote_Evereday.jpg
deleted file mode 100644
index 9e003c4..0000000
Binary files a/foto/foto_barang/Baterai_Remote_Evereday.jpg and /dev/null differ
diff --git a/foto/foto_barang/Bayclin-Regular-500ml.jpg b/foto/foto_barang/Bayclin-Regular-500ml.jpg
deleted file mode 100644
index e0d468c..0000000
Binary files a/foto/foto_barang/Bayclin-Regular-500ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Beras_Dua_Anak_5kg.jpg b/foto/foto_barang/Beras_Dua_Anak_5kg.jpg
deleted file mode 100644
index d86bab0..0000000
Binary files a/foto/foto_barang/Beras_Dua_Anak_5kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/Brownies-Recipe-2-1200.jpg b/foto/foto_barang/Brownies-Recipe-2-1200.jpg
deleted file mode 100644
index 2694141..0000000
Binary files a/foto/foto_barang/Brownies-Recipe-2-1200.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_BERKAH_KRIPIK_SINGKONG_ALL.jpg b/foto/foto_barang/CAMILAN_BERKAH_KRIPIK_SINGKONG_ALL.jpg
deleted file mode 100644
index 27d879d..0000000
Binary files a/foto/foto_barang/CAMILAN_BERKAH_KRIPIK_SINGKONG_ALL.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_HOLIDAY_16.jpg b/foto/foto_barang/CAMILAN_HOLIDAY_16.jpg
deleted file mode 100644
index c8b51ed..0000000
Binary files a/foto/foto_barang/CAMILAN_HOLIDAY_16.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_CUM_CUM_LB.jpg b/foto/foto_barang/CAMILAN_MITRA_CUM_CUM_LB.jpg
deleted file mode 100644
index 83e53c7..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_CUM_CUM_LB.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_KRIPIK_TEMPE_PEDAS.jpg b/foto/foto_barang/CAMILAN_MITRA_KRIPIK_TEMPE_PEDAS.jpg
deleted file mode 100644
index 701863f..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_KRIPIK_TEMPE_PEDAS.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_MAKRONI_HOT.jpg b/foto/foto_barang/CAMILAN_MITRA_MAKRONI_HOT.jpg
deleted file mode 100644
index 10a240e..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_MAKRONI_HOT.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_MARNING_ASIN_K.jpg b/foto/foto_barang/CAMILAN_MITRA_MARNING_ASIN_K.jpg
deleted file mode 100644
index e280317..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_MARNING_ASIN_K.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK.jpg b/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK.jpg
deleted file mode 100644
index 2663799..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK1.jpg b/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK1.jpg
deleted file mode 100644
index 2663799..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_PILUS_BANGKOK1.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_MITRA_SATRU_ASEM_MIKA.jpg b/foto/foto_barang/CAMILAN_MITRA_SATRU_ASEM_MIKA.jpg
deleted file mode 100644
index 1f245fa..0000000
Binary files a/foto/foto_barang/CAMILAN_MITRA_SATRU_ASEM_MIKA.jpg and /dev/null differ
diff --git a/foto/foto_barang/CAMILAN_TELUR_GABUS_+_COKIS_JAHE.jpg b/foto/foto_barang/CAMILAN_TELUR_GABUS_+_COKIS_JAHE.jpg
deleted file mode 100644
index ab139b5..0000000
Binary files a/foto/foto_barang/CAMILAN_TELUR_GABUS_+_COKIS_JAHE.jpg and /dev/null differ
diff --git a/foto/foto_barang/CD_SELICA_ALL_SIZE.jpg b/foto/foto_barang/CD_SELICA_ALL_SIZE.jpg
deleted file mode 100644
index d536b53..0000000
Binary files a/foto/foto_barang/CD_SELICA_ALL_SIZE.jpg and /dev/null differ
diff --git a/foto/foto_barang/CELANA_ANAK.jpg b/foto/foto_barang/CELANA_ANAK.jpg
deleted file mode 100644
index 21325e8..0000000
Binary files a/foto/foto_barang/CELANA_ANAK.jpg and /dev/null differ
diff --git a/foto/foto_barang/CHARM_SAFE_NIGHT_WING_35CM_1PAD.png b/foto/foto_barang/CHARM_SAFE_NIGHT_WING_35CM_1PAD.png
deleted file mode 100644
index 217f909..0000000
Binary files a/foto/foto_barang/CHARM_SAFE_NIGHT_WING_35CM_1PAD.png and /dev/null differ
diff --git a/foto/foto_barang/CHEETOS_NET_RS_BBQ.jpg b/foto/foto_barang/CHEETOS_NET_RS_BBQ.jpg
deleted file mode 100644
index 7a35f1d..0000000
Binary files a/foto/foto_barang/CHEETOS_NET_RS_BBQ.jpg and /dev/null differ
diff --git a/foto/foto_barang/CHITATO_SPC_AYAM_BUMBU.jpg b/foto/foto_barang/CHITATO_SPC_AYAM_BUMBU.jpg
deleted file mode 100644
index c5425f5..0000000
Binary files a/foto/foto_barang/CHITATO_SPC_AYAM_BUMBU.jpg and /dev/null differ
diff --git a/foto/foto_barang/CIPTADENT_75GR_FRESH.jpg b/foto/foto_barang/CIPTADENT_75GR_FRESH.jpg
deleted file mode 100644
index 07efc67..0000000
Binary files a/foto/foto_barang/CIPTADENT_75GR_FRESH.jpg and /dev/null differ
diff --git a/foto/foto_barang/CIPTADENT_MAXI_12PLUS_COOLMINT.jpg b/foto/foto_barang/CIPTADENT_MAXI_12PLUS_COOLMINT.jpg
deleted file mode 100644
index 90c7917..0000000
Binary files a/foto/foto_barang/CIPTADENT_MAXI_12PLUS_COOLMINT.jpg and /dev/null differ
diff --git a/foto/foto_barang/CIPTADENT_MAXI_12_FRESH_MINT.png b/foto/foto_barang/CIPTADENT_MAXI_12_FRESH_MINT.png
deleted file mode 100644
index c2d9ff3..0000000
Binary files a/foto/foto_barang/CIPTADENT_MAXI_12_FRESH_MINT.png and /dev/null differ
diff --git a/foto/foto_barang/CIPTADENT_WHITENING_MAXI_WHITE_75G.jpg b/foto/foto_barang/CIPTADENT_WHITENING_MAXI_WHITE_75G.jpg
deleted file mode 100644
index 425db72..0000000
Binary files a/foto/foto_barang/CIPTADENT_WHITENING_MAXI_WHITE_75G.jpg and /dev/null differ
diff --git a/foto/foto_barang/CIPTADEN_PERFECT_CARE_SOFT.jpg b/foto/foto_barang/CIPTADEN_PERFECT_CARE_SOFT.jpg
deleted file mode 100644
index ade3fd0..0000000
Binary files a/foto/foto_barang/CIPTADEN_PERFECT_CARE_SOFT.jpg and /dev/null differ
diff --git a/foto/foto_barang/CITRA_HAZELINE_PW_UV_8G.jpg b/foto/foto_barang/CITRA_HAZELINE_PW_UV_8G.jpg
deleted file mode 100644
index 7ebacaf..0000000
Binary files a/foto/foto_barang/CITRA_HAZELINE_PW_UV_8G.jpg and /dev/null differ
diff --git a/foto/foto_barang/CITRA_HBL_NATURAL_GLOWING_WHITE.png b/foto/foto_barang/CITRA_HBL_NATURAL_GLOWING_WHITE.png
deleted file mode 100644
index 9684c30..0000000
Binary files a/foto/foto_barang/CITRA_HBL_NATURAL_GLOWING_WHITE.png and /dev/null differ
diff --git a/foto/foto_barang/CITRA_PEARLY_WHITE_SOAP.jpg b/foto/foto_barang/CITRA_PEARLY_WHITE_SOAP.jpg
deleted file mode 100644
index 6bb1040..0000000
Binary files a/foto/foto_barang/CITRA_PEARLY_WHITE_SOAP.jpg and /dev/null differ
diff --git a/foto/foto_barang/CLOSE_UP_GREEN.jpg b/foto/foto_barang/CLOSE_UP_GREEN.jpg
deleted file mode 100644
index 1a281d7..0000000
Binary files a/foto/foto_barang/CLOSE_UP_GREEN.jpg and /dev/null differ
diff --git a/foto/foto_barang/COKLAT_BAR_LGF.jpg b/foto/foto_barang/COKLAT_BAR_LGF.jpg
deleted file mode 100644
index ab5201f..0000000
Binary files a/foto/foto_barang/COKLAT_BAR_LGF.jpg and /dev/null differ
diff --git a/foto/foto_barang/COKLAT_BAR_TANGGUNG_AFA.jpg b/foto/foto_barang/COKLAT_BAR_TANGGUNG_AFA.jpg
deleted file mode 100644
index 4d74f59..0000000
Binary files a/foto/foto_barang/COKLAT_BAR_TANGGUNG_AFA.jpg and /dev/null differ
diff --git a/foto/foto_barang/CRYSTALLINE_1500ML.jpg b/foto/foto_barang/CRYSTALLINE_1500ML.jpg
deleted file mode 100644
index 72eb533..0000000
Binary files a/foto/foto_barang/CRYSTALLINE_1500ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/Charger.jpg b/foto/foto_barang/Charger.jpg
deleted file mode 100644
index 66a174c..0000000
Binary files a/foto/foto_barang/Charger.jpg and /dev/null differ
diff --git a/foto/foto_barang/Chicken_Katsu.jpg b/foto/foto_barang/Chicken_Katsu.jpg
deleted file mode 100644
index 3795c23..0000000
Binary files a/foto/foto_barang/Chicken_Katsu.jpg and /dev/null differ
diff --git a/foto/foto_barang/Cling_Pembersih_Kaca_Biru_425_ml.jpg b/foto/foto_barang/Cling_Pembersih_Kaca_Biru_425_ml.jpg
deleted file mode 100644
index 8061386..0000000
Binary files a/foto/foto_barang/Cling_Pembersih_Kaca_Biru_425_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Cling_Pembersih_Kaca_Orange_425_ml.jpg b/foto/foto_barang/Cling_Pembersih_Kaca_Orange_425_ml.jpg
deleted file mode 100644
index 7c16679..0000000
Binary files a/foto/foto_barang/Cling_Pembersih_Kaca_Orange_425_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Cumi_Hitam.jpg b/foto/foto_barang/Cumi_Hitam.jpg
deleted file mode 100644
index f5ffefb..0000000
Binary files a/foto/foto_barang/Cumi_Hitam.jpg and /dev/null differ
diff --git a/foto/foto_barang/DAIA_DITERJEN_+SOFTENER_PINK.jpg b/foto/foto_barang/DAIA_DITERJEN_+SOFTENER_PINK.jpg
deleted file mode 100644
index b4bb0f4..0000000
Binary files a/foto/foto_barang/DAIA_DITERJEN_+SOFTENER_PINK.jpg and /dev/null differ
diff --git a/foto/foto_barang/DAIA_HIJAB_CLEANFRESH_1_8KG.png b/foto/foto_barang/DAIA_HIJAB_CLEANFRESH_1_8KG.png
deleted file mode 100644
index 98daac6..0000000
Binary files a/foto/foto_barang/DAIA_HIJAB_CLEANFRESH_1_8KG.png and /dev/null differ
diff --git a/foto/foto_barang/DAIA_LEMON_KEMASAN_EKONOMIS.png b/foto/foto_barang/DAIA_LEMON_KEMASAN_EKONOMIS.png
deleted file mode 100644
index dff3ea6..0000000
Binary files a/foto/foto_barang/DAIA_LEMON_KEMASAN_EKONOMIS.png and /dev/null differ
diff --git a/foto/foto_barang/DAIA_SOFTENER_PUTIH.png b/foto/foto_barang/DAIA_SOFTENER_PUTIH.png
deleted file mode 100644
index 434bf07..0000000
Binary files a/foto/foto_barang/DAIA_SOFTENER_PUTIH.png and /dev/null differ
diff --git a/foto/foto_barang/DANCOW_UHT_FOTIGO_COKLAT.jpg b/foto/foto_barang/DANCOW_UHT_FOTIGO_COKLAT.jpg
deleted file mode 100644
index 6777e02..0000000
Binary files a/foto/foto_barang/DANCOW_UHT_FOTIGO_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/DELFI_BLACK_THUNDER_COKLAT_BAR.jpg b/foto/foto_barang/DELFI_BLACK_THUNDER_COKLAT_BAR.jpg
deleted file mode 100644
index fd0f948..0000000
Binary files a/foto/foto_barang/DELFI_BLACK_THUNDER_COKLAT_BAR.jpg and /dev/null differ
diff --git a/foto/foto_barang/DETTOL_PROSKIN_SENSITIVE.jpg b/foto/foto_barang/DETTOL_PROSKIN_SENSITIVE.jpg
deleted file mode 100644
index f21136e..0000000
Binary files a/foto/foto_barang/DETTOL_PROSKIN_SENSITIVE.jpg and /dev/null differ
diff --git a/foto/foto_barang/DETTOL_SOAP_ORI_105G.jpg b/foto/foto_barang/DETTOL_SOAP_ORI_105G.jpg
deleted file mode 100644
index 6a2ecf9..0000000
Binary files a/foto/foto_barang/DETTOL_SOAP_ORI_105G.jpg and /dev/null differ
diff --git a/foto/foto_barang/DJARUM_76_16.jpg b/foto/foto_barang/DJARUM_76_16.jpg
deleted file mode 100644
index 1b9528e..0000000
Binary files a/foto/foto_barang/DJARUM_76_16.jpg and /dev/null differ
diff --git a/foto/foto_barang/DJARUM_SUPER_12.jpg b/foto/foto_barang/DJARUM_SUPER_12.jpg
deleted file mode 100644
index df800d8..0000000
Binary files a/foto/foto_barang/DJARUM_SUPER_12.jpg and /dev/null differ
diff --git a/foto/foto_barang/DJARUM_SUPER_16.jpg b/foto/foto_barang/DJARUM_SUPER_16.jpg
deleted file mode 100644
index 94042bd..0000000
Binary files a/foto/foto_barang/DJARUM_SUPER_16.jpg and /dev/null differ
diff --git a/foto/foto_barang/DJARUM_SUPER_MLD_BLACK_SERIES_16.jpg b/foto/foto_barang/DJARUM_SUPER_MLD_BLACK_SERIES_16.jpg
deleted file mode 100644
index cf3f3f5..0000000
Binary files a/foto/foto_barang/DJARUM_SUPER_MLD_BLACK_SERIES_16.jpg and /dev/null differ
diff --git a/foto/foto_barang/Daia_Bunga_1,8_kg.png b/foto/foto_barang/Daia_Bunga_1,8_kg.png
deleted file mode 100644
index a7cfd93..0000000
Binary files a/foto/foto_barang/Daia_Bunga_1,8_kg.png and /dev/null differ
diff --git a/foto/foto_barang/Daia_Putih_1,8_kg.jpg b/foto/foto_barang/Daia_Putih_1,8_kg.jpg
deleted file mode 100644
index 37142dd..0000000
Binary files a/foto/foto_barang/Daia_Putih_1,8_kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/Daia_Violet_900_gram.jpg b/foto/foto_barang/Daia_Violet_900_gram.jpg
deleted file mode 100644
index e72a841..0000000
Binary files a/foto/foto_barang/Daia_Violet_900_gram.jpg and /dev/null differ
diff --git a/foto/foto_barang/EKC889NUYAAWOaP.jpg b/foto/foto_barang/EKC889NUYAAWOaP.jpg
deleted file mode 100644
index e6b6f07..0000000
Binary files a/foto/foto_barang/EKC889NUYAAWOaP.jpg and /dev/null differ
diff --git a/foto/foto_barang/EKONOMI_LIQUID.jpg b/foto/foto_barang/EKONOMI_LIQUID.jpg
deleted file mode 100644
index a26b75d..0000000
Binary files a/foto/foto_barang/EKONOMI_LIQUID.jpg and /dev/null differ
diff --git a/foto/foto_barang/ENERGEN_KC_HIJAU_35G.jpg b/foto/foto_barang/ENERGEN_KC_HIJAU_35G.jpg
deleted file mode 100644
index 933eb63..0000000
Binary files a/foto/foto_barang/ENERGEN_KC_HIJAU_35G.jpg and /dev/null differ
diff --git a/foto/foto_barang/Es_Cappucino.jpg b/foto/foto_barang/Es_Cappucino.jpg
deleted file mode 100644
index f4dd373..0000000
Binary files a/foto/foto_barang/Es_Cappucino.jpg and /dev/null differ
diff --git a/foto/foto_barang/Es_Degan_Leci.jpg b/foto/foto_barang/Es_Degan_Leci.jpg
deleted file mode 100644
index 5341cba..0000000
Binary files a/foto/foto_barang/Es_Degan_Leci.jpg and /dev/null differ
diff --git a/foto/foto_barang/Es_Degan_durian.jpg b/foto/foto_barang/Es_Degan_durian.jpg
deleted file mode 100644
index 2a7f53a..0000000
Binary files a/foto/foto_barang/Es_Degan_durian.jpg and /dev/null differ
diff --git a/foto/foto_barang/Es_Teler_Durian.jpg b/foto/foto_barang/Es_Teler_Durian.jpg
deleted file mode 100644
index d8c5f9b..0000000
Binary files a/foto/foto_barang/Es_Teler_Durian.jpg and /dev/null differ
diff --git a/foto/foto_barang/Es_teh.jpg b/foto/foto_barang/Es_teh.jpg
deleted file mode 100644
index 64080bf..0000000
Binary files a/foto/foto_barang/Es_teh.jpg and /dev/null differ
diff --git a/foto/foto_barang/Expreess_Cafe_Kopi_Manis.jpg b/foto/foto_barang/Expreess_Cafe_Kopi_Manis.jpg
deleted file mode 100644
index edd7165..0000000
Binary files a/foto/foto_barang/Expreess_Cafe_Kopi_Manis.jpg and /dev/null differ
diff --git a/foto/foto_barang/FAIR_LOVELY_MVIT_FOAM_9G.jpg b/foto/foto_barang/FAIR_LOVELY_MVIT_FOAM_9G.jpg
deleted file mode 100644
index 622e022..0000000
Binary files a/foto/foto_barang/FAIR_LOVELY_MVIT_FOAM_9G.jpg and /dev/null differ
diff --git a/foto/foto_barang/FANTA_3000.jpg b/foto/foto_barang/FANTA_3000.jpg
deleted file mode 100644
index 570d9b7..0000000
Binary files a/foto/foto_barang/FANTA_3000.jpg and /dev/null differ
diff --git a/foto/foto_barang/FANTA_ORANGE.jpg b/foto/foto_barang/FANTA_ORANGE.jpg
deleted file mode 100644
index 50903e4..0000000
Binary files a/foto/foto_barang/FANTA_ORANGE.jpg and /dev/null differ
diff --git a/foto/foto_barang/FINE_CHOCO_CHOCO_MILK_27G.jpg b/foto/foto_barang/FINE_CHOCO_CHOCO_MILK_27G.jpg
deleted file mode 100644
index 7c965d0..0000000
Binary files a/foto/foto_barang/FINE_CHOCO_CHOCO_MILK_27G.jpg and /dev/null differ
diff --git a/foto/foto_barang/FLORIDINA_ORANGE.jpg b/foto/foto_barang/FLORIDINA_ORANGE.jpg
deleted file mode 100644
index 8da8b49..0000000
Binary files a/foto/foto_barang/FLORIDINA_ORANGE.jpg and /dev/null differ
diff --git a/foto/foto_barang/FLORIDINA_ORANGE_COCO_350ML.jpg b/foto/foto_barang/FLORIDINA_ORANGE_COCO_350ML.jpg
deleted file mode 100644
index 4230c16..0000000
Binary files a/foto/foto_barang/FLORIDINA_ORANGE_COCO_350ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/FULLO_PACK_PEDECHOCLATE.jpg b/foto/foto_barang/FULLO_PACK_PEDECHOCLATE.jpg
deleted file mode 100644
index 1f2060c..0000000
Binary files a/foto/foto_barang/FULLO_PACK_PEDECHOCLATE.jpg and /dev/null differ
diff --git a/foto/foto_barang/Fair_Lovely_Facial_Foam_50_gr.jpg b/foto/foto_barang/Fair_Lovely_Facial_Foam_50_gr.jpg
deleted file mode 100644
index e72d792..0000000
Binary files a/foto/foto_barang/Fair_Lovely_Facial_Foam_50_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/Fanta_5000.jpg b/foto/foto_barang/Fanta_5000.jpg
deleted file mode 100644
index 6a4dbfe..0000000
Binary files a/foto/foto_barang/Fanta_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/Frappe_Taro.jpg b/foto/foto_barang/Frappe_Taro.jpg
deleted file mode 100644
index 67ae228..0000000
Binary files a/foto/foto_barang/Frappe_Taro.jpg and /dev/null differ
diff --git a/foto/foto_barang/Frestea_Madu.jpg b/foto/foto_barang/Frestea_Madu.jpg
deleted file mode 100644
index 9b657b0..0000000
Binary files a/foto/foto_barang/Frestea_Madu.jpg and /dev/null differ
diff --git a/foto/foto_barang/Frestea_Markisa_BESAR.jpg b/foto/foto_barang/Frestea_Markisa_BESAR.jpg
deleted file mode 100644
index cc10ed7..0000000
Binary files a/foto/foto_barang/Frestea_Markisa_BESAR.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_BROS_A_3500.jpg b/foto/foto_barang/GALERI_MUTIARA_BROS_A_3500.jpg
deleted file mode 100644
index c4c99e0..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_BROS_A_3500.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_BROS_D_14000.jpg b/foto/foto_barang/GALERI_MUTIARA_BROS_D_14000.jpg
deleted file mode 100644
index 8b9d224..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_BROS_D_14000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_BROS_KAIN_B_6000.jpg b/foto/foto_barang/GALERI_MUTIARA_BROS_KAIN_B_6000.jpg
deleted file mode 100644
index d9016d9..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_BROS_KAIN_B_6000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_GELANG_MANIK_4000.jpg b/foto/foto_barang/GALERI_MUTIARA_GELANG_MANIK_4000.jpg
deleted file mode 100644
index 06bffb6..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_GELANG_MANIK_4000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_GK_KORABINER_5000.jpg b/foto/foto_barang/GALERI_MUTIARA_GK_KORABINER_5000.jpg
deleted file mode 100644
index 914f949..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_GK_KORABINER_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_JARUM_PENTOL_5000.jpg b/foto/foto_barang/GALERI_MUTIARA_JARUM_PENTOL_5000.jpg
deleted file mode 100644
index 6cc44f2..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_JARUM_PENTOL_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_JEPIT_CATOK_5000.jpg b/foto/foto_barang/GALERI_MUTIARA_JEPIT_CATOK_5000.jpg
deleted file mode 100644
index ee4774d..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_JEPIT_CATOK_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_2000.jpg b/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_2000.jpg
deleted file mode 100644
index 8d91fd2..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_2000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_3000.jpg b/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_3000.jpg
deleted file mode 100644
index e55bc5c..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_JEPIT_SLIP_3000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_B_4000.jpg b/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_B_4000.jpg
deleted file mode 100644
index 69ca587..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_B_4000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_C_5000.jpg b/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_C_5000.jpg
deleted file mode 100644
index fc2cbee..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_C_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_E_8000.jpg b/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_E_8000.jpg
deleted file mode 100644
index 6e3b515..0000000
Binary files a/foto/foto_barang/GALERI_MUTIARA_TALI_RAMBUT_E_8000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GALRI_MUTIARA_BROS_A_6000.jpg b/foto/foto_barang/GALRI_MUTIARA_BROS_A_6000.jpg
deleted file mode 100644
index 0e13ead..0000000
Binary files a/foto/foto_barang/GALRI_MUTIARA_BROS_A_6000.jpg and /dev/null differ
diff --git a/foto/foto_barang/GARANTEA_RS_APEL_350ML.jpg b/foto/foto_barang/GARANTEA_RS_APEL_350ML.jpg
deleted file mode 100644
index 5e2679f..0000000
Binary files a/foto/foto_barang/GARANTEA_RS_APEL_350ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/GELAS_CUP_HOK_14.png b/foto/foto_barang/GELAS_CUP_HOK_14.png
deleted file mode 100644
index 24c4eb9..0000000
Binary files a/foto/foto_barang/GELAS_CUP_HOK_14.png and /dev/null differ
diff --git a/foto/foto_barang/GEO_KRETEK_12.jpg b/foto/foto_barang/GEO_KRETEK_12.jpg
deleted file mode 100644
index 9c9e4b5..0000000
Binary files a/foto/foto_barang/GEO_KRETEK_12.jpg and /dev/null differ
diff --git a/foto/foto_barang/GG_Mild_Shiver_Menthol_16s.jpg b/foto/foto_barang/GG_Mild_Shiver_Menthol_16s.jpg
deleted file mode 100644
index 430dfa3..0000000
Binary files a/foto/foto_barang/GG_Mild_Shiver_Menthol_16s.jpg and /dev/null differ
diff --git a/foto/foto_barang/GINGERBON_CANDY_20G.jpg b/foto/foto_barang/GINGERBON_CANDY_20G.jpg
deleted file mode 100644
index f1163df..0000000
Binary files a/foto/foto_barang/GINGERBON_CANDY_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/GIV_BW_UNGU_65ML.png b/foto/foto_barang/GIV_BW_UNGU_65ML.png
deleted file mode 100644
index fc7f4e4..0000000
Binary files a/foto/foto_barang/GIV_BW_UNGU_65ML.png and /dev/null differ
diff --git a/foto/foto_barang/GIV_PEARL_KOTAK_80G.jpg b/foto/foto_barang/GIV_PEARL_KOTAK_80G.jpg
deleted file mode 100644
index c08e38b..0000000
Binary files a/foto/foto_barang/GIV_PEARL_KOTAK_80G.jpg and /dev/null differ
diff --git a/foto/foto_barang/GIV_SOAP_WATER_LILICHAMOMILE.jpg b/foto/foto_barang/GIV_SOAP_WATER_LILICHAMOMILE.jpg
deleted file mode 100644
index 71f376d..0000000
Binary files a/foto/foto_barang/GIV_SOAP_WATER_LILICHAMOMILE.jpg and /dev/null differ
diff --git a/foto/foto_barang/GIV_SPARKLING_F_80G.jpg b/foto/foto_barang/GIV_SPARKLING_F_80G.jpg
deleted file mode 100644
index d7dce1e..0000000
Binary files a/foto/foto_barang/GIV_SPARKLING_F_80G.jpg and /dev/null differ
diff --git a/foto/foto_barang/GOODDAY_BOTOL_FUNTASTIC_MOCACINNO.png b/foto/foto_barang/GOODDAY_BOTOL_FUNTASTIC_MOCACINNO.png
deleted file mode 100644
index 4624e92..0000000
Binary files a/foto/foto_barang/GOODDAY_BOTOL_FUNTASTIC_MOCACINNO.png and /dev/null differ
diff --git a/foto/foto_barang/GOODNES_FULL_CREAM_UHT_180ML.jpg b/foto/foto_barang/GOODNES_FULL_CREAM_UHT_180ML.jpg
deleted file mode 100644
index c70c05b..0000000
Binary files a/foto/foto_barang/GOODNES_FULL_CREAM_UHT_180ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/GOODNES_KURMA_UHT_180ML.png b/foto/foto_barang/GOODNES_KURMA_UHT_180ML.png
deleted file mode 100644
index 6f36cac..0000000
Binary files a/foto/foto_barang/GOODNES_KURMA_UHT_180ML.png and /dev/null differ
diff --git a/foto/foto_barang/GOOD_DAY_ORIGINAL_20G.jpg b/foto/foto_barang/GOOD_DAY_ORIGINAL_20G.jpg
deleted file mode 100644
index f1bced8..0000000
Binary files a/foto/foto_barang/GOOD_DAY_ORIGINAL_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/GOOD_DAY_UHT_CARAMEL_MACHIATO.jpg b/foto/foto_barang/GOOD_DAY_UHT_CARAMEL_MACHIATO.jpg
deleted file mode 100644
index f4fd5f8..0000000
Binary files a/foto/foto_barang/GOOD_DAY_UHT_CARAMEL_MACHIATO.jpg and /dev/null differ
diff --git a/foto/foto_barang/GPU_MINYAK_URUT_LAWANG.png b/foto/foto_barang/GPU_MINYAK_URUT_LAWANG.png
deleted file mode 100644
index f86acf8..0000000
Binary files a/foto/foto_barang/GPU_MINYAK_URUT_LAWANG.png and /dev/null differ
diff --git a/foto/foto_barang/GREENFIELDS_STRAWBERRY.png b/foto/foto_barang/GREENFIELDS_STRAWBERRY.png
deleted file mode 100644
index dcd0de7..0000000
Binary files a/foto/foto_barang/GREENFIELDS_STRAWBERRY.png and /dev/null differ
diff --git a/foto/foto_barang/Green_Fields_Choco_Malt_Milk.jpg b/foto/foto_barang/Green_Fields_Choco_Malt_Milk.jpg
deleted file mode 100644
index 22a18a6..0000000
Binary files a/foto/foto_barang/Green_Fields_Choco_Malt_Milk.jpg and /dev/null differ
diff --git a/foto/foto_barang/Green_Fields_Choco_Malt_Milk1.jpg b/foto/foto_barang/Green_Fields_Choco_Malt_Milk1.jpg
deleted file mode 100644
index 8871490..0000000
Binary files a/foto/foto_barang/Green_Fields_Choco_Malt_Milk1.jpg and /dev/null differ
diff --git a/foto/foto_barang/HAND_BODY_HIJAB_FRESH_SACHET.jpg b/foto/foto_barang/HAND_BODY_HIJAB_FRESH_SACHET.jpg
deleted file mode 100644
index 10ba260..0000000
Binary files a/foto/foto_barang/HAND_BODY_HIJAB_FRESH_SACHET.jpg and /dev/null differ
diff --git a/foto/foto_barang/HELLO_KRIPIK_TEMPE.jpg b/foto/foto_barang/HELLO_KRIPIK_TEMPE.jpg
deleted file mode 100644
index ba25d47..0000000
Binary files a/foto/foto_barang/HELLO_KRIPIK_TEMPE.jpg and /dev/null differ
diff --git a/foto/foto_barang/HELLO_KRIPIK_TEMPE1.jpg b/foto/foto_barang/HELLO_KRIPIK_TEMPE1.jpg
deleted file mode 100644
index ba25d47..0000000
Binary files a/foto/foto_barang/HELLO_KRIPIK_TEMPE1.jpg and /dev/null differ
diff --git a/foto/foto_barang/HELLO_MARIE_WIJEN.jpg b/foto/foto_barang/HELLO_MARIE_WIJEN.jpg
deleted file mode 100644
index 616f6e4..0000000
Binary files a/foto/foto_barang/HELLO_MARIE_WIJEN.jpg and /dev/null differ
diff --git a/foto/foto_barang/HERS_PROTEX_SOFTCAREMAXI.jpg b/foto/foto_barang/HERS_PROTEX_SOFTCAREMAXI.jpg
deleted file mode 100644
index 2233ba9..0000000
Binary files a/foto/foto_barang/HERS_PROTEX_SOFTCAREMAXI.jpg and /dev/null differ
diff --git a/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS.jpg b/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS.jpg
deleted file mode 100644
index 79f8f52..0000000
Binary files a/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS.jpg and /dev/null differ
diff --git a/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS1.jpg b/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS1.jpg
deleted file mode 100644
index 79f8f52..0000000
Binary files a/foto/foto_barang/HERS_PROTEX_SOFTCAREWINGS1.jpg and /dev/null differ
diff --git a/foto/foto_barang/HI_C_1000_ORANGE_140ML.png b/foto/foto_barang/HI_C_1000_ORANGE_140ML.png
deleted file mode 100644
index 48e6f38..0000000
Binary files a/foto/foto_barang/HI_C_1000_ORANGE_140ML.png and /dev/null differ
diff --git a/foto/foto_barang/Hotplate_sosis.jpg b/foto/foto_barang/Hotplate_sosis.jpg
deleted file mode 100644
index eb9745e..0000000
Binary files a/foto/foto_barang/Hotplate_sosis.jpg and /dev/null differ
diff --git a/foto/foto_barang/IMG_20200503_183955.jpg b/foto/foto_barang/IMG_20200503_183955.jpg
deleted file mode 100644
index fef5ad3..0000000
Binary files a/foto/foto_barang/IMG_20200503_183955.jpg and /dev/null differ
diff --git a/foto/foto_barang/IMG_20210715_1233291.jpg b/foto/foto_barang/IMG_20210715_1233291.jpg
deleted file mode 100644
index 1a13dd9..0000000
Binary files a/foto/foto_barang/IMG_20210715_1233291.jpg and /dev/null differ
diff --git a/foto/foto_barang/INDOMIE_SOTO_MIE.png b/foto/foto_barang/INDOMIE_SOTO_MIE.png
deleted file mode 100644
index 9b7200b..0000000
Binary files a/foto/foto_barang/INDOMIE_SOTO_MIE.png and /dev/null differ
diff --git a/foto/foto_barang/INDOMILK_SWISS_CHOCO_POUCH_545G.jpg b/foto/foto_barang/INDOMILK_SWISS_CHOCO_POUCH_545G.jpg
deleted file mode 100644
index 29b8a74..0000000
Binary files a/foto/foto_barang/INDOMILK_SWISS_CHOCO_POUCH_545G.jpg and /dev/null differ
diff --git a/foto/foto_barang/INDOMILK_UHT_CHOCOLATE.jpg b/foto/foto_barang/INDOMILK_UHT_CHOCOLATE.jpg
deleted file mode 100644
index 3bd4c8f..0000000
Binary files a/foto/foto_barang/INDOMILK_UHT_CHOCOLATE.jpg and /dev/null differ
diff --git a/foto/foto_barang/IYES_ROLL_N_ROLL_MILK_CHOCOLATE.jpg b/foto/foto_barang/IYES_ROLL_N_ROLL_MILK_CHOCOLATE.jpg
deleted file mode 100644
index d5cb610..0000000
Binary files a/foto/foto_barang/IYES_ROLL_N_ROLL_MILK_CHOCOLATE.jpg and /dev/null differ
diff --git a/foto/foto_barang/JAM_DINDING_MIRADO_BULAT.jpg b/foto/foto_barang/JAM_DINDING_MIRADO_BULAT.jpg
deleted file mode 100644
index be794ee..0000000
Binary files a/foto/foto_barang/JAM_DINDING_MIRADO_BULAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/JAPOTA_HAPPY_HONEY_35G.png b/foto/foto_barang/JAPOTA_HAPPY_HONEY_35G.png
deleted file mode 100644
index 7329968..0000000
Binary files a/foto/foto_barang/JAPOTA_HAPPY_HONEY_35G.png and /dev/null differ
diff --git a/foto/foto_barang/JTI_(text_bawah).png b/foto/foto_barang/JTI_(text_bawah).png
deleted file mode 100644
index 3440eb2..0000000
Binary files a/foto/foto_barang/JTI_(text_bawah).png and /dev/null differ
diff --git a/foto/foto_barang/JUSME_RS_PANDAN_340ML.jpg b/foto/foto_barang/JUSME_RS_PANDAN_340ML.jpg
deleted file mode 100644
index 3fb53e4..0000000
Binary files a/foto/foto_barang/JUSME_RS_PANDAN_340ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/Jas_Jus_Jeruk_Peras.jpg b/foto/foto_barang/Jas_Jus_Jeruk_Peras.jpg
deleted file mode 100644
index a48231b..0000000
Binary files a/foto/foto_barang/Jas_Jus_Jeruk_Peras.jpg and /dev/null differ
diff --git a/foto/foto_barang/Jus_degan.jpg b/foto/foto_barang/Jus_degan.jpg
deleted file mode 100644
index 1fb811c..0000000
Binary files a/foto/foto_barang/Jus_degan.jpg and /dev/null differ
diff --git a/foto/foto_barang/K01.jpg b/foto/foto_barang/K01.jpg
deleted file mode 100644
index 1ff7b2e..0000000
Binary files a/foto/foto_barang/K01.jpg and /dev/null differ
diff --git a/foto/foto_barang/K2091.jpg b/foto/foto_barang/K2091.jpg
deleted file mode 100644
index e1f7a77..0000000
Binary files a/foto/foto_barang/K2091.jpg and /dev/null differ
diff --git a/foto/foto_barang/K327196.jpg b/foto/foto_barang/K327196.jpg
deleted file mode 100644
index 912fd26..0000000
Binary files a/foto/foto_barang/K327196.jpg and /dev/null differ
diff --git a/foto/foto_barang/K4136.jpg b/foto/foto_barang/K4136.jpg
deleted file mode 100644
index 696ae7f..0000000
Binary files a/foto/foto_barang/K4136.jpg and /dev/null differ
diff --git a/foto/foto_barang/KAOS_KAKI_KANIK_INF,MOTIF_BUNGA.jpg b/foto/foto_barang/KAOS_KAKI_KANIK_INF,MOTIF_BUNGA.jpg
deleted file mode 100644
index 3c3c55c..0000000
Binary files a/foto/foto_barang/KAOS_KAKI_KANIK_INF,MOTIF_BUNGA.jpg and /dev/null differ
diff --git a/foto/foto_barang/KAPAL_API_LAMPUNG_185G.jpg b/foto/foto_barang/KAPAL_API_LAMPUNG_185G.jpg
deleted file mode 100644
index 59d42a3..0000000
Binary files a/foto/foto_barang/KAPAL_API_LAMPUNG_185G.jpg and /dev/null differ
diff --git a/foto/foto_barang/KAPAS.jpg b/foto/foto_barang/KAPAS.jpg
deleted file mode 100644
index b935f16..0000000
Binary files a/foto/foto_barang/KAPAS.jpg and /dev/null differ
diff --git a/foto/foto_barang/KAPAS_SELECTION_75G.jpg b/foto/foto_barang/KAPAS_SELECTION_75G.jpg
deleted file mode 100644
index 158e631..0000000
Binary files a/foto/foto_barang/KAPAS_SELECTION_75G.jpg and /dev/null differ
diff --git a/foto/foto_barang/KEJU_CAKE_16G.jpg b/foto/foto_barang/KEJU_CAKE_16G.jpg
deleted file mode 100644
index 50671bf..0000000
Binary files a/foto/foto_barang/KEJU_CAKE_16G.jpg and /dev/null differ
diff --git a/foto/foto_barang/KERTAS_KADO_MOTIF.jpg b/foto/foto_barang/KERTAS_KADO_MOTIF.jpg
deleted file mode 100644
index bd1a593..0000000
Binary files a/foto/foto_barang/KERTAS_KADO_MOTIF.jpg and /dev/null differ
diff --git a/foto/foto_barang/KIWI-WAX-RICH-SHINE-PROTECT-NEUTRAL-75-ML.jpg b/foto/foto_barang/KIWI-WAX-RICH-SHINE-PROTECT-NEUTRAL-75-ML.jpg
deleted file mode 100644
index fa50c87..0000000
Binary files a/foto/foto_barang/KIWI-WAX-RICH-SHINE-PROTECT-NEUTRAL-75-ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/KIYOME_KINOKI_DETOX_FOOT_PADS.jpg b/foto/foto_barang/KIYOME_KINOKI_DETOX_FOOT_PADS.jpg
deleted file mode 100644
index b827e2d..0000000
Binary files a/foto/foto_barang/KIYOME_KINOKI_DETOX_FOOT_PADS.jpg and /dev/null differ
diff --git a/foto/foto_barang/KOPI_GOOD_DAY_VANILLA_LATTE.png b/foto/foto_barang/KOPI_GOOD_DAY_VANILLA_LATTE.png
deleted file mode 100644
index 02700e2..0000000
Binary files a/foto/foto_barang/KOPI_GOOD_DAY_VANILLA_LATTE.png and /dev/null differ
diff --git a/foto/foto_barang/KOPI_KAPAL_API_SILVER.jpg b/foto/foto_barang/KOPI_KAPAL_API_SILVER.jpg
deleted file mode 100644
index 8492cc0..0000000
Binary files a/foto/foto_barang/KOPI_KAPAL_API_SILVER.jpg and /dev/null differ
diff --git a/foto/foto_barang/KOPI_KAPAL_API_SPESIAL_MERAH.jpg b/foto/foto_barang/KOPI_KAPAL_API_SPESIAL_MERAH.jpg
deleted file mode 100644
index c9e0deb..0000000
Binary files a/foto/foto_barang/KOPI_KAPAL_API_SPESIAL_MERAH.jpg and /dev/null differ
diff --git a/foto/foto_barang/KOREK_TOKAI.jpg b/foto/foto_barang/KOREK_TOKAI.jpg
deleted file mode 100644
index 9324c1e..0000000
Binary files a/foto/foto_barang/KOREK_TOKAI.jpg and /dev/null differ
diff --git a/foto/foto_barang/KRESEK_40.png b/foto/foto_barang/KRESEK_40.png
deleted file mode 100644
index 2c86da8..0000000
Binary files a/foto/foto_barang/KRESEK_40.png and /dev/null differ
diff --git a/foto/foto_barang/Kapal_Api_Fresco.jpg b/foto/foto_barang/Kapal_Api_Fresco.jpg
deleted file mode 100644
index 3c21aca..0000000
Binary files a/foto/foto_barang/Kapal_Api_Fresco.jpg and /dev/null differ
diff --git a/foto/foto_barang/Kapal_Api_Fresco_Kopi_Gula.jpg b/foto/foto_barang/Kapal_Api_Fresco_Kopi_Gula.jpg
deleted file mode 100644
index 0bdcb45..0000000
Binary files a/foto/foto_barang/Kapal_Api_Fresco_Kopi_Gula.jpg and /dev/null differ
diff --git a/foto/foto_barang/Koko_Krunch_scht.jpg b/foto/foto_barang/Koko_Krunch_scht.jpg
deleted file mode 100644
index 0740be0..0000000
Binary files a/foto/foto_barang/Koko_Krunch_scht.jpg and /dev/null differ
diff --git a/foto/foto_barang/Kopi_Kapal_Api_6,5_g_bandet.jpg b/foto/foto_barang/Kopi_Kapal_Api_6,5_g_bandet.jpg
deleted file mode 100644
index 0362551..0000000
Binary files a/foto/foto_barang/Kopi_Kapal_Api_6,5_g_bandet.jpg and /dev/null differ
diff --git a/foto/foto_barang/L.jpg b/foto/foto_barang/L.jpg
deleted file mode 100644
index 73ab2d2..0000000
Binary files a/foto/foto_barang/L.jpg and /dev/null differ
diff --git a/foto/foto_barang/LGMINYAK_TELON_LANG_PLUS_TA_30ML.jpg b/foto/foto_barang/LGMINYAK_TELON_LANG_PLUS_TA_30ML.jpg
deleted file mode 100644
index 493d186..0000000
Binary files a/foto/foto_barang/LGMINYAK_TELON_LANG_PLUS_TA_30ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIEDA_K_ASAM,KUNYIT,TEMULAWAK.jpg b/foto/foto_barang/LIEDA_K_ASAM,KUNYIT,TEMULAWAK.jpg
deleted file mode 100644
index fecd147..0000000
Binary files a/foto/foto_barang/LIEDA_K_ASAM,KUNYIT,TEMULAWAK.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIFEBOUY_BW_TOTAL10_REF_90ML.jpg b/foto/foto_barang/LIFEBOUY_BW_TOTAL10_REF_90ML.jpg
deleted file mode 100644
index 6d84b8b..0000000
Binary files a/foto/foto_barang/LIFEBOUY_BW_TOTAL10_REF_90ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIFEBOUY_MATCHA_SOAP.jpg b/foto/foto_barang/LIFEBOUY_MATCHA_SOAP.jpg
deleted file mode 100644
index 23f5702..0000000
Binary files a/foto/foto_barang/LIFEBOUY_MATCHA_SOAP.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIFEBOUY_SOAP_COOL_FRESH_80GR.jpg b/foto/foto_barang/LIFEBOUY_SOAP_COOL_FRESH_80GR.jpg
deleted file mode 100644
index 36d0a7d..0000000
Binary files a/foto/foto_barang/LIFEBOUY_SOAP_COOL_FRESH_80GR.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIFEBUOY_LEMON_FRESH_REFF.jpg b/foto/foto_barang/LIFEBUOY_LEMON_FRESH_REFF.jpg
deleted file mode 100644
index ebc95c2..0000000
Binary files a/foto/foto_barang/LIFEBUOY_LEMON_FRESH_REFF.jpg and /dev/null differ
diff --git a/foto/foto_barang/LIFEBUOY_SOAP_LEMON_FRESH_80G.jpg b/foto/foto_barang/LIFEBUOY_SOAP_LEMON_FRESH_80G.jpg
deleted file mode 100644
index 74cfd1a..0000000
Binary files a/foto/foto_barang/LIFEBUOY_SOAP_LEMON_FRESH_80G.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_AQUA_SPARKLE_SOAP_85G.jpg b/foto/foto_barang/LUX_AQUA_SPARKLE_SOAP_85G.jpg
deleted file mode 100644
index e4167f7..0000000
Binary files a/foto/foto_barang/LUX_AQUA_SPARKLE_SOAP_85G.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_BW_MAGICAL_ORCHID_REFF.jpg b/foto/foto_barang/LUX_BW_MAGICAL_ORCHID_REFF.jpg
deleted file mode 100644
index 7153fc6..0000000
Binary files a/foto/foto_barang/LUX_BW_MAGICAL_ORCHID_REFF.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_BW_SOFT_ROSE_REFF.jpg b/foto/foto_barang/LUX_BW_SOFT_ROSE_REFF.jpg
deleted file mode 100644
index 5cd276e..0000000
Binary files a/foto/foto_barang/LUX_BW_SOFT_ROSE_REFF.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_LILY_FRESH.jpg b/foto/foto_barang/LUX_LILY_FRESH.jpg
deleted file mode 100644
index 0d4a318..0000000
Binary files a/foto/foto_barang/LUX_LILY_FRESH.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_SOFT_ROSE_TOUCH_SOAP_85G.jpg b/foto/foto_barang/LUX_SOFT_ROSE_TOUCH_SOAP_85G.jpg
deleted file mode 100644
index 258b449..0000000
Binary files a/foto/foto_barang/LUX_SOFT_ROSE_TOUCH_SOAP_85G.jpg and /dev/null differ
diff --git a/foto/foto_barang/LUX_VELVET_JASMINE_SOAP.jpg b/foto/foto_barang/LUX_VELVET_JASMINE_SOAP.jpg
deleted file mode 100644
index ee01e9e..0000000
Binary files a/foto/foto_barang/LUX_VELVET_JASMINE_SOAP.jpg and /dev/null differ
diff --git a/foto/foto_barang/MADU_GOSYEN_COKLAT.jpg b/foto/foto_barang/MADU_GOSYEN_COKLAT.jpg
deleted file mode 100644
index 1c15e3e..0000000
Binary files a/foto/foto_barang/MADU_GOSYEN_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/MADU_GOSYEN_HITAM_250ML.jpg b/foto/foto_barang/MADU_GOSYEN_HITAM_250ML.jpg
deleted file mode 100644
index 03831c3..0000000
Binary files a/foto/foto_barang/MADU_GOSYEN_HITAM_250ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MADU_WB_MULTIFLORA_200G.jpg b/foto/foto_barang/MADU_WB_MULTIFLORA_200G.jpg
deleted file mode 100644
index d10d276..0000000
Binary files a/foto/foto_barang/MADU_WB_MULTIFLORA_200G.jpg and /dev/null differ
diff --git a/foto/foto_barang/MAMA_LEMON_FRESH_LEMON.jpg b/foto/foto_barang/MAMA_LEMON_FRESH_LEMON.jpg
deleted file mode 100644
index 902220c..0000000
Binary files a/foto/foto_barang/MAMA_LEMON_FRESH_LEMON.jpg and /dev/null differ
diff --git a/foto/foto_barang/MASKER_KN94_ANAK.jpeg b/foto/foto_barang/MASKER_KN94_ANAK.jpeg
deleted file mode 100644
index 90dbe9b..0000000
Binary files a/foto/foto_barang/MASKER_KN94_ANAK.jpeg and /dev/null differ
diff --git a/foto/foto_barang/MIE_EKO_ISI_2.jpg b/foto/foto_barang/MIE_EKO_ISI_2.jpg
deleted file mode 100644
index cd2565a..0000000
Binary files a/foto/foto_barang/MIE_EKO_ISI_2.jpg and /dev/null differ
diff --git a/foto/foto_barang/MIE_SEDAAP_CUP_KARI_SPSL_81g.jpeg b/foto/foto_barang/MIE_SEDAAP_CUP_KARI_SPSL_81g.jpeg
deleted file mode 100644
index 27626a7..0000000
Binary files a/foto/foto_barang/MIE_SEDAAP_CUP_KARI_SPSL_81g.jpeg and /dev/null differ
diff --git a/foto/foto_barang/MIE_SEDAM_SELERO_PADANG.jpg b/foto/foto_barang/MIE_SEDAM_SELERO_PADANG.jpg
deleted file mode 100644
index 934b84a..0000000
Binary files a/foto/foto_barang/MIE_SEDAM_SELERO_PADANG.jpg and /dev/null differ
diff --git a/foto/foto_barang/MIE_SEDAP_AYAM_BAKAR_LIMAU_89G.jpg b/foto/foto_barang/MIE_SEDAP_AYAM_BAKAR_LIMAU_89G.jpg
deleted file mode 100644
index 95e5ae6..0000000
Binary files a/foto/foto_barang/MIE_SEDAP_AYAM_BAKAR_LIMAU_89G.jpg and /dev/null differ
diff --git a/foto/foto_barang/MIE_SEDAP_SELECTION_KOREAN_SPICY_SOUP.jpg b/foto/foto_barang/MIE_SEDAP_SELECTION_KOREAN_SPICY_SOUP.jpg
deleted file mode 100644
index e5ac735..0000000
Binary files a/foto/foto_barang/MIE_SEDAP_SELECTION_KOREAN_SPICY_SOUP.jpg and /dev/null differ
diff --git a/foto/foto_barang/MILO_ACTIVE_GO_SACHET.png b/foto/foto_barang/MILO_ACTIVE_GO_SACHET.png
deleted file mode 100644
index d54b595..0000000
Binary files a/foto/foto_barang/MILO_ACTIVE_GO_SACHET.png and /dev/null differ
diff --git a/foto/foto_barang/MINYAK_FORTUNE_1L_BANTAL.jpg b/foto/foto_barang/MINYAK_FORTUNE_1L_BANTAL.jpg
deleted file mode 100644
index e3f2272..0000000
Binary files a/foto/foto_barang/MINYAK_FORTUNE_1L_BANTAL.jpg and /dev/null differ
diff --git a/foto/foto_barang/MINYAK_GORENG_FORTUNE_2L.jpg b/foto/foto_barang/MINYAK_GORENG_FORTUNE_2L.jpg
deleted file mode 100644
index 47f9969..0000000
Binary files a/foto/foto_barang/MINYAK_GORENG_FORTUNE_2L.jpg and /dev/null differ
diff --git a/foto/foto_barang/MINYAK_GORENG_SUNCO_2L_REF.jpg b/foto/foto_barang/MINYAK_GORENG_SUNCO_2L_REF.jpg
deleted file mode 100644
index e8e1a17..0000000
Binary files a/foto/foto_barang/MINYAK_GORENG_SUNCO_2L_REF.jpg and /dev/null differ
diff --git a/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_120ML.jpg b/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_120ML.jpg
deleted file mode 100644
index 3646175..0000000
Binary files a/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_120ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_60ML.jpg b/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_60ML.jpg
deleted file mode 100644
index 862ef57..0000000
Binary files a/foto/foto_barang/MINYAK_KAYU_PUTIH_CAPLANG_60ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MI_TELUR_CAP_3AYAM_200G.jpg b/foto/foto_barang/MI_TELUR_CAP_3AYAM_200G.jpg
deleted file mode 100644
index 99fb2a0..0000000
Binary files a/foto/foto_barang/MI_TELUR_CAP_3AYAM_200G.jpg and /dev/null differ
diff --git a/foto/foto_barang/MOLTO_300ML.jpg b/foto/foto_barang/MOLTO_300ML.jpg
deleted file mode 100644
index b86fbd5..0000000
Binary files a/foto/foto_barang/MOLTO_300ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MOLTO_ALL_IN_1_PINK_300ML.jpg b/foto/foto_barang/MOLTO_ALL_IN_1_PINK_300ML.jpg
deleted file mode 100644
index c7c2a59..0000000
Binary files a/foto/foto_barang/MOLTO_ALL_IN_1_PINK_300ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MOLTO_PEWANGI_PINK_280ML.jpg b/foto/foto_barang/MOLTO_PEWANGI_PINK_280ML.jpg
deleted file mode 100644
index 930f026..0000000
Binary files a/foto/foto_barang/MOLTO_PEWANGI_PINK_280ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/MOLTO_TRIKA_FLORAL_BLISS.jpg b/foto/foto_barang/MOLTO_TRIKA_FLORAL_BLISS.jpg
deleted file mode 100644
index 54003a5..0000000
Binary files a/foto/foto_barang/MOLTO_TRIKA_FLORAL_BLISS.jpg and /dev/null differ
diff --git a/foto/foto_barang/MR_POTATO_WAAVY_SSHERBS.jpg b/foto/foto_barang/MR_POTATO_WAAVY_SSHERBS.jpg
deleted file mode 100644
index 8ace6f4..0000000
Binary files a/foto/foto_barang/MR_POTATO_WAAVY_SSHERBS.jpg and /dev/null differ
diff --git a/foto/foto_barang/M_TELON_LANG_15ML.jpg b/foto/foto_barang/M_TELON_LANG_15ML.jpg
deleted file mode 100644
index dbb7285..0000000
Binary files a/foto/foto_barang/M_TELON_LANG_15ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/Madu_Hitam___Gosyen_Land_650ml.jpg b/foto/foto_barang/Madu_Hitam___Gosyen_Land_650ml.jpg
deleted file mode 100644
index d6fc654..0000000
Binary files a/foto/foto_barang/Madu_Hitam___Gosyen_Land_650ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Mama_Lemon_Ekstra_Clean_Jeruk_Nipis_120_ml.jpg b/foto/foto_barang/Mama_Lemon_Ekstra_Clean_Jeruk_Nipis_120_ml.jpg
deleted file mode 100644
index 9700d72..0000000
Binary files a/foto/foto_barang/Mama_Lemon_Ekstra_Clean_Jeruk_Nipis_120_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Map_kertas.jpg b/foto/foto_barang/Map_kertas.jpg
deleted file mode 100644
index 3e56c4e..0000000
Binary files a/foto/foto_barang/Map_kertas.jpg and /dev/null differ
diff --git a/foto/foto_barang/Masterbis-Gabin-Master-120g.png b/foto/foto_barang/Masterbis-Gabin-Master-120g.png
deleted file mode 100644
index bc711fc..0000000
Binary files a/foto/foto_barang/Masterbis-Gabin-Master-120g.png and /dev/null differ
diff --git a/foto/foto_barang/Masterbis-Gabin-Master-120g_2.png b/foto/foto_barang/Masterbis-Gabin-Master-120g_2.png
deleted file mode 100644
index bc711fc..0000000
Binary files a/foto/foto_barang/Masterbis-Gabin-Master-120g_2.png and /dev/null differ
diff --git a/foto/foto_barang/Mie_Instan_Rasa_Kaldu_Ayam.jpg b/foto/foto_barang/Mie_Instan_Rasa_Kaldu_Ayam.jpg
deleted file mode 100644
index 432b487..0000000
Binary files a/foto/foto_barang/Mie_Instan_Rasa_Kaldu_Ayam.jpg and /dev/null differ
diff --git a/foto/foto_barang/NABATI_BITES_RICHOCO_168G.jpg b/foto/foto_barang/NABATI_BITES_RICHOCO_168G.jpg
deleted file mode 100644
index 2b6c248..0000000
Binary files a/foto/foto_barang/NABATI_BITES_RICHOCO_168G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NABATI_CHOCOLATE_WAFER.jpg b/foto/foto_barang/NABATI_CHOCOLATE_WAFER.jpg
deleted file mode 100644
index cb8b18d..0000000
Binary files a/foto/foto_barang/NABATI_CHOCOLATE_WAFER.jpg and /dev/null differ
diff --git a/foto/foto_barang/NABATI_RICHESE_WAFER.png b/foto/foto_barang/NABATI_RICHESE_WAFER.png
deleted file mode 100644
index 4673607..0000000
Binary files a/foto/foto_barang/NABATI_RICHESE_WAFER.png and /dev/null differ
diff --git a/foto/foto_barang/NABATI_SIIP_NET_BBQ_65G.jpg b/foto/foto_barang/NABATI_SIIP_NET_BBQ_65G.jpg
deleted file mode 100644
index 84865f7..0000000
Binary files a/foto/foto_barang/NABATI_SIIP_NET_BBQ_65G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NABATI_SIIP_NET_FRW_65G.jpg b/foto/foto_barang/NABATI_SIIP_NET_FRW_65G.jpg
deleted file mode 100644
index 23f391f..0000000
Binary files a/foto/foto_barang/NABATI_SIIP_NET_FRW_65G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NABATI_VITAKRIM_132G.jpg b/foto/foto_barang/NABATI_VITAKRIM_132G.jpg
deleted file mode 100644
index 02f096d..0000000
Binary files a/foto/foto_barang/NABATI_VITAKRIM_132G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NADA_ACCECORIES_7500.png b/foto/foto_barang/NADA_ACCECORIES_7500.png
deleted file mode 100644
index e197a76..0000000
Binary files a/foto/foto_barang/NADA_ACCECORIES_7500.png and /dev/null differ
diff --git a/foto/foto_barang/NADA_ACESORIES_12000.jpg b/foto/foto_barang/NADA_ACESORIES_12000.jpg
deleted file mode 100644
index 461be60..0000000
Binary files a/foto/foto_barang/NADA_ACESORIES_12000.jpg and /dev/null differ
diff --git a/foto/foto_barang/NADA_ACESORIES_1500.jpg b/foto/foto_barang/NADA_ACESORIES_1500.jpg
deleted file mode 100644
index 760a000..0000000
Binary files a/foto/foto_barang/NADA_ACESORIES_1500.jpg and /dev/null differ
diff --git a/foto/foto_barang/NEXTAR_BLUEBERRY_106G.jpg b/foto/foto_barang/NEXTAR_BLUEBERRY_106G.jpg
deleted file mode 100644
index db40913..0000000
Binary files a/foto/foto_barang/NEXTAR_BLUEBERRY_106G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NIVEA_BODY_LOTION_CHERRY_BLOSSOM.jpg b/foto/foto_barang/NIVEA_BODY_LOTION_CHERRY_BLOSSOM.jpg
deleted file mode 100644
index 346f555..0000000
Binary files a/foto/foto_barang/NIVEA_BODY_LOTION_CHERRY_BLOSSOM.jpg and /dev/null differ
diff --git a/foto/foto_barang/NUTRIBOOST_COFFE_FLAVOUR.jpg b/foto/foto_barang/NUTRIBOOST_COFFE_FLAVOUR.jpg
deleted file mode 100644
index 0e304eb..0000000
Binary files a/foto/foto_barang/NUTRIBOOST_COFFE_FLAVOUR.jpg and /dev/null differ
diff --git a/foto/foto_barang/NUVO.jpg b/foto/foto_barang/NUVO.jpg
deleted file mode 100644
index 8acef46..0000000
Binary files a/foto/foto_barang/NUVO.jpg and /dev/null differ
diff --git a/foto/foto_barang/NUVO_FAMILY_SOAP_SAKINAH_76G.jpg b/foto/foto_barang/NUVO_FAMILY_SOAP_SAKINAH_76G.jpg
deleted file mode 100644
index 6b08b18..0000000
Binary files a/foto/foto_barang/NUVO_FAMILY_SOAP_SAKINAH_76G.jpg and /dev/null differ
diff --git a/foto/foto_barang/NUVO_WET_ANTISEPTIC_10S.jpg b/foto/foto_barang/NUVO_WET_ANTISEPTIC_10S.jpg
deleted file mode 100644
index 087645c..0000000
Binary files a/foto/foto_barang/NUVO_WET_ANTISEPTIC_10S.jpg and /dev/null differ
diff --git a/foto/foto_barang/NUVO_WET_WIPES_ORIGINAL_50SHEETS.jpg b/foto/foto_barang/NUVO_WET_WIPES_ORIGINAL_50SHEETS.jpg
deleted file mode 100644
index 3395a05..0000000
Binary files a/foto/foto_barang/NUVO_WET_WIPES_ORIGINAL_50SHEETS.jpg and /dev/null differ
diff --git a/foto/foto_barang/Nasgor_cumi_telur.jpg b/foto/foto_barang/Nasgor_cumi_telur.jpg
deleted file mode 100644
index d277ef7..0000000
Binary files a/foto/foto_barang/Nasgor_cumi_telur.jpg and /dev/null differ
diff --git a/foto/foto_barang/Nasi_Sambal_Cumi.jpg b/foto/foto_barang/Nasi_Sambal_Cumi.jpg
deleted file mode 100644
index cdede1e..0000000
Binary files a/foto/foto_barang/Nasi_Sambal_Cumi.jpg and /dev/null differ
diff --git a/foto/foto_barang/Nextar_Brownies_CLASSIC.jpg b/foto/foto_barang/Nextar_Brownies_CLASSIC.jpg
deleted file mode 100644
index 6d317f3..0000000
Binary files a/foto/foto_barang/Nextar_Brownies_CLASSIC.jpg and /dev/null differ
diff --git a/foto/foto_barang/OREO_ISI_4_VANILA_38G.jpg b/foto/foto_barang/OREO_ISI_4_VANILA_38G.jpg
deleted file mode 100644
index 89efbbe..0000000
Binary files a/foto/foto_barang/OREO_ISI_4_VANILA_38G.jpg and /dev/null differ
diff --git a/foto/foto_barang/OREO_MINI_CHOCOLATE_20G.jpg b/foto/foto_barang/OREO_MINI_CHOCOLATE_20G.jpg
deleted file mode 100644
index a0acf5f..0000000
Binary files a/foto/foto_barang/OREO_MINI_CHOCOLATE_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/OREO_MINI_VANILA_20G.jpg b/foto/foto_barang/OREO_MINI_VANILA_20G.jpg
deleted file mode 100644
index ce28a48..0000000
Binary files a/foto/foto_barang/OREO_MINI_VANILA_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/OREO_SOFT_CAKE_RS_CHO_VANILA_16G.jpg b/foto/foto_barang/OREO_SOFT_CAKE_RS_CHO_VANILA_16G.jpg
deleted file mode 100644
index 9051eb4..0000000
Binary files a/foto/foto_barang/OREO_SOFT_CAKE_RS_CHO_VANILA_16G.jpg and /dev/null differ
diff --git a/foto/foto_barang/PEMBERSIH_LANTAI_EDEL_SAVOLINE_WANGI_CEMARA.jpg b/foto/foto_barang/PEMBERSIH_LANTAI_EDEL_SAVOLINE_WANGI_CEMARA.jpg
deleted file mode 100644
index bfc8ff0..0000000
Binary files a/foto/foto_barang/PEMBERSIH_LANTAI_EDEL_SAVOLINE_WANGI_CEMARA.jpg and /dev/null differ
diff --git a/foto/foto_barang/PEPSODENT_STRONG_12JAM_75+15G.jpg b/foto/foto_barang/PEPSODENT_STRONG_12JAM_75+15G.jpg
deleted file mode 100644
index 1d7db04..0000000
Binary files a/foto/foto_barang/PEPSODENT_STRONG_12JAM_75+15G.jpg and /dev/null differ
diff --git a/foto/foto_barang/PEWANGI_HIJAB_REFRESHING_GREEN_800.jpg b/foto/foto_barang/PEWANGI_HIJAB_REFRESHING_GREEN_800.jpg
deleted file mode 100644
index c950b8a..0000000
Binary files a/foto/foto_barang/PEWANGI_HIJAB_REFRESHING_GREEN_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/PG_FORMULA_STRONG_PROTECTION.jpg b/foto/foto_barang/PG_FORMULA_STRONG_PROTECTION.jpg
deleted file mode 100644
index d8953cd..0000000
Binary files a/foto/foto_barang/PG_FORMULA_STRONG_PROTECTION.jpg and /dev/null differ
diff --git a/foto/foto_barang/PIKOPI_MOCCACHINO_20G.jpg b/foto/foto_barang/PIKOPI_MOCCACHINO_20G.jpg
deleted file mode 100644
index f23a13e..0000000
Binary files a/foto/foto_barang/PIKOPI_MOCCACHINO_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/PIM-1575828516113-f089034e-2c5d-4cab-aa49-bb1658faf98a_v1-small.jpg b/foto/foto_barang/PIM-1575828516113-f089034e-2c5d-4cab-aa49-bb1658faf98a_v1-small.jpg
deleted file mode 100644
index 47f2f90..0000000
Binary files a/foto/foto_barang/PIM-1575828516113-f089034e-2c5d-4cab-aa49-bb1658faf98a_v1-small.jpg and /dev/null differ
diff --git a/foto/foto_barang/PIRING_KERAMIK_CKLAT_RTK.jpg b/foto/foto_barang/PIRING_KERAMIK_CKLAT_RTK.jpg
deleted file mode 100644
index 2f5256d..0000000
Binary files a/foto/foto_barang/PIRING_KERAMIK_CKLAT_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/PIRING_KERAMIK_PUTIH_RTK.jpg b/foto/foto_barang/PIRING_KERAMIK_PUTIH_RTK.jpg
deleted file mode 100644
index 6454e7d..0000000
Binary files a/foto/foto_barang/PIRING_KERAMIK_PUTIH_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/POLYTEX_SELULOSA_RTK.jpg b/foto/foto_barang/POLYTEX_SELULOSA_RTK.jpg
deleted file mode 100644
index d51a125..0000000
Binary files a/foto/foto_barang/POLYTEX_SELULOSA_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/POTABEESELECTION_MELTED_CHEESE.jpg b/foto/foto_barang/POTABEESELECTION_MELTED_CHEESE.jpg
deleted file mode 100644
index 6f36153..0000000
Binary files a/foto/foto_barang/POTABEESELECTION_MELTED_CHEESE.jpg and /dev/null differ
diff --git a/foto/foto_barang/POTABEE_CHIPS_WAGYU_BEEF_STEAK.jpg b/foto/foto_barang/POTABEE_CHIPS_WAGYU_BEEF_STEAK.jpg
deleted file mode 100644
index 53706a5..0000000
Binary files a/foto/foto_barang/POTABEE_CHIPS_WAGYU_BEEF_STEAK.jpg and /dev/null differ
diff --git a/foto/foto_barang/Paper-Cup-Gelas-Kertas-8-Oz-Polos-50Pcs_5Jw6ZdDUStnYsBFj_1631102705.jpg b/foto/foto_barang/Paper-Cup-Gelas-Kertas-8-Oz-Polos-50Pcs_5Jw6ZdDUStnYsBFj_1631102705.jpg
deleted file mode 100644
index 69eb3d7..0000000
Binary files a/foto/foto_barang/Paper-Cup-Gelas-Kertas-8-Oz-Polos-50Pcs_5Jw6ZdDUStnYsBFj_1631102705.jpg and /dev/null differ
diff --git a/foto/foto_barang/PhotoRoom-20210723_1537441.png b/foto/foto_barang/PhotoRoom-20210723_1537441.png
deleted file mode 100644
index ae37cdb..0000000
Binary files a/foto/foto_barang/PhotoRoom-20210723_1537441.png and /dev/null differ
diff --git a/foto/foto_barang/Picture1.jpg b/foto/foto_barang/Picture1.jpg
deleted file mode 100644
index 2305981..0000000
Binary files a/foto/foto_barang/Picture1.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture10.jpg b/foto/foto_barang/Picture10.jpg
deleted file mode 100644
index 955b77e..0000000
Binary files a/foto/foto_barang/Picture10.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture11.jpg b/foto/foto_barang/Picture11.jpg
deleted file mode 100644
index 0711d0e..0000000
Binary files a/foto/foto_barang/Picture11.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture12.jpg b/foto/foto_barang/Picture12.jpg
deleted file mode 100644
index b210a2b..0000000
Binary files a/foto/foto_barang/Picture12.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture13.jpg b/foto/foto_barang/Picture13.jpg
deleted file mode 100644
index 0a1007f..0000000
Binary files a/foto/foto_barang/Picture13.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture14.jpg b/foto/foto_barang/Picture14.jpg
deleted file mode 100644
index e0d6278..0000000
Binary files a/foto/foto_barang/Picture14.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture141.jpg b/foto/foto_barang/Picture141.jpg
deleted file mode 100644
index e0d6278..0000000
Binary files a/foto/foto_barang/Picture141.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture15.jpg b/foto/foto_barang/Picture15.jpg
deleted file mode 100644
index 85d4e9b..0000000
Binary files a/foto/foto_barang/Picture15.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture151.jpg b/foto/foto_barang/Picture151.jpg
deleted file mode 100644
index 85d4e9b..0000000
Binary files a/foto/foto_barang/Picture151.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture17.jpg b/foto/foto_barang/Picture17.jpg
deleted file mode 100644
index ed07d25..0000000
Binary files a/foto/foto_barang/Picture17.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture19.jpg b/foto/foto_barang/Picture19.jpg
deleted file mode 100644
index f9e71e4..0000000
Binary files a/foto/foto_barang/Picture19.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture20.jpg b/foto/foto_barang/Picture20.jpg
deleted file mode 100644
index fa1ba68..0000000
Binary files a/foto/foto_barang/Picture20.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture21.jpg b/foto/foto_barang/Picture21.jpg
deleted file mode 100644
index 64a8b29..0000000
Binary files a/foto/foto_barang/Picture21.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture22.jpg b/foto/foto_barang/Picture22.jpg
deleted file mode 100644
index 7c5cfc5..0000000
Binary files a/foto/foto_barang/Picture22.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture23.jpg b/foto/foto_barang/Picture23.jpg
deleted file mode 100644
index ad3417a..0000000
Binary files a/foto/foto_barang/Picture23.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture24.jpg b/foto/foto_barang/Picture24.jpg
deleted file mode 100644
index 85546e1..0000000
Binary files a/foto/foto_barang/Picture24.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture25.jpg b/foto/foto_barang/Picture25.jpg
deleted file mode 100644
index 0e566eb..0000000
Binary files a/foto/foto_barang/Picture25.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture26.jpg b/foto/foto_barang/Picture26.jpg
deleted file mode 100644
index f21f62b..0000000
Binary files a/foto/foto_barang/Picture26.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture27.jpg b/foto/foto_barang/Picture27.jpg
deleted file mode 100644
index f4dc5c4..0000000
Binary files a/foto/foto_barang/Picture27.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture28.jpg b/foto/foto_barang/Picture28.jpg
deleted file mode 100644
index 0411a8e..0000000
Binary files a/foto/foto_barang/Picture28.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture29.jpg b/foto/foto_barang/Picture29.jpg
deleted file mode 100644
index 83eece1..0000000
Binary files a/foto/foto_barang/Picture29.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture30.jpg b/foto/foto_barang/Picture30.jpg
deleted file mode 100644
index 9592cee..0000000
Binary files a/foto/foto_barang/Picture30.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture31.jpg b/foto/foto_barang/Picture31.jpg
deleted file mode 100644
index 5c6aa4e..0000000
Binary files a/foto/foto_barang/Picture31.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture32.jpg b/foto/foto_barang/Picture32.jpg
deleted file mode 100644
index f4ac217..0000000
Binary files a/foto/foto_barang/Picture32.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture33.jpg b/foto/foto_barang/Picture33.jpg
deleted file mode 100644
index 81e4f6b..0000000
Binary files a/foto/foto_barang/Picture33.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture34.jpg b/foto/foto_barang/Picture34.jpg
deleted file mode 100644
index 392b01c..0000000
Binary files a/foto/foto_barang/Picture34.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture35.jpg b/foto/foto_barang/Picture35.jpg
deleted file mode 100644
index 7be6f6e..0000000
Binary files a/foto/foto_barang/Picture35.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture36.jpg b/foto/foto_barang/Picture36.jpg
deleted file mode 100644
index 6f22741..0000000
Binary files a/foto/foto_barang/Picture36.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture37.jpg b/foto/foto_barang/Picture37.jpg
deleted file mode 100644
index a4d6d07..0000000
Binary files a/foto/foto_barang/Picture37.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture38.jpg b/foto/foto_barang/Picture38.jpg
deleted file mode 100644
index 189ff32..0000000
Binary files a/foto/foto_barang/Picture38.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture39.jpg b/foto/foto_barang/Picture39.jpg
deleted file mode 100644
index 872a3e1..0000000
Binary files a/foto/foto_barang/Picture39.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture4.png b/foto/foto_barang/Picture4.png
deleted file mode 100644
index 702697f..0000000
Binary files a/foto/foto_barang/Picture4.png and /dev/null differ
diff --git a/foto/foto_barang/Picture40.jpg b/foto/foto_barang/Picture40.jpg
deleted file mode 100644
index 71912ba..0000000
Binary files a/foto/foto_barang/Picture40.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture41.jpg b/foto/foto_barang/Picture41.jpg
deleted file mode 100644
index e6ae05e..0000000
Binary files a/foto/foto_barang/Picture41.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture42.jpg b/foto/foto_barang/Picture42.jpg
deleted file mode 100644
index 208684e..0000000
Binary files a/foto/foto_barang/Picture42.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture43.jpg b/foto/foto_barang/Picture43.jpg
deleted file mode 100644
index 036f307..0000000
Binary files a/foto/foto_barang/Picture43.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture44.jpg b/foto/foto_barang/Picture44.jpg
deleted file mode 100644
index eef522b..0000000
Binary files a/foto/foto_barang/Picture44.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture45.jpg b/foto/foto_barang/Picture45.jpg
deleted file mode 100644
index 6de2e6b..0000000
Binary files a/foto/foto_barang/Picture45.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture46.jpg b/foto/foto_barang/Picture46.jpg
deleted file mode 100644
index f2e7023..0000000
Binary files a/foto/foto_barang/Picture46.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture47.jpg b/foto/foto_barang/Picture47.jpg
deleted file mode 100644
index 3e1ff2b..0000000
Binary files a/foto/foto_barang/Picture47.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture48.jpg b/foto/foto_barang/Picture48.jpg
deleted file mode 100644
index f3e4e69..0000000
Binary files a/foto/foto_barang/Picture48.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture49.jpg b/foto/foto_barang/Picture49.jpg
deleted file mode 100644
index bd578e2..0000000
Binary files a/foto/foto_barang/Picture49.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture50.jpg b/foto/foto_barang/Picture50.jpg
deleted file mode 100644
index 8381c74..0000000
Binary files a/foto/foto_barang/Picture50.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture8.jpg b/foto/foto_barang/Picture8.jpg
deleted file mode 100644
index 99c991d..0000000
Binary files a/foto/foto_barang/Picture8.jpg and /dev/null differ
diff --git a/foto/foto_barang/Picture9.png b/foto/foto_barang/Picture9.png
deleted file mode 100644
index d5d5e58..0000000
Binary files a/foto/foto_barang/Picture9.png and /dev/null differ
diff --git a/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___94.jpg b/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___94.jpg
deleted file mode 100644
index a508331..0000000
Binary files a/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___94.jpg and /dev/null differ
diff --git a/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___941.jpg b/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___941.jpg
deleted file mode 100644
index a508331..0000000
Binary files a/foto/foto_barang/Purbasari_Matte_Lipstick___5_Warna_Baru____91___92___93___941.jpg and /dev/null differ
diff --git a/foto/foto_barang/RAK_AQUA_BULAT_12_BISTRO_RTK.jpg b/foto/foto_barang/RAK_AQUA_BULAT_12_BISTRO_RTK.jpg
deleted file mode 100644
index 13fb262..0000000
Binary files a/foto/foto_barang/RAK_AQUA_BULAT_12_BISTRO_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/RAK_HANDUK_HITAM_SUBR_RTK.jpg b/foto/foto_barang/RAK_HANDUK_HITAM_SUBR_RTK.jpg
deleted file mode 100644
index 6d76c78..0000000
Binary files a/foto/foto_barang/RAK_HANDUK_HITAM_SUBR_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/RAK_PIRING_WL_264_MAHKOTA_RTK.jpg b/foto/foto_barang/RAK_PIRING_WL_264_MAHKOTA_RTK.jpg
deleted file mode 100644
index ac96182..0000000
Binary files a/foto/foto_barang/RAK_PIRING_WL_264_MAHKOTA_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/RAPIKA_BIANG_GOLD_POUCH_250ML.jpg b/foto/foto_barang/RAPIKA_BIANG_GOLD_POUCH_250ML.jpg
deleted file mode 100644
index 81b1a80..0000000
Binary files a/foto/foto_barang/RAPIKA_BIANG_GOLD_POUCH_250ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/RAPIKA_PINK_REF_400ML.jpg b/foto/foto_barang/RAPIKA_PINK_REF_400ML.jpg
deleted file mode 100644
index 79bf350..0000000
Binary files a/foto/foto_barang/RAPIKA_PINK_REF_400ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/RINSO_ANTI_NOD_MOLTO_ROSE_FRESH.jpg b/foto/foto_barang/RINSO_ANTI_NOD_MOLTO_ROSE_FRESH.jpg
deleted file mode 100644
index d978216..0000000
Binary files a/foto/foto_barang/RINSO_ANTI_NOD_MOLTO_ROSE_FRESH.jpg and /dev/null differ
diff --git a/foto/foto_barang/RINSO_MOLTO_ROSE_FRESH_195G.jpg b/foto/foto_barang/RINSO_MOLTO_ROSE_FRESH_195G.jpg
deleted file mode 100644
index 806222f..0000000
Binary files a/foto/foto_barang/RINSO_MOLTO_ROSE_FRESH_195G.jpg and /dev/null differ
diff --git a/foto/foto_barang/ROYCO_BUMBU_NASGOR_CABE_HIJAU.jpg b/foto/foto_barang/ROYCO_BUMBU_NASGOR_CABE_HIJAU.jpg
deleted file mode 100644
index 84e5ad5..0000000
Binary files a/foto/foto_barang/ROYCO_BUMBU_NASGOR_CABE_HIJAU.jpg and /dev/null differ
diff --git a/foto/foto_barang/Rapika_Green_Meadow_400_ml.jpg b/foto/foto_barang/Rapika_Green_Meadow_400_ml.jpg
deleted file mode 100644
index 6573d8f..0000000
Binary files a/foto/foto_barang/Rapika_Green_Meadow_400_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/Resep-Melonpan-Roti-Manis-Jepang.jpg b/foto/foto_barang/Resep-Melonpan-Roti-Manis-Jepang.jpg
deleted file mode 100644
index 3ef8225..0000000
Binary files a/foto/foto_barang/Resep-Melonpan-Roti-Manis-Jepang.jpg and /dev/null differ
diff --git a/foto/foto_barang/Rokok_Wismilak_Diplomat_12_Batang___1_Slop_Isi_10_Bungkus___.jpg b/foto/foto_barang/Rokok_Wismilak_Diplomat_12_Batang___1_Slop_Isi_10_Bungkus___.jpg
deleted file mode 100644
index 78470ce..0000000
Binary files a/foto/foto_barang/Rokok_Wismilak_Diplomat_12_Batang___1_Slop_Isi_10_Bungkus___.jpg and /dev/null differ
diff --git a/foto/foto_barang/SABUN_GIV_HIJAB_TIN_ZAITUN_76G.jpg b/foto/foto_barang/SABUN_GIV_HIJAB_TIN_ZAITUN_76G.jpg
deleted file mode 100644
index 87fadc9..0000000
Binary files a/foto/foto_barang/SABUN_GIV_HIJAB_TIN_ZAITUN_76G.jpg and /dev/null differ
diff --git a/foto/foto_barang/SABUN_GIV_SAFFRON_NIACINAMIDE_76G.jpg b/foto/foto_barang/SABUN_GIV_SAFFRON_NIACINAMIDE_76G.jpg
deleted file mode 100644
index 33a63d2..0000000
Binary files a/foto/foto_barang/SABUN_GIV_SAFFRON_NIACINAMIDE_76G.jpg and /dev/null differ
diff --git a/foto/foto_barang/SABUN_SHINZUI_MATSU.jpg b/foto/foto_barang/SABUN_SHINZUI_MATSU.jpg
deleted file mode 100644
index 50c480f..0000000
Binary files a/foto/foto_barang/SABUN_SHINZUI_MATSU.jpg and /dev/null differ
diff --git a/foto/foto_barang/SABUN_SHINZUI_MIYORI.jpg b/foto/foto_barang/SABUN_SHINZUI_MIYORI.jpg
deleted file mode 100644
index c820cc4..0000000
Binary files a/foto/foto_barang/SABUN_SHINZUI_MIYORI.jpg and /dev/null differ
diff --git a/foto/foto_barang/SABUN_TAWON_COKLAT_BESAR.jpg b/foto/foto_barang/SABUN_TAWON_COKLAT_BESAR.jpg
deleted file mode 100644
index fec6d40..0000000
Binary files a/foto/foto_barang/SABUN_TAWON_COKLAT_BESAR.jpg and /dev/null differ
diff --git a/foto/foto_barang/SAHAJA_CUCI_PIRING_60ML.jpg b/foto/foto_barang/SAHAJA_CUCI_PIRING_60ML.jpg
deleted file mode 100644
index 18e87f0..0000000
Binary files a/foto/foto_barang/SAHAJA_CUCI_PIRING_60ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SAMPOERNA_MILD_16.jpg b/foto/foto_barang/SAMPOERNA_MILD_16.jpg
deleted file mode 100644
index d3d0671..0000000
Binary files a/foto/foto_barang/SAMPOERNA_MILD_16.jpg and /dev/null differ
diff --git a/foto/foto_barang/SARDEN_MAYA_CABE_155GR.jpg b/foto/foto_barang/SARDEN_MAYA_CABE_155GR.jpg
deleted file mode 100644
index dd61b93..0000000
Binary files a/foto/foto_barang/SARDEN_MAYA_CABE_155GR.jpg and /dev/null differ
diff --git a/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_155GR.png b/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_155GR.png
deleted file mode 100644
index 5749039..0000000
Binary files a/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_155GR.png and /dev/null differ
diff --git a/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_425GR.jpg b/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_425GR.jpg
deleted file mode 100644
index 1b8d3be..0000000
Binary files a/foto/foto_barang/SARDEN_MAYA_MAKAREL_TOMAT_425GR.jpg and /dev/null differ
diff --git a/foto/foto_barang/SARDEN_MAYA_TOMAT_155GR.jpg b/foto/foto_barang/SARDEN_MAYA_TOMAT_155GR.jpg
deleted file mode 100644
index f9b417e..0000000
Binary files a/foto/foto_barang/SARDEN_MAYA_TOMAT_155GR.jpg and /dev/null differ
diff --git a/foto/foto_barang/SARIAYU_CLEANSING_MILK_MAWAR_100ML.jpg b/foto/foto_barang/SARIAYU_CLEANSING_MILK_MAWAR_100ML.jpg
deleted file mode 100644
index 3d2511b..0000000
Binary files a/foto/foto_barang/SARIAYU_CLEANSING_MILK_MAWAR_100ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SARIAYU_PEMBERSIH_JERUK.jpg b/foto/foto_barang/SARIAYU_PEMBERSIH_JERUK.jpg
deleted file mode 100644
index 73d0bac..0000000
Binary files a/foto/foto_barang/SARIAYU_PEMBERSIH_JERUK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SAYANGKU_PANTS_SIZE_L.jpg b/foto/foto_barang/SAYANGKU_PANTS_SIZE_L.jpg
deleted file mode 100644
index 2cd4c41..0000000
Binary files a/foto/foto_barang/SAYANGKU_PANTS_SIZE_L.jpg and /dev/null differ
diff --git a/foto/foto_barang/SCOTCH_BRITE_SABUT_STAINLESS.jpg b/foto/foto_barang/SCOTCH_BRITE_SABUT_STAINLESS.jpg
deleted file mode 100644
index 96d3d2d..0000000
Binary files a/foto/foto_barang/SCOTCH_BRITE_SABUT_STAINLESS.jpg and /dev/null differ
diff --git a/foto/foto_barang/SC_EXACTA_2_BIRU_REGULER.jpg b/foto/foto_barang/SC_EXACTA_2_BIRU_REGULER.jpg
deleted file mode 100644
index 1751d66..0000000
Binary files a/foto/foto_barang/SC_EXACTA_2_BIRU_REGULER.jpg and /dev/null differ
diff --git a/foto/foto_barang/SC_EXACTA_2_SENSITIVE_HIJAU.jpg b/foto/foto_barang/SC_EXACTA_2_SENSITIVE_HIJAU.jpg
deleted file mode 100644
index eb23abc..0000000
Binary files a/foto/foto_barang/SC_EXACTA_2_SENSITIVE_HIJAU.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAAP_CUP_KUAH_SOTO.jpg b/foto/foto_barang/SEDAAP_CUP_KUAH_SOTO.jpg
deleted file mode 100644
index 7d01e5c..0000000
Binary files a/foto/foto_barang/SEDAAP_CUP_KUAH_SOTO.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAAP_CUP_SELECTION_KOREAN_SPICY_CHICKEN.jpg b/foto/foto_barang/SEDAAP_CUP_SELECTION_KOREAN_SPICY_CHICKEN.jpg
deleted file mode 100644
index 4552987..0000000
Binary files a/foto/foto_barang/SEDAAP_CUP_SELECTION_KOREAN_SPICY_CHICKEN.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAAP_MIE_KUAH_KARI_AYAM.jpg b/foto/foto_barang/SEDAAP_MIE_KUAH_KARI_AYAM.jpg
deleted file mode 100644
index cde37df..0000000
Binary files a/foto/foto_barang/SEDAAP_MIE_KUAH_KARI_AYAM.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAAP_MIE_SAMBAL_GORENG.jpg b/foto/foto_barang/SEDAAP_MIE_SAMBAL_GORENG.jpg
deleted file mode 100644
index 4c423f9..0000000
Binary files a/foto/foto_barang/SEDAAP_MIE_SAMBAL_GORENG.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAP_MIE_KOREAN_SPICY_CHICKEN.jpg b/foto/foto_barang/SEDAP_MIE_KOREAN_SPICY_CHICKEN.jpg
deleted file mode 100644
index bae2de7..0000000
Binary files a/foto/foto_barang/SEDAP_MIE_KOREAN_SPICY_CHICKEN.jpg and /dev/null differ
diff --git a/foto/foto_barang/SEDAP_MIE_SOTO.jpg b/foto/foto_barang/SEDAP_MIE_SOTO.jpg
deleted file mode 100644
index 6ad1087..0000000
Binary files a/foto/foto_barang/SEDAP_MIE_SOTO.jpg and /dev/null differ
diff --git a/foto/foto_barang/SELECTION_COTTON_BUD_PACK.jpg b/foto/foto_barang/SELECTION_COTTON_BUD_PACK.jpg
deleted file mode 100644
index ce82b26..0000000
Binary files a/foto/foto_barang/SELECTION_COTTON_BUD_PACK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SELECTION_KAPAS.jpg b/foto/foto_barang/SELECTION_KAPAS.jpg
deleted file mode 100644
index e49fed0..0000000
Binary files a/foto/foto_barang/SELECTION_KAPAS.jpg and /dev/null differ
diff --git a/foto/foto_barang/SENDOK_DOOL_RTK.jpg b/foto/foto_barang/SENDOK_DOOL_RTK.jpg
deleted file mode 100644
index fe11027..0000000
Binary files a/foto/foto_barang/SENDOK_DOOL_RTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SETELAN_ANAK.jpg b/foto/foto_barang/SETELAN_ANAK.jpg
deleted file mode 100644
index a484c7f..0000000
Binary files a/foto/foto_barang/SETELAN_ANAK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SHAMPO_EMERON_SOFTSMOOTH_SHACHET_10ML.jpg b/foto/foto_barang/SHAMPO_EMERON_SOFTSMOOTH_SHACHET_10ML.jpg
deleted file mode 100644
index e7a80f4..0000000
Binary files a/foto/foto_barang/SHAMPO_EMERON_SOFTSMOOTH_SHACHET_10ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SHAMPO_ZINC_ACTIVE_FRESH_SHACHET_10ML.jpg b/foto/foto_barang/SHAMPO_ZINC_ACTIVE_FRESH_SHACHET_10ML.jpg
deleted file mode 100644
index daf7106..0000000
Binary files a/foto/foto_barang/SHAMPO_ZINC_ACTIVE_FRESH_SHACHET_10ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SHAMPO_ZINC_CLEAN_ACTIVE_SHACHET_10ML.jpg b/foto/foto_barang/SHAMPO_ZINC_CLEAN_ACTIVE_SHACHET_10ML.jpg
deleted file mode 100644
index b92cc99..0000000
Binary files a/foto/foto_barang/SHAMPO_ZINC_CLEAN_ACTIVE_SHACHET_10ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SHAMPO_ZINC_REFRE_COOL_SHACHET_10ML.jpeg b/foto/foto_barang/SHAMPO_ZINC_REFRE_COOL_SHACHET_10ML.jpeg
deleted file mode 100644
index ce17a8a..0000000
Binary files a/foto/foto_barang/SHAMPO_ZINC_REFRE_COOL_SHACHET_10ML.jpeg and /dev/null differ
diff --git a/foto/foto_barang/SHP_EMERON_HAIR_FALL_SCHT.jpg b/foto/foto_barang/SHP_EMERON_HAIR_FALL_SCHT.jpg
deleted file mode 100644
index 1d86df9..0000000
Binary files a/foto/foto_barang/SHP_EMERON_HAIR_FALL_SCHT.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIKAT_CUCI_PIRING.jpg b/foto/foto_barang/SIKAT_CUCI_PIRING.jpg
deleted file mode 100644
index fb6e395..0000000
Binary files a/foto/foto_barang/SIKAT_CUCI_PIRING.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIKAT_CUCI_PIRING1.jpg b/foto/foto_barang/SIKAT_CUCI_PIRING1.jpg
deleted file mode 100644
index fb6e395..0000000
Binary files a/foto/foto_barang/SIKAT_CUCI_PIRING1.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIKAT_CUCI_PIRING2.jpg b/foto/foto_barang/SIKAT_CUCI_PIRING2.jpg
deleted file mode 100644
index fb6e395..0000000
Binary files a/foto/foto_barang/SIKAT_CUCI_PIRING2.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIKAT_GIGI_CIPTADENT_CHARCOAL_PROTECTION_(SOFT).jpg b/foto/foto_barang/SIKAT_GIGI_CIPTADENT_CHARCOAL_PROTECTION_(SOFT).jpg
deleted file mode 100644
index 23b60f5..0000000
Binary files a/foto/foto_barang/SIKAT_GIGI_CIPTADENT_CHARCOAL_PROTECTION_(SOFT).jpg and /dev/null differ
diff --git a/foto/foto_barang/SIKAT_GIGI_PEPSODENT_FAMILY_(SOFT).jpg b/foto/foto_barang/SIKAT_GIGI_PEPSODENT_FAMILY_(SOFT).jpg
deleted file mode 100644
index dc51198..0000000
Binary files a/foto/foto_barang/SIKAT_GIGI_PEPSODENT_FAMILY_(SOFT).jpg and /dev/null differ
diff --git a/foto/foto_barang/SIMBA_CHO_CHIPS_CUP_SUSU_PUTIH.jpg b/foto/foto_barang/SIMBA_CHO_CHIPS_CUP_SUSU_PUTIH.jpg
deleted file mode 100644
index bd208e7..0000000
Binary files a/foto/foto_barang/SIMBA_CHO_CHIPS_CUP_SUSU_PUTIH.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIMBA_MAKURA_CHOCO_80G.jpg b/foto/foto_barang/SIMBA_MAKURA_CHOCO_80G.jpg
deleted file mode 100644
index 3cf586e..0000000
Binary files a/foto/foto_barang/SIMBA_MAKURA_CHOCO_80G.jpg and /dev/null differ
diff --git a/foto/foto_barang/SIRUP_ABC_MELON.jpg b/foto/foto_barang/SIRUP_ABC_MELON.jpg
deleted file mode 100644
index f2d82f1..0000000
Binary files a/foto/foto_barang/SIRUP_ABC_MELON.jpg and /dev/null differ
diff --git a/foto/foto_barang/SISIR_FROZEN.jpg b/foto/foto_barang/SISIR_FROZEN.jpg
deleted file mode 100644
index 82e8f27..0000000
Binary files a/foto/foto_barang/SISIR_FROZEN.jpg and /dev/null differ
diff --git a/foto/foto_barang/SISIR_SZYUAN_C33.jpeg b/foto/foto_barang/SISIR_SZYUAN_C33.jpeg
deleted file mode 100644
index 327cd74..0000000
Binary files a/foto/foto_barang/SISIR_SZYUAN_C33.jpeg and /dev/null differ
diff --git a/foto/foto_barang/SNACK_CHIKIBALL_COKLAT.jpg b/foto/foto_barang/SNACK_CHIKIBALL_COKLAT.jpg
deleted file mode 100644
index 52ba2c8..0000000
Binary files a/foto/foto_barang/SNACK_CHIKIBALL_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_BIOMATIC_LIQ_FRONT_LOAD_700ML.jpg b/foto/foto_barang/SOKLIN_BIOMATIC_LIQ_FRONT_LOAD_700ML.jpg
deleted file mode 100644
index 795f08b..0000000
Binary files a/foto/foto_barang/SOKLIN_BIOMATIC_LIQ_FRONT_LOAD_700ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_LIQ_KOREAN_CAMELLIA_REF_750ML.jpg b/foto/foto_barang/SOKLIN_LIQ_KOREAN_CAMELLIA_REF_750ML.jpg
deleted file mode 100644
index 8692570..0000000
Binary files a/foto/foto_barang/SOKLIN_LIQ_KOREAN_CAMELLIA_REF_750ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_LIQ_PINK_12.jpg b/foto/foto_barang/SOKLIN_LIQ_PINK_12.jpg
deleted file mode 100644
index 8bbbf7e..0000000
Binary files a/foto/foto_barang/SOKLIN_LIQ_PINK_12.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_PEMUTIH_LAVENDER_500ML.jpg b/foto/foto_barang/SOKLIN_PEMUTIH_LAVENDER_500ML.jpg
deleted file mode 100644
index d51c95f..0000000
Binary files a/foto/foto_barang/SOKLIN_PEMUTIH_LAVENDER_500ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_POWDER_ANTISEP_1_4KG.jpg b/foto/foto_barang/SOKLIN_POWDER_ANTISEP_1_4KG.jpg
deleted file mode 100644
index daa5a29..0000000
Binary files a/foto/foto_barang/SOKLIN_POWDER_ANTISEP_1_4KG.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_POWDER_ANTISEP_700G.jpg b/foto/foto_barang/SOKLIN_POWDER_ANTISEP_700G.jpg
deleted file mode 100644
index ae1c45f..0000000
Binary files a/foto/foto_barang/SOKLIN_POWDER_ANTISEP_700G.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_SOFTERGENT_PURPLE_LAVENDER.jpg b/foto/foto_barang/SOKLIN_SOFTERGENT_PURPLE_LAVENDER.jpg
deleted file mode 100644
index 51d45ce..0000000
Binary files a/foto/foto_barang/SOKLIN_SOFTERGENT_PURPLE_LAVENDER.jpg and /dev/null differ
diff --git a/foto/foto_barang/SOKLIN_WHITEBRIGHT_770G.jpg b/foto/foto_barang/SOKLIN_WHITEBRIGHT_770G.jpg
deleted file mode 100644
index 1651ebd..0000000
Binary files a/foto/foto_barang/SOKLIN_WHITEBRIGHT_770G.jpg and /dev/null differ
diff --git a/foto/foto_barang/SO_KLIN_BIO_MATIC_LIQUID.jpg b/foto/foto_barang/SO_KLIN_BIO_MATIC_LIQUID.jpg
deleted file mode 100644
index dc08217..0000000
Binary files a/foto/foto_barang/SO_KLIN_BIO_MATIC_LIQUID.jpg and /dev/null differ
diff --git a/foto/foto_barang/SO_KLIN_PEWANGI_DOUBLE_PERFUME_ROMANTIC_PINK.jpg b/foto/foto_barang/SO_KLIN_PEWANGI_DOUBLE_PERFUME_ROMANTIC_PINK.jpg
deleted file mode 100644
index 7f827cf..0000000
Binary files a/foto/foto_barang/SO_KLIN_PEWANGI_DOUBLE_PERFUME_ROMANTIC_PINK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SO_KLIN_SOFTERGENT_SAKURA.jpg b/foto/foto_barang/SO_KLIN_SOFTERGENT_SAKURA.jpg
deleted file mode 100644
index efdf5b3..0000000
Binary files a/foto/foto_barang/SO_KLIN_SOFTERGENT_SAKURA.jpg and /dev/null differ
diff --git a/foto/foto_barang/SO_TANGO_BELGIAN_CHO_38G.jpg b/foto/foto_barang/SO_TANGO_BELGIAN_CHO_38G.jpg
deleted file mode 100644
index 2f97333..0000000
Binary files a/foto/foto_barang/SO_TANGO_BELGIAN_CHO_38G.jpg and /dev/null differ
diff --git a/foto/foto_barang/STELLA_BATHROOM_FRESH_GREEN.png b/foto/foto_barang/STELLA_BATHROOM_FRESH_GREEN.png
deleted file mode 100644
index b5ebfb8..0000000
Binary files a/foto/foto_barang/STELLA_BATHROOM_FRESH_GREEN.png and /dev/null differ
diff --git a/foto/foto_barang/STICKER_NAMA_INDO_CUTTING_(5RIBU).jpg b/foto/foto_barang/STICKER_NAMA_INDO_CUTTING_(5RIBU).jpg
deleted file mode 100644
index e7feb6f..0000000
Binary files a/foto/foto_barang/STICKER_NAMA_INDO_CUTTING_(5RIBU).jpg and /dev/null differ
diff --git a/foto/foto_barang/SUNLIGHT_HABBATUSSAUDA_210ML.jpg b/foto/foto_barang/SUNLIGHT_HABBATUSSAUDA_210ML.jpg
deleted file mode 100644
index e92f9c1..0000000
Binary files a/foto/foto_barang/SUNLIGHT_HABBATUSSAUDA_210ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SUNLIGHT_JERUK_NIPIS.jpg b/foto/foto_barang/SUNLIGHT_JERUK_NIPIS.jpg
deleted file mode 100644
index e44740e..0000000
Binary files a/foto/foto_barang/SUNLIGHT_JERUK_NIPIS.jpg and /dev/null differ
diff --git a/foto/foto_barang/SUPER_CLEAN_INK.jpg b/foto/foto_barang/SUPER_CLEAN_INK.jpg
deleted file mode 100644
index a8c1ad4..0000000
Binary files a/foto/foto_barang/SUPER_CLEAN_INK.jpg and /dev/null differ
diff --git a/foto/foto_barang/SUPER_PELL_LEMON_GINGER_280ML.jpg b/foto/foto_barang/SUPER_PELL_LEMON_GINGER_280ML.jpg
deleted file mode 100644
index 197991b..0000000
Binary files a/foto/foto_barang/SUPER_PELL_LEMON_GINGER_280ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SURYA_16_BT.jpg b/foto/foto_barang/SURYA_16_BT.jpg
deleted file mode 100644
index 405eb74..0000000
Binary files a/foto/foto_barang/SURYA_16_BT.jpg and /dev/null differ
diff --git a/foto/foto_barang/SURYA_16_PRO.jpg b/foto/foto_barang/SURYA_16_PRO.jpg
deleted file mode 100644
index 8459037..0000000
Binary files a/foto/foto_barang/SURYA_16_PRO.jpg and /dev/null differ
diff --git a/foto/foto_barang/SUSU_TANGO_FARM_TO_GLASS_STROW_250ML.jpg b/foto/foto_barang/SUSU_TANGO_FARM_TO_GLASS_STROW_250ML.jpg
deleted file mode 100644
index 701b274..0000000
Binary files a/foto/foto_barang/SUSU_TANGO_FARM_TO_GLASS_STROW_250ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/SWAN_BRAND_NAPH_500G.jpg b/foto/foto_barang/SWAN_BRAND_NAPH_500G.jpg
deleted file mode 100644
index 8077260..0000000
Binary files a/foto/foto_barang/SWAN_BRAND_NAPH_500G.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sabun_Citra_Mutiara.jpg b/foto/foto_barang/Sabun_Citra_Mutiara.jpg
deleted file mode 100644
index 64bd8de..0000000
Binary files a/foto/foto_barang/Sabun_Citra_Mutiara.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sate_jamur.jpg b/foto/foto_barang/Sate_jamur.jpg
deleted file mode 100644
index 865e4de..0000000
Binary files a/foto/foto_barang/Sate_jamur.jpg and /dev/null differ
diff --git a/foto/foto_barang/Screenshot_20210629-202526~2.png b/foto/foto_barang/Screenshot_20210629-202526~2.png
deleted file mode 100644
index 55f4552..0000000
Binary files a/foto/foto_barang/Screenshot_20210629-202526~2.png and /dev/null differ
diff --git a/foto/foto_barang/Sedap_Ayam_Krispi.jpg b/foto/foto_barang/Sedap_Ayam_Krispi.jpg
deleted file mode 100644
index 2935ff5..0000000
Binary files a/foto/foto_barang/Sedap_Ayam_Krispi.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sedap_Ayam_Special.jpg b/foto/foto_barang/Sedap_Ayam_Special.jpg
deleted file mode 100644
index dd50729..0000000
Binary files a/foto/foto_barang/Sedap_Ayam_Special.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sikat_Gigi_Formula_Junior.jpg b/foto/foto_barang/Sikat_Gigi_Formula_Junior.jpg
deleted file mode 100644
index 7deed32..0000000
Binary files a/foto/foto_barang/Sikat_Gigi_Formula_Junior.jpg and /dev/null differ
diff --git a/foto/foto_barang/Smoothies_Durian.jpg b/foto/foto_barang/Smoothies_Durian.jpg
deleted file mode 100644
index 6906f54..0000000
Binary files a/foto/foto_barang/Smoothies_Durian.jpg and /dev/null differ
diff --git a/foto/foto_barang/Snelhecter_MaP_Plastik.jpg b/foto/foto_barang/Snelhecter_MaP_Plastik.jpg
deleted file mode 100644
index 66df788..0000000
Binary files a/foto/foto_barang/Snelhecter_MaP_Plastik.jpg and /dev/null differ
diff --git a/foto/foto_barang/Soklin_Softergent_Blue.jpg b/foto/foto_barang/Soklin_Softergent_Blue.jpg
deleted file mode 100644
index 37549e0..0000000
Binary files a/foto/foto_barang/Soklin_Softergent_Blue.jpg and /dev/null differ
diff --git a/foto/foto_barang/Soklin_Softergent_Merah_800_gram.jpg b/foto/foto_barang/Soklin_Softergent_Merah_800_gram.jpg
deleted file mode 100644
index 22b8d4f..0000000
Binary files a/foto/foto_barang/Soklin_Softergent_Merah_800_gram.jpg and /dev/null differ
diff --git a/foto/foto_barang/Soklin_Softergent_Ungu_770G.jpg b/foto/foto_barang/Soklin_Softergent_Ungu_770G.jpg
deleted file mode 100644
index af68204..0000000
Binary files a/foto/foto_barang/Soklin_Softergent_Ungu_770G.jpg and /dev/null differ
diff --git a/foto/foto_barang/Spidol.jpg b/foto/foto_barang/Spidol.jpg
deleted file mode 100644
index af4f27d..0000000
Binary files a/foto/foto_barang/Spidol.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sprite_5000.jpg b/foto/foto_barang/Sprite_5000.jpg
deleted file mode 100644
index 028b70c..0000000
Binary files a/foto/foto_barang/Sprite_5000.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sukses_isi_2_RASA_ayam_kecap.jpg b/foto/foto_barang/Sukses_isi_2_RASA_ayam_kecap.jpg
deleted file mode 100644
index 0711d0e..0000000
Binary files a/foto/foto_barang/Sukses_isi_2_RASA_ayam_kecap.jpg and /dev/null differ
diff --git a/foto/foto_barang/Sukses_isi_2_RASA_ayam_kremes.jpg b/foto/foto_barang/Sukses_isi_2_RASA_ayam_kremes.jpg
deleted file mode 100644
index 7d13326..0000000
Binary files a/foto/foto_barang/Sukses_isi_2_RASA_ayam_kremes.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGGO_VANILLA_MILK_LONG_WAFER.jpg b/foto/foto_barang/TANGGO_VANILLA_MILK_LONG_WAFER.jpg
deleted file mode 100644
index dcff7ba..0000000
Binary files a/foto/foto_barang/TANGGO_VANILLA_MILK_LONG_WAFER.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGO_DRINK_VELLUTO_COKLAT.jpg b/foto/foto_barang/TANGO_DRINK_VELLUTO_COKLAT.jpg
deleted file mode 100644
index 7d956a8..0000000
Binary files a/foto/foto_barang/TANGO_DRINK_VELLUTO_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING.jpg b/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING.jpg
deleted file mode 100644
index bafe97f..0000000
Binary files a/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING1.jpg b/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING1.jpg
deleted file mode 100644
index bafe97f..0000000
Binary files a/foto/foto_barang/TANGO_TETRA_JUARA_BANANA_PUDING1.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGO_TETRA_JUARA_COKLAT.jpg b/foto/foto_barang/TANGO_TETRA_JUARA_COKLAT.jpg
deleted file mode 100644
index 16135f6..0000000
Binary files a/foto/foto_barang/TANGO_TETRA_JUARA_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/TANGO_WAFER_CHOCO_JAVAMOCCA_130G.jpg b/foto/foto_barang/TANGO_WAFER_CHOCO_JAVAMOCCA_130G.jpg
deleted file mode 100644
index b167709..0000000
Binary files a/foto/foto_barang/TANGO_WAFER_CHOCO_JAVAMOCCA_130G.jpg and /dev/null differ
diff --git a/foto/foto_barang/TEH_CAP_BOTOL_BIRU.jpg b/foto/foto_barang/TEH_CAP_BOTOL_BIRU.jpg
deleted file mode 100644
index 527864e..0000000
Binary files a/foto/foto_barang/TEH_CAP_BOTOL_BIRU.jpg and /dev/null differ
diff --git a/foto/foto_barang/TEH_SOSRO_CELUP_100.jpg b/foto/foto_barang/TEH_SOSRO_CELUP_100.jpg
deleted file mode 100644
index effc1bc..0000000
Binary files a/foto/foto_barang/TEH_SOSRO_CELUP_100.jpg and /dev/null differ
diff --git a/foto/foto_barang/TELON_CAPLANG_30ML.jpg b/foto/foto_barang/TELON_CAPLANG_30ML.jpg
deleted file mode 100644
index 37ac73f..0000000
Binary files a/foto/foto_barang/TELON_CAPLANG_30ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/TELON_LANG_60ML.jpg b/foto/foto_barang/TELON_LANG_60ML.jpg
deleted file mode 100644
index 224d70e..0000000
Binary files a/foto/foto_barang/TELON_LANG_60ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/TISSUE_MONTISS_PACK.jpg b/foto/foto_barang/TISSUE_MONTISS_PACK.jpg
deleted file mode 100644
index 1283dc3..0000000
Binary files a/foto/foto_barang/TISSUE_MONTISS_PACK.jpg and /dev/null differ
diff --git a/foto/foto_barang/TISSU_IMPERIUM_PACIAL_2PLY.jpg b/foto/foto_barang/TISSU_IMPERIUM_PACIAL_2PLY.jpg
deleted file mode 100644
index 6496d03..0000000
Binary files a/foto/foto_barang/TISSU_IMPERIUM_PACIAL_2PLY.jpg and /dev/null differ
diff --git a/foto/foto_barang/TISSU_IMPERIUM_SEA_WORD_5S_KTK.jpg b/foto/foto_barang/TISSU_IMPERIUM_SEA_WORD_5S_KTK.jpg
deleted file mode 100644
index 713e1cd..0000000
Binary files a/foto/foto_barang/TISSU_IMPERIUM_SEA_WORD_5S_KTK.jpg and /dev/null differ
diff --git a/foto/foto_barang/TISSU_PASEO_1092_STD_DUCK.jpeg b/foto/foto_barang/TISSU_PASEO_1092_STD_DUCK.jpeg
deleted file mode 100644
index f9634dd..0000000
Binary files a/foto/foto_barang/TISSU_PASEO_1092_STD_DUCK.jpeg and /dev/null differ
diff --git a/foto/foto_barang/TOPI_BABY_MOTIF_TUTUL.jpg b/foto/foto_barang/TOPI_BABY_MOTIF_TUTUL.jpg
deleted file mode 100644
index fc39b94..0000000
Binary files a/foto/foto_barang/TOPI_BABY_MOTIF_TUTUL.jpg and /dev/null differ
diff --git a/foto/foto_barang/TOPPAS_FILTER_12.jpg b/foto/foto_barang/TOPPAS_FILTER_12.jpg
deleted file mode 100644
index 93a780f..0000000
Binary files a/foto/foto_barang/TOPPAS_FILTER_12.jpg and /dev/null differ
diff --git a/foto/foto_barang/TOP_CAPPUCCINO_WITH_CRUNCHY_CHOCOMALT.jpg b/foto/foto_barang/TOP_CAPPUCCINO_WITH_CRUNCHY_CHOCOMALT.jpg
deleted file mode 100644
index d2625c5..0000000
Binary files a/foto/foto_barang/TOP_CAPPUCCINO_WITH_CRUNCHY_CHOCOMALT.jpg and /dev/null differ
diff --git a/foto/foto_barang/TOP_KOPI_AVOCADO_20G.jpg b/foto/foto_barang/TOP_KOPI_AVOCADO_20G.jpg
deleted file mode 100644
index 781f0e7..0000000
Binary files a/foto/foto_barang/TOP_KOPI_AVOCADO_20G.jpg and /dev/null differ
diff --git a/foto/foto_barang/TUBRUK_GADJAH_ASLI_7G.jpg b/foto/foto_barang/TUBRUK_GADJAH_ASLI_7G.jpg
deleted file mode 100644
index 484ef93..0000000
Binary files a/foto/foto_barang/TUBRUK_GADJAH_ASLI_7G.jpg and /dev/null differ
diff --git a/foto/foto_barang/Tango_Vanilla.jpg b/foto/foto_barang/Tango_Vanilla.jpg
deleted file mode 100644
index 244742c..0000000
Binary files a/foto/foto_barang/Tango_Vanilla.jpg and /dev/null differ
diff --git a/foto/foto_barang/Tissu_Montiss.jpg b/foto/foto_barang/Tissu_Montiss.jpg
deleted file mode 100644
index b38b8c4..0000000
Binary files a/foto/foto_barang/Tissu_Montiss.jpg and /dev/null differ
diff --git a/foto/foto_barang/Tissu_Multi_MP_-_11.jpg b/foto/foto_barang/Tissu_Multi_MP_-_11.jpg
deleted file mode 100644
index 8191fa2..0000000
Binary files a/foto/foto_barang/Tissu_Multi_MP_-_11.jpg and /dev/null differ
diff --git a/foto/foto_barang/Tissu_tesa_03.jpg b/foto/foto_barang/Tissu_tesa_03.jpg
deleted file mode 100644
index 6f4869c..0000000
Binary files a/foto/foto_barang/Tissu_tesa_03.jpg and /dev/null differ
diff --git a/foto/foto_barang/Top_Coffee_Kopi_Mocca.jpg b/foto/foto_barang/Top_Coffee_Kopi_Mocca.jpg
deleted file mode 100644
index 72fd51f..0000000
Binary files a/foto/foto_barang/Top_Coffee_Kopi_Mocca.jpg and /dev/null differ
diff --git a/foto/foto_barang/Top_White_Coffee_instant.jpg b/foto/foto_barang/Top_White_Coffee_instant.jpg
deleted file mode 100644
index f62c86c..0000000
Binary files a/foto/foto_barang/Top_White_Coffee_instant.jpg and /dev/null differ
diff --git a/foto/foto_barang/Total_Almeera_Sport_Active_5x_40_gr.jpg b/foto/foto_barang/Total_Almeera_Sport_Active_5x_40_gr.jpg
deleted file mode 100644
index 400a429..0000000
Binary files a/foto/foto_barang/Total_Almeera_Sport_Active_5x_40_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/Total_Spond_dan_Active.jpg b/foto/foto_barang/Total_Spond_dan_Active.jpg
deleted file mode 100644
index 3bf2bb2..0000000
Binary files a/foto/foto_barang/Total_Spond_dan_Active.jpg and /dev/null differ
diff --git a/foto/foto_barang/WAFER_TANGO_LONG_CHOCO.jpg b/foto/foto_barang/WAFER_TANGO_LONG_CHOCO.jpg
deleted file mode 100644
index 36bc4f3..0000000
Binary files a/foto/foto_barang/WAFER_TANGO_LONG_CHOCO.jpg and /dev/null differ
diff --git a/foto/foto_barang/WAFER_TANGO_LONG_RS_STRAWBERRY_JAM.jpg b/foto/foto_barang/WAFER_TANGO_LONG_RS_STRAWBERRY_JAM.jpg
deleted file mode 100644
index 03c0423..0000000
Binary files a/foto/foto_barang/WAFER_TANGO_LONG_RS_STRAWBERRY_JAM.jpg and /dev/null differ
diff --git a/foto/foto_barang/WIPOL_CEMARA_90ML.jpg b/foto/foto_barang/WIPOL_CEMARA_90ML.jpg
deleted file mode 100644
index c08a4d8..0000000
Binary files a/foto/foto_barang/WIPOL_CEMARA_90ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/WIPOL_KARBOL_CEMARA_SACHET.jpg b/foto/foto_barang/WIPOL_KARBOL_CEMARA_SACHET.jpg
deleted file mode 100644
index 2176833..0000000
Binary files a/foto/foto_barang/WIPOL_KARBOL_CEMARA_SACHET.jpg and /dev/null differ
diff --git a/foto/foto_barang/WONDERLAND_WAFER_COKLAT.jpg b/foto/foto_barang/WONDERLAND_WAFER_COKLAT.jpg
deleted file mode 100644
index c04d0eb..0000000
Binary files a/foto/foto_barang/WONDERLAND_WAFER_COKLAT.jpg and /dev/null differ
diff --git a/foto/foto_barang/WONDERLAND_WAFER_KELAPA.jpg b/foto/foto_barang/WONDERLAND_WAFER_KELAPA.jpg
deleted file mode 100644
index 7f36e50..0000000
Binary files a/foto/foto_barang/WONDERLAND_WAFER_KELAPA.jpg and /dev/null differ
diff --git a/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL.jpg b/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL.jpg
deleted file mode 100644
index 47ca0c5..0000000
Binary files a/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL.jpg and /dev/null differ
diff --git a/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL1.jpg b/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL1.jpg
deleted file mode 100644
index 47ca0c5..0000000
Binary files a/foto/foto_barang/WPC_EXTRA_BIRU_800_BTL1.jpg and /dev/null differ
diff --git a/foto/foto_barang/WPC_PORSELEN_HIJAU_BOTOL.jpg b/foto/foto_barang/WPC_PORSELEN_HIJAU_BOTOL.jpg
deleted file mode 100644
index dd8816c..0000000
Binary files a/foto/foto_barang/WPC_PORSELEN_HIJAU_BOTOL.jpg and /dev/null differ
diff --git a/foto/foto_barang/YOU_C1000_LEMON_140ML.jpg b/foto/foto_barang/YOU_C1000_LEMON_140ML.jpg
deleted file mode 100644
index ba71fd3..0000000
Binary files a/foto/foto_barang/YOU_C1000_LEMON_140ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/YOU_C1000_MANGO_140ML.jpg b/foto/foto_barang/YOU_C1000_MANGO_140ML.jpg
deleted file mode 100644
index 22c078d..0000000
Binary files a/foto/foto_barang/YOU_C1000_MANGO_140ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/a0ae97951055a2c0aedd5b01b0576e78.jpg b/foto/foto_barang/a0ae97951055a2c0aedd5b01b0576e78.jpg
deleted file mode 100644
index 782148e..0000000
Binary files a/foto/foto_barang/a0ae97951055a2c0aedd5b01b0576e78.jpg and /dev/null differ
diff --git a/foto/foto_barang/a18cd2cad242b186d9f6b3f96db6ffcc.jpg b/foto/foto_barang/a18cd2cad242b186d9f6b3f96db6ffcc.jpg
deleted file mode 100644
index a1640d6..0000000
Binary files a/foto/foto_barang/a18cd2cad242b186d9f6b3f96db6ffcc.jpg and /dev/null differ
diff --git a/foto/foto_barang/a1ea28f9034f94d25d92c16bd26584e4.jpg b/foto/foto_barang/a1ea28f9034f94d25d92c16bd26584e4.jpg
deleted file mode 100644
index c022c5d..0000000
Binary files a/foto/foto_barang/a1ea28f9034f94d25d92c16bd26584e4.jpg and /dev/null differ
diff --git a/foto/foto_barang/a31c031193ba657f9446664f4b2014d5.jpg b/foto/foto_barang/a31c031193ba657f9446664f4b2014d5.jpg
deleted file mode 100644
index 9a5e195..0000000
Binary files a/foto/foto_barang/a31c031193ba657f9446664f4b2014d5.jpg and /dev/null differ
diff --git a/foto/foto_barang/a3fb68ef899b6476d6692f1e56f64a24.jpg b/foto/foto_barang/a3fb68ef899b6476d6692f1e56f64a24.jpg
deleted file mode 100644
index 77926f6..0000000
Binary files a/foto/foto_barang/a3fb68ef899b6476d6692f1e56f64a24.jpg and /dev/null differ
diff --git a/foto/foto_barang/a499df93-a27b-4eec-8085-2698b62738ac.jpg b/foto/foto_barang/a499df93-a27b-4eec-8085-2698b62738ac.jpg
deleted file mode 100644
index b379c35..0000000
Binary files a/foto/foto_barang/a499df93-a27b-4eec-8085-2698b62738ac.jpg and /dev/null differ
diff --git a/foto/foto_barang/a636a2cd-00c7-4786-8ee4-e6dedbf99519.jpg b/foto/foto_barang/a636a2cd-00c7-4786-8ee4-e6dedbf99519.jpg
deleted file mode 100644
index fddce75..0000000
Binary files a/foto/foto_barang/a636a2cd-00c7-4786-8ee4-e6dedbf99519.jpg and /dev/null differ
diff --git a/foto/foto_barang/a697397f67211fa80aec274a9e829245.jpg b/foto/foto_barang/a697397f67211fa80aec274a9e829245.jpg
deleted file mode 100644
index 564a736..0000000
Binary files a/foto/foto_barang/a697397f67211fa80aec274a9e829245.jpg and /dev/null differ
diff --git a/foto/foto_barang/a7344b9d4dd315bb5a5f86464a4240c7.jpg b/foto/foto_barang/a7344b9d4dd315bb5a5f86464a4240c7.jpg
deleted file mode 100644
index aef7689..0000000
Binary files a/foto/foto_barang/a7344b9d4dd315bb5a5f86464a4240c7.jpg and /dev/null differ
diff --git a/foto/foto_barang/a7914d3b-c094-48f5-8866-4c5d1fb2eba8.jpg b/foto/foto_barang/a7914d3b-c094-48f5-8866-4c5d1fb2eba8.jpg
deleted file mode 100644
index 5c30184..0000000
Binary files a/foto/foto_barang/a7914d3b-c094-48f5-8866-4c5d1fb2eba8.jpg and /dev/null differ
diff --git a/foto/foto_barang/a872bf93a95da2797bd3ee72f8e06e7e.jpg b/foto/foto_barang/a872bf93a95da2797bd3ee72f8e06e7e.jpg
deleted file mode 100644
index a1ab0a3..0000000
Binary files a/foto/foto_barang/a872bf93a95da2797bd3ee72f8e06e7e.jpg and /dev/null differ
diff --git a/foto/foto_barang/a94c3e69-cc5d-4102-b842-5af3e052196b.jpg b/foto/foto_barang/a94c3e69-cc5d-4102-b842-5af3e052196b.jpg
deleted file mode 100644
index 8f825d6..0000000
Binary files a/foto/foto_barang/a94c3e69-cc5d-4102-b842-5af3e052196b.jpg and /dev/null differ
diff --git a/foto/foto_barang/a94dd2a3f511ad54c01cdca587574fb0_tn.jpg b/foto/foto_barang/a94dd2a3f511ad54c01cdca587574fb0_tn.jpg
deleted file mode 100644
index a9f644f..0000000
Binary files a/foto/foto_barang/a94dd2a3f511ad54c01cdca587574fb0_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/ab1553d6f1c5c8ee71c8617a8803687b.jpg b/foto/foto_barang/ab1553d6f1c5c8ee71c8617a8803687b.jpg
deleted file mode 100644
index 9f96e95..0000000
Binary files a/foto/foto_barang/ab1553d6f1c5c8ee71c8617a8803687b.jpg and /dev/null differ
diff --git a/foto/foto_barang/ab1b45bd83ee3642a15a944fadf739b9.jpg b/foto/foto_barang/ab1b45bd83ee3642a15a944fadf739b9.jpg
deleted file mode 100644
index 8ce1796..0000000
Binary files a/foto/foto_barang/ab1b45bd83ee3642a15a944fadf739b9.jpg and /dev/null differ
diff --git a/foto/foto_barang/ab21ebb5934c34e4c72bbe37472e7f3c_tn.jpg b/foto/foto_barang/ab21ebb5934c34e4c72bbe37472e7f3c_tn.jpg
deleted file mode 100644
index 61f0f06..0000000
Binary files a/foto/foto_barang/ab21ebb5934c34e4c72bbe37472e7f3c_tn.jpg and /dev/null differ
diff --git a/foto/foto_barang/abb0857a82f8b0c8b2955ac92bedd90a.jpg b/foto/foto_barang/abb0857a82f8b0c8b2955ac92bedd90a.jpg
deleted file mode 100644
index 5f98ef5..0000000
Binary files a/foto/foto_barang/abb0857a82f8b0c8b2955ac92bedd90a.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc-guava-juice--250-ml.jpg b/foto/foto_barang/abc-guava-juice--250-ml.jpg
deleted file mode 100644
index 77f3815..0000000
Binary files a/foto/foto_barang/abc-guava-juice--250-ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_abc_kacang_hijau_200ml.jpg b/foto/foto_barang/abc_abc_kacang_hijau_200ml.jpg
deleted file mode 100644
index d1eb871..0000000
Binary files a/foto/foto_barang/abc_abc_kacang_hijau_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_abc_kacang_hijau_200ml1.jpg b/foto/foto_barang/abc_abc_kacang_hijau_200ml1.jpg
deleted file mode 100644
index d1eb871..0000000
Binary files a/foto/foto_barang/abc_abc_kacang_hijau_200ml1.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_instant_whitw_coffee_23g.jpg b/foto/foto_barang/abc_instant_whitw_coffee_23g.jpg
deleted file mode 100644
index 19a468c..0000000
Binary files a/foto/foto_barang/abc_instant_whitw_coffee_23g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_kecap_asin_133ml.jpg b/foto/foto_barang/abc_kecap_asin_133ml.jpg
deleted file mode 100644
index 0b63116..0000000
Binary files a/foto/foto_barang/abc_kecap_asin_133ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_kecap_manis_275.jpg b/foto/foto_barang/abc_kecap_manis_275.jpg
deleted file mode 100644
index 10a36b9..0000000
Binary files a/foto/foto_barang/abc_kecap_manis_275.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_kecap_pedas_135ml.jpg b/foto/foto_barang/abc_kecap_pedas_135ml.jpg
deleted file mode 100644
index 6cbad8e..0000000
Binary files a/foto/foto_barang/abc_kecap_pedas_135ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sambal_ayam_goreng_135_ml1.jpg b/foto/foto_barang/abc_sambal_ayam_goreng_135_ml1.jpg
deleted file mode 100644
index aa05f0b..0000000
Binary files a/foto/foto_barang/abc_sambal_ayam_goreng_135_ml1.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sambal_extra_pedas_275ml.jpg b/foto/foto_barang/abc_sambal_extra_pedas_275ml.jpg
deleted file mode 100644
index 06a4e4e..0000000
Binary files a/foto/foto_barang/abc_sambal_extra_pedas_275ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sambal_extra_pedas_335_ml.jpg b/foto/foto_barang/abc_sambal_extra_pedas_335_ml.jpg
deleted file mode 100644
index dc98232..0000000
Binary files a/foto/foto_barang/abc_sambal_extra_pedas_335_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sardines_extra_pedas_155g.jpg b/foto/foto_barang/abc_sardines_extra_pedas_155g.jpg
deleted file mode 100644
index ead7dee..0000000
Binary files a/foto/foto_barang/abc_sardines_extra_pedas_155g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sardines_extra_pedas_425_gr.jpg b/foto/foto_barang/abc_sardines_extra_pedas_425_gr.jpg
deleted file mode 100644
index 1108222..0000000
Binary files a/foto/foto_barang/abc_sardines_extra_pedas_425_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sardines_tomat_425g.jpg b/foto/foto_barang/abc_sardines_tomat_425g.jpg
deleted file mode 100644
index 5c5b72e..0000000
Binary files a/foto/foto_barang/abc_sardines_tomat_425g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_saus_asam_manis_195ml1.jpg b/foto/foto_barang/abc_saus_asam_manis_195ml1.jpg
deleted file mode 100644
index 4e59225..0000000
Binary files a/foto/foto_barang/abc_saus_asam_manis_195ml1.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_saus_tiram_195ml.jpg b/foto/foto_barang/abc_saus_tiram_195ml.jpg
deleted file mode 100644
index 6f4d45b..0000000
Binary files a/foto/foto_barang/abc_saus_tiram_195ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_saus_tomat_275_ml.jpg b/foto/foto_barang/abc_saus_tomat_275_ml.jpg
deleted file mode 100644
index 271f6d2..0000000
Binary files a/foto/foto_barang/abc_saus_tomat_275_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_saus_tomat_335_ml.jpg b/foto/foto_barang/abc_saus_tomat_335_ml.jpg
deleted file mode 100644
index 778d8d7..0000000
Binary files a/foto/foto_barang/abc_saus_tomat_335_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_selera_pedas_goreng_ayam_pedas_limau_85.jpg b/foto/foto_barang/abc_selera_pedas_goreng_ayam_pedas_limau_85.jpg
deleted file mode 100644
index d2b003c..0000000
Binary files a/foto/foto_barang/abc_selera_pedas_goreng_ayam_pedas_limau_85.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_selera_pedas_gulai_ayam_pedas_70g.jpg b/foto/foto_barang/abc_selera_pedas_gulai_ayam_pedas_70g.jpg
deleted file mode 100644
index 85f3407..0000000
Binary files a/foto/foto_barang/abc_selera_pedas_gulai_ayam_pedas_70g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_selera_pedas_rasa_ayam_pedas_limau_mie_goreng_85g.jpg b/foto/foto_barang/abc_selera_pedas_rasa_ayam_pedas_limau_mie_goreng_85g.jpg
deleted file mode 100644
index d2b003c..0000000
Binary files a/foto/foto_barang/abc_selera_pedas_rasa_ayam_pedas_limau_mie_goreng_85g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_selera_pedas_semur_ayam_pedas_70g.jpg b/foto/foto_barang/abc_selera_pedas_semur_ayam_pedas_70g.jpg
deleted file mode 100644
index e29a6a7..0000000
Binary files a/foto/foto_barang/abc_selera_pedas_semur_ayam_pedas_70g.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_selera_pedas_sup_tomat_pedas.jpg b/foto/foto_barang/abc_selera_pedas_sup_tomat_pedas.jpg
deleted file mode 100644
index 918a3a4..0000000
Binary files a/foto/foto_barang/abc_selera_pedas_sup_tomat_pedas.jpg and /dev/null differ
diff --git a/foto/foto_barang/abc_sg_cocopandan_485.jpg b/foto/foto_barang/abc_sg_cocopandan_485.jpg
deleted file mode 100644
index bd04a39..0000000
Binary files a/foto/foto_barang/abc_sg_cocopandan_485.jpg and /dev/null differ
diff --git a/foto/foto_barang/abon_daging_sapi_bawang_goreng_100gr.jpg b/foto/foto_barang/abon_daging_sapi_bawang_goreng_100gr.jpg
deleted file mode 100644
index 274efec..0000000
Binary files a/foto/foto_barang/abon_daging_sapi_bawang_goreng_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/abon_daging_sapi_ori_100gr.jpg b/foto/foto_barang/abon_daging_sapi_ori_100gr.jpg
deleted file mode 100644
index 3b9ccbe..0000000
Binary files a/foto/foto_barang/abon_daging_sapi_ori_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/adem_sari_ching_ku_botol_325_ml.jpg b/foto/foto_barang/adem_sari_ching_ku_botol_325_ml.jpg
deleted file mode 100644
index e91202b..0000000
Binary files a/foto/foto_barang/adem_sari_ching_ku_botol_325_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/adem_sari_ching_ku_herbal_tea_325ml.jpg b/foto/foto_barang/adem_sari_ching_ku_herbal_tea_325ml.jpg
deleted file mode 100644
index 44e9d94..0000000
Binary files a/foto/foto_barang/adem_sari_ching_ku_herbal_tea_325ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/adem_sari_ching_ku_sparkling_320ml.jpg b/foto/foto_barang/adem_sari_ching_ku_sparkling_320ml.jpg
deleted file mode 100644
index 71cb537..0000000
Binary files a/foto/foto_barang/adem_sari_ching_ku_sparkling_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/adem_sari_chingku_botol_350ml.jpg b/foto/foto_barang/adem_sari_chingku_botol_350ml.jpg
deleted file mode 100644
index 11564e6..0000000
Binary files a/foto/foto_barang/adem_sari_chingku_botol_350ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/ademsari.jpg b/foto/foto_barang/ademsari.jpg
deleted file mode 100644
index 49f0d63..0000000
Binary files a/foto/foto_barang/ademsari.jpg and /dev/null differ
diff --git a/foto/foto_barang/ades_ades_air_mineral_-1-5_liter-_full01_p4czhyvg.jpg b/foto/foto_barang/ades_ades_air_mineral_-1-5_liter-_full01_p4czhyvg.jpg
deleted file mode 100644
index 1142cf6..0000000
Binary files a/foto/foto_barang/ades_ades_air_mineral_-1-5_liter-_full01_p4czhyvg.jpg and /dev/null differ
diff --git a/foto/foto_barang/ades_air_mineral_600ml.jpg b/foto/foto_barang/ades_air_mineral_600ml.jpg
deleted file mode 100644
index e266733..0000000
Binary files a/foto/foto_barang/ades_air_mineral_600ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/ades_air_mineral_ades_1500_ml_.jpg b/foto/foto_barang/ades_air_mineral_ades_1500_ml_.jpg
deleted file mode 100644
index 1c96a93..0000000
Binary files a/foto/foto_barang/ades_air_mineral_ades_1500_ml_.jpg and /dev/null differ
diff --git a/foto/foto_barang/af060021371618cdbd6d56287528d3b6.jpg b/foto/foto_barang/af060021371618cdbd6d56287528d3b6.jpg
deleted file mode 100644
index 6e4a279..0000000
Binary files a/foto/foto_barang/af060021371618cdbd6d56287528d3b6.jpg and /dev/null differ
diff --git a/foto/foto_barang/aim_aim_biskuit_choco_cream_180_g_full02_bgozv9zg.jpg b/foto/foto_barang/aim_aim_biskuit_choco_cream_180_g_full02_bgozv9zg.jpg
deleted file mode 100644
index b25bd69..0000000
Binary files a/foto/foto_barang/aim_aim_biskuit_choco_cream_180_g_full02_bgozv9zg.jpg and /dev/null differ
diff --git a/foto/foto_barang/aim_aim_toasty_cheese_crackers_-180_g-_.jpg b/foto/foto_barang/aim_aim_toasty_cheese_crackers_-180_g-_.jpg
deleted file mode 100644
index 1261357..0000000
Binary files a/foto/foto_barang/aim_aim_toasty_cheese_crackers_-180_g-_.jpg and /dev/null differ
diff --git a/foto/foto_barang/air_mineral_nestle_pure_life_15L.jpg b/foto/foto_barang/air_mineral_nestle_pure_life_15L.jpg
deleted file mode 100644
index b16790f..0000000
Binary files a/foto/foto_barang/air_mineral_nestle_pure_life_15L.jpg and /dev/null differ
diff --git a/foto/foto_barang/alatbersih-removebg-preview.png b/foto/foto_barang/alatbersih-removebg-preview.png
deleted file mode 100644
index 3ef4957..0000000
Binary files a/foto/foto_barang/alatbersih-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/alattulis-removebg-preview.png b/foto/foto_barang/alattulis-removebg-preview.png
deleted file mode 100644
index 68cbaca..0000000
Binary files a/foto/foto_barang/alattulis-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/alkalin.jpg b/foto/foto_barang/alkalin.jpg
deleted file mode 100644
index 762e064..0000000
Binary files a/foto/foto_barang/alkalin.jpg and /dev/null differ
diff --git a/foto/foto_barang/alpenliebe_stick_caramel.jpg b/foto/foto_barang/alpenliebe_stick_caramel.jpg
deleted file mode 100644
index c8c56c8..0000000
Binary files a/foto/foto_barang/alpenliebe_stick_caramel.jpg and /dev/null differ
diff --git a/foto/foto_barang/amZzL3Q4OC8xNDcvNDczOTUxMzE3OS8xMDUyMzEvOTRmMTZkZi82MWMzMTRmYk45NWIyYTNkOA.jpg b/foto/foto_barang/amZzL3Q4OC8xNDcvNDczOTUxMzE3OS8xMDUyMzEvOTRmMTZkZi82MWMzMTRmYk45NWIyYTNkOA.jpg
deleted file mode 100644
index 4cf8ab4..0000000
Binary files a/foto/foto_barang/amZzL3Q4OC8xNDcvNDczOTUxMzE3OS8xMDUyMzEvOTRmMTZkZi82MWMzMTRmYk45NWIyYTNkOA.jpg and /dev/null differ
diff --git a/foto/foto_barang/am_crystaline_600ml.jpg b/foto/foto_barang/am_crystaline_600ml.jpg
deleted file mode 100644
index 8c16445..0000000
Binary files a/foto/foto_barang/am_crystaline_600ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/amplop_coklat_besar.jpg b/foto/foto_barang/amplop_coklat_besar.jpg
deleted file mode 100644
index 666697f..0000000
Binary files a/foto/foto_barang/amplop_coklat_besar.jpg and /dev/null differ
diff --git a/foto/foto_barang/amplop_putih_kecil.jpg b/foto/foto_barang/amplop_putih_kecil.jpg
deleted file mode 100644
index b46b88d..0000000
Binary files a/foto/foto_barang/amplop_putih_kecil.jpg and /dev/null differ
diff --git a/foto/foto_barang/apotek_online_k24klik_20200116042326303669_TAWON-MINYAK-CC-20ML.jpg b/foto/foto_barang/apotek_online_k24klik_20200116042326303669_TAWON-MINYAK-CC-20ML.jpg
deleted file mode 100644
index 0501464..0000000
Binary files a/foto/foto_barang/apotek_online_k24klik_20200116042326303669_TAWON-MINYAK-CC-20ML.jpg and /dev/null differ
diff --git a/foto/foto_barang/aqua.jpg b/foto/foto_barang/aqua.jpg
deleted file mode 100644
index a9044aa..0000000
Binary files a/foto/foto_barang/aqua.jpg and /dev/null differ
diff --git a/foto/foto_barang/aqua_aqua-air-mineral-botol--330-ml-_full02.jpg b/foto/foto_barang/aqua_aqua-air-mineral-botol--330-ml-_full02.jpg
deleted file mode 100644
index 09c5a45..0000000
Binary files a/foto/foto_barang/aqua_aqua-air-mineral-botol--330-ml-_full02.jpg and /dev/null differ
diff --git a/foto/foto_barang/asxtrr2ga1os4abfmuoe.jpg b/foto/foto_barang/asxtrr2ga1os4abfmuoe.jpg
deleted file mode 100644
index 0717e44..0000000
Binary files a/foto/foto_barang/asxtrr2ga1os4abfmuoe.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_easy_purple_blossom_700gr.jpg b/foto/foto_barang/attack_easy_purple_blossom_700gr.jpg
deleted file mode 100644
index 30fdb84..0000000
Binary files a/foto/foto_barang/attack_easy_purple_blossom_700gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_easy_romantic_700g.jpg b/foto/foto_barang/attack_easy_romantic_700g.jpg
deleted file mode 100644
index 0feefed..0000000
Binary files a/foto/foto_barang/attack_easy_romantic_700g.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_jaz1_purple_250gr.jpg b/foto/foto_barang/attack_jaz1_purple_250gr.jpg
deleted file mode 100644
index 0d30818..0000000
Binary files a/foto/foto_barang/attack_jaz1_purple_250gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_jazz1_pink_250gr.jpg b/foto/foto_barang/attack_jazz1_pink_250gr.jpg
deleted file mode 100644
index 0d626b1..0000000
Binary files a/foto/foto_barang/attack_jazz1_pink_250gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_plus_soft_liquid_800ml.jpg b/foto/foto_barang/attack_plus_soft_liquid_800ml.jpg
deleted file mode 100644
index 64b6890..0000000
Binary files a/foto/foto_barang/attack_plus_soft_liquid_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/attack_softener_anti_bau.jpg b/foto/foto_barang/attack_softener_anti_bau.jpg
deleted file mode 100644
index 3c6b654..0000000
Binary files a/foto/foto_barang/attack_softener_anti_bau.jpg and /dev/null differ
diff --git a/foto/foto_barang/autan_sakura_sachet.jpg b/foto/foto_barang/autan_sakura_sachet.jpg
deleted file mode 100644
index 70342eb..0000000
Binary files a/foto/foto_barang/autan_sakura_sachet.jpg and /dev/null differ
diff --git a/foto/foto_barang/autan_sakura_sachet1.jpg b/foto/foto_barang/autan_sakura_sachet1.jpg
deleted file mode 100644
index 70342eb..0000000
Binary files a/foto/foto_barang/autan_sakura_sachet1.jpg and /dev/null differ
diff --git a/foto/foto_barang/autan_ss_restge_7ml.jpg b/foto/foto_barang/autan_ss_restge_7ml.jpg
deleted file mode 100644
index 9a12742..0000000
Binary files a/foto/foto_barang/autan_ss_restge_7ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/axe_deo_black_150ml.jpg b/foto/foto_barang/axe_deo_black_150ml.jpg
deleted file mode 100644
index 64985cb..0000000
Binary files a/foto/foto_barang/axe_deo_black_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/axe_deo_gold_150ml.jpg b/foto/foto_barang/axe_deo_gold_150ml.jpg
deleted file mode 100644
index 75de9c8..0000000
Binary files a/foto/foto_barang/axe_deo_gold_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/axe_you_cool_charge150ml.jpg b/foto/foto_barang/axe_you_cool_charge150ml.jpg
deleted file mode 100644
index c663d16..0000000
Binary files a/foto/foto_barang/axe_you_cool_charge150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/ayam-bakar+Nasi.jpg b/foto/foto_barang/ayam-bakar+Nasi.jpg
deleted file mode 100644
index c2f9bd3..0000000
Binary files a/foto/foto_barang/ayam-bakar+Nasi.jpg and /dev/null differ
diff --git a/foto/foto_barang/ayam.jpeg b/foto/foto_barang/ayam.jpeg
deleted file mode 100644
index b661eeb..0000000
Binary files a/foto/foto_barang/ayam.jpeg and /dev/null differ
diff --git a/foto/foto_barang/ayam_cabai_hijau.jpg b/foto/foto_barang/ayam_cabai_hijau.jpg
deleted file mode 100644
index 0b07c0a..0000000
Binary files a/foto/foto_barang/ayam_cabai_hijau.jpg and /dev/null differ
diff --git a/foto/foto_barang/b01-blue-1.jpg b/foto/foto_barang/b01-blue-1.jpg
deleted file mode 100644
index 9298bd5..0000000
Binary files a/foto/foto_barang/b01-blue-1.jpg and /dev/null differ
diff --git a/foto/foto_barang/b04a7c92bf3b45fff71ae66e372207b8.jpg b/foto/foto_barang/b04a7c92bf3b45fff71ae66e372207b8.jpg
deleted file mode 100644
index 55fdb85..0000000
Binary files a/foto/foto_barang/b04a7c92bf3b45fff71ae66e372207b8.jpg and /dev/null differ
diff --git a/foto/foto_barang/b0b11cfa-b76b-4e9c-96cd-c8485b2d41bb.jpg b/foto/foto_barang/b0b11cfa-b76b-4e9c-96cd-c8485b2d41bb.jpg
deleted file mode 100644
index 094300a..0000000
Binary files a/foto/foto_barang/b0b11cfa-b76b-4e9c-96cd-c8485b2d41bb.jpg and /dev/null differ
diff --git a/foto/foto_barang/b2689fe2-157f-442b-8446-24075ebc1632.jpg b/foto/foto_barang/b2689fe2-157f-442b-8446-24075ebc1632.jpg
deleted file mode 100644
index 76a72d7..0000000
Binary files a/foto/foto_barang/b2689fe2-157f-442b-8446-24075ebc1632.jpg and /dev/null differ
diff --git a/foto/foto_barang/b2e928fbf05ffc6d6d97a7d91f344db3.jpg b/foto/foto_barang/b2e928fbf05ffc6d6d97a7d91f344db3.jpg
deleted file mode 100644
index 27d5238..0000000
Binary files a/foto/foto_barang/b2e928fbf05ffc6d6d97a7d91f344db3.jpg and /dev/null differ
diff --git a/foto/foto_barang/b49d0c455b18a24e81244d406f830e99.jpg b/foto/foto_barang/b49d0c455b18a24e81244d406f830e99.jpg
deleted file mode 100644
index 35b2b85..0000000
Binary files a/foto/foto_barang/b49d0c455b18a24e81244d406f830e99.jpg and /dev/null differ
diff --git a/foto/foto_barang/b4e2800341c63d2ee99e7a7e31602045.jpg b/foto/foto_barang/b4e2800341c63d2ee99e7a7e31602045.jpg
deleted file mode 100644
index d2f4032..0000000
Binary files a/foto/foto_barang/b4e2800341c63d2ee99e7a7e31602045.jpg and /dev/null differ
diff --git a/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a6.jpg b/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a6.jpg
deleted file mode 100644
index 8da376c..0000000
Binary files a/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a6.jpg and /dev/null differ
diff --git a/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a61.jpg b/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a61.jpg
deleted file mode 100644
index 8da376c..0000000
Binary files a/foto/foto_barang/b5865dc9-aaf5-4c31-8591-fffac31c26a61.jpg and /dev/null differ
diff --git a/foto/foto_barang/b5fded4960a194d7ca7085bd1bf1db8e.jpg b/foto/foto_barang/b5fded4960a194d7ca7085bd1bf1db8e.jpg
deleted file mode 100644
index 3f1ce98..0000000
Binary files a/foto/foto_barang/b5fded4960a194d7ca7085bd1bf1db8e.jpg and /dev/null differ
diff --git a/foto/foto_barang/b66f606b-9b13-46a0-bcf1-094142d811e8.jpg b/foto/foto_barang/b66f606b-9b13-46a0-bcf1-094142d811e8.jpg
deleted file mode 100644
index d5218ff..0000000
Binary files a/foto/foto_barang/b66f606b-9b13-46a0-bcf1-094142d811e8.jpg and /dev/null differ
diff --git a/foto/foto_barang/b67004bf0058ff7c6991c1c738674098.jpg b/foto/foto_barang/b67004bf0058ff7c6991c1c738674098.jpg
deleted file mode 100644
index 1ef1790..0000000
Binary files a/foto/foto_barang/b67004bf0058ff7c6991c1c738674098.jpg and /dev/null differ
diff --git a/foto/foto_barang/b79d95d7238bf634dc69880af7aa4ac5.jpg b/foto/foto_barang/b79d95d7238bf634dc69880af7aa4ac5.jpg
deleted file mode 100644
index 7a1717f..0000000
Binary files a/foto/foto_barang/b79d95d7238bf634dc69880af7aa4ac5.jpg and /dev/null differ
diff --git a/foto/foto_barang/b8aed1b2-615b-4b12-964d-3e56953ac536.jpg b/foto/foto_barang/b8aed1b2-615b-4b12-964d-3e56953ac536.jpg
deleted file mode 100644
index d65c6db..0000000
Binary files a/foto/foto_barang/b8aed1b2-615b-4b12-964d-3e56953ac536.jpg and /dev/null differ
diff --git a/foto/foto_barang/b8e41b4e851c2224b0522608289ebc6c.jpg b/foto/foto_barang/b8e41b4e851c2224b0522608289ebc6c.jpg
deleted file mode 100644
index 84d35a1..0000000
Binary files a/foto/foto_barang/b8e41b4e851c2224b0522608289ebc6c.jpg and /dev/null differ
diff --git a/foto/foto_barang/b8ebdfe8-fab4-4379-8447-9f0a79312b30.jpg b/foto/foto_barang/b8ebdfe8-fab4-4379-8447-9f0a79312b30.jpg
deleted file mode 100644
index b7e3e97..0000000
Binary files a/foto/foto_barang/b8ebdfe8-fab4-4379-8447-9f0a79312b30.jpg and /dev/null differ
diff --git a/foto/foto_barang/ba2465f93269832ff66d97ca94c6ec11.jpg b/foto/foto_barang/ba2465f93269832ff66d97ca94c6ec11.jpg
deleted file mode 100644
index db7f036..0000000
Binary files a/foto/foto_barang/ba2465f93269832ff66d97ca94c6ec11.jpg and /dev/null differ
diff --git a/foto/foto_barang/bad35b88bf753a218d85538794c2dd33.jpg b/foto/foto_barang/bad35b88bf753a218d85538794c2dd33.jpg
deleted file mode 100644
index aa4b9ed..0000000
Binary files a/foto/foto_barang/bad35b88bf753a218d85538794c2dd33.jpg and /dev/null differ
diff --git a/foto/foto_barang/bagus_anti_bau_kulkas.jpg b/foto/foto_barang/bagus_anti_bau_kulkas.jpg
deleted file mode 100644
index ed2ddd2..0000000
Binary files a/foto/foto_barang/bagus_anti_bau_kulkas.jpg and /dev/null differ
diff --git a/foto/foto_barang/bagus_bagus-serapair-hanger-penyerap-lembab--50-ml--4-_full03.jpg b/foto/foto_barang/bagus_bagus-serapair-hanger-penyerap-lembab--50-ml--4-_full03.jpg
deleted file mode 100644
index d572541..0000000
Binary files a/foto/foto_barang/bagus_bagus-serapair-hanger-penyerap-lembab--50-ml--4-_full03.jpg and /dev/null differ
diff --git a/foto/foto_barang/balsem_geliga_10g.jpg b/foto/foto_barang/balsem_geliga_10g.jpg
deleted file mode 100644
index ad6a84b..0000000
Binary files a/foto/foto_barang/balsem_geliga_10g.jpg and /dev/null differ
diff --git a/foto/foto_barang/balsem_geliga_20g.jpg b/foto/foto_barang/balsem_geliga_20g.jpg
deleted file mode 100644
index c0ee97b..0000000
Binary files a/foto/foto_barang/balsem_geliga_20g.jpg and /dev/null differ
diff --git a/foto/foto_barang/bantex_magazine_file.jpg b/foto/foto_barang/bantex_magazine_file.jpg
deleted file mode 100644
index 65e19bd..0000000
Binary files a/foto/foto_barang/bantex_magazine_file.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_166ce053-c4e8-466b-bb4f-b8d553fed1f1.jpg b/foto/foto_barang/batch-upload_166ce053-c4e8-466b-bb4f-b8d553fed1f1.jpg
deleted file mode 100644
index c38c88e..0000000
Binary files a/foto/foto_barang/batch-upload_166ce053-c4e8-466b-bb4f-b8d553fed1f1.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_2d6eef4a-347b-411e-a202-0a8045208a20.jpg b/foto/foto_barang/batch-upload_2d6eef4a-347b-411e-a202-0a8045208a20.jpg
deleted file mode 100644
index ded724d..0000000
Binary files a/foto/foto_barang/batch-upload_2d6eef4a-347b-411e-a202-0a8045208a20.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_6e4cdde6-b0bc-4b5b-9eb0-209b4dc8e804.jpg b/foto/foto_barang/batch-upload_6e4cdde6-b0bc-4b5b-9eb0-209b4dc8e804.jpg
deleted file mode 100644
index 2c58b02..0000000
Binary files a/foto/foto_barang/batch-upload_6e4cdde6-b0bc-4b5b-9eb0-209b4dc8e804.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_8bcc905b-6f67-4142-8782-20908567527f.jpg b/foto/foto_barang/batch-upload_8bcc905b-6f67-4142-8782-20908567527f.jpg
deleted file mode 100644
index 94351f4..0000000
Binary files a/foto/foto_barang/batch-upload_8bcc905b-6f67-4142-8782-20908567527f.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_9d89b3f7-5f0f-473b-b657-e2204eca9cb1.jpg b/foto/foto_barang/batch-upload_9d89b3f7-5f0f-473b-b657-e2204eca9cb1.jpg
deleted file mode 100644
index 1962965..0000000
Binary files a/foto/foto_barang/batch-upload_9d89b3f7-5f0f-473b-b657-e2204eca9cb1.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_c0bbbc5d-2239-4794-abf6-55f1d067cf11.jpg b/foto/foto_barang/batch-upload_c0bbbc5d-2239-4794-abf6-55f1d067cf11.jpg
deleted file mode 100644
index 842b100..0000000
Binary files a/foto/foto_barang/batch-upload_c0bbbc5d-2239-4794-abf6-55f1d067cf11.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_ed3e5019-9fdc-4640-9737-91b10de5627e.jpg b/foto/foto_barang/batch-upload_ed3e5019-9fdc-4640-9737-91b10de5627e.jpg
deleted file mode 100644
index 2110880..0000000
Binary files a/foto/foto_barang/batch-upload_ed3e5019-9fdc-4640-9737-91b10de5627e.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_f5cd3127-dffa-4cbe-8668-47750a89332d.jpg b/foto/foto_barang/batch-upload_f5cd3127-dffa-4cbe-8668-47750a89332d.jpg
deleted file mode 100644
index 871d5cc..0000000
Binary files a/foto/foto_barang/batch-upload_f5cd3127-dffa-4cbe-8668-47750a89332d.jpg and /dev/null differ
diff --git a/foto/foto_barang/batch-upload_fe852454-88c2-4813-ad13-a7d2cb872883.jpg b/foto/foto_barang/batch-upload_fe852454-88c2-4813-ad13-a7d2cb872883.jpg
deleted file mode 100644
index dada697..0000000
Binary files a/foto/foto_barang/batch-upload_fe852454-88c2-4813-ad13-a7d2cb872883.jpg and /dev/null differ
diff --git a/foto/foto_barang/baterai_abc.jpg b/foto/foto_barang/baterai_abc.jpg
deleted file mode 100644
index 4202158..0000000
Binary files a/foto/foto_barang/baterai_abc.jpg and /dev/null differ
diff --git a/foto/foto_barang/baterai_alkaline.jpg b/foto/foto_barang/baterai_alkaline.jpg
deleted file mode 100644
index eee405e..0000000
Binary files a/foto/foto_barang/baterai_alkaline.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_fresh_1_Liter.jpg b/foto/foto_barang/bayclin_fresh_1_Liter.jpg
deleted file mode 100644
index 25f935c..0000000
Binary files a/foto/foto_barang/bayclin_fresh_1_Liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_lemon_1_Liter.jpg b/foto/foto_barang/bayclin_lemon_1_Liter.jpg
deleted file mode 100644
index 2fe0563..0000000
Binary files a/foto/foto_barang/bayclin_lemon_1_Liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_lemon_500ml.jpg b/foto/foto_barang/bayclin_lemon_500ml.jpg
deleted file mode 100644
index 9df47ad..0000000
Binary files a/foto/foto_barang/bayclin_lemon_500ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_reg_100ml.jpg b/foto/foto_barang/bayclin_reg_100ml.jpg
deleted file mode 100644
index 4058f26..0000000
Binary files a/foto/foto_barang/bayclin_reg_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_reg_1_Liter.jpg b/foto/foto_barang/bayclin_reg_1_Liter.jpg
deleted file mode 100644
index 7502258..0000000
Binary files a/foto/foto_barang/bayclin_reg_1_Liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_reg_1_Liter1.jpg b/foto/foto_barang/bayclin_reg_1_Liter1.jpg
deleted file mode 100644
index 7502258..0000000
Binary files a/foto/foto_barang/bayclin_reg_1_Liter1.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayclin_reg_200ml.jpg b/foto/foto_barang/bayclin_reg_200ml.jpg
deleted file mode 100644
index 902535e..0000000
Binary files a/foto/foto_barang/bayclin_reg_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/baygon_baygon-max-jumbo-sedikit-asap-fresh-scent-10-jam-anti-nyamuk-bakar--150-g-_full02.jpg b/foto/foto_barang/baygon_baygon-max-jumbo-sedikit-asap-fresh-scent-10-jam-anti-nyamuk-bakar--150-g-_full02.jpg
deleted file mode 100644
index c12b1af..0000000
Binary files a/foto/foto_barang/baygon_baygon-max-jumbo-sedikit-asap-fresh-scent-10-jam-anti-nyamuk-bakar--150-g-_full02.jpg and /dev/null differ
diff --git a/foto/foto_barang/baygon_baygon_aeorosol_flower_garden_600-75ml_full01_026bb3aa.jpg b/foto/foto_barang/baygon_baygon_aeorosol_flower_garden_600-75ml_full01_026bb3aa.jpg
deleted file mode 100644
index 5acd397..0000000
Binary files a/foto/foto_barang/baygon_baygon_aeorosol_flower_garden_600-75ml_full01_026bb3aa.jpg and /dev/null differ
diff --git a/foto/foto_barang/bayi-removebg-preview.png b/foto/foto_barang/bayi-removebg-preview.png
deleted file mode 100644
index cb0134c..0000000
Binary files a/foto/foto_barang/bayi-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/bb06bba6d20acb08be45d21855a0d3f1.jpg b/foto/foto_barang/bb06bba6d20acb08be45d21855a0d3f1.jpg
deleted file mode 100644
index 5478cb2..0000000
Binary files a/foto/foto_barang/bb06bba6d20acb08be45d21855a0d3f1.jpg and /dev/null differ
diff --git a/foto/foto_barang/bcf6106ef176ea8e93e77986143893cc.jpg b/foto/foto_barang/bcf6106ef176ea8e93e77986143893cc.jpg
deleted file mode 100644
index fafe48d..0000000
Binary files a/foto/foto_barang/bcf6106ef176ea8e93e77986143893cc.jpg and /dev/null differ
diff --git a/foto/foto_barang/bd277d5d9aa894a3b4462a677a257c04.jpg b/foto/foto_barang/bd277d5d9aa894a3b4462a677a257c04.jpg
deleted file mode 100644
index faaa2d0..0000000
Binary files a/foto/foto_barang/bd277d5d9aa894a3b4462a677a257c04.jpg and /dev/null differ
diff --git a/foto/foto_barang/bd35807ec9499c6afc468540d2ac4802.jpg b/foto/foto_barang/bd35807ec9499c6afc468540d2ac4802.jpg
deleted file mode 100644
index 8c38612..0000000
Binary files a/foto/foto_barang/bd35807ec9499c6afc468540d2ac4802.jpg and /dev/null differ
diff --git a/foto/foto_barang/bd7879f8-f90c-4820-8a4c-24a7c872b5e5.jpg b/foto/foto_barang/bd7879f8-f90c-4820-8a4c-24a7c872b5e5.jpg
deleted file mode 100644
index 6778686..0000000
Binary files a/foto/foto_barang/bd7879f8-f90c-4820-8a4c-24a7c872b5e5.jpg and /dev/null differ
diff --git a/foto/foto_barang/bec8bfe9-3e3a-4b21-a8e8-c91686efd4b4.jpg b/foto/foto_barang/bec8bfe9-3e3a-4b21-a8e8-c91686efd4b4.jpg
deleted file mode 100644
index 71eff41..0000000
Binary files a/foto/foto_barang/bec8bfe9-3e3a-4b21-a8e8-c91686efd4b4.jpg and /dev/null differ
diff --git a/foto/foto_barang/beng_beng_maxx_32g.jpg b/foto/foto_barang/beng_beng_maxx_32g.jpg
deleted file mode 100644
index b9531fa..0000000
Binary files a/foto/foto_barang/beng_beng_maxx_32g.jpg and /dev/null differ
diff --git a/foto/foto_barang/benq_proyektor.jpg b/foto/foto_barang/benq_proyektor.jpg
deleted file mode 100644
index 08da5eb..0000000
Binary files a/foto/foto_barang/benq_proyektor.jpg and /dev/null differ
diff --git a/foto/foto_barang/beras_dua_anak_25_kg_biru.jpg b/foto/foto_barang/beras_dua_anak_25_kg_biru.jpg
deleted file mode 100644
index 73f0410..0000000
Binary files a/foto/foto_barang/beras_dua_anak_25_kg_biru.jpg and /dev/null differ
diff --git a/foto/foto_barang/beras_kencur_small_1585908671730_resized1024.jpg b/foto/foto_barang/beras_kencur_small_1585908671730_resized1024.jpg
deleted file mode 100644
index bf4c61c..0000000
Binary files a/foto/foto_barang/beras_kencur_small_1585908671730_resized1024.jpg and /dev/null differ
diff --git a/foto/foto_barang/beras_macan_5_kg.jpg b/foto/foto_barang/beras_macan_5_kg.jpg
deleted file mode 100644
index f2b0d74..0000000
Binary files a/foto/foto_barang/beras_macan_5_kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/beras_putri_koki_5kg_premium.jpg b/foto/foto_barang/beras_putri_koki_5kg_premium.jpg
deleted file mode 100644
index c085871..0000000
Binary files a/foto/foto_barang/beras_putri_koki_5kg_premium.jpg and /dev/null differ
diff --git a/foto/foto_barang/betadine.jpg b/foto/foto_barang/betadine.jpg
deleted file mode 100644
index 7ab890b..0000000
Binary files a/foto/foto_barang/betadine.jpg and /dev/null differ
diff --git a/foto/foto_barang/better_big_pack_120g.jpg b/foto/foto_barang/better_big_pack_120g.jpg
deleted file mode 100644
index 8abab0e..0000000
Binary files a/foto/foto_barang/better_big_pack_120g.jpg and /dev/null differ
diff --git a/foto/foto_barang/better_vanilla_funbites_48gr.jpg b/foto/foto_barang/better_vanilla_funbites_48gr.jpg
deleted file mode 100644
index 9e0d91f..0000000
Binary files a/foto/foto_barang/better_vanilla_funbites_48gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/bf51c2f2-04b7-4d63-ac85-ca433ed9d745.jpg b/foto/foto_barang/bf51c2f2-04b7-4d63-ac85-ca433ed9d745.jpg
deleted file mode 100644
index dcb0faf..0000000
Binary files a/foto/foto_barang/bf51c2f2-04b7-4d63-ac85-ca433ed9d745.jpg and /dev/null differ
diff --git a/foto/foto_barang/bff3ece8-2c8e-429d-95b8-8afed157b394.jpg b/foto/foto_barang/bff3ece8-2c8e-429d-95b8-8afed157b394.jpg
deleted file mode 100644
index 2f3b0bd..0000000
Binary files a/foto/foto_barang/bff3ece8-2c8e-429d-95b8-8afed157b394.jpg and /dev/null differ
diff --git a/foto/foto_barang/bijih_stepler.jpg b/foto/foto_barang/bijih_stepler.jpg
deleted file mode 100644
index 6fe2b96..0000000
Binary files a/foto/foto_barang/bijih_stepler.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_bf_pure_mild_100ml_1.jpg b/foto/foto_barang/biore_bf_pure_mild_100ml_1.jpg
deleted file mode 100644
index 6999461..0000000
Binary files a/foto/foto_barang/biore_bf_pure_mild_100ml_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_bf_relaxing_aromatic_100ml.jpg b/foto/foto_barang/biore_bf_relaxing_aromatic_100ml.jpg
deleted file mode 100644
index cbcaec3..0000000
Binary files a/foto/foto_barang/biore_bf_relaxing_aromatic_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_bf_white_scrub_100ml.jpg b/foto/foto_barang/biore_bf_white_scrub_100ml.jpg
deleted file mode 100644
index ae89dec..0000000
Binary files a/foto/foto_barang/biore_bf_white_scrub_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_bw_lovely_cherry_sakura_250ml.jpg b/foto/foto_barang/biore_bw_lovely_cherry_sakura_250ml.jpg
deleted file mode 100644
index 105a341..0000000
Binary files a/foto/foto_barang/biore_bw_lovely_cherry_sakura_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_fc_mild_smooth_40gr.jpg b/foto/foto_barang/biore_fc_mild_smooth_40gr.jpg
deleted file mode 100644
index 049fc58..0000000
Binary files a/foto/foto_barang/biore_fc_mild_smooth_40gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_acne_act_100gr_1.jpg b/foto/foto_barang/biore_mens_acne_act_100gr_1.jpg
deleted file mode 100644
index cbf331b..0000000
Binary files a/foto/foto_barang/biore_mens_acne_act_100gr_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_body_foam_cool_energy_250ml_1.jpeg b/foto/foto_barang/biore_mens_body_foam_cool_energy_250ml_1.jpeg
deleted file mode 100644
index a09aefa..0000000
Binary files a/foto/foto_barang/biore_mens_body_foam_cool_energy_250ml_1.jpeg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_cool_oil_100gr.jpg b/foto/foto_barang/biore_mens_cool_oil_100gr.jpg
deleted file mode 100644
index c079423..0000000
Binary files a/foto/foto_barang/biore_mens_cool_oil_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_cool_oil_40gr.jpg b/foto/foto_barang/biore_mens_cool_oil_40gr.jpg
deleted file mode 100644
index ca86ec0..0000000
Binary files a/foto/foto_barang/biore_mens_cool_oil_40gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_cool_oil_clear_20gr.jpg b/foto/foto_barang/biore_mens_cool_oil_clear_20gr.jpg
deleted file mode 100644
index 610a906..0000000
Binary files a/foto/foto_barang/biore_mens_cool_oil_clear_20gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_energy100gr.jpg b/foto/foto_barang/biore_mens_energy100gr.jpg
deleted file mode 100644
index 13ac385..0000000
Binary files a/foto/foto_barang/biore_mens_energy100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_mens_ff_white_energy_40gr.jpg b/foto/foto_barang/biore_mens_ff_white_energy_40gr.jpg
deleted file mode 100644
index 265ab15..0000000
Binary files a/foto/foto_barang/biore_mens_ff_white_energy_40gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_pore_pack_black.jpg b/foto/foto_barang/biore_pore_pack_black.jpg
deleted file mode 100644
index cc84eae..0000000
Binary files a/foto/foto_barang/biore_pore_pack_black.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_pump_lively_refresh_550ml.jpg b/foto/foto_barang/biore_pump_lively_refresh_550ml.jpg
deleted file mode 100644
index 5ab8ab8..0000000
Binary files a/foto/foto_barang/biore_pump_lively_refresh_550ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/biore_pump_pure_mild_550ml.jpg b/foto/foto_barang/biore_pump_pure_mild_550ml.jpg
deleted file mode 100644
index 41047b0..0000000
Binary files a/foto/foto_barang/biore_pump_pure_mild_550ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/biskitop_vegetable_and_cheese.jpg b/foto/foto_barang/biskitop_vegetable_and_cheese.jpg
deleted file mode 100644
index b5e6e9d..0000000
Binary files a/foto/foto_barang/biskitop_vegetable_and_cheese.jpg and /dev/null differ
diff --git a/foto/foto_barang/biskuat_bolu_coklat_16_gr.jpg b/foto/foto_barang/biskuat_bolu_coklat_16_gr.jpg
deleted file mode 100644
index bcb96e1..0000000
Binary files a/foto/foto_barang/biskuat_bolu_coklat_16_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biskuat_coklat_134gr.jpg b/foto/foto_barang/biskuat_coklat_134gr.jpg
deleted file mode 100644
index e9ae794..0000000
Binary files a/foto/foto_barang/biskuat_coklat_134gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biskuat_ori_140gr.jpg b/foto/foto_barang/biskuat_ori_140gr.jpg
deleted file mode 100644
index e088879..0000000
Binary files a/foto/foto_barang/biskuat_ori_140gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/biskuat_ori_65gr.jpg b/foto/foto_barang/biskuat_ori_65gr.jpg
deleted file mode 100644
index 9deace2..0000000
Binary files a/foto/foto_barang/biskuat_ori_65gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/bisolvon_extra_berdahak_60ml.jpeg b/foto/foto_barang/bisolvon_extra_berdahak_60ml.jpeg
deleted file mode 100644
index 07c7fea..0000000
Binary files a/foto/foto_barang/bisolvon_extra_berdahak_60ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/blaster_choco_125gr.jpg b/foto/foto_barang/blaster_choco_125gr.jpg
deleted file mode 100644
index 808e2cd..0000000
Binary files a/foto/foto_barang/blaster_choco_125gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/bodrex_flu_batuk_4_kaplet.jpg b/foto/foto_barang/bodrex_flu_batuk_4_kaplet.jpg
deleted file mode 100644
index 8a90ce5..0000000
Binary files a/foto/foto_barang/bodrex_flu_batuk_4_kaplet.jpg and /dev/null differ
diff --git a/foto/foto_barang/bodrex_tablet_20.jpg b/foto/foto_barang/bodrex_tablet_20.jpg
deleted file mode 100644
index 7d8cca5..0000000
Binary files a/foto/foto_barang/bodrex_tablet_20.jpg and /dev/null differ
diff --git a/foto/foto_barang/bogasari_bogasari-terigu-segitiga-biru-1-kg.jpg b/foto/foto_barang/bogasari_bogasari-terigu-segitiga-biru-1-kg.jpg
deleted file mode 100644
index f83f8c8..0000000
Binary files a/foto/foto_barang/bogasari_bogasari-terigu-segitiga-biru-1-kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/bogasari_tepung_terigu_kunci_biru_bogasari_1kg.jpg b/foto/foto_barang/bogasari_tepung_terigu_kunci_biru_bogasari_1kg.jpg
deleted file mode 100644
index 27c2736..0000000
Binary files a/foto/foto_barang/bogasari_tepung_terigu_kunci_biru_bogasari_1kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/bogasari_terigu_cakra_kembar_1_kg.jpg b/foto/foto_barang/bogasari_terigu_cakra_kembar_1_kg.jpg
deleted file mode 100644
index 664cd72..0000000
Binary files a/foto/foto_barang/bogasari_terigu_cakra_kembar_1_kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/bolpoin.jpg b/foto/foto_barang/bolpoin.jpg
deleted file mode 100644
index 9908906..0000000
Binary files a/foto/foto_barang/bolpoin.jpg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_ori_level_10_50g.jpg b/foto/foto_barang/boncabe_ori_level_10_50g.jpg
deleted file mode 100644
index 2ee9c07..0000000
Binary files a/foto/foto_barang/boncabe_ori_level_10_50g.jpg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_ori_level_10_50g1.jpg b/foto/foto_barang/boncabe_ori_level_10_50g1.jpg
deleted file mode 100644
index 2ee9c07..0000000
Binary files a/foto/foto_barang/boncabe_ori_level_10_50g1.jpg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_ori_level_10_50g2.jpg b/foto/foto_barang/boncabe_ori_level_10_50g2.jpg
deleted file mode 100644
index 2ee9c07..0000000
Binary files a/foto/foto_barang/boncabe_ori_level_10_50g2.jpg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_ori_level_15_45gr.jpg b/foto/foto_barang/boncabe_ori_level_15_45gr.jpg
deleted file mode 100644
index 07f1b28..0000000
Binary files a/foto/foto_barang/boncabe_ori_level_15_45gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_original_level_30_40gr.jpeg b/foto/foto_barang/boncabe_original_level_30_40gr.jpeg
deleted file mode 100644
index b214305..0000000
Binary files a/foto/foto_barang/boncabe_original_level_30_40gr.jpeg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_original_level_30_40gr1.jpeg b/foto/foto_barang/boncabe_original_level_30_40gr1.jpeg
deleted file mode 100644
index b214305..0000000
Binary files a/foto/foto_barang/boncabe_original_level_30_40gr1.jpeg and /dev/null differ
diff --git a/foto/foto_barang/boncabe_teri_50_gr.jpg b/foto/foto_barang/boncabe_teri_50_gr.jpg
deleted file mode 100644
index 686de32..0000000
Binary files a/foto/foto_barang/boncabe_teri_50_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/boom_powder_putih_315gr.jpg b/foto/foto_barang/boom_powder_putih_315gr.jpg
deleted file mode 100644
index b67d13d..0000000
Binary files a/foto/foto_barang/boom_powder_putih_315gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/brio_go_potato_60g.jpg b/foto/foto_barang/brio_go_potato_60g.jpg
deleted file mode 100644
index d34e6c5..0000000
Binary files a/foto/foto_barang/brio_go_potato_60g.jpg and /dev/null differ
diff --git a/foto/foto_barang/brio_go_potato_original_104g.jpg b/foto/foto_barang/brio_go_potato_original_104g.jpg
deleted file mode 100644
index 95a7757..0000000
Binary files a/foto/foto_barang/brio_go_potato_original_104g.jpg and /dev/null differ
diff --git a/foto/foto_barang/buavita_apple_250ml.jpg b/foto/foto_barang/buavita_apple_250ml.jpg
deleted file mode 100644
index 2e6281d..0000000
Binary files a/foto/foto_barang/buavita_apple_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/buku_catatan.jpg b/foto/foto_barang/buku_catatan.jpg
deleted file mode 100644
index 898636c..0000000
Binary files a/foto/foto_barang/buku_catatan.jpg and /dev/null differ
diff --git a/foto/foto_barang/buku_folio_bergaris.jpg b/foto/foto_barang/buku_folio_bergaris.jpg
deleted file mode 100644
index f004def..0000000
Binary files a/foto/foto_barang/buku_folio_bergaris.jpg and /dev/null differ
diff --git a/foto/foto_barang/buku_gambar_A3.png b/foto/foto_barang/buku_gambar_A3.png
deleted file mode 100644
index 78d8973..0000000
Binary files a/foto/foto_barang/buku_gambar_A3.png and /dev/null differ
diff --git a/foto/foto_barang/buku_gambar_a3.jpg b/foto/foto_barang/buku_gambar_a3.jpg
deleted file mode 100644
index 5edc3aa..0000000
Binary files a/foto/foto_barang/buku_gambar_a3.jpg and /dev/null differ
diff --git a/foto/foto_barang/buku_tulis.jpg b/foto/foto_barang/buku_tulis.jpg
deleted file mode 100644
index 8650109..0000000
Binary files a/foto/foto_barang/buku_tulis.jpg and /dev/null differ
diff --git a/foto/foto_barang/by-lel-33.jpg b/foto/foto_barang/by-lel-33.jpg
deleted file mode 100644
index cc1d1ad..0000000
Binary files a/foto/foto_barang/by-lel-33.jpg and /dev/null differ
diff --git a/foto/foto_barang/c0041aa96bfb78f952dc0ad70700082e.jpg b/foto/foto_barang/c0041aa96bfb78f952dc0ad70700082e.jpg
deleted file mode 100644
index e684844..0000000
Binary files a/foto/foto_barang/c0041aa96bfb78f952dc0ad70700082e.jpg and /dev/null differ
diff --git a/foto/foto_barang/c0d9ce7cd4e2b75958e05b1bf43fd6f1.jpg b/foto/foto_barang/c0d9ce7cd4e2b75958e05b1bf43fd6f1.jpg
deleted file mode 100644
index f39cf57..0000000
Binary files a/foto/foto_barang/c0d9ce7cd4e2b75958e05b1bf43fd6f1.jpg and /dev/null differ
diff --git a/foto/foto_barang/c111cd1288c810e321f534d0675ee9c3.jpg b/foto/foto_barang/c111cd1288c810e321f534d0675ee9c3.jpg
deleted file mode 100644
index 574f3e0..0000000
Binary files a/foto/foto_barang/c111cd1288c810e321f534d0675ee9c3.jpg and /dev/null differ
diff --git a/foto/foto_barang/c144c3df0e6b619c0668332365570906.jpg b/foto/foto_barang/c144c3df0e6b619c0668332365570906.jpg
deleted file mode 100644
index a82289c..0000000
Binary files a/foto/foto_barang/c144c3df0e6b619c0668332365570906.jpg and /dev/null differ
diff --git a/foto/foto_barang/c37e3b3bfdde195f8782464fa34bd66c.jpg b/foto/foto_barang/c37e3b3bfdde195f8782464fa34bd66c.jpg
deleted file mode 100644
index 68c0db3..0000000
Binary files a/foto/foto_barang/c37e3b3bfdde195f8782464fa34bd66c.jpg and /dev/null differ
diff --git a/foto/foto_barang/c3f2cdd74bc463d84a65b912e8eefcb0.jpg b/foto/foto_barang/c3f2cdd74bc463d84a65b912e8eefcb0.jpg
deleted file mode 100644
index fbf6370..0000000
Binary files a/foto/foto_barang/c3f2cdd74bc463d84a65b912e8eefcb0.jpg and /dev/null differ
diff --git a/foto/foto_barang/c5a27a4c76092fa12a0f4a3fae55391b.jpg b/foto/foto_barang/c5a27a4c76092fa12a0f4a3fae55391b.jpg
deleted file mode 100644
index fcfde48..0000000
Binary files a/foto/foto_barang/c5a27a4c76092fa12a0f4a3fae55391b.jpg and /dev/null differ
diff --git a/foto/foto_barang/c5c373c297e85f12c54dff756927c903.jpg b/foto/foto_barang/c5c373c297e85f12c54dff756927c903.jpg
deleted file mode 100644
index 381b658..0000000
Binary files a/foto/foto_barang/c5c373c297e85f12c54dff756927c903.jpg and /dev/null differ
diff --git a/foto/foto_barang/c68e058f-5e99-4ecd-b8a5-df7415e46798.jpg b/foto/foto_barang/c68e058f-5e99-4ecd-b8a5-df7415e46798.jpg
deleted file mode 100644
index f63d835..0000000
Binary files a/foto/foto_barang/c68e058f-5e99-4ecd-b8a5-df7415e46798.jpg and /dev/null differ
diff --git a/foto/foto_barang/c701718caad38cfc11e818b7d98bbb91.jpg b/foto/foto_barang/c701718caad38cfc11e818b7d98bbb91.jpg
deleted file mode 100644
index ada8050..0000000
Binary files a/foto/foto_barang/c701718caad38cfc11e818b7d98bbb91.jpg and /dev/null differ
diff --git a/foto/foto_barang/c78892a6-6879-48bb-8d1b-7449508235e4.jpg b/foto/foto_barang/c78892a6-6879-48bb-8d1b-7449508235e4.jpg
deleted file mode 100644
index 404e869..0000000
Binary files a/foto/foto_barang/c78892a6-6879-48bb-8d1b-7449508235e4.jpg and /dev/null differ
diff --git a/foto/foto_barang/c806e299817de20c0e5a55a9044b021c.jpg b/foto/foto_barang/c806e299817de20c0e5a55a9044b021c.jpg
deleted file mode 100644
index 22883d2..0000000
Binary files a/foto/foto_barang/c806e299817de20c0e5a55a9044b021c.jpg and /dev/null differ
diff --git a/foto/foto_barang/c90b7d9a5428c1738d7c5e9572ef87cd.jpg b/foto/foto_barang/c90b7d9a5428c1738d7c5e9572ef87cd.jpg
deleted file mode 100644
index a7ba2c2..0000000
Binary files a/foto/foto_barang/c90b7d9a5428c1738d7c5e9572ef87cd.jpg and /dev/null differ
diff --git a/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4.jpg b/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4.jpg
deleted file mode 100644
index 73f0410..0000000
Binary files a/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4.jpg and /dev/null differ
diff --git a/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4_2.jpg b/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4_2.jpg
deleted file mode 100644
index 73f0410..0000000
Binary files a/foto/foto_barang/c94dc0cc-6d6e-4e0c-8153-e9b478cfc9b4_2.jpg and /dev/null differ
diff --git a/foto/foto_barang/c9de5a27-044e-4975-b1ab-61bd841d55f9.jpg b/foto/foto_barang/c9de5a27-044e-4975-b1ab-61bd841d55f9.jpg
deleted file mode 100644
index 15c840a..0000000
Binary files a/foto/foto_barang/c9de5a27-044e-4975-b1ab-61bd841d55f9.jpg and /dev/null differ
diff --git a/foto/foto_barang/ca75740e27f20a87ecdf83d01df261a6.jpg b/foto/foto_barang/ca75740e27f20a87ecdf83d01df261a6.jpg
deleted file mode 100644
index 92e016b..0000000
Binary files a/foto/foto_barang/ca75740e27f20a87ecdf83d01df261a6.jpg and /dev/null differ
diff --git a/foto/foto_barang/caadeb92789b8f817e5a4ee252e182c2.jpg b/foto/foto_barang/caadeb92789b8f817e5a4ee252e182c2.jpg
deleted file mode 100644
index aeead14..0000000
Binary files a/foto/foto_barang/caadeb92789b8f817e5a4ee252e182c2.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_cashew_nut_30g.jpg b/foto/foto_barang/cadbury_cashew_nut_30g.jpg
deleted file mode 100644
index 956911b..0000000
Binary files a/foto/foto_barang/cadbury_cashew_nut_30g.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_chocolate_30g.jpg b/foto/foto_barang/cadbury_chocolate_30g.jpg
deleted file mode 100644
index 19935a7..0000000
Binary files a/foto/foto_barang/cadbury_chocolate_30g.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_dairy_milk_65gr.jpg b/foto/foto_barang/cadbury_dairy_milk_65gr.jpg
deleted file mode 100644
index 3d71491..0000000
Binary files a/foto/foto_barang/cadbury_dairy_milk_65gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_fruit_nut_65g.jpg b/foto/foto_barang/cadbury_fruit_nut_65g.jpg
deleted file mode 100644
index 4f55e67..0000000
Binary files a/foto/foto_barang/cadbury_fruit_nut_65g.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_fruit_nut_65g1.jpg b/foto/foto_barang/cadbury_fruit_nut_65g1.jpg
deleted file mode 100644
index 4f55e67..0000000
Binary files a/foto/foto_barang/cadbury_fruit_nut_65g1.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_fruit_nut_65g2.jpg b/foto/foto_barang/cadbury_fruit_nut_65g2.jpg
deleted file mode 100644
index ffed5f4..0000000
Binary files a/foto/foto_barang/cadbury_fruit_nut_65g2.jpg and /dev/null differ
diff --git a/foto/foto_barang/cadbury_lickabels_20g.jpg b/foto/foto_barang/cadbury_lickabels_20g.jpg
deleted file mode 100644
index 2edca13..0000000
Binary files a/foto/foto_barang/cadbury_lickabels_20g.jpg and /dev/null differ
diff --git a/foto/foto_barang/camilan_berkah_hs_jagung_pedas_manis.jpg b/foto/foto_barang/camilan_berkah_hs_jagung_pedas_manis.jpg
deleted file mode 100644
index 0224208..0000000
Binary files a/foto/foto_barang/camilan_berkah_hs_jagung_pedas_manis.jpg and /dev/null differ
diff --git a/foto/foto_barang/camilan_berkah_hs_kacang_otok.jpg b/foto/foto_barang/camilan_berkah_hs_kacang_otok.jpg
deleted file mode 100644
index a450ff7..0000000
Binary files a/foto/foto_barang/camilan_berkah_hs_kacang_otok.jpg and /dev/null differ
diff --git a/foto/foto_barang/camilan_sabena.jpg b/foto/foto_barang/camilan_sabena.jpg
deleted file mode 100644
index bb6b1ef..0000000
Binary files a/foto/foto_barang/camilan_sabena.jpg and /dev/null differ
diff --git a/foto/foto_barang/cap_kaki_tiga_anggur_320ml.jpg b/foto/foto_barang/cap_kaki_tiga_anggur_320ml.jpg
deleted file mode 100644
index 72653cd..0000000
Binary files a/foto/foto_barang/cap_kaki_tiga_anggur_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cap_kaki_tiga_guava_320ml.jpg b/foto/foto_barang/cap_kaki_tiga_guava_320ml.jpg
deleted file mode 100644
index 70ce5cf..0000000
Binary files a/foto/foto_barang/cap_kaki_tiga_guava_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cap_kaki_tiga_leci_320ml.jpg b/foto/foto_barang/cap_kaki_tiga_leci_320ml.jpg
deleted file mode 100644
index 11be28c..0000000
Binary files a/foto/foto_barang/cap_kaki_tiga_leci_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cap_kaki_tiga_melon_320ml.jpg b/foto/foto_barang/cap_kaki_tiga_melon_320ml.jpg
deleted file mode 100644
index 85592ce..0000000
Binary files a/foto/foto_barang/cap_kaki_tiga_melon_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cara-membuat-donat-empuk-enak-dan-sederhana-di-rumah.jpg b/foto/foto_barang/cara-membuat-donat-empuk-enak-dan-sederhana-di-rumah.jpg
deleted file mode 100644
index 5bda572..0000000
Binary files a/foto/foto_barang/cara-membuat-donat-empuk-enak-dan-sederhana-di-rumah.jpg and /dev/null differ
diff --git a/foto/foto_barang/cartridge_canon_ip2770.jpg b/foto/foto_barang/cartridge_canon_ip2770.jpg
deleted file mode 100644
index 3f1405f..0000000
Binary files a/foto/foto_barang/cartridge_canon_ip2770.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb6b8a73-5e55-49c1-9b21-3b5bde932f52.jpg b/foto/foto_barang/cb6b8a73-5e55-49c1-9b21-3b5bde932f52.jpg
deleted file mode 100644
index 470ec52..0000000
Binary files a/foto/foto_barang/cb6b8a73-5e55-49c1-9b21-3b5bde932f52.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cologne_lovely_kiss_100ml.jpg b/foto/foto_barang/cb_cologne_lovely_kiss_100ml.jpg
deleted file mode 100644
index c1f75e4..0000000
Binary files a/foto/foto_barang/cb_cologne_lovely_kiss_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cologne_soft_touch_100ml.jpg b/foto/foto_barang/cb_cologne_soft_touch_100ml.jpg
deleted file mode 100644
index 85ef3dc..0000000
Binary files a/foto/foto_barang/cb_cologne_soft_touch_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cream_mild_gentle_100gr.jpg b/foto/foto_barang/cb_cream_mild_gentle_100gr.jpg
deleted file mode 100644
index c37122a..0000000
Binary files a/foto/foto_barang/cb_cream_mild_gentle_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cream_mild_gentle_50gr.jpg b/foto/foto_barang/cb_cream_mild_gentle_50gr.jpg
deleted file mode 100644
index 9a3dd1e..0000000
Binary files a/foto/foto_barang/cb_cream_mild_gentle_50gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cream_soft_smooth_100gr.jpg b/foto/foto_barang/cb_cream_soft_smooth_100gr.jpg
deleted file mode 100644
index 92fcfbc..0000000
Binary files a/foto/foto_barang/cb_cream_soft_smooth_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_cream_soft_smooth_50gr.jpg b/foto/foto_barang/cb_cream_soft_smooth_50gr.jpg
deleted file mode 100644
index 65b0939..0000000
Binary files a/foto/foto_barang/cb_cream_soft_smooth_50gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_hair_lot_almond_honey_50ml.jpg b/foto/foto_barang/cb_hair_lot_almond_honey_50ml.jpg
deleted file mode 100644
index 2d8d0ba..0000000
Binary files a/foto/foto_barang/cb_hair_lot_almond_honey_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_mild_gentle_lotion_100ml.jpg b/foto/foto_barang/cb_mild_gentle_lotion_100ml.jpg
deleted file mode 100644
index 12a9281..0000000
Binary files a/foto/foto_barang/cb_mild_gentle_lotion_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_oil_mild_gentle_biru_50ml.jpg b/foto/foto_barang/cb_oil_mild_gentle_biru_50ml.jpg
deleted file mode 100644
index 558d2f5..0000000
Binary files a/foto/foto_barang/cb_oil_mild_gentle_biru_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_oil_soft_smooth_pink_50ml.jpg b/foto/foto_barang/cb_oil_soft_smooth_pink_50ml.jpg
deleted file mode 100644
index f145d2a..0000000
Binary files a/foto/foto_barang/cb_oil_soft_smooth_pink_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_powder_biru_200gr.jpg b/foto/foto_barang/cb_powder_biru_200gr.jpg
deleted file mode 100644
index daa56b1..0000000
Binary files a/foto/foto_barang/cb_powder_biru_200gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_powder_fresh_nourish_ungu_100gr.jpg b/foto/foto_barang/cb_powder_fresh_nourish_ungu_100gr.jpg
deleted file mode 100644
index d90a820..0000000
Binary files a/foto/foto_barang/cb_powder_fresh_nourish_ungu_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_powder_mild_gentle_biru_100gr.jpg b/foto/foto_barang/cb_powder_mild_gentle_biru_100gr.jpg
deleted file mode 100644
index 8bfcdc2..0000000
Binary files a/foto/foto_barang/cb_powder_mild_gentle_biru_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_powder_pink_200ml.jpg b/foto/foto_barang/cb_powder_pink_200ml.jpg
deleted file mode 100644
index 557fc6c..0000000
Binary files a/foto/foto_barang/cb_powder_pink_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_powder_soft_smooth_pink_100gr.jpg b/foto/foto_barang/cb_powder_soft_smooth_pink_100gr.jpg
deleted file mode 100644
index a10311d..0000000
Binary files a/foto/foto_barang/cb_powder_soft_smooth_pink_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_shp_almond_oil_honey_100ml.jpg b/foto/foto_barang/cb_shp_almond_oil_honey_100ml.jpg
deleted file mode 100644
index 10bbfee..0000000
Binary files a/foto/foto_barang/cb_shp_almond_oil_honey_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_shp_avocado_oil_provit_b5_100ml.jpg b/foto/foto_barang/cb_shp_avocado_oil_provit_b5_100ml.jpg
deleted file mode 100644
index 8a99b52..0000000
Binary files a/foto/foto_barang/cb_shp_avocado_oil_provit_b5_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_shp_candlenut_ungu_100ml.jpg b/foto/foto_barang/cb_shp_candlenut_ungu_100ml.jpg
deleted file mode 100644
index 7c9eea2..0000000
Binary files a/foto/foto_barang/cb_shp_candlenut_ungu_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_shp_coconut_oil_aloe_vera_100ml.jpg b/foto/foto_barang/cb_shp_coconut_oil_aloe_vera_100ml.jpg
deleted file mode 100644
index 535dc99..0000000
Binary files a/foto/foto_barang/cb_shp_coconut_oil_aloe_vera_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_wipes_biru_50s.jpg b/foto/foto_barang/cb_wipes_biru_50s.jpg
deleted file mode 100644
index 657a86e..0000000
Binary files a/foto/foto_barang/cb_wipes_biru_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/cb_wipes_pink_50s.jpg b/foto/foto_barang/cb_wipes_pink_50s.jpg
deleted file mode 100644
index a30f163..0000000
Binary files a/foto/foto_barang/cb_wipes_pink_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/cc188b82-52ff-4a93-8f1e-60ae24ae811d.jpg b/foto/foto_barang/cc188b82-52ff-4a93-8f1e-60ae24ae811d.jpg
deleted file mode 100644
index f6f1dda..0000000
Binary files a/foto/foto_barang/cc188b82-52ff-4a93-8f1e-60ae24ae811d.jpg and /dev/null differ
diff --git a/foto/foto_barang/cd.jpg b/foto/foto_barang/cd.jpg
deleted file mode 100644
index 839dcd7..0000000
Binary files a/foto/foto_barang/cd.jpg and /dev/null differ
diff --git a/foto/foto_barang/cdbf63c2-0e69-4c8d-98a4-298db675b845.jpg b/foto/foto_barang/cdbf63c2-0e69-4c8d-98a4-298db675b845.jpg
deleted file mode 100644
index 7ed8173..0000000
Binary files a/foto/foto_barang/cdbf63c2-0e69-4c8d-98a4-298db675b845.jpg and /dev/null differ
diff --git a/foto/foto_barang/cf5e8aae617ca1b58f96828f040693b1.jpg b/foto/foto_barang/cf5e8aae617ca1b58f96828f040693b1.jpg
deleted file mode 100644
index 6d46c9d..0000000
Binary files a/foto/foto_barang/cf5e8aae617ca1b58f96828f040693b1.jpg and /dev/null differ
diff --git a/foto/foto_barang/cfc214b941f6866fff7fb1c2e641811f.jpg b/foto/foto_barang/cfc214b941f6866fff7fb1c2e641811f.jpg
deleted file mode 100644
index c8dfce2..0000000
Binary files a/foto/foto_barang/cfc214b941f6866fff7fb1c2e641811f.jpg and /dev/null differ
diff --git a/foto/foto_barang/cheetos_ayam_bakar_snack_40g.jpg b/foto/foto_barang/cheetos_ayam_bakar_snack_40g.jpg
deleted file mode 100644
index 2061fa2..0000000
Binary files a/foto/foto_barang/cheetos_ayam_bakar_snack_40g.jpg and /dev/null differ
diff --git a/foto/foto_barang/chicken_Hotplate.jpg b/foto/foto_barang/chicken_Hotplate.jpg
deleted file mode 100644
index d9e4d02..0000000
Binary files a/foto/foto_barang/chicken_Hotplate.jpg and /dev/null differ
diff --git a/foto/foto_barang/chiki_balls_crafty_keju_55g.jpg b/foto/foto_barang/chiki_balls_crafty_keju_55g.jpg
deleted file mode 100644
index f7ddac0..0000000
Binary files a/foto/foto_barang/chiki_balls_crafty_keju_55g.jpg and /dev/null differ
diff --git a/foto/foto_barang/chitato_sapi_panggang_68g.jpg b/foto/foto_barang/chitato_sapi_panggang_68g.jpg
deleted file mode 100644
index 11c01b2..0000000
Binary files a/foto/foto_barang/chitato_sapi_panggang_68g.jpg and /dev/null differ
diff --git a/foto/foto_barang/cimorry_uht_milk_strawberry_250ml.jpg b/foto/foto_barang/cimorry_uht_milk_strawberry_250ml.jpg
deleted file mode 100644
index 4708fab..0000000
Binary files a/foto/foto_barang/cimorry_uht_milk_strawberry_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cimory_yogurt_mango_250ml.jpg b/foto/foto_barang/cimory_yogurt_mango_250ml.jpg
deleted file mode 100644
index c037fef..0000000
Binary files a/foto/foto_barang/cimory_yogurt_mango_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/ciptadent_maxi_herbal_190gr.jpg b/foto/foto_barang/ciptadent_maxi_herbal_190gr.jpg
deleted file mode 100644
index d53fd12..0000000
Binary files a/foto/foto_barang/ciptadent_maxi_herbal_190gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ciptadent_pg_maxi_complete_190gr.jpg b/foto/foto_barang/ciptadent_pg_maxi_complete_190gr.jpg
deleted file mode 100644
index 21c3f8a..0000000
Binary files a/foto/foto_barang/ciptadent_pg_maxi_complete_190gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_hbl_pearl_white_uv_230ml.jpg b/foto/foto_barang/citra_hbl_pearl_white_uv_230ml.jpg
deleted file mode 100644
index a3673c6..0000000
Binary files a/foto/foto_barang/citra_hbl_pearl_white_uv_230ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_natural_glowing_120ml.jpg b/foto/foto_barang/citra_natural_glowing_120ml.jpg
deleted file mode 100644
index 5093108..0000000
Binary files a/foto/foto_barang/citra_natural_glowing_120ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_ts_fresh_white_70gr.jpg b/foto/foto_barang/citra_ts_fresh_white_70gr.jpg
deleted file mode 100644
index 98baf24..0000000
Binary files a/foto/foto_barang/citra_ts_fresh_white_70gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_ts_natural_white_70gr.jpg b/foto/foto_barang/citra_ts_natural_white_70gr.jpg
deleted file mode 100644
index 6b10fa4..0000000
Binary files a/foto/foto_barang/citra_ts_natural_white_70gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_ts_natural_white_70gr1.jpg b/foto/foto_barang/citra_ts_natural_white_70gr1.jpg
deleted file mode 100644
index 6b10fa4..0000000
Binary files a/foto/foto_barang/citra_ts_natural_white_70gr1.jpg and /dev/null differ
diff --git a/foto/foto_barang/citra_ts_pearly_white_70gr.png b/foto/foto_barang/citra_ts_pearly_white_70gr.png
deleted file mode 100644
index 23bef7b..0000000
Binary files a/foto/foto_barang/citra_ts_pearly_white_70gr.png and /dev/null differ
diff --git a/foto/foto_barang/clear_icm_170_ml.jpg b/foto/foto_barang/clear_icm_170_ml.jpg
deleted file mode 100644
index 5215bf8..0000000
Binary files a/foto/foto_barang/clear_icm_170_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/clear_shp_csc_10ml.jpg b/foto/foto_barang/clear_shp_csc_10ml.jpg
deleted file mode 100644
index 192bedd..0000000
Binary files a/foto/foto_barang/clear_shp_csc_10ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/clear_shp_spr_fresh_apple_10ml.jpeg b/foto/foto_barang/clear_shp_spr_fresh_apple_10ml.jpeg
deleted file mode 100644
index 37c505b..0000000
Binary files a/foto/foto_barang/clear_shp_spr_fresh_apple_10ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/cleo_550ml.jpg b/foto/foto_barang/cleo_550ml.jpg
deleted file mode 100644
index 0df1675..0000000
Binary files a/foto/foto_barang/cleo_550ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cling_pembersih_kaca_440ml.jpg b/foto/foto_barang/cling_pembersih_kaca_440ml.jpg
deleted file mode 100644
index 887bc73..0000000
Binary files a/foto/foto_barang/cling_pembersih_kaca_440ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/clipboard.jpg b/foto/foto_barang/clipboard.jpg
deleted file mode 100644
index a96f012..0000000
Binary files a/foto/foto_barang/clipboard.jpg and /dev/null differ
diff --git a/foto/foto_barang/close_up_gel_green_65gr.jpg b/foto/foto_barang/close_up_gel_green_65gr.jpg
deleted file mode 100644
index b7a09b9..0000000
Binary files a/foto/foto_barang/close_up_gel_green_65gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/closeup_gel_green_160gr.jpg b/foto/foto_barang/closeup_gel_green_160gr.jpg
deleted file mode 100644
index 38c9c4f..0000000
Binary files a/foto/foto_barang/closeup_gel_green_160gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/closeup_gel_green_gaga_110gr.jpg b/foto/foto_barang/closeup_gel_green_gaga_110gr.jpg
deleted file mode 100644
index 5282c61..0000000
Binary files a/foto/foto_barang/closeup_gel_green_gaga_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/coklat-_150422235042-933.jpg b/foto/foto_barang/coklat-_150422235042-933.jpg
deleted file mode 100644
index 510180d..0000000
Binary files a/foto/foto_barang/coklat-_150422235042-933.jpg and /dev/null differ
diff --git a/foto/foto_barang/color_brush_pen_joyko_36.jpg b/foto/foto_barang/color_brush_pen_joyko_36.jpg
deleted file mode 100644
index 5d2af5d..0000000
Binary files a/foto/foto_barang/color_brush_pen_joyko_36.jpg and /dev/null differ
diff --git a/foto/foto_barang/confidence_adult_pants_XL3s.jpg b/foto/foto_barang/confidence_adult_pants_XL3s.jpg
deleted file mode 100644
index 5b89cf6..0000000
Binary files a/foto/foto_barang/confidence_adult_pants_XL3s.jpg and /dev/null differ
diff --git a/foto/foto_barang/confidence_adult_pants_pants_m5_s.jpg b/foto/foto_barang/confidence_adult_pants_pants_m5_s.jpg
deleted file mode 100644
index 62adae3..0000000
Binary files a/foto/foto_barang/confidence_adult_pants_pants_m5_s.jpg and /dev/null differ
diff --git a/foto/foto_barang/converter_vga_to_hdmi.jpg b/foto/foto_barang/converter_vga_to_hdmi.jpg
deleted file mode 100644
index 064386d..0000000
Binary files a/foto/foto_barang/converter_vga_to_hdmi.jpg and /dev/null differ
diff --git a/foto/foto_barang/counterpain_15gr.jpg b/foto/foto_barang/counterpain_15gr.jpg
deleted file mode 100644
index 23f00f9..0000000
Binary files a/foto/foto_barang/counterpain_15gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/crayon_faber_castell.jpg b/foto/foto_barang/crayon_faber_castell.jpg
deleted file mode 100644
index 8219788..0000000
Binary files a/foto/foto_barang/crayon_faber_castell.jpg and /dev/null differ
diff --git a/foto/foto_barang/crayon_standard.jpg b/foto/foto_barang/crayon_standard.jpg
deleted file mode 100644
index d75ae4c..0000000
Binary files a/foto/foto_barang/crayon_standard.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_medium_bag.jpg b/foto/foto_barang/cusson_baby_medium_bag.jpg
deleted file mode 100644
index bed9d1e..0000000
Binary files a/foto/foto_barang/cusson_baby_medium_bag.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_mini_bag.jpg b/foto/foto_barang/cusson_baby_mini_bag.jpg
deleted file mode 100644
index a3c45ae..0000000
Binary files a/foto/foto_barang/cusson_baby_mini_bag.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_soap_antibac_75gr.jpg b/foto/foto_barang/cusson_baby_soap_antibac_75gr.jpg
deleted file mode 100644
index 0ff7d10..0000000
Binary files a/foto/foto_barang/cusson_baby_soap_antibac_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_soap_pink.jpg b/foto/foto_barang/cusson_baby_soap_pink.jpg
deleted file mode 100644
index 4f533d0..0000000
Binary files a/foto/foto_barang/cusson_baby_soap_pink.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_soap_ungu_75gr.jpg b/foto/foto_barang/cusson_baby_soap_ungu_75gr.jpg
deleted file mode 100644
index 555a321..0000000
Binary files a/foto/foto_barang/cusson_baby_soap_ungu_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/cusson_baby_tas_besar.jpg b/foto/foto_barang/cusson_baby_tas_besar.jpg
deleted file mode 100644
index 64c5a22..0000000
Binary files a/foto/foto_barang/cusson_baby_tas_besar.jpg and /dev/null differ
diff --git a/foto/foto_barang/cussons_carex_handwash_aloevera_250ml.jpg b/foto/foto_barang/cussons_carex_handwash_aloevera_250ml.jpg
deleted file mode 100644
index 5313e1d..0000000
Binary files a/foto/foto_barang/cussons_carex_handwash_aloevera_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cussons_carex_handwash_fresh_250ml.jpg b/foto/foto_barang/cussons_carex_handwash_fresh_250ml.jpg
deleted file mode 100644
index 812282a..0000000
Binary files a/foto/foto_barang/cussons_carex_handwash_fresh_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/cussons_carex_handwash_sensitive_250ml.jpg b/foto/foto_barang/cussons_carex_handwash_sensitive_250ml.jpg
deleted file mode 100644
index 809e377..0000000
Binary files a/foto/foto_barang/cussons_carex_handwash_sensitive_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/d03efff6efc71eaf1c89d6e59857b7a0.jpg b/foto/foto_barang/d03efff6efc71eaf1c89d6e59857b7a0.jpg
deleted file mode 100644
index 9d30d75..0000000
Binary files a/foto/foto_barang/d03efff6efc71eaf1c89d6e59857b7a0.jpg and /dev/null differ
diff --git a/foto/foto_barang/d048886f04444c753bd82ca09fddd117.jpg b/foto/foto_barang/d048886f04444c753bd82ca09fddd117.jpg
deleted file mode 100644
index 6e3b515..0000000
Binary files a/foto/foto_barang/d048886f04444c753bd82ca09fddd117.jpg and /dev/null differ
diff --git a/foto/foto_barang/d049e2e78d92e490aa48077adf73de05.jpg b/foto/foto_barang/d049e2e78d92e490aa48077adf73de05.jpg
deleted file mode 100644
index f10ac0f..0000000
Binary files a/foto/foto_barang/d049e2e78d92e490aa48077adf73de05.jpg and /dev/null differ
diff --git a/foto/foto_barang/d049e2e78d92e490aa48077adf73de051.jpg b/foto/foto_barang/d049e2e78d92e490aa48077adf73de051.jpg
deleted file mode 100644
index f10ac0f..0000000
Binary files a/foto/foto_barang/d049e2e78d92e490aa48077adf73de051.jpg and /dev/null differ
diff --git a/foto/foto_barang/d054a03894c7bc7053d9e8fba733b0b2.jpg b/foto/foto_barang/d054a03894c7bc7053d9e8fba733b0b2.jpg
deleted file mode 100644
index 8374724..0000000
Binary files a/foto/foto_barang/d054a03894c7bc7053d9e8fba733b0b2.jpg and /dev/null differ
diff --git a/foto/foto_barang/d202c5ba4ed5f6d23e6b53252345182a.jpg b/foto/foto_barang/d202c5ba4ed5f6d23e6b53252345182a.jpg
deleted file mode 100644
index 20f34cf..0000000
Binary files a/foto/foto_barang/d202c5ba4ed5f6d23e6b53252345182a.jpg and /dev/null differ
diff --git a/foto/foto_barang/d2a1b6ab-cc07-459c-93a8-6f24c425648f.jpg b/foto/foto_barang/d2a1b6ab-cc07-459c-93a8-6f24c425648f.jpg
deleted file mode 100644
index 0999772..0000000
Binary files a/foto/foto_barang/d2a1b6ab-cc07-459c-93a8-6f24c425648f.jpg and /dev/null differ
diff --git a/foto/foto_barang/d3092f6096ace4e8be61a7f319a12792.jpg b/foto/foto_barang/d3092f6096ace4e8be61a7f319a12792.jpg
deleted file mode 100644
index a9e3c3c..0000000
Binary files a/foto/foto_barang/d3092f6096ace4e8be61a7f319a12792.jpg and /dev/null differ
diff --git a/foto/foto_barang/d346551c-0be9-49f4-b389-0194095e35a4.jpg b/foto/foto_barang/d346551c-0be9-49f4-b389-0194095e35a4.jpg
deleted file mode 100644
index f721548..0000000
Binary files a/foto/foto_barang/d346551c-0be9-49f4-b389-0194095e35a4.jpg and /dev/null differ
diff --git a/foto/foto_barang/d3f4cb898db228335fde063c882a1d50.jpg b/foto/foto_barang/d3f4cb898db228335fde063c882a1d50.jpg
deleted file mode 100644
index b0e807b..0000000
Binary files a/foto/foto_barang/d3f4cb898db228335fde063c882a1d50.jpg and /dev/null differ
diff --git a/foto/foto_barang/d52ce722238b6bdd41c4b6897ccb6f91.jpg b/foto/foto_barang/d52ce722238b6bdd41c4b6897ccb6f91.jpg
deleted file mode 100644
index 9c003f0..0000000
Binary files a/foto/foto_barang/d52ce722238b6bdd41c4b6897ccb6f91.jpg and /dev/null differ
diff --git a/foto/foto_barang/d5498550a3329ba3ea411dfb8b65a7fb.jpg b/foto/foto_barang/d5498550a3329ba3ea411dfb8b65a7fb.jpg
deleted file mode 100644
index 4341b25..0000000
Binary files a/foto/foto_barang/d5498550a3329ba3ea411dfb8b65a7fb.jpg and /dev/null differ
diff --git a/foto/foto_barang/d61517fee7f2b4f3a158ac70eaba282d.jpg b/foto/foto_barang/d61517fee7f2b4f3a158ac70eaba282d.jpg
deleted file mode 100644
index 2ddd73a..0000000
Binary files a/foto/foto_barang/d61517fee7f2b4f3a158ac70eaba282d.jpg and /dev/null differ
diff --git a/foto/foto_barang/d6cad9a1-9774-4011-9fb8-afa50157fc8c.jpg b/foto/foto_barang/d6cad9a1-9774-4011-9fb8-afa50157fc8c.jpg
deleted file mode 100644
index 230388d..0000000
Binary files a/foto/foto_barang/d6cad9a1-9774-4011-9fb8-afa50157fc8c.jpg and /dev/null differ
diff --git a/foto/foto_barang/d6ef3231d949968525872f396a782fe1.jpg b/foto/foto_barang/d6ef3231d949968525872f396a782fe1.jpg
deleted file mode 100644
index 132c0f5..0000000
Binary files a/foto/foto_barang/d6ef3231d949968525872f396a782fe1.jpg and /dev/null differ
diff --git a/foto/foto_barang/d733cb8bd72de552576f439684495fac9542efd9-original.jpg b/foto/foto_barang/d733cb8bd72de552576f439684495fac9542efd9-original.jpg
deleted file mode 100644
index 6e95d5f..0000000
Binary files a/foto/foto_barang/d733cb8bd72de552576f439684495fac9542efd9-original.jpg and /dev/null differ
diff --git a/foto/foto_barang/d7a1d9986033a15f2ab2c2fd50e81ac8.jpg b/foto/foto_barang/d7a1d9986033a15f2ab2c2fd50e81ac8.jpg
deleted file mode 100644
index bc167ab..0000000
Binary files a/foto/foto_barang/d7a1d9986033a15f2ab2c2fd50e81ac8.jpg and /dev/null differ
diff --git a/foto/foto_barang/d92e75c93fb01a7b473239aa922975f9.jpg b/foto/foto_barang/d92e75c93fb01a7b473239aa922975f9.jpg
deleted file mode 100644
index a1952ef..0000000
Binary files a/foto/foto_barang/d92e75c93fb01a7b473239aa922975f9.jpg and /dev/null differ
diff --git a/foto/foto_barang/d9S013976477-1.jpg b/foto/foto_barang/d9S013976477-1.jpg
deleted file mode 100644
index 64ec044..0000000
Binary files a/foto/foto_barang/d9S013976477-1.jpg and /dev/null differ
diff --git a/foto/foto_barang/d9a4f343-922d-4848-9400-ac1bf5ee5594.jpg b/foto/foto_barang/d9a4f343-922d-4848-9400-ac1bf5ee5594.jpg
deleted file mode 100644
index e4cfb94..0000000
Binary files a/foto/foto_barang/d9a4f343-922d-4848-9400-ac1bf5ee5594.jpg and /dev/null differ
diff --git a/foto/foto_barang/da0e32fe-e445-4380-908f-7d7564c13c3d.jpg b/foto/foto_barang/da0e32fe-e445-4380-908f-7d7564c13c3d.jpg
deleted file mode 100644
index 047b526..0000000
Binary files a/foto/foto_barang/da0e32fe-e445-4380-908f-7d7564c13c3d.jpg and /dev/null differ
diff --git a/foto/foto_barang/dadcda4e8b757c8809c76cee15889ee8.jpg b/foto/foto_barang/dadcda4e8b757c8809c76cee15889ee8.jpg
deleted file mode 100644
index e716dab..0000000
Binary files a/foto/foto_barang/dadcda4e8b757c8809c76cee15889ee8.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahla.jpg b/foto/foto_barang/dahla.jpg
deleted file mode 100644
index ea82471..0000000
Binary files a/foto/foto_barang/dahla.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_air_freshener_apple_75gr.jpg b/foto/foto_barang/dahlia_air_freshener_apple_75gr.jpg
deleted file mode 100644
index 737e081..0000000
Binary files a/foto/foto_barang/dahlia_air_freshener_apple_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_air_freshener_lemon_75gr.jpg b/foto/foto_barang/dahlia_air_freshener_lemon_75gr.jpg
deleted file mode 100644
index 261c0bb..0000000
Binary files a/foto/foto_barang/dahlia_air_freshener_lemon_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_air_freshener_orange_75gr.jpg b/foto/foto_barang/dahlia_air_freshener_orange_75gr.jpg
deleted file mode 100644
index 8533ffe..0000000
Binary files a/foto/foto_barang/dahlia_air_freshener_orange_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_closet_fresh_bouquet.jpg b/foto/foto_barang/dahlia_closet_fresh_bouquet.jpg
deleted file mode 100644
index e65910a..0000000
Binary files a/foto/foto_barang/dahlia_closet_fresh_bouquet.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_closet_freshgo_matic_spray.jpg b/foto/foto_barang/dahlia_closet_freshgo_matic_spray.jpg
deleted file mode 100644
index 4033641..0000000
Binary files a/foto/foto_barang/dahlia_closet_freshgo_matic_spray.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_closet_freshgo_refill_exotic_citrus_225ml.jpg b/foto/foto_barang/dahlia_closet_freshgo_refill_exotic_citrus_225ml.jpg
deleted file mode 100644
index fc1cbff..0000000
Binary files a/foto/foto_barang/dahlia_closet_freshgo_refill_exotic_citrus_225ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_freshgo_refill_lavender_225ml.jpg b/foto/foto_barang/dahlia_freshgo_refill_lavender_225ml.jpg
deleted file mode 100644
index 273232b..0000000
Binary files a/foto/foto_barang/dahlia_freshgo_refill_lavender_225ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_jumbo_ball_k-30.jpg b/foto/foto_barang/dahlia_jumbo_ball_k-30.jpg
deleted file mode 100644
index 3d24b1c..0000000
Binary files a/foto/foto_barang/dahlia_jumbo_ball_k-30.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_love.jpg b/foto/foto_barang/dahlia_love.jpg
deleted file mode 100644
index a263263..0000000
Binary files a/foto/foto_barang/dahlia_love.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_naphthalene_kapur_barus_100gr.jpg b/foto/foto_barang/dahlia_naphthalene_kapur_barus_100gr.jpg
deleted file mode 100644
index adc62e7..0000000
Binary files a/foto/foto_barang/dahlia_naphthalene_kapur_barus_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_refill_cherry_blossom_225ml.jpg b/foto/foto_barang/dahlia_refill_cherry_blossom_225ml.jpg
deleted file mode 100644
index 70af9ce..0000000
Binary files a/foto/foto_barang/dahlia_refill_cherry_blossom_225ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_super_deluxe_with_case.jpg b/foto/foto_barang/dahlia_super_deluxe_with_case.jpg
deleted file mode 100644
index 1f17dcd..0000000
Binary files a/foto/foto_barang/dahlia_super_deluxe_with_case.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_toilet_3s.jpg b/foto/foto_barang/dahlia_toilet_3s.jpg
deleted file mode 100644
index abab4e6..0000000
Binary files a/foto/foto_barang/dahlia_toilet_3s.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_toilet_5s.jpg b/foto/foto_barang/dahlia_toilet_5s.jpg
deleted file mode 100644
index 98b6634..0000000
Binary files a/foto/foto_barang/dahlia_toilet_5s.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_toilet_5s_aromatic_green.jpg b/foto/foto_barang/dahlia_toilet_5s_aromatic_green.jpg
deleted file mode 100644
index 209e0d1..0000000
Binary files a/foto/foto_barang/dahlia_toilet_5s_aromatic_green.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_toilet_ball_fresh_floral_5s.jpg b/foto/foto_barang/dahlia_toilet_ball_fresh_floral_5s.jpg
deleted file mode 100644
index c895140..0000000
Binary files a/foto/foto_barang/dahlia_toilet_ball_fresh_floral_5s.jpg and /dev/null differ
diff --git a/foto/foto_barang/dahlia_toilet_ball_fresh_fruity_5s.jpg b/foto/foto_barang/dahlia_toilet_ball_fresh_fruity_5s.jpg
deleted file mode 100644
index 770934b..0000000
Binary files a/foto/foto_barang/dahlia_toilet_ball_fresh_fruity_5s.jpg and /dev/null differ
diff --git a/foto/foto_barang/daia_softener_1_8kg.jpg b/foto/foto_barang/daia_softener_1_8kg.jpg
deleted file mode 100644
index 2a351a6..0000000
Binary files a/foto/foto_barang/daia_softener_1_8kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/daia_softener_pink_850gr.jpg b/foto/foto_barang/daia_softener_pink_850gr.jpg
deleted file mode 100644
index f98a050..0000000
Binary files a/foto/foto_barang/daia_softener_pink_850gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/daia_softener_violet_850gr.jpg b/foto/foto_barang/daia_softener_violet_850gr.jpg
deleted file mode 100644
index b47192c..0000000
Binary files a/foto/foto_barang/daia_softener_violet_850gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/daimaru_tape_isolasi.jpg b/foto/foto_barang/daimaru_tape_isolasi.jpg
deleted file mode 100644
index 407d1b1..0000000
Binary files a/foto/foto_barang/daimaru_tape_isolasi.jpg and /dev/null differ
diff --git a/foto/foto_barang/data.jpeg b/foto/foto_barang/data.jpeg
deleted file mode 100644
index e4b06e4..0000000
Binary files a/foto/foto_barang/data.jpeg and /dev/null differ
diff --git a/foto/foto_barang/data1.jpeg b/foto/foto_barang/data1.jpeg
deleted file mode 100644
index ff85807..0000000
Binary files a/foto/foto_barang/data1.jpeg and /dev/null differ
diff --git a/foto/foto_barang/data12.jpg b/foto/foto_barang/data12.jpg
deleted file mode 100644
index d23116b..0000000
Binary files a/foto/foto_barang/data12.jpg and /dev/null differ
diff --git a/foto/foto_barang/data2.jpeg b/foto/foto_barang/data2.jpeg
deleted file mode 100644
index e40727c..0000000
Binary files a/foto/foto_barang/data2.jpeg and /dev/null differ
diff --git a/foto/foto_barang/data_jpeg.jpg b/foto/foto_barang/data_jpeg.jpg
deleted file mode 100644
index 59b1507..0000000
Binary files a/foto/foto_barang/data_jpeg.jpg and /dev/null differ
diff --git a/foto/foto_barang/dc40c4a7cc67de16b50c942bb0afb1ca.jpg b/foto/foto_barang/dc40c4a7cc67de16b50c942bb0afb1ca.jpg
deleted file mode 100644
index a45c2d7..0000000
Binary files a/foto/foto_barang/dc40c4a7cc67de16b50c942bb0afb1ca.jpg and /dev/null differ
diff --git a/foto/foto_barang/dd37b5e4eed9db783508fe335dd478f8.jpg b/foto/foto_barang/dd37b5e4eed9db783508fe335dd478f8.jpg
deleted file mode 100644
index 9d866f3..0000000
Binary files a/foto/foto_barang/dd37b5e4eed9db783508fe335dd478f8.jpg and /dev/null differ
diff --git a/foto/foto_barang/de3b3659aac0ab5eb15f1fae47fccdd11.jpg b/foto/foto_barang/de3b3659aac0ab5eb15f1fae47fccdd11.jpg
deleted file mode 100644
index 884e692..0000000
Binary files a/foto/foto_barang/de3b3659aac0ab5eb15f1fae47fccdd11.jpg and /dev/null differ
diff --git a/foto/foto_barang/de85875eacb90879d283c4737f4da744.jpg b/foto/foto_barang/de85875eacb90879d283c4737f4da744.jpg
deleted file mode 100644
index 532538a..0000000
Binary files a/foto/foto_barang/de85875eacb90879d283c4737f4da744.jpg and /dev/null differ
diff --git a/foto/foto_barang/degan.jpg b/foto/foto_barang/degan.jpg
deleted file mode 100644
index 2d95f23..0000000
Binary files a/foto/foto_barang/degan.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_antiseptik_cair_95ml.jpg b/foto/foto_barang/dettol_antiseptik_cair_95ml.jpg
deleted file mode 100644
index 6366254..0000000
Binary files a/foto/foto_barang/dettol_antiseptik_cair_95ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_cool_250gr.jpg b/foto/foto_barang/dettol_bw_cool_250gr.jpg
deleted file mode 100644
index f19df4a..0000000
Binary files a/foto/foto_barang/dettol_bw_cool_250gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_cool_450ml.jpg b/foto/foto_barang/dettol_bw_cool_450ml.jpg
deleted file mode 100644
index f1a05c9..0000000
Binary files a/foto/foto_barang/dettol_bw_cool_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_deep_cleanse_450ml.jpg b/foto/foto_barang/dettol_bw_deep_cleanse_450ml.jpg
deleted file mode 100644
index c047af7..0000000
Binary files a/foto/foto_barang/dettol_bw_deep_cleanse_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_fresh_250ml.jpg b/foto/foto_barang/dettol_bw_fresh_250ml.jpg
deleted file mode 100644
index fbe5800..0000000
Binary files a/foto/foto_barang/dettol_bw_fresh_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_fresh_450ml.jpg b/foto/foto_barang/dettol_bw_fresh_450ml.jpg
deleted file mode 100644
index ea64cfe..0000000
Binary files a/foto/foto_barang/dettol_bw_fresh_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_last_fresh_450ml.jpg b/foto/foto_barang/dettol_bw_last_fresh_450ml.jpg
deleted file mode 100644
index 344e333..0000000
Binary files a/foto/foto_barang/dettol_bw_last_fresh_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_original_250ml.jpg b/foto/foto_barang/dettol_bw_original_250ml.jpg
deleted file mode 100644
index ad05eff..0000000
Binary files a/foto/foto_barang/dettol_bw_original_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_original_450ml.jpg b/foto/foto_barang/dettol_bw_original_450ml.jpg
deleted file mode 100644
index d59532f..0000000
Binary files a/foto/foto_barang/dettol_bw_original_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_bw_re_energize_450ml.jpg b/foto/foto_barang/dettol_bw_re_energize_450ml.jpg
deleted file mode 100644
index b76f750..0000000
Binary files a/foto/foto_barang/dettol_bw_re_energize_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_cool_105gr.jpg b/foto/foto_barang/dettol_cool_105gr.jpg
deleted file mode 100644
index 2d8f277..0000000
Binary files a/foto/foto_barang/dettol_cool_105gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_ori_105gr.jpg b/foto/foto_barang/dettol_ori_105gr.jpg
deleted file mode 100644
index f7dad2e..0000000
Binary files a/foto/foto_barang/dettol_ori_105gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_sensitive_105_gr.jpg b/foto/foto_barang/dettol_sensitive_105_gr.jpg
deleted file mode 100644
index 15051c5..0000000
Binary files a/foto/foto_barang/dettol_sensitive_105_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_sensitive_65gr.jpg b/foto/foto_barang/dettol_sensitive_65gr.jpg
deleted file mode 100644
index cf9f274..0000000
Binary files a/foto/foto_barang/dettol_sensitive_65gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_skincare_105gr.jpg b/foto/foto_barang/dettol_skincare_105gr.jpg
deleted file mode 100644
index 7fcdab7..0000000
Binary files a/foto/foto_barang/dettol_skincare_105gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/dettol_skincare_65gr.jpg b/foto/foto_barang/dettol_skincare_65gr.jpg
deleted file mode 100644
index 26a78e0..0000000
Binary files a/foto/foto_barang/dettol_skincare_65gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/df4c5e56dfa1b7c9c89e3de3dcc46a3e.jpg b/foto/foto_barang/df4c5e56dfa1b7c9c89e3de3dcc46a3e.jpg
deleted file mode 100644
index ee9c62d..0000000
Binary files a/foto/foto_barang/df4c5e56dfa1b7c9c89e3de3dcc46a3e.jpg and /dev/null differ
diff --git a/foto/foto_barang/dispenser_isolasi.jpg b/foto/foto_barang/dispenser_isolasi.jpg
deleted file mode 100644
index 34ba753..0000000
Binary files a/foto/foto_barang/dispenser_isolasi.jpg and /dev/null differ
diff --git a/foto/foto_barang/doble_tape.jpg b/foto/foto_barang/doble_tape.jpg
deleted file mode 100644
index 93e164d..0000000
Binary files a/foto/foto_barang/doble_tape.jpg and /dev/null differ
diff --git a/foto/foto_barang/doritos_doritos_barbeque_tortilla_chips_keripik_bbq_160_gr_full01_26hl8na.jpg b/foto/foto_barang/doritos_doritos_barbeque_tortilla_chips_keripik_bbq_160_gr_full01_26hl8na.jpg
deleted file mode 100644
index 191542f..0000000
Binary files a/foto/foto_barang/doritos_doritos_barbeque_tortilla_chips_keripik_bbq_160_gr_full01_26hl8na.jpg and /dev/null differ
diff --git a/foto/foto_barang/doritos_roasted_corn_160g.jpg b/foto/foto_barang/doritos_roasted_corn_160g.jpg
deleted file mode 100644
index 6acca49..0000000
Binary files a/foto/foto_barang/doritos_roasted_corn_160g.jpg and /dev/null differ
diff --git a/foto/foto_barang/doritos_roasted_corn_55g.jpg b/foto/foto_barang/doritos_roasted_corn_55g.jpg
deleted file mode 100644
index 2747177..0000000
Binary files a/foto/foto_barang/doritos_roasted_corn_55g.jpg and /dev/null differ
diff --git a/foto/foto_barang/doritos_tortilla_bbq_55g.jpg b/foto/foto_barang/doritos_tortilla_bbq_55g.jpg
deleted file mode 100644
index e005413..0000000
Binary files a/foto/foto_barang/doritos_tortilla_bbq_55g.jpg and /dev/null differ
diff --git a/foto/foto_barang/double_tape.jpg b/foto/foto_barang/double_tape.jpg
deleted file mode 100644
index 519a30b..0000000
Binary files a/foto/foto_barang/double_tape.jpg and /dev/null differ
diff --git a/foto/foto_barang/doubletip.jpg b/foto/foto_barang/doubletip.jpg
deleted file mode 100644
index 62a5ccf..0000000
Binary files a/foto/foto_barang/doubletip.jpg and /dev/null differ
diff --git a/foto/foto_barang/doubletiphijau.jpg b/foto/foto_barang/doubletiphijau.jpg
deleted file mode 100644
index 38f77bd..0000000
Binary files a/foto/foto_barang/doubletiphijau.jpg and /dev/null differ
diff --git a/foto/foto_barang/dove_rambut_rusak_shp_20ml.jpg b/foto/foto_barang/dove_rambut_rusak_shp_20ml.jpg
deleted file mode 100644
index 4285586..0000000
Binary files a/foto/foto_barang/dove_rambut_rusak_shp_20ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/download.jpeg b/foto/foto_barang/download.jpeg
deleted file mode 100644
index a29ec39..0000000
Binary files a/foto/foto_barang/download.jpeg and /dev/null differ
diff --git a/foto/foto_barang/download.jpg b/foto/foto_barang/download.jpg
deleted file mode 100644
index 7901f8c..0000000
Binary files a/foto/foto_barang/download.jpg and /dev/null differ
diff --git a/foto/foto_barang/download.png b/foto/foto_barang/download.png
deleted file mode 100644
index 8177c3f..0000000
Binary files a/foto/foto_barang/download.png and /dev/null differ
diff --git a/foto/foto_barang/download1.jpg b/foto/foto_barang/download1.jpg
deleted file mode 100644
index 18cd579..0000000
Binary files a/foto/foto_barang/download1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download2.jpg b/foto/foto_barang/download2.jpg
deleted file mode 100644
index e03a901..0000000
Binary files a/foto/foto_barang/download2.jpg and /dev/null differ
diff --git a/foto/foto_barang/download3.jpg b/foto/foto_barang/download3.jpg
deleted file mode 100644
index f3f2f86..0000000
Binary files a/foto/foto_barang/download3.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(1).jpg b/foto/foto_barang/download_(1).jpg
deleted file mode 100644
index 74c4525..0000000
Binary files a/foto/foto_barang/download_(1).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(1)1.jpg b/foto/foto_barang/download_(1)1.jpg
deleted file mode 100644
index 4fca83c..0000000
Binary files a/foto/foto_barang/download_(1)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(10).jpg b/foto/foto_barang/download_(10).jpg
deleted file mode 100644
index ba0cdbd..0000000
Binary files a/foto/foto_barang/download_(10).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(10).png b/foto/foto_barang/download_(10).png
deleted file mode 100644
index 8acd665..0000000
Binary files a/foto/foto_barang/download_(10).png and /dev/null differ
diff --git a/foto/foto_barang/download_(100).jpg b/foto/foto_barang/download_(100).jpg
deleted file mode 100644
index 0ff86eb..0000000
Binary files a/foto/foto_barang/download_(100).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(12).jpg b/foto/foto_barang/download_(12).jpg
deleted file mode 100644
index 6a7efff..0000000
Binary files a/foto/foto_barang/download_(12).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(13).jpg b/foto/foto_barang/download_(13).jpg
deleted file mode 100644
index 7a1d710..0000000
Binary files a/foto/foto_barang/download_(13).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(14).jpg b/foto/foto_barang/download_(14).jpg
deleted file mode 100644
index 52f837d..0000000
Binary files a/foto/foto_barang/download_(14).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(15).jpg b/foto/foto_barang/download_(15).jpg
deleted file mode 100644
index 6aedc9f..0000000
Binary files a/foto/foto_barang/download_(15).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(16).jpg b/foto/foto_barang/download_(16).jpg
deleted file mode 100644
index b4c2079..0000000
Binary files a/foto/foto_barang/download_(16).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(17).jpg b/foto/foto_barang/download_(17).jpg
deleted file mode 100644
index b742f85..0000000
Binary files a/foto/foto_barang/download_(17).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(18).jpg b/foto/foto_barang/download_(18).jpg
deleted file mode 100644
index b984c3a..0000000
Binary files a/foto/foto_barang/download_(18).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(2).jpg b/foto/foto_barang/download_(2).jpg
deleted file mode 100644
index 2b41bc2..0000000
Binary files a/foto/foto_barang/download_(2).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(2).png b/foto/foto_barang/download_(2).png
deleted file mode 100644
index b32a785..0000000
Binary files a/foto/foto_barang/download_(2).png and /dev/null differ
diff --git a/foto/foto_barang/download_(2)1.jpg b/foto/foto_barang/download_(2)1.jpg
deleted file mode 100644
index 4609610..0000000
Binary files a/foto/foto_barang/download_(2)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(20).jpg b/foto/foto_barang/download_(20).jpg
deleted file mode 100644
index 4bfdf7b..0000000
Binary files a/foto/foto_barang/download_(20).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(21).jpg b/foto/foto_barang/download_(21).jpg
deleted file mode 100644
index bce6563..0000000
Binary files a/foto/foto_barang/download_(21).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(22).jpg b/foto/foto_barang/download_(22).jpg
deleted file mode 100644
index 5ae9155..0000000
Binary files a/foto/foto_barang/download_(22).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(24).jpg b/foto/foto_barang/download_(24).jpg
deleted file mode 100644
index fde7436..0000000
Binary files a/foto/foto_barang/download_(24).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(26).jpg b/foto/foto_barang/download_(26).jpg
deleted file mode 100644
index 0b93b35..0000000
Binary files a/foto/foto_barang/download_(26).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(27).jpg b/foto/foto_barang/download_(27).jpg
deleted file mode 100644
index 27fe051..0000000
Binary files a/foto/foto_barang/download_(27).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(28).jpg b/foto/foto_barang/download_(28).jpg
deleted file mode 100644
index 4e0e2af..0000000
Binary files a/foto/foto_barang/download_(28).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(29).jpg b/foto/foto_barang/download_(29).jpg
deleted file mode 100644
index 370cdf1..0000000
Binary files a/foto/foto_barang/download_(29).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(3).jpg b/foto/foto_barang/download_(3).jpg
deleted file mode 100644
index a24f9a3..0000000
Binary files a/foto/foto_barang/download_(3).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(3).png b/foto/foto_barang/download_(3).png
deleted file mode 100644
index 82bbe06..0000000
Binary files a/foto/foto_barang/download_(3).png and /dev/null differ
diff --git a/foto/foto_barang/download_(3)1.jpg b/foto/foto_barang/download_(3)1.jpg
deleted file mode 100644
index 11b1f46..0000000
Binary files a/foto/foto_barang/download_(3)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(30).jpg b/foto/foto_barang/download_(30).jpg
deleted file mode 100644
index 606b725..0000000
Binary files a/foto/foto_barang/download_(30).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(31).jpg b/foto/foto_barang/download_(31).jpg
deleted file mode 100644
index 27b6f20..0000000
Binary files a/foto/foto_barang/download_(31).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(32).jpg b/foto/foto_barang/download_(32).jpg
deleted file mode 100644
index 63b6d83..0000000
Binary files a/foto/foto_barang/download_(32).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(33).jpg b/foto/foto_barang/download_(33).jpg
deleted file mode 100644
index a538af7..0000000
Binary files a/foto/foto_barang/download_(33).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(34).jpg b/foto/foto_barang/download_(34).jpg
deleted file mode 100644
index c69e789..0000000
Binary files a/foto/foto_barang/download_(34).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(35).jpg b/foto/foto_barang/download_(35).jpg
deleted file mode 100644
index ab11759..0000000
Binary files a/foto/foto_barang/download_(35).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(36).jpg b/foto/foto_barang/download_(36).jpg
deleted file mode 100644
index 5a21771..0000000
Binary files a/foto/foto_barang/download_(36).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(37).jpg b/foto/foto_barang/download_(37).jpg
deleted file mode 100644
index 645ce05..0000000
Binary files a/foto/foto_barang/download_(37).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(38).jpg b/foto/foto_barang/download_(38).jpg
deleted file mode 100644
index f117a39..0000000
Binary files a/foto/foto_barang/download_(38).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(39).jpg b/foto/foto_barang/download_(39).jpg
deleted file mode 100644
index 49c1667..0000000
Binary files a/foto/foto_barang/download_(39).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(4).jpg b/foto/foto_barang/download_(4).jpg
deleted file mode 100644
index 3fff9ee..0000000
Binary files a/foto/foto_barang/download_(4).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(4).png b/foto/foto_barang/download_(4).png
deleted file mode 100644
index 93e792a..0000000
Binary files a/foto/foto_barang/download_(4).png and /dev/null differ
diff --git a/foto/foto_barang/download_(4)1.jpg b/foto/foto_barang/download_(4)1.jpg
deleted file mode 100644
index df3cf77..0000000
Binary files a/foto/foto_barang/download_(4)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(40).jpg b/foto/foto_barang/download_(40).jpg
deleted file mode 100644
index b1a9d40..0000000
Binary files a/foto/foto_barang/download_(40).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(41).jpg b/foto/foto_barang/download_(41).jpg
deleted file mode 100644
index 83fba3d..0000000
Binary files a/foto/foto_barang/download_(41).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(42).jpg b/foto/foto_barang/download_(42).jpg
deleted file mode 100644
index 40c178e..0000000
Binary files a/foto/foto_barang/download_(42).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(43).jpg b/foto/foto_barang/download_(43).jpg
deleted file mode 100644
index 6d25068..0000000
Binary files a/foto/foto_barang/download_(43).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(44).jpg b/foto/foto_barang/download_(44).jpg
deleted file mode 100644
index 04a3de1..0000000
Binary files a/foto/foto_barang/download_(44).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(46).jpg b/foto/foto_barang/download_(46).jpg
deleted file mode 100644
index 4f11e9f..0000000
Binary files a/foto/foto_barang/download_(46).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(47).jpg b/foto/foto_barang/download_(47).jpg
deleted file mode 100644
index 1c19227..0000000
Binary files a/foto/foto_barang/download_(47).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(48).jpg b/foto/foto_barang/download_(48).jpg
deleted file mode 100644
index faf78c3..0000000
Binary files a/foto/foto_barang/download_(48).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(5).jpg b/foto/foto_barang/download_(5).jpg
deleted file mode 100644
index d22a426..0000000
Binary files a/foto/foto_barang/download_(5).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(5).png b/foto/foto_barang/download_(5).png
deleted file mode 100644
index fde0d8e..0000000
Binary files a/foto/foto_barang/download_(5).png and /dev/null differ
diff --git a/foto/foto_barang/download_(5)1.jpg b/foto/foto_barang/download_(5)1.jpg
deleted file mode 100644
index 06ebddc..0000000
Binary files a/foto/foto_barang/download_(5)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(50).jpg b/foto/foto_barang/download_(50).jpg
deleted file mode 100644
index 08acaa1..0000000
Binary files a/foto/foto_barang/download_(50).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(51).jpg b/foto/foto_barang/download_(51).jpg
deleted file mode 100644
index a973dbb..0000000
Binary files a/foto/foto_barang/download_(51).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(52).jpg b/foto/foto_barang/download_(52).jpg
deleted file mode 100644
index 716f0e1..0000000
Binary files a/foto/foto_barang/download_(52).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(53).jpg b/foto/foto_barang/download_(53).jpg
deleted file mode 100644
index 66d7dac..0000000
Binary files a/foto/foto_barang/download_(53).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(54).jpg b/foto/foto_barang/download_(54).jpg
deleted file mode 100644
index 960e072..0000000
Binary files a/foto/foto_barang/download_(54).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(56).jpg b/foto/foto_barang/download_(56).jpg
deleted file mode 100644
index 599378d..0000000
Binary files a/foto/foto_barang/download_(56).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(57).jpg b/foto/foto_barang/download_(57).jpg
deleted file mode 100644
index d7ea0fc..0000000
Binary files a/foto/foto_barang/download_(57).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(58).jpg b/foto/foto_barang/download_(58).jpg
deleted file mode 100644
index 3219ccd..0000000
Binary files a/foto/foto_barang/download_(58).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(59).jpg b/foto/foto_barang/download_(59).jpg
deleted file mode 100644
index 5a15cff..0000000
Binary files a/foto/foto_barang/download_(59).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(6).jpg b/foto/foto_barang/download_(6).jpg
deleted file mode 100644
index 60a7fcd..0000000
Binary files a/foto/foto_barang/download_(6).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(6).png b/foto/foto_barang/download_(6).png
deleted file mode 100644
index 8fdbf8f..0000000
Binary files a/foto/foto_barang/download_(6).png and /dev/null differ
diff --git a/foto/foto_barang/download_(60).jpg b/foto/foto_barang/download_(60).jpg
deleted file mode 100644
index 8dfa715..0000000
Binary files a/foto/foto_barang/download_(60).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(61).jpg b/foto/foto_barang/download_(61).jpg
deleted file mode 100644
index 5a015eb..0000000
Binary files a/foto/foto_barang/download_(61).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(62).jpg b/foto/foto_barang/download_(62).jpg
deleted file mode 100644
index f73c753..0000000
Binary files a/foto/foto_barang/download_(62).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(63).jpg b/foto/foto_barang/download_(63).jpg
deleted file mode 100644
index e5abc20..0000000
Binary files a/foto/foto_barang/download_(63).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(64).jpg b/foto/foto_barang/download_(64).jpg
deleted file mode 100644
index b84f74c..0000000
Binary files a/foto/foto_barang/download_(64).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(65).jpg b/foto/foto_barang/download_(65).jpg
deleted file mode 100644
index 376cf97..0000000
Binary files a/foto/foto_barang/download_(65).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(66).jpg b/foto/foto_barang/download_(66).jpg
deleted file mode 100644
index f76ae4c..0000000
Binary files a/foto/foto_barang/download_(66).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(67).jpg b/foto/foto_barang/download_(67).jpg
deleted file mode 100644
index fbf5024..0000000
Binary files a/foto/foto_barang/download_(67).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(68).jpg b/foto/foto_barang/download_(68).jpg
deleted file mode 100644
index cdd737a..0000000
Binary files a/foto/foto_barang/download_(68).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(69).jpg b/foto/foto_barang/download_(69).jpg
deleted file mode 100644
index f9b4b9f..0000000
Binary files a/foto/foto_barang/download_(69).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(7).jpg b/foto/foto_barang/download_(7).jpg
deleted file mode 100644
index 0d12b52..0000000
Binary files a/foto/foto_barang/download_(7).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(7).png b/foto/foto_barang/download_(7).png
deleted file mode 100644
index 08a0208..0000000
Binary files a/foto/foto_barang/download_(7).png and /dev/null differ
diff --git a/foto/foto_barang/download_(70).jpg b/foto/foto_barang/download_(70).jpg
deleted file mode 100644
index 6fc8842..0000000
Binary files a/foto/foto_barang/download_(70).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(71).jpg b/foto/foto_barang/download_(71).jpg
deleted file mode 100644
index 1bf8502..0000000
Binary files a/foto/foto_barang/download_(71).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(72).jpg b/foto/foto_barang/download_(72).jpg
deleted file mode 100644
index 6b8b10f..0000000
Binary files a/foto/foto_barang/download_(72).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(73).jpg b/foto/foto_barang/download_(73).jpg
deleted file mode 100644
index 74101c9..0000000
Binary files a/foto/foto_barang/download_(73).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(74).jpg b/foto/foto_barang/download_(74).jpg
deleted file mode 100644
index 5cf8314..0000000
Binary files a/foto/foto_barang/download_(74).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(75).jpg b/foto/foto_barang/download_(75).jpg
deleted file mode 100644
index 763c933..0000000
Binary files a/foto/foto_barang/download_(75).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(76).jpg b/foto/foto_barang/download_(76).jpg
deleted file mode 100644
index c5830a6..0000000
Binary files a/foto/foto_barang/download_(76).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(78).jpg b/foto/foto_barang/download_(78).jpg
deleted file mode 100644
index 17445b7..0000000
Binary files a/foto/foto_barang/download_(78).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(79).jpg b/foto/foto_barang/download_(79).jpg
deleted file mode 100644
index 90431fd..0000000
Binary files a/foto/foto_barang/download_(79).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(8).jpg b/foto/foto_barang/download_(8).jpg
deleted file mode 100644
index 640e70a..0000000
Binary files a/foto/foto_barang/download_(8).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(8).png b/foto/foto_barang/download_(8).png
deleted file mode 100644
index 4fdfb8b..0000000
Binary files a/foto/foto_barang/download_(8).png and /dev/null differ
diff --git a/foto/foto_barang/download_(80).jpg b/foto/foto_barang/download_(80).jpg
deleted file mode 100644
index e070da3..0000000
Binary files a/foto/foto_barang/download_(80).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(81).jpg b/foto/foto_barang/download_(81).jpg
deleted file mode 100644
index c570e0c..0000000
Binary files a/foto/foto_barang/download_(81).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(83).jpg b/foto/foto_barang/download_(83).jpg
deleted file mode 100644
index 297dbcd..0000000
Binary files a/foto/foto_barang/download_(83).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(84).jpg b/foto/foto_barang/download_(84).jpg
deleted file mode 100644
index b766400..0000000
Binary files a/foto/foto_barang/download_(84).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(85).jpg b/foto/foto_barang/download_(85).jpg
deleted file mode 100644
index acca6e0..0000000
Binary files a/foto/foto_barang/download_(85).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(86).jpg b/foto/foto_barang/download_(86).jpg
deleted file mode 100644
index 3593d54..0000000
Binary files a/foto/foto_barang/download_(86).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(88).jpg b/foto/foto_barang/download_(88).jpg
deleted file mode 100644
index 3c9a037..0000000
Binary files a/foto/foto_barang/download_(88).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(89).jpg b/foto/foto_barang/download_(89).jpg
deleted file mode 100644
index a62e0b0..0000000
Binary files a/foto/foto_barang/download_(89).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(9).jpg b/foto/foto_barang/download_(9).jpg
deleted file mode 100644
index 8310a84..0000000
Binary files a/foto/foto_barang/download_(9).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(9).png b/foto/foto_barang/download_(9).png
deleted file mode 100644
index 8acd665..0000000
Binary files a/foto/foto_barang/download_(9).png and /dev/null differ
diff --git a/foto/foto_barang/download_(90).jpg b/foto/foto_barang/download_(90).jpg
deleted file mode 100644
index 3e2cbc4..0000000
Binary files a/foto/foto_barang/download_(90).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(91).jpg b/foto/foto_barang/download_(91).jpg
deleted file mode 100644
index 8d206bc..0000000
Binary files a/foto/foto_barang/download_(91).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(92).jpg b/foto/foto_barang/download_(92).jpg
deleted file mode 100644
index 5042a3d..0000000
Binary files a/foto/foto_barang/download_(92).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(93).jpg b/foto/foto_barang/download_(93).jpg
deleted file mode 100644
index 7f6c377..0000000
Binary files a/foto/foto_barang/download_(93).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(94).jpg b/foto/foto_barang/download_(94).jpg
deleted file mode 100644
index 45443e7..0000000
Binary files a/foto/foto_barang/download_(94).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(95).jpg b/foto/foto_barang/download_(95).jpg
deleted file mode 100644
index 581c802..0000000
Binary files a/foto/foto_barang/download_(95).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(96).jpg b/foto/foto_barang/download_(96).jpg
deleted file mode 100644
index 5fd090c..0000000
Binary files a/foto/foto_barang/download_(96).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(98).jpg b/foto/foto_barang/download_(98).jpg
deleted file mode 100644
index f3aa995..0000000
Binary files a/foto/foto_barang/download_(98).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_(99).jpg b/foto/foto_barang/download_(99).jpg
deleted file mode 100644
index 6446843..0000000
Binary files a/foto/foto_barang/download_(99).jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T103913_931.jpg b/foto/foto_barang/download_-_2022-08-10T103913_931.jpg
deleted file mode 100644
index c7c49c4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T103913_931.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T105119_362.jpg b/foto/foto_barang/download_-_2022-08-10T105119_362.jpg
deleted file mode 100644
index 0042c60..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T105119_362.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T105436_978.jpg b/foto/foto_barang/download_-_2022-08-10T105436_978.jpg
deleted file mode 100644
index 3a9c34b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T105436_978.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T105727_571.jpg b/foto/foto_barang/download_-_2022-08-10T105727_571.jpg
deleted file mode 100644
index e438cb8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T105727_571.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T110007_530.jpg b/foto/foto_barang/download_-_2022-08-10T110007_530.jpg
deleted file mode 100644
index 1e50e5c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T110007_530.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T110221_810.jpg b/foto/foto_barang/download_-_2022-08-10T110221_810.jpg
deleted file mode 100644
index 50328df..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T110221_810.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T110726_460.jpg b/foto/foto_barang/download_-_2022-08-10T110726_460.jpg
deleted file mode 100644
index 96431f8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T110726_460.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T111953_187.jpg b/foto/foto_barang/download_-_2022-08-10T111953_187.jpg
deleted file mode 100644
index 3e8c273..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T111953_187.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T112219_228.jpg b/foto/foto_barang/download_-_2022-08-10T112219_228.jpg
deleted file mode 100644
index b914512..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T112219_228.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T112443_115.jpg b/foto/foto_barang/download_-_2022-08-10T112443_115.jpg
deleted file mode 100644
index 0599f6d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T112443_115.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T113107_572.jpg b/foto/foto_barang/download_-_2022-08-10T113107_572.jpg
deleted file mode 100644
index 9dd4820..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T113107_572.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T114133_421.jpg b/foto/foto_barang/download_-_2022-08-10T114133_421.jpg
deleted file mode 100644
index 6790cb2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T114133_421.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T114324_407.jpg b/foto/foto_barang/download_-_2022-08-10T114324_407.jpg
deleted file mode 100644
index 65be584..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T114324_407.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T115018_173.jpg b/foto/foto_barang/download_-_2022-08-10T115018_173.jpg
deleted file mode 100644
index e4d2946..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T115018_173.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T115544_261.jpg b/foto/foto_barang/download_-_2022-08-10T115544_261.jpg
deleted file mode 100644
index 329d7be..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T115544_261.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T115808_973.jpg b/foto/foto_barang/download_-_2022-08-10T115808_973.jpg
deleted file mode 100644
index e39331d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T115808_973.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T120949_982.jpg b/foto/foto_barang/download_-_2022-08-10T120949_982.jpg
deleted file mode 100644
index fff1be0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T120949_982.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T121241_991.jpg b/foto/foto_barang/download_-_2022-08-10T121241_991.jpg
deleted file mode 100644
index b72aa4e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T121241_991.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T141208_746.jpg b/foto/foto_barang/download_-_2022-08-10T141208_746.jpg
deleted file mode 100644
index 793604b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T141208_746.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T141506_426.jpg b/foto/foto_barang/download_-_2022-08-10T141506_426.jpg
deleted file mode 100644
index 23f9a60..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T141506_426.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T141721_042.jpg b/foto/foto_barang/download_-_2022-08-10T141721_042.jpg
deleted file mode 100644
index d905b4c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T141721_042.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T141927_315.jpg b/foto/foto_barang/download_-_2022-08-10T141927_315.jpg
deleted file mode 100644
index 74bf1cd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T141927_315.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T142243_105.jpg b/foto/foto_barang/download_-_2022-08-10T142243_105.jpg
deleted file mode 100644
index 3f84935..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T142243_105.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T142441_659.jpg b/foto/foto_barang/download_-_2022-08-10T142441_659.jpg
deleted file mode 100644
index beb1fbe..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T142441_659.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T142705_186.jpg b/foto/foto_barang/download_-_2022-08-10T142705_186.jpg
deleted file mode 100644
index adbdba8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T142705_186.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T143050_762.jpg b/foto/foto_barang/download_-_2022-08-10T143050_762.jpg
deleted file mode 100644
index a3bfbe3..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T143050_762.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T143440_266.jpg b/foto/foto_barang/download_-_2022-08-10T143440_266.jpg
deleted file mode 100644
index 01c6807..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T143440_266.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T143610_523.jpg b/foto/foto_barang/download_-_2022-08-10T143610_523.jpg
deleted file mode 100644
index 4802d73..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T143610_523.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T144945_998.jpg b/foto/foto_barang/download_-_2022-08-10T144945_998.jpg
deleted file mode 100644
index be097d2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T144945_998.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T152642_670.jpg b/foto/foto_barang/download_-_2022-08-10T152642_670.jpg
deleted file mode 100644
index b83344d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T152642_670.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T153356_805.jpg b/foto/foto_barang/download_-_2022-08-10T153356_805.jpg
deleted file mode 100644
index 198b815..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T153356_805.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T154132_922.jpg b/foto/foto_barang/download_-_2022-08-10T154132_922.jpg
deleted file mode 100644
index 7990717..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T154132_922.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T154901_927.jpg b/foto/foto_barang/download_-_2022-08-10T154901_927.jpg
deleted file mode 100644
index 7e5d905..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T154901_927.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T155226_725.jpg b/foto/foto_barang/download_-_2022-08-10T155226_725.jpg
deleted file mode 100644
index 9f1769d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T155226_725.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T155538_303.jpg b/foto/foto_barang/download_-_2022-08-10T155538_303.jpg
deleted file mode 100644
index 184a938..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T155538_303.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T155806_711.jpg b/foto/foto_barang/download_-_2022-08-10T155806_711.jpg
deleted file mode 100644
index bf3ebc9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T155806_711.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T160107_000.jpg b/foto/foto_barang/download_-_2022-08-10T160107_000.jpg
deleted file mode 100644
index c09bd07..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T160107_000.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T160325_096.jpg b/foto/foto_barang/download_-_2022-08-10T160325_096.jpg
deleted file mode 100644
index 1982d3a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T160325_096.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T160602_535.jpg b/foto/foto_barang/download_-_2022-08-10T160602_535.jpg
deleted file mode 100644
index 159adc7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T160602_535.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T160942_824.jpg b/foto/foto_barang/download_-_2022-08-10T160942_824.jpg
deleted file mode 100644
index 55498e7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T160942_824.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-10T161305_024.jpg b/foto/foto_barang/download_-_2022-08-10T161305_024.jpg
deleted file mode 100644
index 824bf5b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-10T161305_024.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T083950_625.jpg b/foto/foto_barang/download_-_2022-08-11T083950_625.jpg
deleted file mode 100644
index 3c496f0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T083950_625.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T084836_170.jpg b/foto/foto_barang/download_-_2022-08-11T084836_170.jpg
deleted file mode 100644
index da593aa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T084836_170.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T090142_858.jpg b/foto/foto_barang/download_-_2022-08-11T090142_858.jpg
deleted file mode 100644
index d953403..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T090142_858.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T093744_981.jpg b/foto/foto_barang/download_-_2022-08-11T093744_981.jpg
deleted file mode 100644
index ed4bd34..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T093744_981.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T094235_357.jpg b/foto/foto_barang/download_-_2022-08-11T094235_357.jpg
deleted file mode 100644
index 7ac88fc..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T094235_357.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T094527_950.jpg b/foto/foto_barang/download_-_2022-08-11T094527_950.jpg
deleted file mode 100644
index 629c573..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T094527_950.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T094841_429.jpg b/foto/foto_barang/download_-_2022-08-11T094841_429.jpg
deleted file mode 100644
index c52fdf1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T094841_429.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T100440_294.jpg b/foto/foto_barang/download_-_2022-08-11T100440_294.jpg
deleted file mode 100644
index f75f26f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T100440_294.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T103759_159.jpg b/foto/foto_barang/download_-_2022-08-11T103759_159.jpg
deleted file mode 100644
index d4141f9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T103759_159.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T104434_856.jpg b/foto/foto_barang/download_-_2022-08-11T104434_856.jpg
deleted file mode 100644
index 7908d74..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T104434_856.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T104827_199.jpg b/foto/foto_barang/download_-_2022-08-11T104827_199.jpg
deleted file mode 100644
index c71f2fa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T104827_199.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T110031_448.jpg b/foto/foto_barang/download_-_2022-08-11T110031_448.jpg
deleted file mode 100644
index 9a2b8d7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T110031_448.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T110031_4481.jpg b/foto/foto_barang/download_-_2022-08-11T110031_4481.jpg
deleted file mode 100644
index 9a2b8d7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T110031_4481.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T113211_754.jpg b/foto/foto_barang/download_-_2022-08-11T113211_754.jpg
deleted file mode 100644
index db9c1a1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T113211_754.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T131722_010.jpg b/foto/foto_barang/download_-_2022-08-11T131722_010.jpg
deleted file mode 100644
index 012b7d1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T131722_010.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T135438_981.jpg b/foto/foto_barang/download_-_2022-08-11T135438_981.jpg
deleted file mode 100644
index d1b3f39..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T135438_981.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T135856_876.jpg b/foto/foto_barang/download_-_2022-08-11T135856_876.jpg
deleted file mode 100644
index 753e966..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T135856_876.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T140712_124.jpg b/foto/foto_barang/download_-_2022-08-11T140712_124.jpg
deleted file mode 100644
index 7ae00fd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T140712_124.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T140950_772.jpg b/foto/foto_barang/download_-_2022-08-11T140950_772.jpg
deleted file mode 100644
index 41eb4cf..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T140950_772.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T141445_084.jpg b/foto/foto_barang/download_-_2022-08-11T141445_084.jpg
deleted file mode 100644
index 45ea7b9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T141445_084.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T141652_997.jpg b/foto/foto_barang/download_-_2022-08-11T141652_997.jpg
deleted file mode 100644
index 8d7dae2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T141652_997.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T142201_925.jpg b/foto/foto_barang/download_-_2022-08-11T142201_925.jpg
deleted file mode 100644
index 94c1a4d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T142201_925.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T142709_772.jpg b/foto/foto_barang/download_-_2022-08-11T142709_772.jpg
deleted file mode 100644
index c71f2fa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T142709_772.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T143033_150.jpg b/foto/foto_barang/download_-_2022-08-11T143033_150.jpg
deleted file mode 100644
index 519313d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T143033_150.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T143412_470.jpg b/foto/foto_barang/download_-_2022-08-11T143412_470.jpg
deleted file mode 100644
index f1cbabb..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T143412_470.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T145510_297.jpg b/foto/foto_barang/download_-_2022-08-11T145510_297.jpg
deleted file mode 100644
index c2d32e7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T145510_297.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T145735_402.jpg b/foto/foto_barang/download_-_2022-08-11T145735_402.jpg
deleted file mode 100644
index 59da2aa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T145735_402.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T150213_751.jpg b/foto/foto_barang/download_-_2022-08-11T150213_751.jpg
deleted file mode 100644
index 8285635..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T150213_751.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T150821_144.jpg b/foto/foto_barang/download_-_2022-08-11T150821_144.jpg
deleted file mode 100644
index 65cb6b2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T150821_144.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T151705_231.jpg b/foto/foto_barang/download_-_2022-08-11T151705_231.jpg
deleted file mode 100644
index 26e49b8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T151705_231.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T152034_783.jpg b/foto/foto_barang/download_-_2022-08-11T152034_783.jpg
deleted file mode 100644
index 833c708..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T152034_783.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T153300_096.jpg b/foto/foto_barang/download_-_2022-08-11T153300_096.jpg
deleted file mode 100644
index 7830247..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T153300_096.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T153743_920.jpg b/foto/foto_barang/download_-_2022-08-11T153743_920.jpg
deleted file mode 100644
index 3f77c9f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T153743_920.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T154038_697.jpg b/foto/foto_barang/download_-_2022-08-11T154038_697.jpg
deleted file mode 100644
index 8064745..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T154038_697.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T154305_025.jpg b/foto/foto_barang/download_-_2022-08-11T154305_025.jpg
deleted file mode 100644
index fb5f030..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T154305_025.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T154533_969.jpg b/foto/foto_barang/download_-_2022-08-11T154533_969.jpg
deleted file mode 100644
index 2d51ba9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T154533_969.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-11T160027_442.jpg b/foto/foto_barang/download_-_2022-08-11T160027_442.jpg
deleted file mode 100644
index 6564652..0000000
Binary files a/foto/foto_barang/download_-_2022-08-11T160027_442.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T083831_569.jpg b/foto/foto_barang/download_-_2022-08-12T083831_569.jpg
deleted file mode 100644
index 4eb5ba2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T083831_569.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T085505_683.jpg b/foto/foto_barang/download_-_2022-08-12T085505_683.jpg
deleted file mode 100644
index 0a79f41..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T085505_683.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T085950_124.jpg b/foto/foto_barang/download_-_2022-08-12T085950_124.jpg
deleted file mode 100644
index b760a70..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T085950_124.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T090929_092.jpg b/foto/foto_barang/download_-_2022-08-12T090929_092.jpg
deleted file mode 100644
index 0279cef..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T090929_092.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T091754_524.jpg b/foto/foto_barang/download_-_2022-08-12T091754_524.jpg
deleted file mode 100644
index 5bffe22..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T091754_524.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T092247_803.jpg b/foto/foto_barang/download_-_2022-08-12T092247_803.jpg
deleted file mode 100644
index 34bd4f2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T092247_803.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T092527_208.jpg b/foto/foto_barang/download_-_2022-08-12T092527_208.jpg
deleted file mode 100644
index 6e50862..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T092527_208.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T092841_980.jpg b/foto/foto_barang/download_-_2022-08-12T092841_980.jpg
deleted file mode 100644
index 408649a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T092841_980.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T093153_687.jpg b/foto/foto_barang/download_-_2022-08-12T093153_687.jpg
deleted file mode 100644
index 6984b05..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T093153_687.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T093433_965.jpg b/foto/foto_barang/download_-_2022-08-12T093433_965.jpg
deleted file mode 100644
index 333ae64..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T093433_965.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T093630_833.jpg b/foto/foto_barang/download_-_2022-08-12T093630_833.jpg
deleted file mode 100644
index be72f98..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T093630_833.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T094101_918.jpg b/foto/foto_barang/download_-_2022-08-12T094101_918.jpg
deleted file mode 100644
index aed0168..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T094101_918.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T094313_511.jpg b/foto/foto_barang/download_-_2022-08-12T094313_511.jpg
deleted file mode 100644
index 6984b05..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T094313_511.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T094532_870.jpg b/foto/foto_barang/download_-_2022-08-12T094532_870.jpg
deleted file mode 100644
index 55ce7ea..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T094532_870.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T095634_472.jpg b/foto/foto_barang/download_-_2022-08-12T095634_472.jpg
deleted file mode 100644
index dba3aac..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T095634_472.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T095929_230.jpg b/foto/foto_barang/download_-_2022-08-12T095929_230.jpg
deleted file mode 100644
index fe4fb49..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T095929_230.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T100249_166-removebg-preview.png b/foto/foto_barang/download_-_2022-08-12T100249_166-removebg-preview.png
deleted file mode 100644
index 54edbd4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T100249_166-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T100552_521.jpg b/foto/foto_barang/download_-_2022-08-12T100552_521.jpg
deleted file mode 100644
index a0aa223..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T100552_521.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T101003_447.jpg b/foto/foto_barang/download_-_2022-08-12T101003_447.jpg
deleted file mode 100644
index d61b873..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T101003_447.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T101220_111.jpg b/foto/foto_barang/download_-_2022-08-12T101220_111.jpg
deleted file mode 100644
index 0fa9b80..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T101220_111.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T101923_271.jpg b/foto/foto_barang/download_-_2022-08-12T101923_271.jpg
deleted file mode 100644
index ba33a28..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T101923_271.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T104456_072.jpg b/foto/foto_barang/download_-_2022-08-12T104456_072.jpg
deleted file mode 100644
index 3b393d5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T104456_072.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T105128_705.jpg b/foto/foto_barang/download_-_2022-08-12T105128_705.jpg
deleted file mode 100644
index af471d5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T105128_705.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T105822_394.jpg b/foto/foto_barang/download_-_2022-08-12T105822_394.jpg
deleted file mode 100644
index 5307964..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T105822_394.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T110427_409.jpg b/foto/foto_barang/download_-_2022-08-12T110427_409.jpg
deleted file mode 100644
index 23d161f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T110427_409.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T110629_987.jpg b/foto/foto_barang/download_-_2022-08-12T110629_987.jpg
deleted file mode 100644
index f2d7374..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T110629_987.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T110902_473.jpg b/foto/foto_barang/download_-_2022-08-12T110902_473.jpg
deleted file mode 100644
index 30e1c7e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T110902_473.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T111104_741.jpg b/foto/foto_barang/download_-_2022-08-12T111104_741.jpg
deleted file mode 100644
index d855918..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T111104_741.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T111356_876.jpg b/foto/foto_barang/download_-_2022-08-12T111356_876.jpg
deleted file mode 100644
index f4b9163..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T111356_876.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T111625_628.jpg b/foto/foto_barang/download_-_2022-08-12T111625_628.jpg
deleted file mode 100644
index a4b465a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T111625_628.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T111921_266.jpg b/foto/foto_barang/download_-_2022-08-12T111921_266.jpg
deleted file mode 100644
index 8fe07fd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T111921_266.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T134357_247.jpg b/foto/foto_barang/download_-_2022-08-12T134357_247.jpg
deleted file mode 100644
index 3783672..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T134357_247.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T134658_427.jpg b/foto/foto_barang/download_-_2022-08-12T134658_427.jpg
deleted file mode 100644
index d77722c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T134658_427.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T135245_104.jpg b/foto/foto_barang/download_-_2022-08-12T135245_104.jpg
deleted file mode 100644
index f7babbf..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T135245_104.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T135445_049.jpg b/foto/foto_barang/download_-_2022-08-12T135445_049.jpg
deleted file mode 100644
index ce44af1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T135445_049.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T135718_264.jpg b/foto/foto_barang/download_-_2022-08-12T135718_264.jpg
deleted file mode 100644
index 42657ef..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T135718_264.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T140302_104.jpg b/foto/foto_barang/download_-_2022-08-12T140302_104.jpg
deleted file mode 100644
index 028ab74..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T140302_104.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T140607_280.jpg b/foto/foto_barang/download_-_2022-08-12T140607_280.jpg
deleted file mode 100644
index 1d8e580..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T140607_280.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T141153_233.jpg b/foto/foto_barang/download_-_2022-08-12T141153_233.jpg
deleted file mode 100644
index fd72133..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T141153_233.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T141457_382.jpg b/foto/foto_barang/download_-_2022-08-12T141457_382.jpg
deleted file mode 100644
index a45ceef..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T141457_382.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T141807_761.jpg b/foto/foto_barang/download_-_2022-08-12T141807_761.jpg
deleted file mode 100644
index 7915a63..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T141807_761.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T142912_922.jpg b/foto/foto_barang/download_-_2022-08-12T142912_922.jpg
deleted file mode 100644
index 9f14027..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T142912_922.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T143512_258.jpg b/foto/foto_barang/download_-_2022-08-12T143512_258.jpg
deleted file mode 100644
index cc0959d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T143512_258.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T144537_283.jpg b/foto/foto_barang/download_-_2022-08-12T144537_283.jpg
deleted file mode 100644
index 9b38f33..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T144537_283.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T144753_570.jpg b/foto/foto_barang/download_-_2022-08-12T144753_570.jpg
deleted file mode 100644
index a6ad90a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T144753_570.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T145108_722.jpg b/foto/foto_barang/download_-_2022-08-12T145108_722.jpg
deleted file mode 100644
index 7f6d337..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T145108_722.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T145441_699.jpg b/foto/foto_barang/download_-_2022-08-12T145441_699.jpg
deleted file mode 100644
index 8a7b7e6..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T145441_699.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T145711_827.jpg b/foto/foto_barang/download_-_2022-08-12T145711_827.jpg
deleted file mode 100644
index 83b2d9c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T145711_827.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T150158_876.jpg b/foto/foto_barang/download_-_2022-08-12T150158_876.jpg
deleted file mode 100644
index 1394afc..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T150158_876.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T150421_963.jpg b/foto/foto_barang/download_-_2022-08-12T150421_963.jpg
deleted file mode 100644
index d65e124..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T150421_963.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T150653_539.jpg b/foto/foto_barang/download_-_2022-08-12T150653_539.jpg
deleted file mode 100644
index f235310..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T150653_539.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T151736_645.jpg b/foto/foto_barang/download_-_2022-08-12T151736_645.jpg
deleted file mode 100644
index 7f81e99..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T151736_645.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T152027_428.jpg b/foto/foto_barang/download_-_2022-08-12T152027_428.jpg
deleted file mode 100644
index df97e5b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T152027_428.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T153153_005.jpg b/foto/foto_barang/download_-_2022-08-12T153153_005.jpg
deleted file mode 100644
index f4ffe88..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T153153_005.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T153441_469.jpg b/foto/foto_barang/download_-_2022-08-12T153441_469.jpg
deleted file mode 100644
index ff76190..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T153441_469.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T154016_350.jpg b/foto/foto_barang/download_-_2022-08-12T154016_350.jpg
deleted file mode 100644
index 900c796..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T154016_350.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T154530_022.jpg b/foto/foto_barang/download_-_2022-08-12T154530_022.jpg
deleted file mode 100644
index c733a09..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T154530_022.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T155324_238.jpg b/foto/foto_barang/download_-_2022-08-12T155324_238.jpg
deleted file mode 100644
index 9ce07b9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T155324_238.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-12T155742_518.jpg b/foto/foto_barang/download_-_2022-08-12T155742_518.jpg
deleted file mode 100644
index d7e48b8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-12T155742_518.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T194054_079.jpg b/foto/foto_barang/download_-_2022-08-13T194054_079.jpg
deleted file mode 100644
index b4e029d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T194054_079.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T194303_878.jpg b/foto/foto_barang/download_-_2022-08-13T194303_878.jpg
deleted file mode 100644
index 7511e44..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T194303_878.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T194631_054.jpg b/foto/foto_barang/download_-_2022-08-13T194631_054.jpg
deleted file mode 100644
index 0be1efd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T194631_054.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T195412_127.jpg b/foto/foto_barang/download_-_2022-08-13T195412_127.jpg
deleted file mode 100644
index 813cec6..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T195412_127.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T195642_771.jpg b/foto/foto_barang/download_-_2022-08-13T195642_771.jpg
deleted file mode 100644
index 98dbbe3..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T195642_771.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T195956_808.jpg b/foto/foto_barang/download_-_2022-08-13T195956_808.jpg
deleted file mode 100644
index 17711ba..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T195956_808.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T200236_350.jpg b/foto/foto_barang/download_-_2022-08-13T200236_350.jpg
deleted file mode 100644
index cab28e8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T200236_350.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T200416_049.jpg b/foto/foto_barang/download_-_2022-08-13T200416_049.jpg
deleted file mode 100644
index 57b602f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T200416_049.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T201155_754.jpg b/foto/foto_barang/download_-_2022-08-13T201155_754.jpg
deleted file mode 100644
index 1bb3986..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T201155_754.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T201345_914.jpg b/foto/foto_barang/download_-_2022-08-13T201345_914.jpg
deleted file mode 100644
index 93c164d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T201345_914.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T201516_827.jpg b/foto/foto_barang/download_-_2022-08-13T201516_827.jpg
deleted file mode 100644
index 55898f9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T201516_827.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T201815_540.jpg b/foto/foto_barang/download_-_2022-08-13T201815_540.jpg
deleted file mode 100644
index 533889f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T201815_540.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T202033_353.jpg b/foto/foto_barang/download_-_2022-08-13T202033_353.jpg
deleted file mode 100644
index ba5bc88..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T202033_353.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T202328_398.jpg b/foto/foto_barang/download_-_2022-08-13T202328_398.jpg
deleted file mode 100644
index e4a9ac4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T202328_398.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T202720_893.jpg b/foto/foto_barang/download_-_2022-08-13T202720_893.jpg
deleted file mode 100644
index 205592c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T202720_893.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T202938_467.jpg b/foto/foto_barang/download_-_2022-08-13T202938_467.jpg
deleted file mode 100644
index a2d734f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T202938_467.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T203137_969.jpg b/foto/foto_barang/download_-_2022-08-13T203137_969.jpg
deleted file mode 100644
index fe190c1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T203137_969.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-13T203357_379.jpg b/foto/foto_barang/download_-_2022-08-13T203357_379.jpg
deleted file mode 100644
index 4a87aaa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-13T203357_379.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T061416_175.jpg b/foto/foto_barang/download_-_2022-08-14T061416_175.jpg
deleted file mode 100644
index 1f99376..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T061416_175.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T061609_973.jpg b/foto/foto_barang/download_-_2022-08-14T061609_973.jpg
deleted file mode 100644
index 76fe100..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T061609_973.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T061907_579.jpg b/foto/foto_barang/download_-_2022-08-14T061907_579.jpg
deleted file mode 100644
index 7422953..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T061907_579.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T062130_878.jpg b/foto/foto_barang/download_-_2022-08-14T062130_878.jpg
deleted file mode 100644
index 42e0a5c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T062130_878.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T062258_269.jpg b/foto/foto_barang/download_-_2022-08-14T062258_269.jpg
deleted file mode 100644
index 6581fe8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T062258_269.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T062458_780.jpg b/foto/foto_barang/download_-_2022-08-14T062458_780.jpg
deleted file mode 100644
index fc66a75..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T062458_780.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T062625_548.jpg b/foto/foto_barang/download_-_2022-08-14T062625_548.jpg
deleted file mode 100644
index 1c614b8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T062625_548.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T062837_992.jpg b/foto/foto_barang/download_-_2022-08-14T062837_992.jpg
deleted file mode 100644
index 4bed55a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T062837_992.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T063043_758.jpg b/foto/foto_barang/download_-_2022-08-14T063043_758.jpg
deleted file mode 100644
index 3cdd603..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T063043_758.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T063224_894.jpg b/foto/foto_barang/download_-_2022-08-14T063224_894.jpg
deleted file mode 100644
index 36eb3d4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T063224_894.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T063416_833.jpg b/foto/foto_barang/download_-_2022-08-14T063416_833.jpg
deleted file mode 100644
index 2ef9a15..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T063416_833.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T075318_641.jpg b/foto/foto_barang/download_-_2022-08-14T075318_641.jpg
deleted file mode 100644
index 4a43f82..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T075318_641.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T075705_618.jpg b/foto/foto_barang/download_-_2022-08-14T075705_618.jpg
deleted file mode 100644
index 91580ae..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T075705_618.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T075850_706.jpg b/foto/foto_barang/download_-_2022-08-14T075850_706.jpg
deleted file mode 100644
index 8964e0b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T075850_706.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T080044_867.jpg b/foto/foto_barang/download_-_2022-08-14T080044_867.jpg
deleted file mode 100644
index c03079f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T080044_867.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T080624_114.jpg b/foto/foto_barang/download_-_2022-08-14T080624_114.jpg
deleted file mode 100644
index c0d5788..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T080624_114.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T080913_180.jpg b/foto/foto_barang/download_-_2022-08-14T080913_180.jpg
deleted file mode 100644
index 30f2052..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T080913_180.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T081323_443.jpg b/foto/foto_barang/download_-_2022-08-14T081323_443.jpg
deleted file mode 100644
index 082c260..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T081323_443.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-14T160310_229.jpg b/foto/foto_barang/download_-_2022-08-14T160310_229.jpg
deleted file mode 100644
index c88d62d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-14T160310_229.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T084550_908.jpg b/foto/foto_barang/download_-_2022-08-15T084550_908.jpg
deleted file mode 100644
index aa14166..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T084550_908.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T084749_611.jpg b/foto/foto_barang/download_-_2022-08-15T084749_611.jpg
deleted file mode 100644
index 88e8b37..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T084749_611.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T085311_260.jpg b/foto/foto_barang/download_-_2022-08-15T085311_260.jpg
deleted file mode 100644
index 672499f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T085311_260.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T085535_436.jpg b/foto/foto_barang/download_-_2022-08-15T085535_436.jpg
deleted file mode 100644
index e52698e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T085535_436.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T090003_941.jpg b/foto/foto_barang/download_-_2022-08-15T090003_941.jpg
deleted file mode 100644
index 00734f9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T090003_941.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T090454_788.jpg b/foto/foto_barang/download_-_2022-08-15T090454_788.jpg
deleted file mode 100644
index 6301a19..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T090454_788.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T090731_141.jpg b/foto/foto_barang/download_-_2022-08-15T090731_141.jpg
deleted file mode 100644
index 73aeda4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T090731_141.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T090942_220.jpg b/foto/foto_barang/download_-_2022-08-15T090942_220.jpg
deleted file mode 100644
index 8fe7fbf..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T090942_220.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T091114_860.jpg b/foto/foto_barang/download_-_2022-08-15T091114_860.jpg
deleted file mode 100644
index 162b3a4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T091114_860.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T091400_053.jpg b/foto/foto_barang/download_-_2022-08-15T091400_053.jpg
deleted file mode 100644
index 6622a38..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T091400_053.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T091641_661.jpg b/foto/foto_barang/download_-_2022-08-15T091641_661.jpg
deleted file mode 100644
index 9fd49a2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T091641_661.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T092059_309.jpg b/foto/foto_barang/download_-_2022-08-15T092059_309.jpg
deleted file mode 100644
index 79921e6..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T092059_309.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T092419_599.jpg b/foto/foto_barang/download_-_2022-08-15T092419_599.jpg
deleted file mode 100644
index 2a4803c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T092419_599.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T092730_640.jpg b/foto/foto_barang/download_-_2022-08-15T092730_640.jpg
deleted file mode 100644
index 23d82b0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T092730_640.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T093323_710.jpg b/foto/foto_barang/download_-_2022-08-15T093323_710.jpg
deleted file mode 100644
index 263f692..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T093323_710.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T093547_632.jpg b/foto/foto_barang/download_-_2022-08-15T093547_632.jpg
deleted file mode 100644
index c2b98da..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T093547_632.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T094929_821.jpg b/foto/foto_barang/download_-_2022-08-15T094929_821.jpg
deleted file mode 100644
index 2c4d769..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T094929_821.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T095517_295.jpg b/foto/foto_barang/download_-_2022-08-15T095517_295.jpg
deleted file mode 100644
index 172699d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T095517_295.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T095825_519.jpg b/foto/foto_barang/download_-_2022-08-15T095825_519.jpg
deleted file mode 100644
index cbe4213..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T095825_519.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T100057_487.jpg b/foto/foto_barang/download_-_2022-08-15T100057_487.jpg
deleted file mode 100644
index ffc07e0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T100057_487.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T100301_696.jpg b/foto/foto_barang/download_-_2022-08-15T100301_696.jpg
deleted file mode 100644
index 06ac6a7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T100301_696.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T101413_633.jpg b/foto/foto_barang/download_-_2022-08-15T101413_633.jpg
deleted file mode 100644
index e2f2f48..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T101413_633.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T102050_897.jpg b/foto/foto_barang/download_-_2022-08-15T102050_897.jpg
deleted file mode 100644
index e62df81..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T102050_897.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T102712_856.jpg b/foto/foto_barang/download_-_2022-08-15T102712_856.jpg
deleted file mode 100644
index b69648b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T102712_856.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T102955_409.jpg b/foto/foto_barang/download_-_2022-08-15T102955_409.jpg
deleted file mode 100644
index c2da50d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T102955_409.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T103215_499.jpg b/foto/foto_barang/download_-_2022-08-15T103215_499.jpg
deleted file mode 100644
index b5c6566..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T103215_499.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T103710_947.jpg b/foto/foto_barang/download_-_2022-08-15T103710_947.jpg
deleted file mode 100644
index a8f62d9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T103710_947.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T104110_667.jpg b/foto/foto_barang/download_-_2022-08-15T104110_667.jpg
deleted file mode 100644
index f45c52d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T104110_667.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T104511_042.jpg b/foto/foto_barang/download_-_2022-08-15T104511_042.jpg
deleted file mode 100644
index 37dc4b4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T104511_042.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T105318_843.jpg b/foto/foto_barang/download_-_2022-08-15T105318_843.jpg
deleted file mode 100644
index e0921b7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T105318_843.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T105523_378.jpg b/foto/foto_barang/download_-_2022-08-15T105523_378.jpg
deleted file mode 100644
index 0cf5178..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T105523_378.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T110139_611.jpg b/foto/foto_barang/download_-_2022-08-15T110139_611.jpg
deleted file mode 100644
index ed9a753..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T110139_611.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T110339_563.jpg b/foto/foto_barang/download_-_2022-08-15T110339_563.jpg
deleted file mode 100644
index 27218ec..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T110339_563.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T111918_963.jpg b/foto/foto_barang/download_-_2022-08-15T111918_963.jpg
deleted file mode 100644
index cafc4fa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T111918_963.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T112702_340.jpg b/foto/foto_barang/download_-_2022-08-15T112702_340.jpg
deleted file mode 100644
index 4115746..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T112702_340.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T112917_508.jpg b/foto/foto_barang/download_-_2022-08-15T112917_508.jpg
deleted file mode 100644
index 01669ef..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T112917_508.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T113151_693.jpg b/foto/foto_barang/download_-_2022-08-15T113151_693.jpg
deleted file mode 100644
index 4000fd8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T113151_693.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T113602_093.jpg b/foto/foto_barang/download_-_2022-08-15T113602_093.jpg
deleted file mode 100644
index cf89c80..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T113602_093.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T113849_668.jpg b/foto/foto_barang/download_-_2022-08-15T113849_668.jpg
deleted file mode 100644
index 7fd7aad..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T113849_668.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T131115_364.jpg b/foto/foto_barang/download_-_2022-08-15T131115_364.jpg
deleted file mode 100644
index c270c4d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T131115_364.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T131511_804.jpg b/foto/foto_barang/download_-_2022-08-15T131511_804.jpg
deleted file mode 100644
index bee3bee..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T131511_804.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T131721_748.jpg b/foto/foto_barang/download_-_2022-08-15T131721_748.jpg
deleted file mode 100644
index 2febd37..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T131721_748.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T132044_748.jpg b/foto/foto_barang/download_-_2022-08-15T132044_748.jpg
deleted file mode 100644
index b781240..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T132044_748.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T132315_796.jpg b/foto/foto_barang/download_-_2022-08-15T132315_796.jpg
deleted file mode 100644
index f822290..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T132315_796.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T132500_765.jpg b/foto/foto_barang/download_-_2022-08-15T132500_765.jpg
deleted file mode 100644
index 65d2745..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T132500_765.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T134321_968.jpg b/foto/foto_barang/download_-_2022-08-15T134321_968.jpg
deleted file mode 100644
index f798dd1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T134321_968.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T134743_103.jpg b/foto/foto_barang/download_-_2022-08-15T134743_103.jpg
deleted file mode 100644
index edf2fae..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T134743_103.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T135050_992.jpg b/foto/foto_barang/download_-_2022-08-15T135050_992.jpg
deleted file mode 100644
index 2400220..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T135050_992.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T135817_336.jpg b/foto/foto_barang/download_-_2022-08-15T135817_336.jpg
deleted file mode 100644
index 230f4ba..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T135817_336.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T140111_306.jpg b/foto/foto_barang/download_-_2022-08-15T140111_306.jpg
deleted file mode 100644
index b590b1d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T140111_306.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T140355_298.jpg b/foto/foto_barang/download_-_2022-08-15T140355_298.jpg
deleted file mode 100644
index 8bcefd0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T140355_298.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T140617_465.jpg b/foto/foto_barang/download_-_2022-08-15T140617_465.jpg
deleted file mode 100644
index ab5b08e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T140617_465.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T140835_546.jpg b/foto/foto_barang/download_-_2022-08-15T140835_546.jpg
deleted file mode 100644
index 285ec4f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T140835_546.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T141126_832.jpg b/foto/foto_barang/download_-_2022-08-15T141126_832.jpg
deleted file mode 100644
index c880b27..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T141126_832.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T141337_762.jpg b/foto/foto_barang/download_-_2022-08-15T141337_762.jpg
deleted file mode 100644
index b40c7dd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T141337_762.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T141602_985.jpg b/foto/foto_barang/download_-_2022-08-15T141602_985.jpg
deleted file mode 100644
index 60aeb4a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T141602_985.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T141854_402.jpg b/foto/foto_barang/download_-_2022-08-15T141854_402.jpg
deleted file mode 100644
index 6235216..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T141854_402.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T142242_115.jpg b/foto/foto_barang/download_-_2022-08-15T142242_115.jpg
deleted file mode 100644
index 9f7a162..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T142242_115.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T142449_306.jpg b/foto/foto_barang/download_-_2022-08-15T142449_306.jpg
deleted file mode 100644
index 9e36465..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T142449_306.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T142827_474.jpg b/foto/foto_barang/download_-_2022-08-15T142827_474.jpg
deleted file mode 100644
index 3717c50..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T142827_474.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T143100_251.jpg b/foto/foto_barang/download_-_2022-08-15T143100_251.jpg
deleted file mode 100644
index 8af482b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T143100_251.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T143410_211.jpg b/foto/foto_barang/download_-_2022-08-15T143410_211.jpg
deleted file mode 100644
index 503e4aa..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T143410_211.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T143602_587.jpg b/foto/foto_barang/download_-_2022-08-15T143602_587.jpg
deleted file mode 100644
index 148288d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T143602_587.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T143854_130.jpg b/foto/foto_barang/download_-_2022-08-15T143854_130.jpg
deleted file mode 100644
index fa5b16c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T143854_130.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T144155_542.jpg b/foto/foto_barang/download_-_2022-08-15T144155_542.jpg
deleted file mode 100644
index 52df6ab..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T144155_542.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T144427_211.jpg b/foto/foto_barang/download_-_2022-08-15T144427_211.jpg
deleted file mode 100644
index 5092120..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T144427_211.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T144548_618.jpg b/foto/foto_barang/download_-_2022-08-15T144548_618.jpg
deleted file mode 100644
index eba6644..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T144548_618.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T144853_971.jpg b/foto/foto_barang/download_-_2022-08-15T144853_971.jpg
deleted file mode 100644
index 1acf6b3..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T144853_971.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T145339_284.jpg b/foto/foto_barang/download_-_2022-08-15T145339_284.jpg
deleted file mode 100644
index 42ae3e1..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T145339_284.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T145627_307.jpg b/foto/foto_barang/download_-_2022-08-15T145627_307.jpg
deleted file mode 100644
index e68cd04..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T145627_307.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T150040_245.jpg b/foto/foto_barang/download_-_2022-08-15T150040_245.jpg
deleted file mode 100644
index 9e42ef6..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T150040_245.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T150244_744.jpg b/foto/foto_barang/download_-_2022-08-15T150244_744.jpg
deleted file mode 100644
index c6db780..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T150244_744.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T150429_908.jpg b/foto/foto_barang/download_-_2022-08-15T150429_908.jpg
deleted file mode 100644
index 4b58441..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T150429_908.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T151012_895.jpg b/foto/foto_barang/download_-_2022-08-15T151012_895.jpg
deleted file mode 100644
index 7ac19f7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T151012_895.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T151208_062.jpg b/foto/foto_barang/download_-_2022-08-15T151208_062.jpg
deleted file mode 100644
index 44bc8d3..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T151208_062.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T151405_797.jpg b/foto/foto_barang/download_-_2022-08-15T151405_797.jpg
deleted file mode 100644
index e42fc58..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T151405_797.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T151652_717.jpg b/foto/foto_barang/download_-_2022-08-15T151652_717.jpg
deleted file mode 100644
index 53997f7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T151652_717.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T151844_338.jpg b/foto/foto_barang/download_-_2022-08-15T151844_338.jpg
deleted file mode 100644
index e8bb7ac..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T151844_338.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T152021_000.jpg b/foto/foto_barang/download_-_2022-08-15T152021_000.jpg
deleted file mode 100644
index 8d1fd6c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T152021_000.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T152021_0001.jpg b/foto/foto_barang/download_-_2022-08-15T152021_0001.jpg
deleted file mode 100644
index 8d1fd6c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T152021_0001.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T152441_734.jpg b/foto/foto_barang/download_-_2022-08-15T152441_734.jpg
deleted file mode 100644
index 2739dcd..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T152441_734.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T152734_966.jpg b/foto/foto_barang/download_-_2022-08-15T152734_966.jpg
deleted file mode 100644
index af5260a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T152734_966.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T153049_822.jpg b/foto/foto_barang/download_-_2022-08-15T153049_822.jpg
deleted file mode 100644
index 746094b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T153049_822.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T154815_140.jpg b/foto/foto_barang/download_-_2022-08-15T154815_140.jpg
deleted file mode 100644
index fd50f6a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T154815_140.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T155224_239.jpg b/foto/foto_barang/download_-_2022-08-15T155224_239.jpg
deleted file mode 100644
index 12e1cb8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T155224_239.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T155409_047.jpg b/foto/foto_barang/download_-_2022-08-15T155409_047.jpg
deleted file mode 100644
index dd9907f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T155409_047.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T155607_903.jpg b/foto/foto_barang/download_-_2022-08-15T155607_903.jpg
deleted file mode 100644
index 5fc53e0..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T155607_903.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T155853_306.jpg b/foto/foto_barang/download_-_2022-08-15T155853_306.jpg
deleted file mode 100644
index 64a91ee..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T155853_306.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T160055_800.jpg b/foto/foto_barang/download_-_2022-08-15T160055_800.jpg
deleted file mode 100644
index d69b317..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T160055_800.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T160211_568.jpg b/foto/foto_barang/download_-_2022-08-15T160211_568.jpg
deleted file mode 100644
index af45b4b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T160211_568.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T160350_975.jpg b/foto/foto_barang/download_-_2022-08-15T160350_975.jpg
deleted file mode 100644
index 481042a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T160350_975.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T160815_367.jpg b/foto/foto_barang/download_-_2022-08-15T160815_367.jpg
deleted file mode 100644
index 98d8dc5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T160815_367.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T161046_180.jpg b/foto/foto_barang/download_-_2022-08-15T161046_180.jpg
deleted file mode 100644
index 24d5ee4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T161046_180.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T161221_856.jpg b/foto/foto_barang/download_-_2022-08-15T161221_856.jpg
deleted file mode 100644
index 51a84b8..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T161221_856.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T161525_1671.jpg b/foto/foto_barang/download_-_2022-08-15T161525_1671.jpg
deleted file mode 100644
index 42a255d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T161525_1671.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T161914_744.jpg b/foto/foto_barang/download_-_2022-08-15T161914_744.jpg
deleted file mode 100644
index 311e501..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T161914_744.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T162107_713.jpg b/foto/foto_barang/download_-_2022-08-15T162107_713.jpg
deleted file mode 100644
index 064dec5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T162107_713.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T162244_473.jpg b/foto/foto_barang/download_-_2022-08-15T162244_473.jpg
deleted file mode 100644
index f243f41..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T162244_473.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T162556_857.jpg b/foto/foto_barang/download_-_2022-08-15T162556_857.jpg
deleted file mode 100644
index 6d63c87..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T162556_857.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T162757_992.jpg b/foto/foto_barang/download_-_2022-08-15T162757_992.jpg
deleted file mode 100644
index 525a46e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T162757_992.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T163103_456.jpg b/foto/foto_barang/download_-_2022-08-15T163103_456.jpg
deleted file mode 100644
index c3ecd77..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T163103_456.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T163404_577.jpg b/foto/foto_barang/download_-_2022-08-15T163404_577.jpg
deleted file mode 100644
index 51d613f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T163404_577.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T163544_275.jpg b/foto/foto_barang/download_-_2022-08-15T163544_275.jpg
deleted file mode 100644
index 09b2bfc..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T163544_275.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T163810_689.jpg b/foto/foto_barang/download_-_2022-08-15T163810_689.jpg
deleted file mode 100644
index 5d720e4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T163810_689.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T163942_633.jpg b/foto/foto_barang/download_-_2022-08-15T163942_633.jpg
deleted file mode 100644
index ad64e43..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T163942_633.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-15T164136_041.jpg b/foto/foto_barang/download_-_2022-08-15T164136_041.jpg
deleted file mode 100644
index be7f8ed..0000000
Binary files a/foto/foto_barang/download_-_2022-08-15T164136_041.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T081303_656.jpg b/foto/foto_barang/download_-_2022-08-16T081303_656.jpg
deleted file mode 100644
index 5938f00..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T081303_656.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T081445_408.jpg b/foto/foto_barang/download_-_2022-08-16T081445_408.jpg
deleted file mode 100644
index 8a2db3c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T081445_408.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T081712_280.jpg b/foto/foto_barang/download_-_2022-08-16T081712_280.jpg
deleted file mode 100644
index 80733fb..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T081712_280.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T082021_848.jpg b/foto/foto_barang/download_-_2022-08-16T082021_848.jpg
deleted file mode 100644
index 5a6befb..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T082021_848.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T083305_433.jpg b/foto/foto_barang/download_-_2022-08-16T083305_433.jpg
deleted file mode 100644
index 8d45d1b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T083305_433.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T083627_217.jpg b/foto/foto_barang/download_-_2022-08-16T083627_217.jpg
deleted file mode 100644
index c49a51b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T083627_217.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T083945_377.jpg b/foto/foto_barang/download_-_2022-08-16T083945_377.jpg
deleted file mode 100644
index b728d4f..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T083945_377.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T084208_098.jpg b/foto/foto_barang/download_-_2022-08-16T084208_098.jpg
deleted file mode 100644
index 512c739..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T084208_098.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T085326_138.jpg b/foto/foto_barang/download_-_2022-08-16T085326_138.jpg
deleted file mode 100644
index 4710de3..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T085326_138.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T085545_707.jpg b/foto/foto_barang/download_-_2022-08-16T085545_707.jpg
deleted file mode 100644
index d7a9933..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T085545_707.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T085806_435.jpg b/foto/foto_barang/download_-_2022-08-16T085806_435.jpg
deleted file mode 100644
index 04b34f2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T085806_435.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T090523_370.jpg b/foto/foto_barang/download_-_2022-08-16T090523_370.jpg
deleted file mode 100644
index bc55ab5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T090523_370.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T090741_858.jpg b/foto/foto_barang/download_-_2022-08-16T090741_858.jpg
deleted file mode 100644
index 9d46220..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T090741_858.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T091154_303.jpg b/foto/foto_barang/download_-_2022-08-16T091154_303.jpg
deleted file mode 100644
index 31b9c39..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T091154_303.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T091350_762.jpg b/foto/foto_barang/download_-_2022-08-16T091350_762.jpg
deleted file mode 100644
index 23b60f5..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T091350_762.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T102957_416.jpg b/foto/foto_barang/download_-_2022-08-16T102957_416.jpg
deleted file mode 100644
index c4cadd2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T102957_416.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T111847_394.jpg b/foto/foto_barang/download_-_2022-08-16T111847_394.jpg
deleted file mode 100644
index c99b83d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T111847_394.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T114106_077.jpg b/foto/foto_barang/download_-_2022-08-16T114106_077.jpg
deleted file mode 100644
index 41b8b3e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T114106_077.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T150036_603.jpg b/foto/foto_barang/download_-_2022-08-16T150036_603.jpg
deleted file mode 100644
index b502d78..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T150036_603.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T150701_444.jpg b/foto/foto_barang/download_-_2022-08-16T150701_444.jpg
deleted file mode 100644
index 92d1cab..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T150701_444.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T151416_955.jpg b/foto/foto_barang/download_-_2022-08-16T151416_955.jpg
deleted file mode 100644
index 7c72a01..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T151416_955.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T153136_988.jpg b/foto/foto_barang/download_-_2022-08-16T153136_988.jpg
deleted file mode 100644
index f2d3750..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T153136_988.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T153331_374.jpg b/foto/foto_barang/download_-_2022-08-16T153331_374.jpg
deleted file mode 100644
index 992709a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T153331_374.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T153531_555.jpg b/foto/foto_barang/download_-_2022-08-16T153531_555.jpg
deleted file mode 100644
index 242fa66..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T153531_555.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T154043_367.jpg b/foto/foto_barang/download_-_2022-08-16T154043_367.jpg
deleted file mode 100644
index 070dddb..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T154043_367.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-16T154314_094.jpg b/foto/foto_barang/download_-_2022-08-16T154314_094.jpg
deleted file mode 100644
index a5225ab..0000000
Binary files a/foto/foto_barang/download_-_2022-08-16T154314_094.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T142443_058.jpg b/foto/foto_barang/download_-_2022-08-18T142443_058.jpg
deleted file mode 100644
index c065990..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T142443_058.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T143354_491.jpg b/foto/foto_barang/download_-_2022-08-18T143354_491.jpg
deleted file mode 100644
index 2d7a16e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T143354_491.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T143632_522.jpg b/foto/foto_barang/download_-_2022-08-18T143632_522.jpg
deleted file mode 100644
index 7096013..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T143632_522.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T145719_532.jpg b/foto/foto_barang/download_-_2022-08-18T145719_532.jpg
deleted file mode 100644
index 9cbdaa4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T145719_532.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T150539_485.jpg b/foto/foto_barang/download_-_2022-08-18T150539_485.jpg
deleted file mode 100644
index 84ef27b..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T150539_485.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T150934_188.jpg b/foto/foto_barang/download_-_2022-08-18T150934_188.jpg
deleted file mode 100644
index b60a5a7..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T150934_188.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T151228_079.jpg b/foto/foto_barang/download_-_2022-08-18T151228_079.jpg
deleted file mode 100644
index 6cc120d..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T151228_079.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T151424_557.jpg b/foto/foto_barang/download_-_2022-08-18T151424_557.jpg
deleted file mode 100644
index bab6fce..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T151424_557.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T153649_221.jpg b/foto/foto_barang/download_-_2022-08-18T153649_221.jpg
deleted file mode 100644
index 8411a4c..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T153649_221.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T154206_041.jpg b/foto/foto_barang/download_-_2022-08-18T154206_041.jpg
deleted file mode 100644
index eff6bf2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T154206_041.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T154552_726.jpg b/foto/foto_barang/download_-_2022-08-18T154552_726.jpg
deleted file mode 100644
index 058e14e..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T154552_726.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T161608_602.jpg b/foto/foto_barang/download_-_2022-08-18T161608_602.jpg
deleted file mode 100644
index 9097bb4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T161608_602.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T161807_175.jpg b/foto/foto_barang/download_-_2022-08-18T161807_175.jpg
deleted file mode 100644
index b3c12f2..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T161807_175.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T162123_507.jpg b/foto/foto_barang/download_-_2022-08-18T162123_507.jpg
deleted file mode 100644
index f075fe4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T162123_507.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T162123_5071.jpg b/foto/foto_barang/download_-_2022-08-18T162123_5071.jpg
deleted file mode 100644
index f075fe4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T162123_5071.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-18T162123_5072.jpg b/foto/foto_barang/download_-_2022-08-18T162123_5072.jpg
deleted file mode 100644
index f075fe4..0000000
Binary files a/foto/foto_barang/download_-_2022-08-18T162123_5072.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T081400_600.jpg b/foto/foto_barang/download_-_2022-08-19T081400_600.jpg
deleted file mode 100644
index ec06aaf..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T081400_600.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T093307_004.jpg b/foto/foto_barang/download_-_2022-08-19T093307_004.jpg
deleted file mode 100644
index 37da2df..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T093307_004.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T110415_961.jpg b/foto/foto_barang/download_-_2022-08-19T110415_961.jpg
deleted file mode 100644
index c5a2a2a..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T110415_961.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T111059_966.jpg b/foto/foto_barang/download_-_2022-08-19T111059_966.jpg
deleted file mode 100644
index 69f9946..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T111059_966.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T111356_641.jpg b/foto/foto_barang/download_-_2022-08-19T111356_641.jpg
deleted file mode 100644
index f80d072..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T111356_641.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T113139_3123.jpg b/foto/foto_barang/download_-_2022-08-19T113139_3123.jpg
deleted file mode 100644
index 16c8c93..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T113139_3123.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T133835_073.jpg b/foto/foto_barang/download_-_2022-08-19T133835_073.jpg
deleted file mode 100644
index e0ecd27..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T133835_073.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T134018_908.jpg b/foto/foto_barang/download_-_2022-08-19T134018_908.jpg
deleted file mode 100644
index 13110ee..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T134018_908.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T134328_209.jpg b/foto/foto_barang/download_-_2022-08-19T134328_209.jpg
deleted file mode 100644
index e4260bb..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T134328_209.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T140407_168.jpg b/foto/foto_barang/download_-_2022-08-19T140407_168.jpg
deleted file mode 100644
index a8860b9..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T140407_168.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T140552_511.jpg b/foto/foto_barang/download_-_2022-08-19T140552_511.jpg
deleted file mode 100644
index f3f2f86..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T140552_511.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T140552_5111.jpg b/foto/foto_barang/download_-_2022-08-19T140552_5111.jpg
deleted file mode 100644
index f3f2f86..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T140552_5111.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T143309_546.jpg b/foto/foto_barang/download_-_2022-08-19T143309_546.jpg
deleted file mode 100644
index ea71d85..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T143309_546.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T144038_170.jpg b/foto/foto_barang/download_-_2022-08-19T144038_170.jpg
deleted file mode 100644
index b6c3ebf..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T144038_170.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T145056_059.jpg b/foto/foto_barang/download_-_2022-08-19T145056_059.jpg
deleted file mode 100644
index d830f93..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T145056_059.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-19T152437_300.jpg b/foto/foto_barang/download_-_2022-08-19T152437_300.jpg
deleted file mode 100644
index 1e29083..0000000
Binary files a/foto/foto_barang/download_-_2022-08-19T152437_300.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-22T083120_963.jpg b/foto/foto_barang/download_-_2022-08-22T083120_963.jpg
deleted file mode 100644
index c1ebb47..0000000
Binary files a/foto/foto_barang/download_-_2022-08-22T083120_963.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_-_2022-08-22T083905_009.jpg b/foto/foto_barang/download_-_2022-08-22T083905_009.jpg
deleted file mode 100644
index 2bc0d40..0000000
Binary files a/foto/foto_barang/download_-_2022-08-22T083905_009.jpg and /dev/null differ
diff --git a/foto/foto_barang/download_105.jpg b/foto/foto_barang/download_105.jpg
deleted file mode 100644
index f6a6ec0..0000000
Binary files a/foto/foto_barang/download_105.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_antibacterial_680ml.jpeg b/foto/foto_barang/downy_antibacterial_680ml.jpeg
deleted file mode 100644
index c36f7b8..0000000
Binary files a/foto/foto_barang/downy_antibacterial_680ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/downy_daring_680ml.jpeg b/foto/foto_barang/downy_daring_680ml.jpeg
deleted file mode 100644
index 7df15cd..0000000
Binary files a/foto/foto_barang/downy_daring_680ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/downy_floral_pink_780ml.jpg b/foto/foto_barang/downy_floral_pink_780ml.jpg
deleted file mode 100644
index fdd9168..0000000
Binary files a/foto/foto_barang/downy_floral_pink_780ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_mistique_230ml.jpg b/foto/foto_barang/downy_mistique_230ml.jpg
deleted file mode 100644
index ccdef26..0000000
Binary files a/foto/foto_barang/downy_mistique_230ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_mistique_680ml.jpg b/foto/foto_barang/downy_mistique_680ml.jpg
deleted file mode 100644
index 0d6f3eb..0000000
Binary files a/foto/foto_barang/downy_mistique_680ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_parfum_collection_passion_400ml.jpg b/foto/foto_barang/downy_parfum_collection_passion_400ml.jpg
deleted file mode 100644
index 6297a43..0000000
Binary files a/foto/foto_barang/downy_parfum_collection_passion_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_passion_900ml.jpg b/foto/foto_barang/downy_passion_900ml.jpg
deleted file mode 100644
index 75a7544..0000000
Binary files a/foto/foto_barang/downy_passion_900ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_sunrise_fresh_780ml_pouch.jpg b/foto/foto_barang/downy_sunrise_fresh_780ml_pouch.jpg
deleted file mode 100644
index fb35ac0..0000000
Binary files a/foto/foto_barang/downy_sunrise_fresh_780ml_pouch.jpg and /dev/null differ
diff --git a/foto/foto_barang/downy_sweetheart_680ml.jpg b/foto/foto_barang/downy_sweetheart_680ml.jpg
deleted file mode 100644
index e3612fc..0000000
Binary files a/foto/foto_barang/downy_sweetheart_680ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/dua_kelinci_koro_ori_65g.jpg b/foto/foto_barang/dua_kelinci_koro_ori_65g.jpg
deleted file mode 100644
index dcd5443..0000000
Binary files a/foto/foto_barang/dua_kelinci_koro_ori_65g.jpg and /dev/null differ
diff --git a/foto/foto_barang/e000012485f74e1f9055880a0ca76518.jpg b/foto/foto_barang/e000012485f74e1f9055880a0ca76518.jpg
deleted file mode 100644
index 5eba7e5..0000000
Binary files a/foto/foto_barang/e000012485f74e1f9055880a0ca76518.jpg and /dev/null differ
diff --git a/foto/foto_barang/e000012485f74e1f9055880a0ca765181.jpg b/foto/foto_barang/e000012485f74e1f9055880a0ca765181.jpg
deleted file mode 100644
index 5eba7e5..0000000
Binary files a/foto/foto_barang/e000012485f74e1f9055880a0ca765181.jpg and /dev/null differ
diff --git a/foto/foto_barang/e16a4925a804a485dabd6f60a293cca9.jpg b/foto/foto_barang/e16a4925a804a485dabd6f60a293cca9.jpg
deleted file mode 100644
index 0bff98e..0000000
Binary files a/foto/foto_barang/e16a4925a804a485dabd6f60a293cca9.jpg and /dev/null differ
diff --git a/foto/foto_barang/e19e74891b7d1253c5f09b59fc81e293.jpg b/foto/foto_barang/e19e74891b7d1253c5f09b59fc81e293.jpg
deleted file mode 100644
index 060ce0f..0000000
Binary files a/foto/foto_barang/e19e74891b7d1253c5f09b59fc81e293.jpg and /dev/null differ
diff --git a/foto/foto_barang/e2688e9e67c1bbfe8fd6be77aff703c5.jpg b/foto/foto_barang/e2688e9e67c1bbfe8fd6be77aff703c5.jpg
deleted file mode 100644
index 5a07da1..0000000
Binary files a/foto/foto_barang/e2688e9e67c1bbfe8fd6be77aff703c5.jpg and /dev/null differ
diff --git a/foto/foto_barang/e36ddc47c083d4c6b76f4566b36d00aa.jpg b/foto/foto_barang/e36ddc47c083d4c6b76f4566b36d00aa.jpg
deleted file mode 100644
index 70b85c1..0000000
Binary files a/foto/foto_barang/e36ddc47c083d4c6b76f4566b36d00aa.jpg and /dev/null differ
diff --git a/foto/foto_barang/e4530b9de6a2d6b660f5b62f80eeb9b8.jpg b/foto/foto_barang/e4530b9de6a2d6b660f5b62f80eeb9b8.jpg
deleted file mode 100644
index e5ab8d4..0000000
Binary files a/foto/foto_barang/e4530b9de6a2d6b660f5b62f80eeb9b8.jpg and /dev/null differ
diff --git a/foto/foto_barang/e510e874fe572feb0f524d0bd74106d4.jpg b/foto/foto_barang/e510e874fe572feb0f524d0bd74106d4.jpg
deleted file mode 100644
index 448282c..0000000
Binary files a/foto/foto_barang/e510e874fe572feb0f524d0bd74106d4.jpg and /dev/null differ
diff --git a/foto/foto_barang/e522edc9baceac5fc5c66e6375424388.jpg b/foto/foto_barang/e522edc9baceac5fc5c66e6375424388.jpg
deleted file mode 100644
index 34d6a9b..0000000
Binary files a/foto/foto_barang/e522edc9baceac5fc5c66e6375424388.jpg and /dev/null differ
diff --git a/foto/foto_barang/e596808115dfcbca69f3088ad96093ce.jpg b/foto/foto_barang/e596808115dfcbca69f3088ad96093ce.jpg
deleted file mode 100644
index 326df50..0000000
Binary files a/foto/foto_barang/e596808115dfcbca69f3088ad96093ce.jpg and /dev/null differ
diff --git a/foto/foto_barang/e85c6e8a-b912-4d80-8bd9-8b997cf6f383.jpg b/foto/foto_barang/e85c6e8a-b912-4d80-8bd9-8b997cf6f383.jpg
deleted file mode 100644
index 4f02a2b..0000000
Binary files a/foto/foto_barang/e85c6e8a-b912-4d80-8bd9-8b997cf6f383.jpg and /dev/null differ
diff --git a/foto/foto_barang/e90ad358d25bc45f87c5d552524a77c0.jpg b/foto/foto_barang/e90ad358d25bc45f87c5d552524a77c0.jpg
deleted file mode 100644
index 0899fdb..0000000
Binary files a/foto/foto_barang/e90ad358d25bc45f87c5d552524a77c0.jpg and /dev/null differ
diff --git a/foto/foto_barang/ea1e7364e1b535e86494d7a54af982c7.jpg b/foto/foto_barang/ea1e7364e1b535e86494d7a54af982c7.jpg
deleted file mode 100644
index 92977e8..0000000
Binary files a/foto/foto_barang/ea1e7364e1b535e86494d7a54af982c7.jpg and /dev/null differ
diff --git a/foto/foto_barang/ed31b373957a1a8be1af34ba295f8418.jpg b/foto/foto_barang/ed31b373957a1a8be1af34ba295f8418.jpg
deleted file mode 100644
index c6a3d36..0000000
Binary files a/foto/foto_barang/ed31b373957a1a8be1af34ba295f8418.jpg and /dev/null differ
diff --git a/foto/foto_barang/ee6fd716483f52358c7c4baff0ef8ccf08326148-original.jpg b/foto/foto_barang/ee6fd716483f52358c7c4baff0ef8ccf08326148-original.jpg
deleted file mode 100644
index d38ca70..0000000
Binary files a/foto/foto_barang/ee6fd716483f52358c7c4baff0ef8ccf08326148-original.jpg and /dev/null differ
diff --git a/foto/foto_barang/efd256cb-5da2-4669-a5db-0efdded58b85.jpg b/foto/foto_barang/efd256cb-5da2-4669-a5db-0efdded58b85.jpg
deleted file mode 100644
index f48faed..0000000
Binary files a/foto/foto_barang/efd256cb-5da2-4669-a5db-0efdded58b85.jpg and /dev/null differ
diff --git a/foto/foto_barang/efe53bc4-a491-49f2-a924-78785fff2588.jpg b/foto/foto_barang/efe53bc4-a491-49f2-a924-78785fff2588.jpg
deleted file mode 100644
index cc9f9d4..0000000
Binary files a/foto/foto_barang/efe53bc4-a491-49f2-a924-78785fff2588.jpg and /dev/null differ
diff --git a/foto/foto_barang/ekonomi_power_liquid_800ml.jpg b/foto/foto_barang/ekonomi_power_liquid_800ml.jpg
deleted file mode 100644
index ccc380b..0000000
Binary files a/foto/foto_barang/ekonomi_power_liquid_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/elektronik2-removebg-preview.png b/foto/foto_barang/elektronik2-removebg-preview.png
deleted file mode 100644
index 04a519a..0000000
Binary files a/foto/foto_barang/elektronik2-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/eletronik1-removebg-preview.png b/foto/foto_barang/eletronik1-removebg-preview.png
deleted file mode 100644
index 4da6b70..0000000
Binary files a/foto/foto_barang/eletronik1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/eliips_black.jpg b/foto/foto_barang/eliips_black.jpg
deleted file mode 100644
index d458c83..0000000
Binary files a/foto/foto_barang/eliips_black.jpg and /dev/null differ
diff --git a/foto/foto_barang/ellips_hair_vitamin_treatment.jpg b/foto/foto_barang/ellips_hair_vitamin_treatment.jpg
deleted file mode 100644
index f3124bf..0000000
Binary files a/foto/foto_barang/ellips_hair_vitamin_treatment.jpg and /dev/null differ
diff --git a/foto/foto_barang/ember_plastik_hitam.jpg b/foto/foto_barang/ember_plastik_hitam.jpg
deleted file mode 100644
index f038eeb..0000000
Binary files a/foto/foto_barang/ember_plastik_hitam.jpg and /dev/null differ
diff --git a/foto/foto_barang/emeron_lovely_smooth_and_bright_200ml.jpg b/foto/foto_barang/emeron_lovely_smooth_and_bright_200ml.jpg
deleted file mode 100644
index 2f0a570..0000000
Binary files a/foto/foto_barang/emeron_lovely_smooth_and_bright_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/emeron_shampoo_anti_dandruf_70ml.jpg b/foto/foto_barang/emeron_shampoo_anti_dandruf_70ml.jpg
deleted file mode 100644
index 21ee409..0000000
Binary files a/foto/foto_barang/emeron_shampoo_anti_dandruf_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/emina_bright_stuff_loose_powder_55gr.jpeg b/foto/foto_barang/emina_bright_stuff_loose_powder_55gr.jpeg
deleted file mode 100644
index 412a02d..0000000
Binary files a/foto/foto_barang/emina_bright_stuff_loose_powder_55gr.jpeg and /dev/null differ
diff --git a/foto/foto_barang/energen_coklat_pc.jpg b/foto/foto_barang/energen_coklat_pc.jpg
deleted file mode 100644
index b9f05c7..0000000
Binary files a/foto/foto_barang/energen_coklat_pc.jpg and /dev/null differ
diff --git a/foto/foto_barang/energen_kacang_hijau_pc.jpg b/foto/foto_barang/energen_kacang_hijau_pc.jpg
deleted file mode 100644
index 260024d..0000000
Binary files a/foto/foto_barang/energen_kacang_hijau_pc.jpg and /dev/null differ
diff --git a/foto/foto_barang/energen_kacang_hijau_pouch_10.jpg b/foto/foto_barang/energen_kacang_hijau_pouch_10.jpg
deleted file mode 100644
index 04cd6bc..0000000
Binary files a/foto/foto_barang/energen_kacang_hijau_pouch_10.jpg and /dev/null differ
diff --git a/foto/foto_barang/energen_vanila_pc.jpg b/foto/foto_barang/energen_vanila_pc.jpg
deleted file mode 100644
index e47dca6..0000000
Binary files a/foto/foto_barang/energen_vanila_pc.jpg and /dev/null differ
diff --git a/foto/foto_barang/energen_vanilla_pouch_10s.jpg b/foto/foto_barang/energen_vanilla_pouch_10s.jpg
deleted file mode 100644
index 3211e37..0000000
Binary files a/foto/foto_barang/energen_vanilla_pouch_10s.jpg and /dev/null differ
diff --git a/foto/foto_barang/energizer_a23.jpg b/foto/foto_barang/energizer_a23.jpg
deleted file mode 100644
index 27dec29..0000000
Binary files a/foto/foto_barang/energizer_a23.jpg and /dev/null differ
diff --git a/foto/foto_barang/energizer_a27.jpg b/foto/foto_barang/energizer_a27.jpg
deleted file mode 100644
index e5fd7dd..0000000
Binary files a/foto/foto_barang/energizer_a27.jpg and /dev/null differ
diff --git a/foto/foto_barang/energizer_aa_2_+_1.jpg b/foto/foto_barang/energizer_aa_2_+_1.jpg
deleted file mode 100644
index dc73742..0000000
Binary files a/foto/foto_barang/energizer_aa_2_+_1.jpg and /dev/null differ
diff --git a/foto/foto_barang/entrasol_active_coklat_160g.jpg b/foto/foto_barang/entrasol_active_coklat_160g.jpg
deleted file mode 100644
index ba1b2c8..0000000
Binary files a/foto/foto_barang/entrasol_active_coklat_160g.jpg and /dev/null differ
diff --git a/foto/foto_barang/entrasol_active_moka_160g.jpg b/foto/foto_barang/entrasol_active_moka_160g.jpg
deleted file mode 100644
index e7addc2..0000000
Binary files a/foto/foto_barang/entrasol_active_moka_160g.jpg and /dev/null differ
diff --git a/foto/foto_barang/entrasol_active_vanilla_latte_160g.jpg b/foto/foto_barang/entrasol_active_vanilla_latte_160g.jpg
deleted file mode 100644
index f34a2a0..0000000
Binary files a/foto/foto_barang/entrasol_active_vanilla_latte_160g.jpg and /dev/null differ
diff --git a/foto/foto_barang/er_teler.jpg b/foto/foto_barang/er_teler.jpg
deleted file mode 100644
index 60a6ce4..0000000
Binary files a/foto/foto_barang/er_teler.jpg and /dev/null differ
diff --git a/foto/foto_barang/es_buah.jpg b/foto/foto_barang/es_buah.jpg
deleted file mode 100644
index 46fa982..0000000
Binary files a/foto/foto_barang/es_buah.jpg and /dev/null differ
diff --git a/foto/foto_barang/es_manado.jpg b/foto/foto_barang/es_manado.jpg
deleted file mode 100644
index 1df17a4..0000000
Binary files a/foto/foto_barang/es_manado.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_day_cream_100ml.jpg b/foto/foto_barang/eskulin_day_cream_100ml.jpg
deleted file mode 100644
index d97d15c..0000000
Binary files a/foto/foto_barang/eskulin_day_cream_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_friday_100ml.jpg b/foto/foto_barang/eskulin_friday_100ml.jpg
deleted file mode 100644
index a1144f5..0000000
Binary files a/foto/foto_barang/eskulin_friday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_fresh_day_100ml.jpg b/foto/foto_barang/eskulin_hijab_fresh_day_100ml.jpg
deleted file mode 100644
index 7ad273a..0000000
Binary files a/foto/foto_barang/eskulin_hijab_fresh_day_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_green_125ml.jpg b/foto/foto_barang/eskulin_hijab_green_125ml.jpg
deleted file mode 100644
index 7b4f88a..0000000
Binary files a/foto/foto_barang/eskulin_hijab_green_125ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_perfect_day_100ml.jpg b/foto/foto_barang/eskulin_hijab_perfect_day_100ml.jpg
deleted file mode 100644
index d516c55..0000000
Binary files a/foto/foto_barang/eskulin_hijab_perfect_day_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_pink_blossom_125ml.jpg b/foto/foto_barang/eskulin_hijab_pink_blossom_125ml.jpg
deleted file mode 100644
index a3b71a1..0000000
Binary files a/foto/foto_barang/eskulin_hijab_pink_blossom_125ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_purple_125ml.jpg b/foto/foto_barang/eskulin_hijab_purple_125ml.jpg
deleted file mode 100644
index 55a57c7..0000000
Binary files a/foto/foto_barang/eskulin_hijab_purple_125ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_hijab_yellow_125ml.jpg b/foto/foto_barang/eskulin_hijab_yellow_125ml.jpg
deleted file mode 100644
index 076e84a..0000000
Binary files a/foto/foto_barang/eskulin_hijab_yellow_125ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_monday_100ml.jpg b/foto/foto_barang/eskulin_monday_100ml.jpg
deleted file mode 100644
index 51d13d2..0000000
Binary files a/foto/foto_barang/eskulin_monday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_parfum_sunshine_kiss_110ml.jpg b/foto/foto_barang/eskulin_parfum_sunshine_kiss_110ml.jpg
deleted file mode 100644
index 49cc5d0..0000000
Binary files a/foto/foto_barang/eskulin_parfum_sunshine_kiss_110ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_parfume_cheerful_swing_110ml.jpg b/foto/foto_barang/eskulin_parfume_cheerful_swing_110ml.jpg
deleted file mode 100644
index 072cc1b..0000000
Binary files a/foto/foto_barang/eskulin_parfume_cheerful_swing_110ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_parfume_midnight_dream_110ml.jpg b/foto/foto_barang/eskulin_parfume_midnight_dream_110ml.jpg
deleted file mode 100644
index a8a1258..0000000
Binary files a/foto/foto_barang/eskulin_parfume_midnight_dream_110ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_parfume_romantic_day_100ml.jpg b/foto/foto_barang/eskulin_parfume_romantic_day_100ml.jpg
deleted file mode 100644
index 31fd250..0000000
Binary files a/foto/foto_barang/eskulin_parfume_romantic_day_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_parfume_spring_melody_110ml.jpg b/foto/foto_barang/eskulin_parfume_spring_melody_110ml.jpg
deleted file mode 100644
index a3009f9..0000000
Binary files a/foto/foto_barang/eskulin_parfume_spring_melody_110ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_saturday_100ml.jpg b/foto/foto_barang/eskulin_saturday_100ml.jpg
deleted file mode 100644
index 4ba6578..0000000
Binary files a/foto/foto_barang/eskulin_saturday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_sunday_100ml.jpg b/foto/foto_barang/eskulin_sunday_100ml.jpg
deleted file mode 100644
index c271661..0000000
Binary files a/foto/foto_barang/eskulin_sunday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_thursday_100ml.jpg b/foto/foto_barang/eskulin_thursday_100ml.jpg
deleted file mode 100644
index 2f78312..0000000
Binary files a/foto/foto_barang/eskulin_thursday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_tuesday_100ml.jpg b/foto/foto_barang/eskulin_tuesday_100ml.jpg
deleted file mode 100644
index 46b5ac0..0000000
Binary files a/foto/foto_barang/eskulin_tuesday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eskulin_wednesday_100ml.jpg b/foto/foto_barang/eskulin_wednesday_100ml.jpg
deleted file mode 100644
index c74213d..0000000
Binary files a/foto/foto_barang/eskulin_wednesday_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/eveready_1012_bp20_merah.jpg b/foto/foto_barang/eveready_1012_bp20_merah.jpg
deleted file mode 100644
index cb5df12..0000000
Binary files a/foto/foto_barang/eveready_1012_bp20_merah.jpg and /dev/null differ
diff --git a/foto/foto_barang/eveready_1212_bp4_aaa_hitam.jpg b/foto/foto_barang/eveready_1212_bp4_aaa_hitam.jpg
deleted file mode 100644
index d5a4586..0000000
Binary files a/foto/foto_barang/eveready_1212_bp4_aaa_hitam.jpg and /dev/null differ
diff --git a/foto/foto_barang/eveready_1215_aa_bp4_hitam_kecil.jpg b/foto/foto_barang/eveready_1215_aa_bp4_hitam_kecil.jpg
deleted file mode 100644
index bd1792b..0000000
Binary files a/foto/foto_barang/eveready_1215_aa_bp4_hitam_kecil.jpg and /dev/null differ
diff --git a/foto/foto_barang/eveready_a92_aaa_bp2_gold.jpg b/foto/foto_barang/eveready_a92_aaa_bp2_gold.jpg
deleted file mode 100644
index d675ed9..0000000
Binary files a/foto/foto_barang/eveready_a92_aaa_bp2_gold.jpg and /dev/null differ
diff --git a/foto/foto_barang/eveready_super_heavy_duty.jpg b/foto/foto_barang/eveready_super_heavy_duty.jpg
deleted file mode 100644
index cf5a375..0000000
Binary files a/foto/foto_barang/eveready_super_heavy_duty.jpg and /dev/null differ
diff --git a/foto/foto_barang/f18dec64-5dcb-40b8-96e1-7407f437cd2a.jpg b/foto/foto_barang/f18dec64-5dcb-40b8-96e1-7407f437cd2a.jpg
deleted file mode 100644
index 797d220..0000000
Binary files a/foto/foto_barang/f18dec64-5dcb-40b8-96e1-7407f437cd2a.jpg and /dev/null differ
diff --git a/foto/foto_barang/f1951fb7ff4f7c2c96e37054080243ad.jpg b/foto/foto_barang/f1951fb7ff4f7c2c96e37054080243ad.jpg
deleted file mode 100644
index 5edce83..0000000
Binary files a/foto/foto_barang/f1951fb7ff4f7c2c96e37054080243ad.jpg and /dev/null differ
diff --git a/foto/foto_barang/f1a44d9420c172bd9f393fccd90d1b5d.jpg b/foto/foto_barang/f1a44d9420c172bd9f393fccd90d1b5d.jpg
deleted file mode 100644
index ae26879..0000000
Binary files a/foto/foto_barang/f1a44d9420c172bd9f393fccd90d1b5d.jpg and /dev/null differ
diff --git a/foto/foto_barang/f1b6837986ad12eb99302adb34a676e7.jpg b/foto/foto_barang/f1b6837986ad12eb99302adb34a676e7.jpg
deleted file mode 100644
index 944b5c1..0000000
Binary files a/foto/foto_barang/f1b6837986ad12eb99302adb34a676e7.jpg and /dev/null differ
diff --git a/foto/foto_barang/f34f43a0-75ca-41dc-ad10-be74d8019ec5.jpg b/foto/foto_barang/f34f43a0-75ca-41dc-ad10-be74d8019ec5.jpg
deleted file mode 100644
index cea83c0..0000000
Binary files a/foto/foto_barang/f34f43a0-75ca-41dc-ad10-be74d8019ec5.jpg and /dev/null differ
diff --git a/foto/foto_barang/f47cd9f9c32da3e054ec0ce3a58a101e.jpg b/foto/foto_barang/f47cd9f9c32da3e054ec0ce3a58a101e.jpg
deleted file mode 100644
index 675c697..0000000
Binary files a/foto/foto_barang/f47cd9f9c32da3e054ec0ce3a58a101e.jpg and /dev/null differ
diff --git a/foto/foto_barang/f5f7f0dc-3535-4820-8248-56b1afdf059b.jpg b/foto/foto_barang/f5f7f0dc-3535-4820-8248-56b1afdf059b.jpg
deleted file mode 100644
index cc363bc..0000000
Binary files a/foto/foto_barang/f5f7f0dc-3535-4820-8248-56b1afdf059b.jpg and /dev/null differ
diff --git a/foto/foto_barang/f62d0e04f560c35f64289cb70428c61fc27b5f39-original.jpg b/foto/foto_barang/f62d0e04f560c35f64289cb70428c61fc27b5f39-original.jpg
deleted file mode 100644
index f15e576..0000000
Binary files a/foto/foto_barang/f62d0e04f560c35f64289cb70428c61fc27b5f39-original.jpg and /dev/null differ
diff --git a/foto/foto_barang/f79aa91bebda5f2241cd2fb229142794.png b/foto/foto_barang/f79aa91bebda5f2241cd2fb229142794.png
deleted file mode 100644
index bed98e1..0000000
Binary files a/foto/foto_barang/f79aa91bebda5f2241cd2fb229142794.png and /dev/null differ
diff --git a/foto/foto_barang/f8a0f9f6468d4e1bc317b83334487a23.jpg b/foto/foto_barang/f8a0f9f6468d4e1bc317b83334487a23.jpg
deleted file mode 100644
index d035f54..0000000
Binary files a/foto/foto_barang/f8a0f9f6468d4e1bc317b83334487a23.jpg and /dev/null differ
diff --git a/foto/foto_barang/f9681574afa383b6790e3b5cb0140c05.jpg b/foto/foto_barang/f9681574afa383b6790e3b5cb0140c05.jpg
deleted file mode 100644
index a9a1bbd..0000000
Binary files a/foto/foto_barang/f9681574afa383b6790e3b5cb0140c05.jpg and /dev/null differ
diff --git a/foto/foto_barang/fa85b6553e88d0e51f3812e0923c6603.jpg b/foto/foto_barang/fa85b6553e88d0e51f3812e0923c6603.jpg
deleted file mode 100644
index 1528e2c..0000000
Binary files a/foto/foto_barang/fa85b6553e88d0e51f3812e0923c6603.jpg and /dev/null differ
diff --git a/foto/foto_barang/fanta.jpg b/foto/foto_barang/fanta.jpg
deleted file mode 100644
index c44e7ba..0000000
Binary files a/foto/foto_barang/fanta.jpg and /dev/null differ
diff --git a/foto/foto_barang/fanta_strawberry_350ml.jpg b/foto/foto_barang/fanta_strawberry_350ml.jpg
deleted file mode 100644
index 0a9f8ee..0000000
Binary files a/foto/foto_barang/fanta_strawberry_350ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/fb866304b333aa03e337222e0e04e468.jpg b/foto/foto_barang/fb866304b333aa03e337222e0e04e468.jpg
deleted file mode 100644
index 1e5c5e2..0000000
Binary files a/foto/foto_barang/fb866304b333aa03e337222e0e04e468.jpg and /dev/null differ
diff --git a/foto/foto_barang/fc48fe6b6cda54147299731f5c70ca28.jpg b/foto/foto_barang/fc48fe6b6cda54147299731f5c70ca28.jpg
deleted file mode 100644
index e2712b3..0000000
Binary files a/foto/foto_barang/fc48fe6b6cda54147299731f5c70ca28.jpg and /dev/null differ
diff --git a/foto/foto_barang/fc7e094d-6555-473e-bb24-4bee585f16a1.jpg b/foto/foto_barang/fc7e094d-6555-473e-bb24-4bee585f16a1.jpg
deleted file mode 100644
index 4939f37..0000000
Binary files a/foto/foto_barang/fc7e094d-6555-473e-bb24-4bee585f16a1.jpg and /dev/null differ
diff --git a/foto/foto_barang/fd35b2a5-75ad-4fd7-ab74-2cadd8910eb1.jpg b/foto/foto_barang/fd35b2a5-75ad-4fd7-ab74-2cadd8910eb1.jpg
deleted file mode 100644
index 8271fae..0000000
Binary files a/foto/foto_barang/fd35b2a5-75ad-4fd7-ab74-2cadd8910eb1.jpg and /dev/null differ
diff --git a/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db223.jpg b/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db223.jpg
deleted file mode 100644
index 8e9626b..0000000
Binary files a/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db223.jpg and /dev/null differ
diff --git a/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db2231.jpg b/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db2231.jpg
deleted file mode 100644
index 8e9626b..0000000
Binary files a/foto/foto_barang/fd80f82e7e1385d00c816c52ef2db2231.jpg and /dev/null differ
diff --git a/foto/foto_barang/fd876a46-1d96-442d-bce3-9eb17278ea13.jpg b/foto/foto_barang/fd876a46-1d96-442d-bce3-9eb17278ea13.jpg
deleted file mode 100644
index 25d2750..0000000
Binary files a/foto/foto_barang/fd876a46-1d96-442d-bce3-9eb17278ea13.jpg and /dev/null differ
diff --git a/foto/foto_barang/fd9b1f169c8d99d34342f5efb2c2b3a5.jpg b/foto/foto_barang/fd9b1f169c8d99d34342f5efb2c2b3a5.jpg
deleted file mode 100644
index 9b4b415..0000000
Binary files a/foto/foto_barang/fd9b1f169c8d99d34342f5efb2c2b3a5.jpg and /dev/null differ
diff --git a/foto/foto_barang/ffc7429e58c4c51847991688ed47fbe4.jpg b/foto/foto_barang/ffc7429e58c4c51847991688ed47fbe4.jpg
deleted file mode 100644
index 5cf2527..0000000
Binary files a/foto/foto_barang/ffc7429e58c4c51847991688ed47fbe4.jpg and /dev/null differ
diff --git a/foto/foto_barang/fff84324f4560232d118473ad9639028.jpg b/foto/foto_barang/fff84324f4560232d118473ad9639028.jpg
deleted file mode 100644
index f42abec..0000000
Binary files a/foto/foto_barang/fff84324f4560232d118473ad9639028.jpg and /dev/null differ
diff --git a/foto/foto_barang/filma_medan---filma-minyak-goreng-pouch--2-l-_full03.jpg b/foto/foto_barang/filma_medan---filma-minyak-goreng-pouch--2-l-_full03.jpg
deleted file mode 100644
index 32844bc..0000000
Binary files a/foto/foto_barang/filma_medan---filma-minyak-goreng-pouch--2-l-_full03.jpg and /dev/null differ
diff --git a/foto/foto_barang/fingerspot.jpg b/foto/foto_barang/fingerspot.jpg
deleted file mode 100644
index 0b34035..0000000
Binary files a/foto/foto_barang/fingerspot.jpg and /dev/null differ
diff --git a/foto/foto_barang/fitbar_coklat_24g.jpg b/foto/foto_barang/fitbar_coklat_24g.jpg
deleted file mode 100644
index 59bc916..0000000
Binary files a/foto/foto_barang/fitbar_coklat_24g.jpg and /dev/null differ
diff --git a/foto/foto_barang/flashdisk_sandisk_32gb.jpg b/foto/foto_barang/flashdisk_sandisk_32gb.jpg
deleted file mode 100644
index 2697d81..0000000
Binary files a/foto/foto_barang/flashdisk_sandisk_32gb.jpg and /dev/null differ
diff --git a/foto/foto_barang/floridina.jpg b/foto/foto_barang/floridina.jpg
deleted file mode 100644
index add0cef..0000000
Binary files a/foto/foto_barang/floridina.jpg and /dev/null differ
diff --git a/foto/foto_barang/fococlipping-20220113-141949-removebg-preview.png b/foto/foto_barang/fococlipping-20220113-141949-removebg-preview.png
deleted file mode 100644
index 264fff2..0000000
Binary files a/foto/foto_barang/fococlipping-20220113-141949-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/formula_act_protec_190g_sikat_gigi.jpg b/foto/foto_barang/formula_act_protec_190g_sikat_gigi.jpg
deleted file mode 100644
index b391433..0000000
Binary files a/foto/foto_barang/formula_act_protec_190g_sikat_gigi.jpg and /dev/null differ
diff --git a/foto/foto_barang/fortune_fortune_minyak_goreng_pouch_-2000_ml-_full02_gibplfzz.jpeg b/foto/foto_barang/fortune_fortune_minyak_goreng_pouch_-2000_ml-_full02_gibplfzz.jpeg
deleted file mode 100644
index 4306b68..0000000
Binary files a/foto/foto_barang/fortune_fortune_minyak_goreng_pouch_-2000_ml-_full02_gibplfzz.jpeg and /dev/null differ
diff --git a/foto/foto_barang/foto-beras.jpg b/foto/foto_barang/foto-beras.jpg
deleted file mode 100644
index 4bd800a..0000000
Binary files a/foto/foto_barang/foto-beras.jpg and /dev/null differ
diff --git a/foto/foto_barang/fresco.jpg b/foto/foto_barang/fresco.jpg
deleted file mode 100644
index 7e7dd86..0000000
Binary files a/foto/foto_barang/fresco.jpg and /dev/null differ
diff --git a/foto/foto_barang/freshtea_lychee_350ml.jpg b/foto/foto_barang/freshtea_lychee_350ml.jpg
deleted file mode 100644
index 5123adc..0000000
Binary files a/foto/foto_barang/freshtea_lychee_350ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/fried-chicken-1.jpg b/foto/foto_barang/fried-chicken-1.jpg
deleted file mode 100644
index f86192c..0000000
Binary files a/foto/foto_barang/fried-chicken-1.jpg and /dev/null differ
diff --git a/foto/foto_barang/friench_fresh_premium.jpg b/foto/foto_barang/friench_fresh_premium.jpg
deleted file mode 100644
index 1c9d076..0000000
Binary files a/foto/foto_barang/friench_fresh_premium.jpg and /dev/null differ
diff --git a/foto/foto_barang/gantungan_kunci.png b/foto/foto_barang/gantungan_kunci.png
deleted file mode 100644
index bf62b5e..0000000
Binary files a/foto/foto_barang/gantungan_kunci.png and /dev/null differ
diff --git a/foto/foto_barang/gantungan_kuncigantungan_kunci.jpg b/foto/foto_barang/gantungan_kuncigantungan_kunci.jpg
deleted file mode 100644
index 17cc8cd..0000000
Binary files a/foto/foto_barang/gantungan_kuncigantungan_kunci.jpg and /dev/null differ
diff --git a/foto/foto_barang/garuda_rosta_kacang_panggang_100g.jpg b/foto/foto_barang/garuda_rosta_kacang_panggang_100g.jpg
deleted file mode 100644
index ac4e7d6..0000000
Binary files a/foto/foto_barang/garuda_rosta_kacang_panggang_100g.jpg and /dev/null differ
diff --git a/foto/foto_barang/gerry_malkis_salut_110g.jpg b/foto/foto_barang/gerry_malkis_salut_110g.jpg
deleted file mode 100644
index 6142ec7..0000000
Binary files a/foto/foto_barang/gerry_malkis_salut_110g.jpg and /dev/null differ
diff --git a/foto/foto_barang/giv_ts_pepaya_80gr.jpg b/foto/foto_barang/giv_ts_pepaya_80gr.jpg
deleted file mode 100644
index 7348c4c..0000000
Binary files a/foto/foto_barang/giv_ts_pepaya_80gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/giv_ts_putih_110gr.jpg b/foto/foto_barang/giv_ts_putih_110gr.jpg
deleted file mode 100644
index c9852b5..0000000
Binary files a/foto/foto_barang/giv_ts_putih_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/giv_ts_putih_76gr.jpg b/foto/foto_barang/giv_ts_putih_76gr.jpg
deleted file mode 100644
index fe05fd4..0000000
Binary files a/foto/foto_barang/giv_ts_putih_76gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/giv_ts_ungu_80gr.jpg b/foto/foto_barang/giv_ts_ungu_80gr.jpg
deleted file mode 100644
index 2d6792c..0000000
Binary files a/foto/foto_barang/giv_ts_ungu_80gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/good_time_72g.jpg b/foto/foto_barang/good_time_72g.jpg
deleted file mode 100644
index 9cb6b74..0000000
Binary files a/foto/foto_barang/good_time_72g.jpg and /dev/null differ
diff --git a/foto/foto_barang/goodtime.jpg b/foto/foto_barang/goodtime.jpg
deleted file mode 100644
index c6ba7a4..0000000
Binary files a/foto/foto_barang/goodtime.jpg and /dev/null differ
diff --git a/foto/foto_barang/gpu.jpg b/foto/foto_barang/gpu.jpg
deleted file mode 100644
index d515db0..0000000
Binary files a/foto/foto_barang/gpu.jpg and /dev/null differ
diff --git a/foto/foto_barang/gulaku_gula_pasir.jpg b/foto/foto_barang/gulaku_gula_pasir.jpg
deleted file mode 100644
index decfc56..0000000
Binary files a/foto/foto_barang/gulaku_gula_pasir.jpg and /dev/null differ
diff --git a/foto/foto_barang/gunting_joyko.jpg b/foto/foto_barang/gunting_joyko.jpg
deleted file mode 100644
index 02a3237..0000000
Binary files a/foto/foto_barang/gunting_joyko.jpg and /dev/null differ
diff --git a/foto/foto_barang/hand_sanitizer.jpg b/foto/foto_barang/hand_sanitizer.jpg
deleted file mode 100644
index d5a8471..0000000
Binary files a/foto/foto_barang/hand_sanitizer.jpg and /dev/null differ
diff --git a/foto/foto_barang/hansaplast_plester.jpg b/foto/foto_barang/hansaplast_plester.jpg
deleted file mode 100644
index 8b79e6c..0000000
Binary files a/foto/foto_barang/hansaplast_plester.jpg and /dev/null differ
diff --git a/foto/foto_barang/happy_tos_tortilla_merah_160g.jpg b/foto/foto_barang/happy_tos_tortilla_merah_160g.jpg
deleted file mode 100644
index f697e6c..0000000
Binary files a/foto/foto_barang/happy_tos_tortilla_merah_160g.jpg and /dev/null differ
diff --git a/foto/foto_barang/harga_beras_kura_kura_5_kg.jpg b/foto/foto_barang/harga_beras_kura_kura_5_kg.jpg
deleted file mode 100644
index 9f37b52..0000000
Binary files a/foto/foto_barang/harga_beras_kura_kura_5_kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/harga_minyak_wijen_abc_195_ml.jpg b/foto/foto_barang/harga_minyak_wijen_abc_195_ml.jpg
deleted file mode 100644
index c7c2535..0000000
Binary files a/foto/foto_barang/harga_minyak_wijen_abc_195_ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/head_and_shoulders_lemon_fresh_170ml.jpg b/foto/foto_barang/head_and_shoulders_lemon_fresh_170ml.jpg
deleted file mode 100644
index 5bd2f81..0000000
Binary files a/foto/foto_barang/head_and_shoulders_lemon_fresh_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/head_and_shoulders_menthol_70ml.jpg b/foto/foto_barang/head_and_shoulders_menthol_70ml.jpg
deleted file mode 100644
index 134af15..0000000
Binary files a/foto/foto_barang/head_and_shoulders_menthol_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/head_shoulders_cool_menthol_160ml.jpg b/foto/foto_barang/head_shoulders_cool_menthol_160ml.jpg
deleted file mode 100644
index aebc965..0000000
Binary files a/foto/foto_barang/head_shoulders_cool_menthol_160ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/head_shoulders_lemon_70ml.jpg b/foto/foto_barang/head_shoulders_lemon_70ml.jpg
deleted file mode 100644
index 0717a38..0000000
Binary files a/foto/foto_barang/head_shoulders_lemon_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/head_shoulders_smoothsilky_170ml.jpg b/foto/foto_barang/head_shoulders_smoothsilky_170ml.jpg
deleted file mode 100644
index d5308ef..0000000
Binary files a/foto/foto_barang/head_shoulders_smoothsilky_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/headset_sony.jpg b/foto/foto_barang/headset_sony.jpg
deleted file mode 100644
index 7a0410a..0000000
Binary files a/foto/foto_barang/headset_sony.jpg and /dev/null differ
diff --git a/foto/foto_barang/hello-removebg-preview.png b/foto/foto_barang/hello-removebg-preview.png
deleted file mode 100644
index 94882ea..0000000
Binary files a/foto/foto_barang/hello-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/hello_panda_strowbery.jpg b/foto/foto_barang/hello_panda_strowbery.jpg
deleted file mode 100644
index 449b3c0..0000000
Binary files a/foto/foto_barang/hello_panda_strowbery.jpg and /dev/null differ
diff --git a/foto/foto_barang/hi_top_semir_rambut_black_35ml.jpg b/foto/foto_barang/hi_top_semir_rambut_black_35ml.jpg
deleted file mode 100644
index 41013a1..0000000
Binary files a/foto/foto_barang/hi_top_semir_rambut_black_35ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/hit_aer_lily_blossom_600+75ml.jpg b/foto/foto_barang/hit_aer_lily_blossom_600+75ml.jpg
deleted file mode 100644
index 6ce9d5f..0000000
Binary files a/foto/foto_barang/hit_aer_lily_blossom_600+75ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/hotin_cream_60gr.jpg b/foto/foto_barang/hotin_cream_60gr.jpg
deleted file mode 100644
index a03d67d..0000000
Binary files a/foto/foto_barang/hotin_cream_60gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/hotin_cream_strong_60gr.jpg b/foto/foto_barang/hotin_cream_strong_60gr.jpg
deleted file mode 100644
index b2bf81d..0000000
Binary files a/foto/foto_barang/hotin_cream_strong_60gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ichi_ocha_500ml.jpg b/foto/foto_barang/ichi_ocha_500ml.jpg
deleted file mode 100644
index 15cbfd1..0000000
Binary files a/foto/foto_barang/ichi_ocha_500ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/icon_minuman_baru.png b/foto/foto_barang/icon_minuman_baru.png
deleted file mode 100644
index fb5d709..0000000
Binary files a/foto/foto_barang/icon_minuman_baru.png and /dev/null differ
diff --git a/foto/foto_barang/ilustrasi-boba_169.jpeg b/foto/foto_barang/ilustrasi-boba_169.jpeg
deleted file mode 100644
index 663119c..0000000
Binary files a/foto/foto_barang/ilustrasi-boba_169.jpeg and /dev/null differ
diff --git a/foto/foto_barang/image.jpg b/foto/foto_barang/image.jpg
deleted file mode 100644
index 63f3d7c..0000000
Binary files a/foto/foto_barang/image.jpg and /dev/null differ
diff --git a/foto/foto_barang/images.jpg b/foto/foto_barang/images.jpg
deleted file mode 100644
index 078f967..0000000
Binary files a/foto/foto_barang/images.jpg and /dev/null differ
diff --git a/foto/foto_barang/images.png b/foto/foto_barang/images.png
deleted file mode 100644
index ed006d2..0000000
Binary files a/foto/foto_barang/images.png and /dev/null differ
diff --git a/foto/foto_barang/images1.jpg b/foto/foto_barang/images1.jpg
deleted file mode 100644
index a483359..0000000
Binary files a/foto/foto_barang/images1.jpg and /dev/null differ
diff --git a/foto/foto_barang/images2.jpg b/foto/foto_barang/images2.jpg
deleted file mode 100644
index 9f6355f..0000000
Binary files a/foto/foto_barang/images2.jpg and /dev/null differ
diff --git a/foto/foto_barang/images21.jpg b/foto/foto_barang/images21.jpg
deleted file mode 100644
index 0faeec1..0000000
Binary files a/foto/foto_barang/images21.jpg and /dev/null differ
diff --git a/foto/foto_barang/images3.jpg b/foto/foto_barang/images3.jpg
deleted file mode 100644
index 50dff06..0000000
Binary files a/foto/foto_barang/images3.jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(1).jpg b/foto/foto_barang/images_(1).jpg
deleted file mode 100644
index 3e47c48..0000000
Binary files a/foto/foto_barang/images_(1).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(1).png b/foto/foto_barang/images_(1).png
deleted file mode 100644
index dec3918..0000000
Binary files a/foto/foto_barang/images_(1).png and /dev/null differ
diff --git a/foto/foto_barang/images_(10).jpg b/foto/foto_barang/images_(10).jpg
deleted file mode 100644
index 507374d..0000000
Binary files a/foto/foto_barang/images_(10).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(11).jpg b/foto/foto_barang/images_(11).jpg
deleted file mode 100644
index 22ad8d4..0000000
Binary files a/foto/foto_barang/images_(11).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(12).jpg b/foto/foto_barang/images_(12).jpg
deleted file mode 100644
index dbc734b..0000000
Binary files a/foto/foto_barang/images_(12).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(13).jpg b/foto/foto_barang/images_(13).jpg
deleted file mode 100644
index 05942f0..0000000
Binary files a/foto/foto_barang/images_(13).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(14).jpg b/foto/foto_barang/images_(14).jpg
deleted file mode 100644
index 40d6a50..0000000
Binary files a/foto/foto_barang/images_(14).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(15).jpg b/foto/foto_barang/images_(15).jpg
deleted file mode 100644
index 781262a..0000000
Binary files a/foto/foto_barang/images_(15).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(16).jpg b/foto/foto_barang/images_(16).jpg
deleted file mode 100644
index 9860116..0000000
Binary files a/foto/foto_barang/images_(16).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(17).jpg b/foto/foto_barang/images_(17).jpg
deleted file mode 100644
index 5e4e4ad..0000000
Binary files a/foto/foto_barang/images_(17).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(18).jpg b/foto/foto_barang/images_(18).jpg
deleted file mode 100644
index d1dc190..0000000
Binary files a/foto/foto_barang/images_(18).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(19).jpg b/foto/foto_barang/images_(19).jpg
deleted file mode 100644
index cca6fd6..0000000
Binary files a/foto/foto_barang/images_(19).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(2).jpg b/foto/foto_barang/images_(2).jpg
deleted file mode 100644
index fdb07e8..0000000
Binary files a/foto/foto_barang/images_(2).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(20).jpg b/foto/foto_barang/images_(20).jpg
deleted file mode 100644
index ba58007..0000000
Binary files a/foto/foto_barang/images_(20).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(21).jpg b/foto/foto_barang/images_(21).jpg
deleted file mode 100644
index 412b81c..0000000
Binary files a/foto/foto_barang/images_(21).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(22).jpg b/foto/foto_barang/images_(22).jpg
deleted file mode 100644
index 37fe670..0000000
Binary files a/foto/foto_barang/images_(22).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(23).jpg b/foto/foto_barang/images_(23).jpg
deleted file mode 100644
index 8ad8c0c..0000000
Binary files a/foto/foto_barang/images_(23).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(24).jpg b/foto/foto_barang/images_(24).jpg
deleted file mode 100644
index 6913ee9..0000000
Binary files a/foto/foto_barang/images_(24).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(25).jpg b/foto/foto_barang/images_(25).jpg
deleted file mode 100644
index c89bc0d..0000000
Binary files a/foto/foto_barang/images_(25).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(26).jpg b/foto/foto_barang/images_(26).jpg
deleted file mode 100644
index 884c182..0000000
Binary files a/foto/foto_barang/images_(26).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(27).jpg b/foto/foto_barang/images_(27).jpg
deleted file mode 100644
index 28d0e0b..0000000
Binary files a/foto/foto_barang/images_(27).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(28).jpg b/foto/foto_barang/images_(28).jpg
deleted file mode 100644
index 6904e8d..0000000
Binary files a/foto/foto_barang/images_(28).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(29).jpg b/foto/foto_barang/images_(29).jpg
deleted file mode 100644
index dc67fa9..0000000
Binary files a/foto/foto_barang/images_(29).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(30).jpg b/foto/foto_barang/images_(30).jpg
deleted file mode 100644
index 0463c6d..0000000
Binary files a/foto/foto_barang/images_(30).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(31).jpg b/foto/foto_barang/images_(31).jpg
deleted file mode 100644
index a82833a..0000000
Binary files a/foto/foto_barang/images_(31).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(33).jpg b/foto/foto_barang/images_(33).jpg
deleted file mode 100644
index a1a4536..0000000
Binary files a/foto/foto_barang/images_(33).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(34).jpg b/foto/foto_barang/images_(34).jpg
deleted file mode 100644
index d6ae52a..0000000
Binary files a/foto/foto_barang/images_(34).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(35).jpg b/foto/foto_barang/images_(35).jpg
deleted file mode 100644
index ecdb622..0000000
Binary files a/foto/foto_barang/images_(35).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(36).jpg b/foto/foto_barang/images_(36).jpg
deleted file mode 100644
index 2f6113c..0000000
Binary files a/foto/foto_barang/images_(36).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(37).jpg b/foto/foto_barang/images_(37).jpg
deleted file mode 100644
index de51755..0000000
Binary files a/foto/foto_barang/images_(37).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(4).jpg b/foto/foto_barang/images_(4).jpg
deleted file mode 100644
index 205d4cc..0000000
Binary files a/foto/foto_barang/images_(4).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(5).jpg b/foto/foto_barang/images_(5).jpg
deleted file mode 100644
index fc9b9e6..0000000
Binary files a/foto/foto_barang/images_(5).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(6).jpg b/foto/foto_barang/images_(6).jpg
deleted file mode 100644
index ea6d704..0000000
Binary files a/foto/foto_barang/images_(6).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(7).jpg b/foto/foto_barang/images_(7).jpg
deleted file mode 100644
index b8b2e02..0000000
Binary files a/foto/foto_barang/images_(7).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(8).jpg b/foto/foto_barang/images_(8).jpg
deleted file mode 100644
index 336cd5e..0000000
Binary files a/foto/foto_barang/images_(8).jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(8)1.jpg b/foto/foto_barang/images_(8)1.jpg
deleted file mode 100644
index 336cd5e..0000000
Binary files a/foto/foto_barang/images_(8)1.jpg and /dev/null differ
diff --git a/foto/foto_barang/images_(9).jpg b/foto/foto_barang/images_(9).jpg
deleted file mode 100644
index 18759d6..0000000
Binary files a/foto/foto_barang/images_(9).jpg and /dev/null differ
diff --git a/foto/foto_barang/index1.jpg b/foto/foto_barang/index1.jpg
deleted file mode 100644
index b5e4bff..0000000
Binary files a/foto/foto_barang/index1.jpg and /dev/null differ
diff --git a/foto/foto_barang/index10.jpg b/foto/foto_barang/index10.jpg
deleted file mode 100644
index aa06541..0000000
Binary files a/foto/foto_barang/index10.jpg and /dev/null differ
diff --git a/foto/foto_barang/index11.jpg b/foto/foto_barang/index11.jpg
deleted file mode 100644
index 089f37a..0000000
Binary files a/foto/foto_barang/index11.jpg and /dev/null differ
diff --git a/foto/foto_barang/index12.jpg b/foto/foto_barang/index12.jpg
deleted file mode 100644
index d5e538f..0000000
Binary files a/foto/foto_barang/index12.jpg and /dev/null differ
diff --git a/foto/foto_barang/index13.jpg b/foto/foto_barang/index13.jpg
deleted file mode 100644
index d8f19c8..0000000
Binary files a/foto/foto_barang/index13.jpg and /dev/null differ
diff --git a/foto/foto_barang/index14.jpg b/foto/foto_barang/index14.jpg
deleted file mode 100644
index 1f19b07..0000000
Binary files a/foto/foto_barang/index14.jpg and /dev/null differ
diff --git a/foto/foto_barang/index15.jpg b/foto/foto_barang/index15.jpg
deleted file mode 100644
index e800b16..0000000
Binary files a/foto/foto_barang/index15.jpg and /dev/null differ
diff --git a/foto/foto_barang/index16.jpg b/foto/foto_barang/index16.jpg
deleted file mode 100644
index c7841ea..0000000
Binary files a/foto/foto_barang/index16.jpg and /dev/null differ
diff --git a/foto/foto_barang/index17.jpg b/foto/foto_barang/index17.jpg
deleted file mode 100644
index e9f7db1..0000000
Binary files a/foto/foto_barang/index17.jpg and /dev/null differ
diff --git a/foto/foto_barang/index18.jpg b/foto/foto_barang/index18.jpg
deleted file mode 100644
index 9ebcc3e..0000000
Binary files a/foto/foto_barang/index18.jpg and /dev/null differ
diff --git a/foto/foto_barang/index19.jpg b/foto/foto_barang/index19.jpg
deleted file mode 100644
index 9d6aefd..0000000
Binary files a/foto/foto_barang/index19.jpg and /dev/null differ
diff --git a/foto/foto_barang/index2.jpg b/foto/foto_barang/index2.jpg
deleted file mode 100644
index cc50ad4..0000000
Binary files a/foto/foto_barang/index2.jpg and /dev/null differ
diff --git a/foto/foto_barang/index20.jpg b/foto/foto_barang/index20.jpg
deleted file mode 100644
index b58a912..0000000
Binary files a/foto/foto_barang/index20.jpg and /dev/null differ
diff --git a/foto/foto_barang/index21.jpg b/foto/foto_barang/index21.jpg
deleted file mode 100644
index be05641..0000000
Binary files a/foto/foto_barang/index21.jpg and /dev/null differ
diff --git a/foto/foto_barang/index22.jpg b/foto/foto_barang/index22.jpg
deleted file mode 100644
index 471a268..0000000
Binary files a/foto/foto_barang/index22.jpg and /dev/null differ
diff --git a/foto/foto_barang/index23.jpg b/foto/foto_barang/index23.jpg
deleted file mode 100644
index 12648cc..0000000
Binary files a/foto/foto_barang/index23.jpg and /dev/null differ
diff --git a/foto/foto_barang/index24.jpg b/foto/foto_barang/index24.jpg
deleted file mode 100644
index 7c350f3..0000000
Binary files a/foto/foto_barang/index24.jpg and /dev/null differ
diff --git a/foto/foto_barang/index25.jpg b/foto/foto_barang/index25.jpg
deleted file mode 100644
index c5ab4ec..0000000
Binary files a/foto/foto_barang/index25.jpg and /dev/null differ
diff --git a/foto/foto_barang/index26.jpg b/foto/foto_barang/index26.jpg
deleted file mode 100644
index af8f9ac..0000000
Binary files a/foto/foto_barang/index26.jpg and /dev/null differ
diff --git a/foto/foto_barang/index3.jpg b/foto/foto_barang/index3.jpg
deleted file mode 100644
index 94a3261..0000000
Binary files a/foto/foto_barang/index3.jpg and /dev/null differ
diff --git a/foto/foto_barang/index4.jpg b/foto/foto_barang/index4.jpg
deleted file mode 100644
index ee5d762..0000000
Binary files a/foto/foto_barang/index4.jpg and /dev/null differ
diff --git a/foto/foto_barang/index6.jpg b/foto/foto_barang/index6.jpg
deleted file mode 100644
index ff422c5..0000000
Binary files a/foto/foto_barang/index6.jpg and /dev/null differ
diff --git a/foto/foto_barang/index7.jpg b/foto/foto_barang/index7.jpg
deleted file mode 100644
index 4b130d8..0000000
Binary files a/foto/foto_barang/index7.jpg and /dev/null differ
diff --git a/foto/foto_barang/index8.jpg b/foto/foto_barang/index8.jpg
deleted file mode 100644
index e0bd42d..0000000
Binary files a/foto/foto_barang/index8.jpg and /dev/null differ
diff --git a/foto/foto_barang/index9.jpg b/foto/foto_barang/index9.jpg
deleted file mode 100644
index 7f58702..0000000
Binary files a/foto/foto_barang/index9.jpg and /dev/null differ
diff --git a/foto/foto_barang/indomie.jpg b/foto/foto_barang/indomie.jpg
deleted file mode 100644
index 6e42226..0000000
Binary files a/foto/foto_barang/indomie.jpg and /dev/null differ
diff --git a/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya.jpg b/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya.jpg
deleted file mode 100644
index 5f175ed..0000000
Binary files a/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya.jpg and /dev/null differ
diff --git a/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya_2.jpg b/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya_2.jpg
deleted file mode 100644
index 5f175ed..0000000
Binary files a/foto/foto_barang/inilah-manfaat-telur-dan-cara-menyimpannya_2.jpg and /dev/null differ
diff --git a/foto/foto_barang/isi_binder.jpg b/foto/foto_barang/isi_binder.jpg
deleted file mode 100644
index be9251b..0000000
Binary files a/foto/foto_barang/isi_binder.jpg and /dev/null differ
diff --git a/foto/foto_barang/isi_stapler.jpg b/foto/foto_barang/isi_stapler.jpg
deleted file mode 100644
index d400665..0000000
Binary files a/foto/foto_barang/isi_stapler.jpg and /dev/null differ
diff --git a/foto/foto_barang/isoplus_350ml.jpg b/foto/foto_barang/isoplus_350ml.jpg
deleted file mode 100644
index 196da30..0000000
Binary files a/foto/foto_barang/isoplus_350ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/izzi_ff_mist_secret_crush_100ml.jpeg b/foto/foto_barang/izzi_ff_mist_secret_crush_100ml.jpeg
deleted file mode 100644
index 5532796..0000000
Binary files a/foto/foto_barang/izzi_ff_mist_secret_crush_100ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/jangka_joyko.jpg b/foto/foto_barang/jangka_joyko.jpg
deleted file mode 100644
index 3ea21f3..0000000
Binary files a/foto/foto_barang/jangka_joyko.jpg and /dev/null differ
diff --git a/foto/foto_barang/jazz_1_segar_900gr.jpg b/foto/foto_barang/jazz_1_segar_900gr.jpg
deleted file mode 100644
index 6edac0a..0000000
Binary files a/foto/foto_barang/jazz_1_segar_900gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/jbl_speaker.jpg b/foto/foto_barang/jbl_speaker.jpg
deleted file mode 100644
index 49ea4cd..0000000
Binary files a/foto/foto_barang/jbl_speaker.jpg and /dev/null differ
diff --git a/foto/foto_barang/jeruk.jpg b/foto/foto_barang/jeruk.jpg
deleted file mode 100644
index 1a7d4ae..0000000
Binary files a/foto/foto_barang/jeruk.jpg and /dev/null differ
diff --git a/foto/foto_barang/jetz_snack_40g.jpg b/foto/foto_barang/jetz_snack_40g.jpg
deleted file mode 100644
index e23dd7e..0000000
Binary files a/foto/foto_barang/jetz_snack_40g.jpg and /dev/null differ
diff --git a/foto/foto_barang/jus_alpukat.jpg b/foto/foto_barang/jus_alpukat.jpg
deleted file mode 100644
index 81ed2a0..0000000
Binary files a/foto/foto_barang/jus_alpukat.jpg and /dev/null differ
diff --git a/foto/foto_barang/jus_buah_naga.jpg b/foto/foto_barang/jus_buah_naga.jpg
deleted file mode 100644
index 2f74d4e..0000000
Binary files a/foto/foto_barang/jus_buah_naga.jpg and /dev/null differ
diff --git a/foto/foto_barang/jus_jambu.jpg b/foto/foto_barang/jus_jambu.jpg
deleted file mode 100644
index bfdb8c8..0000000
Binary files a/foto/foto_barang/jus_jambu.jpg and /dev/null differ
diff --git a/foto/foto_barang/jus_strawberry.jpg b/foto/foto_barang/jus_strawberry.jpg
deleted file mode 100644
index 6948beb..0000000
Binary files a/foto/foto_barang/jus_strawberry.jpg and /dev/null differ
diff --git a/foto/foto_barang/kabel_usb_type-c.jpg b/foto/foto_barang/kabel_usb_type-c.jpg
deleted file mode 100644
index f662cf6..0000000
Binary files a/foto/foto_barang/kabel_usb_type-c.jpg and /dev/null differ
diff --git a/foto/foto_barang/kabel_usb_type_mikro.jpg b/foto/foto_barang/kabel_usb_type_mikro.jpg
deleted file mode 100644
index ed63ba8..0000000
Binary files a/foto/foto_barang/kabel_usb_type_mikro.jpg and /dev/null differ
diff --git a/foto/foto_barang/kalkulator_casio.jpg b/foto/foto_barang/kalkulator_casio.jpg
deleted file mode 100644
index bac9754..0000000
Binary files a/foto/foto_barang/kalkulator_casio.jpg and /dev/null differ
diff --git a/foto/foto_barang/kalpa.jpg b/foto/foto_barang/kalpa.jpg
deleted file mode 100644
index e5f7c41..0000000
Binary files a/foto/foto_barang/kalpa.jpg and /dev/null differ
diff --git a/foto/foto_barang/kapal_api_kopi_bubuk.jpg b/foto/foto_barang/kapal_api_kopi_bubuk.jpg
deleted file mode 100644
index 28050c2..0000000
Binary files a/foto/foto_barang/kapal_api_kopi_bubuk.jpg and /dev/null differ
diff --git a/foto/foto_barang/kapur_papan.jpg b/foto/foto_barang/kapur_papan.jpg
deleted file mode 100644
index 0ae5c75..0000000
Binary files a/foto/foto_barang/kapur_papan.jpg and /dev/null differ
diff --git a/foto/foto_barang/kecap-bango-1569935311.jpg b/foto/foto_barang/kecap-bango-1569935311.jpg
deleted file mode 100644
index cf8bf36..0000000
Binary files a/foto/foto_barang/kecap-bango-1569935311.jpg and /dev/null differ
diff --git a/foto/foto_barang/kecap.jpg b/foto/foto_barang/kecap.jpg
deleted file mode 100644
index 9245bdd..0000000
Binary files a/foto/foto_barang/kecap.jpg and /dev/null differ
diff --git a/foto/foto_barang/keju_kraft_cheedar_165g.jpg b/foto/foto_barang/keju_kraft_cheedar_165g.jpg
deleted file mode 100644
index b18088b..0000000
Binary files a/foto/foto_barang/keju_kraft_cheedar_165g.jpg and /dev/null differ
diff --git a/foto/foto_barang/kenko_corretion_tape.jpg b/foto/foto_barang/kenko_corretion_tape.jpg
deleted file mode 100644
index ba5fa88..0000000
Binary files a/foto/foto_barang/kenko_corretion_tape.jpg and /dev/null differ
diff --git a/foto/foto_barang/kenko_cutter.jpg b/foto/foto_barang/kenko_cutter.jpg
deleted file mode 100644
index 7ecad9a..0000000
Binary files a/foto/foto_barang/kenko_cutter.jpg and /dev/null differ
diff --git a/foto/foto_barang/kenko_pembolong_kertas.jpg b/foto/foto_barang/kenko_pembolong_kertas.jpg
deleted file mode 100644
index adf565a..0000000
Binary files a/foto/foto_barang/kenko_pembolong_kertas.jpg and /dev/null differ
diff --git a/foto/foto_barang/kenko_pembolong_kertas1.jpg b/foto/foto_barang/kenko_pembolong_kertas1.jpg
deleted file mode 100644
index adf565a..0000000
Binary files a/foto/foto_barang/kenko_pembolong_kertas1.jpg and /dev/null differ
diff --git a/foto/foto_barang/kenko_stapler.jpg b/foto/foto_barang/kenko_stapler.jpg
deleted file mode 100644
index a516200..0000000
Binary files a/foto/foto_barang/kenko_stapler.jpg and /dev/null differ
diff --git a/foto/foto_barang/kentang_goreng.png b/foto/foto_barang/kentang_goreng.png
deleted file mode 100644
index c65389f..0000000
Binary files a/foto/foto_barang/kentang_goreng.png and /dev/null differ
diff --git a/foto/foto_barang/kertas_buffalo.jpg b/foto/foto_barang/kertas_buffalo.jpg
deleted file mode 100644
index d2a695a..0000000
Binary files a/foto/foto_barang/kertas_buffalo.jpg and /dev/null differ
diff --git a/foto/foto_barang/kertas_folio_bergaris.jpg b/foto/foto_barang/kertas_folio_bergaris.jpg
deleted file mode 100644
index 849a35a..0000000
Binary files a/foto/foto_barang/kertas_folio_bergaris.jpg and /dev/null differ
diff --git a/foto/foto_barang/kiwi_expres_natural_7ml.jpg b/foto/foto_barang/kiwi_expres_natural_7ml.jpg
deleted file mode 100644
index cda6e70..0000000
Binary files a/foto/foto_barang/kiwi_expres_natural_7ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/kiwi_shine_protect_brown_30.jpg b/foto/foto_barang/kiwi_shine_protect_brown_30.jpg
deleted file mode 100644
index aee4558..0000000
Binary files a/foto/foto_barang/kiwi_shine_protect_brown_30.jpg and /dev/null differ
diff --git a/foto/foto_barang/klip_kertas.jpg b/foto/foto_barang/klip_kertas.jpg
deleted file mode 100644
index 06368cc..0000000
Binary files a/foto/foto_barang/klip_kertas.jpg and /dev/null differ
diff --git a/foto/foto_barang/klip_kertas_besar.jpg b/foto/foto_barang/klip_kertas_besar.jpg
deleted file mode 100644
index 138e582..0000000
Binary files a/foto/foto_barang/klip_kertas_besar.jpg and /dev/null differ
diff --git a/foto/foto_barang/kodomo_toothpaste_grape_45gr.jpg b/foto/foto_barang/kodomo_toothpaste_grape_45gr.jpg
deleted file mode 100644
index 43f3d17..0000000
Binary files a/foto/foto_barang/kodomo_toothpaste_grape_45gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/kopikap.jpg b/foto/foto_barang/kopikap.jpg
deleted file mode 100644
index 6fdd573..0000000
Binary files a/foto/foto_barang/kopikap.jpg and /dev/null differ
diff --git a/foto/foto_barang/kopiko_botol.jpg b/foto/foto_barang/kopiko_botol.jpg
deleted file mode 100644
index f90655b..0000000
Binary files a/foto/foto_barang/kopiko_botol.jpg and /dev/null differ
diff --git a/foto/foto_barang/kosmetik-removebg-preview.png b/foto/foto_barang/kosmetik-removebg-preview.png
deleted file mode 100644
index d0118e1..0000000
Binary files a/foto/foto_barang/kosmetik-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/krayon.jpg b/foto/foto_barang/krayon.jpg
deleted file mode 100644
index d5d7e2f..0000000
Binary files a/foto/foto_barang/krayon.jpg and /dev/null differ
diff --git a/foto/foto_barang/kuaci_rebo_150g.jpg b/foto/foto_barang/kuaci_rebo_150g.jpg
deleted file mode 100644
index a10b8f6..0000000
Binary files a/foto/foto_barang/kuaci_rebo_150g.jpg and /dev/null differ
diff --git a/foto/foto_barang/kuas.jpg b/foto/foto_barang/kuas.jpg
deleted file mode 100644
index e564251..0000000
Binary files a/foto/foto_barang/kuas.jpg and /dev/null differ
diff --git a/foto/foto_barang/kue-kacang-wajan-no-oventeflon-foto-resep-utama.jpg b/foto/foto_barang/kue-kacang-wajan-no-oventeflon-foto-resep-utama.jpg
deleted file mode 100644
index 014d53d..0000000
Binary files a/foto/foto_barang/kue-kacang-wajan-no-oventeflon-foto-resep-utama.jpg and /dev/null differ
diff --git a/foto/foto_barang/lakban_hitam_daimaru.jpg b/foto/foto_barang/lakban_hitam_daimaru.jpg
deleted file mode 100644
index 76f4590..0000000
Binary files a/foto/foto_barang/lakban_hitam_daimaru.jpg and /dev/null differ
diff --git a/foto/foto_barang/larutan.jpg b/foto/foto_barang/larutan.jpg
deleted file mode 100644
index e8c26b3..0000000
Binary files a/foto/foto_barang/larutan.jpg and /dev/null differ
diff --git a/foto/foto_barang/laurier_relax_night_30_16s.jpg b/foto/foto_barang/laurier_relax_night_30_16s.jpg
deleted file mode 100644
index 2b7d44b..0000000
Binary files a/foto/foto_barang/laurier_relax_night_30_16s.jpg and /dev/null differ
diff --git a/foto/foto_barang/laurier_relax_night_35_6s.jpg b/foto/foto_barang/laurier_relax_night_35_6s.jpg
deleted file mode 100644
index c792ef5..0000000
Binary files a/foto/foto_barang/laurier_relax_night_35_6s.jpg and /dev/null differ
diff --git a/foto/foto_barang/laurier_super_maxi_wings_30s.jpg b/foto/foto_barang/laurier_super_maxi_wings_30s.jpg
deleted file mode 100644
index 0645934..0000000
Binary files a/foto/foto_barang/laurier_super_maxi_wings_30s.jpg and /dev/null differ
diff --git a/foto/foto_barang/laurier_super_maxi_wings_5s.jpg b/foto/foto_barang/laurier_super_maxi_wings_5s.jpg
deleted file mode 100644
index 46c72a1..0000000
Binary files a/foto/foto_barang/laurier_super_maxi_wings_5s.jpg and /dev/null differ
diff --git a/foto/foto_barang/lays_sapi_panggang_68g.jpg b/foto/foto_barang/lays_sapi_panggang_68g.jpg
deleted file mode 100644
index ccf71c7..0000000
Binary files a/foto/foto_barang/lays_sapi_panggang_68g.jpg and /dev/null differ
diff --git a/foto/foto_barang/lazery_candy.jpg b/foto/foto_barang/lazery_candy.jpg
deleted file mode 100644
index 7f626c8..0000000
Binary files a/foto/foto_barang/lazery_candy.jpg and /dev/null differ
diff --git a/foto/foto_barang/lg_5cc01752e24bf.jpg b/foto/foto_barang/lg_5cc01752e24bf.jpg
deleted file mode 100644
index 4437961..0000000
Binary files a/foto/foto_barang/lg_5cc01752e24bf.jpg and /dev/null differ
diff --git a/foto/foto_barang/lg_5e97bdac52b08.jpeg b/foto/foto_barang/lg_5e97bdac52b08.jpeg
deleted file mode 100644
index 58e3a83..0000000
Binary files a/foto/foto_barang/lg_5e97bdac52b08.jpeg and /dev/null differ
diff --git a/foto/foto_barang/lg_61da3d1b32adc.png b/foto/foto_barang/lg_61da3d1b32adc.png
deleted file mode 100644
index 4db325e..0000000
Binary files a/foto/foto_barang/lg_61da3d1b32adc.png and /dev/null differ
diff --git a/foto/foto_barang/lg_61e22549b424a.jpg b/foto/foto_barang/lg_61e22549b424a.jpg
deleted file mode 100644
index 550959d..0000000
Binary files a/foto/foto_barang/lg_61e22549b424a.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_anti_dandruff_70ml.jpg b/foto/foto_barang/lifebuoy_anti_dandruff_70ml.jpg
deleted file mode 100644
index 679b58a..0000000
Binary files a/foto/foto_barang/lifebuoy_anti_dandruff_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_bw_cool_fresh_250ml.jpg b/foto/foto_barang/lifebuoy_bw_cool_fresh_250ml.jpg
deleted file mode 100644
index fcd351b..0000000
Binary files a/foto/foto_barang/lifebuoy_bw_cool_fresh_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_bw_lemon_fresh_250ml.jpg b/foto/foto_barang/lifebuoy_bw_lemon_fresh_250ml.jpg
deleted file mode 100644
index 62d0d14..0000000
Binary files a/foto/foto_barang/lifebuoy_bw_lemon_fresh_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_bw_lemon_fresh_450ml.jpg b/foto/foto_barang/lifebuoy_bw_lemon_fresh_450ml.jpg
deleted file mode 100644
index 5591700..0000000
Binary files a/foto/foto_barang/lifebuoy_bw_lemon_fresh_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_bw_matcha_greentea_250ml.jpg b/foto/foto_barang/lifebuoy_bw_matcha_greentea_250ml.jpg
deleted file mode 100644
index cd46817..0000000
Binary files a/foto/foto_barang/lifebuoy_bw_matcha_greentea_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_hrfall_70ml.jpg b/foto/foto_barang/lifebuoy_hrfall_70ml.jpg
deleted file mode 100644
index d753f11..0000000
Binary files a/foto/foto_barang/lifebuoy_hrfall_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_shp_strong_shiny_170ml.jpg b/foto/foto_barang/lifebuoy_shp_strong_shiny_170ml.jpg
deleted file mode 100644
index ac2206c..0000000
Binary files a/foto/foto_barang/lifebuoy_shp_strong_shiny_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_shp_strong_shiny_70ml.jpg b/foto/foto_barang/lifebuoy_shp_strong_shiny_70ml.jpg
deleted file mode 100644
index 7e9cfc6..0000000
Binary files a/foto/foto_barang/lifebuoy_shp_strong_shiny_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_cool_fresh_75gr.jpg b/foto/foto_barang/lifebuoy_ts_cool_fresh_75gr.jpg
deleted file mode 100644
index 972afa8..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_cool_fresh_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_lemon_fresh_75gr.jpg b/foto/foto_barang/lifebuoy_ts_lemon_fresh_75gr.jpg
deleted file mode 100644
index 20fc4c2..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_lemon_fresh_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_matcha_greentea_75gr.jpg b/foto/foto_barang/lifebuoy_ts_matcha_greentea_75gr.jpg
deleted file mode 100644
index f7eeb5c..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_matcha_greentea_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_mild_care_75gr.jpg b/foto/foto_barang/lifebuoy_ts_mild_care_75gr.jpg
deleted file mode 100644
index c1540bc..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_mild_care_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_total_10_110gr.jpg b/foto/foto_barang/lifebuoy_ts_total_10_110gr.jpg
deleted file mode 100644
index d76c9dc..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_total_10_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_total_10_75gr.jpg b/foto/foto_barang/lifebuoy_ts_total_10_75gr.jpg
deleted file mode 100644
index 434ed8e..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_total_10_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lifebuoy_ts_total_60gr.jpg b/foto/foto_barang/lifebuoy_ts_total_60gr.jpg
deleted file mode 100644
index fbebae2..0000000
Binary files a/foto/foto_barang/lifebuoy_ts_total_60gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/liqsoap_nuvo_merah_450ml.jpg b/foto/foto_barang/liqsoap_nuvo_merah_450ml.jpg
deleted file mode 100644
index cd79cb2..0000000
Binary files a/foto/foto_barang/liqsoap_nuvo_merah_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/liqsoap_nuvo_putih_450ml.jpg b/foto/foto_barang/liqsoap_nuvo_putih_450ml.jpg
deleted file mode 100644
index 3759275..0000000
Binary files a/foto/foto_barang/liqsoap_nuvo_putih_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/listerine_fresh_burst_250ml.jpg b/foto/foto_barang/listerine_fresh_burst_250ml.jpg
deleted file mode 100644
index 3876142..0000000
Binary files a/foto/foto_barang/listerine_fresh_burst_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/logitech_mouse_wireless.jpg b/foto/foto_barang/logitech_mouse_wireless.jpg
deleted file mode 100644
index 5cacc22..0000000
Binary files a/foto/foto_barang/logitech_mouse_wireless.jpg and /dev/null differ
diff --git a/foto/foto_barang/logitech_optical_mouse.jpg b/foto/foto_barang/logitech_optical_mouse.jpg
deleted file mode 100644
index 9370c6d..0000000
Binary files a/foto/foto_barang/logitech_optical_mouse.jpg and /dev/null differ
diff --git a/foto/foto_barang/logo_blankonfood.png b/foto/foto_barang/logo_blankonfood.png
deleted file mode 100644
index 41bb1c9..0000000
Binary files a/foto/foto_barang/logo_blankonfood.png and /dev/null differ
diff --git a/foto/foto_barang/lovely_body_lotion_jeju_120ml.jpg b/foto/foto_barang/lovely_body_lotion_jeju_120ml.jpg
deleted file mode 100644
index 0cee495..0000000
Binary files a/foto/foto_barang/lovely_body_lotion_jeju_120ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lovely_body_lotion_white_glow_120.jpg b/foto/foto_barang/lovely_body_lotion_white_glow_120.jpg
deleted file mode 100644
index 267dd53..0000000
Binary files a/foto/foto_barang/lovely_body_lotion_white_glow_120.jpg and /dev/null differ
diff --git a/foto/foto_barang/lovely_body_lotion_white_mulberry_120ml.jpg b/foto/foto_barang/lovely_body_lotion_white_mulberry_120ml.jpg
deleted file mode 100644
index 7c3058c..0000000
Binary files a/foto/foto_barang/lovely_body_lotion_white_mulberry_120ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lovely_glow_bright_200ml.jpg b/foto/foto_barang/lovely_glow_bright_200ml.jpg
deleted file mode 100644
index 89de70a..0000000
Binary files a/foto/foto_barang/lovely_glow_bright_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lovely_hb_cool_bright_aloe_vera_200ml.jpg b/foto/foto_barang/lovely_hb_cool_bright_aloe_vera_200ml.jpg
deleted file mode 100644
index be94ee9..0000000
Binary files a/foto/foto_barang/lovely_hb_cool_bright_aloe_vera_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lre_relax_night35_03.jpg b/foto/foto_barang/lre_relax_night35_03.jpg
deleted file mode 100644
index 9eaec84..0000000
Binary files a/foto/foto_barang/lre_relax_night35_03.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_bw_pink_soft_250ml.jpg b/foto/foto_barang/lux_bw_pink_soft_250ml.jpg
deleted file mode 100644
index 97863bf..0000000
Binary files a/foto/foto_barang/lux_bw_pink_soft_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_bw_pink_soft_250ml1.jpg b/foto/foto_barang/lux_bw_pink_soft_250ml1.jpg
deleted file mode 100644
index 97863bf..0000000
Binary files a/foto/foto_barang/lux_bw_pink_soft_250ml1.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_bw_purple_magical_250ml.jpg b/foto/foto_barang/lux_bw_purple_magical_250ml.jpg
deleted file mode 100644
index feb5839..0000000
Binary files a/foto/foto_barang/lux_bw_purple_magical_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_bw_white_velvet_250ml.jpg b/foto/foto_barang/lux_bw_white_velvet_250ml.jpg
deleted file mode 100644
index 5ffaf5a..0000000
Binary files a/foto/foto_barang/lux_bw_white_velvet_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_ts_blue_aqua.jpg b/foto/foto_barang/lux_ts_blue_aqua.jpg
deleted file mode 100644
index 4aab647..0000000
Binary files a/foto/foto_barang/lux_ts_blue_aqua.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_ts_green_lily_fresh.jpg b/foto/foto_barang/lux_ts_green_lily_fresh.jpg
deleted file mode 100644
index bdd535a..0000000
Binary files a/foto/foto_barang/lux_ts_green_lily_fresh.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_ts_pink_soft_rose_75gr.jpg b/foto/foto_barang/lux_ts_pink_soft_rose_75gr.jpg
deleted file mode 100644
index ab90bf7..0000000
Binary files a/foto/foto_barang/lux_ts_pink_soft_rose_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/lux_ts_yuzu_blossom_75gr.jpg b/foto/foto_barang/lux_ts_yuzu_blossom_75gr.jpg
deleted file mode 100644
index 39045ba..0000000
Binary files a/foto/foto_barang/lux_ts_yuzu_blossom_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylze1nje1nje4nc9wcm9kdwn0lzexndyxmjgyos9xwgewd2h5bhdrrwpyam93lmpwzz93ptywmczoptywma-.jpg b/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylze1nje1nje4nc9wcm9kdwn0lzexndyxmjgyos9xwgewd2h5bhdrrwpyam93lmpwzz93ptywmczoptywma-.jpg
deleted file mode 100644
index 10ff899..0000000
Binary files a/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylze1nje1nje4nc9wcm9kdwn0lzexndyxmjgyos9xwgewd2h5bhdrrwpyam93lmpwzz93ptywmczoptywma-.jpg and /dev/null differ
diff --git a/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylzi0otkzmtk1ms9wcm9kdwn0lzu0mzmxnde5ns9hvkszb1g3u1fdmng1dkdslmpwzz93ptywmczoptywma-.jpg b/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylzi0otkzmtk1ms9wcm9kdwn0lzu0mzmxnde5ns9hvkszb1g3u1fdmng1dkdslmpwzz93ptywmczoptywma-.jpg
deleted file mode 100644
index ff0c6e0..0000000
Binary files a/foto/foto_barang/ly9tyw5hz2vylmlkac5pzc91cgxvywrzl2rpc3ryawj1dg9ylzi0otkzmtk1ms9wcm9kdwn0lzu0mzmxnde5ns9hvkszb1g3u1fdmng1dkdslmpwzz93ptywmczoptywma-.jpg and /dev/null differ
diff --git a/foto/foto_barang/mainan-removebg-preview.png b/foto/foto_barang/mainan-removebg-preview.png
deleted file mode 100644
index 9ae2ce6..0000000
Binary files a/foto/foto_barang/mainan-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/makananhewan1-removebg-preview.png b/foto/foto_barang/makananhewan1-removebg-preview.png
deleted file mode 100644
index 41e2c21..0000000
Binary files a/foto/foto_barang/makananhewan1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/mama_lemon_200ml.jpg b/foto/foto_barang/mama_lemon_200ml.jpg
deleted file mode 100644
index ec0cab6..0000000
Binary files a/foto/foto_barang/mama_lemon_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lemon_jeruk_nipis_1_6L.jpg b/foto/foto_barang/mama_lemon_jeruk_nipis_1_6L.jpg
deleted file mode 100644
index 02caf2e..0000000
Binary files a/foto/foto_barang/mama_lemon_jeruk_nipis_1_6L.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lemon_jeruk_nipis_400ml.jpg b/foto/foto_barang/mama_lemon_jeruk_nipis_400ml.jpg
deleted file mode 100644
index d62b63e..0000000
Binary files a/foto/foto_barang/mama_lemon_jeruk_nipis_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_jeruk_nipis_230ml.jpeg b/foto/foto_barang/mama_lime_jeruk_nipis_230ml.jpeg
deleted file mode 100644
index 0c48c3d..0000000
Binary files a/foto/foto_barang/mama_lime_jeruk_nipis_230ml.jpeg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_jeruk_nipis_400ml.jpg b/foto/foto_barang/mama_lime_jeruk_nipis_400ml.jpg
deleted file mode 100644
index 08cd243..0000000
Binary files a/foto/foto_barang/mama_lime_jeruk_nipis_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_jeruk_nipis_800ml.jpg b/foto/foto_barang/mama_lime_jeruk_nipis_800ml.jpg
deleted file mode 100644
index cf40010..0000000
Binary files a/foto/foto_barang/mama_lime_jeruk_nipis_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_mineral_salt_1_6L.jpg b/foto/foto_barang/mama_lime_mineral_salt_1_6L.jpg
deleted file mode 100644
index e132278..0000000
Binary files a/foto/foto_barang/mama_lime_mineral_salt_1_6L.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_mineral_salt_230ml.jpg b/foto/foto_barang/mama_lime_mineral_salt_230ml.jpg
deleted file mode 100644
index 6659389..0000000
Binary files a/foto/foto_barang/mama_lime_mineral_salt_230ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mama_lime_mineral_salt_800ml.jpg b/foto/foto_barang/mama_lime_mineral_salt_800ml.jpg
deleted file mode 100644
index 5d56f5f..0000000
Binary files a/foto/foto_barang/mama_lime_mineral_salt_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/mamy_poko_XXL_18.jpg b/foto/foto_barang/mamy_poko_XXL_18.jpg
deleted file mode 100644
index d362da3..0000000
Binary files a/foto/foto_barang/mamy_poko_XXL_18.jpg and /dev/null differ
diff --git a/foto/foto_barang/mamy_poko_pants_std_L8.jpg b/foto/foto_barang/mamy_poko_pants_std_L8.jpg
deleted file mode 100644
index 75450a4..0000000
Binary files a/foto/foto_barang/mamy_poko_pants_std_L8.jpg and /dev/null differ
diff --git a/foto/foto_barang/mamy_poko_std_XL1.jpg b/foto/foto_barang/mamy_poko_std_XL1.jpg
deleted file mode 100644
index 32015d5..0000000
Binary files a/foto/foto_barang/mamy_poko_std_XL1.jpg and /dev/null differ
diff --git a/foto/foto_barang/map_biola_karton.jpg b/foto/foto_barang/map_biola_karton.jpg
deleted file mode 100644
index 123765d..0000000
Binary files a/foto/foto_barang/map_biola_karton.jpg and /dev/null differ
diff --git a/foto/foto_barang/marie.jpg b/foto/foto_barang/marie.jpg
deleted file mode 100644
index 1cc16df..0000000
Binary files a/foto/foto_barang/marie.jpg and /dev/null differ
diff --git a/foto/foto_barang/marlboro-red.png b/foto/foto_barang/marlboro-red.png
deleted file mode 100644
index 2bd029a..0000000
Binary files a/foto/foto_barang/marlboro-red.png and /dev/null differ
diff --git a/foto/foto_barang/masker_paseo_10s.jpg b/foto/foto_barang/masker_paseo_10s.jpg
deleted file mode 100644
index 4e26780..0000000
Binary files a/foto/foto_barang/masker_paseo_10s.jpg and /dev/null differ
diff --git a/foto/foto_barang/masker_sensi.jpg b/foto/foto_barang/masker_sensi.jpg
deleted file mode 100644
index edceab1..0000000
Binary files a/foto/foto_barang/masker_sensi.jpg and /dev/null differ
diff --git a/foto/foto_barang/md_5e8bfd0c2e1cb.jpeg b/foto/foto_barang/md_5e8bfd0c2e1cb.jpeg
deleted file mode 100644
index 84e3a49..0000000
Binary files a/foto/foto_barang/md_5e8bfd0c2e1cb.jpeg and /dev/null differ
diff --git a/foto/foto_barang/md_5ef1b381c5a5e.png b/foto/foto_barang/md_5ef1b381c5a5e.png
deleted file mode 100644
index 811f4e3..0000000
Binary files a/foto/foto_barang/md_5ef1b381c5a5e.png and /dev/null differ
diff --git a/foto/foto_barang/meja_kantor.jpg b/foto/foto_barang/meja_kantor.jpg
deleted file mode 100644
index 7cf6ce1..0000000
Binary files a/foto/foto_barang/meja_kantor.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_L1.jpg b/foto/foto_barang/merries_pants_gs_L1.jpg
deleted file mode 100644
index 3e5d5dd..0000000
Binary files a/foto/foto_barang/merries_pants_gs_L1.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_L20.jpg b/foto/foto_barang/merries_pants_gs_L20.jpg
deleted file mode 100644
index 042f706..0000000
Binary files a/foto/foto_barang/merries_pants_gs_L20.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_L8.jpg b/foto/foto_barang/merries_pants_gs_L8.jpg
deleted file mode 100644
index 11adcae..0000000
Binary files a/foto/foto_barang/merries_pants_gs_L8.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_M22.jpg b/foto/foto_barang/merries_pants_gs_M22.jpg
deleted file mode 100644
index c442dd0..0000000
Binary files a/foto/foto_barang/merries_pants_gs_M22.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_M9.jpg b/foto/foto_barang/merries_pants_gs_M9.jpg
deleted file mode 100644
index 135aa73..0000000
Binary files a/foto/foto_barang/merries_pants_gs_M9.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_S11.jpg b/foto/foto_barang/merries_pants_gs_S11.jpg
deleted file mode 100644
index 17f2395..0000000
Binary files a/foto/foto_barang/merries_pants_gs_S11.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_XL16.jpg b/foto/foto_barang/merries_pants_gs_XL16.jpg
deleted file mode 100644
index 707818b..0000000
Binary files a/foto/foto_barang/merries_pants_gs_XL16.jpg and /dev/null differ
diff --git a/foto/foto_barang/merries_pants_gs_XL7.jpg b/foto/foto_barang/merries_pants_gs_XL7.jpg
deleted file mode 100644
index 071e306..0000000
Binary files a/foto/foto_barang/merries_pants_gs_XL7.jpg and /dev/null differ
diff --git a/foto/foto_barang/mi_sedapp.jpg b/foto/foto_barang/mi_sedapp.jpg
deleted file mode 100644
index bb354ea..0000000
Binary files a/foto/foto_barang/mi_sedapp.jpg and /dev/null differ
diff --git a/foto/foto_barang/mie_sedap_soto_madura.jpg b/foto/foto_barang/mie_sedap_soto_madura.jpg
deleted file mode 100644
index af48bd2..0000000
Binary files a/foto/foto_barang/mie_sedap_soto_madura.jpg and /dev/null differ
diff --git a/foto/foto_barang/minute_maid_300ml.jpg b/foto/foto_barang/minute_maid_300ml.jpg
deleted file mode 100644
index c7afa8b..0000000
Binary files a/foto/foto_barang/minute_maid_300ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_bimoli_2_liter.jpg b/foto/foto_barang/minyak_bimoli_2_liter.jpg
deleted file mode 100644
index f75a6e0..0000000
Binary files a/foto/foto_barang/minyak_bimoli_2_liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_filma_2l.jpg b/foto/foto_barang/minyak_filma_2l.jpg
deleted file mode 100644
index 1364433..0000000
Binary files a/foto/foto_barang/minyak_filma_2l.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_fortune_2l.jpg b/foto/foto_barang/minyak_fortune_2l.jpg
deleted file mode 100644
index 499d7ab..0000000
Binary files a/foto/foto_barang/minyak_fortune_2l.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_sania_2l.jpg b/foto/foto_barang/minyak_sania_2l.jpg
deleted file mode 100644
index c1e0e3f..0000000
Binary files a/foto/foto_barang/minyak_sania_2l.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_sunco_2l.jpg b/foto/foto_barang/minyak_sunco_2l.jpg
deleted file mode 100644
index 5c189f0..0000000
Binary files a/foto/foto_barang/minyak_sunco_2l.jpg and /dev/null differ
diff --git a/foto/foto_barang/minyak_tropical_2_liter.jpg b/foto/foto_barang/minyak_tropical_2_liter.jpg
deleted file mode 100644
index 1222a58..0000000
Binary files a/foto/foto_barang/minyak_tropical_2_liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/mizone_starfruit_500ml.jpg b/foto/foto_barang/mizone_starfruit_500ml.jpg
deleted file mode 100644
index d7f2af2..0000000
Binary files a/foto/foto_barang/mizone_starfruit_500ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto-pewangi-blue.jpg b/foto/foto_barang/molto-pewangi-blue.jpg
deleted file mode 100644
index 461856c..0000000
Binary files a/foto/foto_barang/molto-pewangi-blue.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto_molto-pure-pouch-pelembut-dan-pewangi-pakaian-800-ml_full02.jpg b/foto/foto_barang/molto_molto-pure-pouch-pelembut-dan-pewangi-pakaian-800-ml_full02.jpg
deleted file mode 100644
index a9cd8db..0000000
Binary files a/foto/foto_barang/molto_molto-pure-pouch-pelembut-dan-pewangi-pakaian-800-ml_full02.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto_pewangi_450ml.jpg b/foto/foto_barang/molto_pewangi_450ml.jpg
deleted file mode 100644
index 1c78327..0000000
Binary files a/foto/foto_barang/molto_pewangi_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto_pewangi_pink_820ml.jpg b/foto/foto_barang/molto_pewangi_pink_820ml.jpg
deleted file mode 100644
index e50a03d..0000000
Binary files a/foto/foto_barang/molto_pewangi_pink_820ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto_softener_blue_ref_820ml.jpg b/foto/foto_barang/molto_softener_blue_ref_820ml.jpg
deleted file mode 100644
index 3dfc8bf..0000000
Binary files a/foto/foto_barang/molto_softener_blue_ref_820ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/molto_softener_pink_ref_820ml.jpg b/foto/foto_barang/molto_softener_pink_ref_820ml.jpg
deleted file mode 100644
index ea8f57f..0000000
Binary files a/foto/foto_barang/molto_softener_pink_ref_820ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/morris_princes_pink_60ml.jpg b/foto/foto_barang/morris_princes_pink_60ml.jpg
deleted file mode 100644
index d71bf52..0000000
Binary files a/foto/foto_barang/morris_princes_pink_60ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/my_baby_powder_soft_gentle_100gr.jpg b/foto/foto_barang/my_baby_powder_soft_gentle_100gr.jpg
deleted file mode 100644
index 03bbaab..0000000
Binary files a/foto/foto_barang/my_baby_powder_soft_gentle_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/nabati.jpg b/foto/foto_barang/nabati.jpg
deleted file mode 100644
index dcf4f5a..0000000
Binary files a/foto/foto_barang/nabati.jpg and /dev/null differ
diff --git a/foto/foto_barang/nabati1.jpg b/foto/foto_barang/nabati1.jpg
deleted file mode 100644
index 9280e83..0000000
Binary files a/foto/foto_barang/nabati1.jpg and /dev/null differ
diff --git a/foto/foto_barang/nasi_goreng.jpg b/foto/foto_barang/nasi_goreng.jpg
deleted file mode 100644
index 1d970e1..0000000
Binary files a/foto/foto_barang/nasi_goreng.jpg and /dev/null differ
diff --git a/foto/foto_barang/nasi_uduk.jpg b/foto/foto_barang/nasi_uduk.jpg
deleted file mode 100644
index f0cae27..0000000
Binary files a/foto/foto_barang/nasi_uduk.jpg and /dev/null differ
diff --git a/foto/foto_barang/nescafe_nescafe-latte-can-220-ml_full01.jpg b/foto/foto_barang/nescafe_nescafe-latte-can-220-ml_full01.jpg
deleted file mode 100644
index 3445b82..0000000
Binary files a/foto/foto_barang/nescafe_nescafe-latte-can-220-ml_full01.jpg and /dev/null differ
diff --git a/foto/foto_barang/nextar.jpg b/foto/foto_barang/nextar.jpg
deleted file mode 100644
index 22df607..0000000
Binary files a/foto/foto_barang/nextar.jpg and /dev/null differ
diff --git a/foto/foto_barang/nice_facial_tissue_60s.jpg b/foto/foto_barang/nice_facial_tissue_60s.jpg
deleted file mode 100644
index 8c4631c..0000000
Binary files a/foto/foto_barang/nice_facial_tissue_60s.jpg and /dev/null differ
diff --git a/foto/foto_barang/nice_tissu_wajah.jpg b/foto/foto_barang/nice_tissu_wajah.jpg
deleted file mode 100644
index d1abc91..0000000
Binary files a/foto/foto_barang/nice_tissu_wajah.jpg and /dev/null differ
diff --git a/foto/foto_barang/nissin_nissin-richoco-nabati-chocolate-wafer--145-g-_full04.jpg b/foto/foto_barang/nissin_nissin-richoco-nabati-chocolate-wafer--145-g-_full04.jpg
deleted file mode 100644
index e506d63..0000000
Binary files a/foto/foto_barang/nissin_nissin-richoco-nabati-chocolate-wafer--145-g-_full04.jpg and /dev/null differ
diff --git a/foto/foto_barang/nivea_cream_kaki.jpg b/foto/foto_barang/nivea_cream_kaki.jpg
deleted file mode 100644
index 979f1a3..0000000
Binary files a/foto/foto_barang/nivea_cream_kaki.jpg and /dev/null differ
diff --git a/foto/foto_barang/notebook-dynamic-color.png b/foto/foto_barang/notebook-dynamic-color.png
deleted file mode 100644
index a82265c..0000000
Binary files a/foto/foto_barang/notebook-dynamic-color.png and /dev/null differ
diff --git a/foto/foto_barang/nu_greentea_original_330ml.jpg b/foto/foto_barang/nu_greentea_original_330ml.jpg
deleted file mode 100644
index 8304679..0000000
Binary files a/foto/foto_barang/nu_greentea_original_330ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo.jpeg b/foto/foto_barang/nuvo.jpeg
deleted file mode 100644
index 5d5fcab..0000000
Binary files a/foto/foto_barang/nuvo.jpeg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_active_clean_450ml.jpg b/foto/foto_barang/nuvo_active_clean_450ml.jpg
deleted file mode 100644
index 6ab1f44..0000000
Binary files a/foto/foto_barang/nuvo_active_clean_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_active_clean_black_btl_250ml.jpg b/foto/foto_barang/nuvo_active_clean_black_btl_250ml.jpg
deleted file mode 100644
index 3fe86bb..0000000
Binary files a/foto/foto_barang/nuvo_active_clean_black_btl_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_active_cool_450ml.jpg b/foto/foto_barang/nuvo_active_cool_450ml.jpg
deleted file mode 100644
index 593dc35..0000000
Binary files a/foto/foto_barang/nuvo_active_cool_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_family_red_76gr.jpg b/foto/foto_barang/nuvo_family_red_76gr.jpg
deleted file mode 100644
index 1b464d7..0000000
Binary files a/foto/foto_barang/nuvo_family_red_76gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_hand_sanitizer_biru_50ml.jpg b/foto/foto_barang/nuvo_hand_sanitizer_biru_50ml.jpg
deleted file mode 100644
index aa2d918..0000000
Binary files a/foto/foto_barang/nuvo_hand_sanitizer_biru_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_hand_sanitizer_hijau_50ml.jpg b/foto/foto_barang/nuvo_hand_sanitizer_hijau_50ml.jpg
deleted file mode 100644
index 53f6905..0000000
Binary files a/foto/foto_barang/nuvo_hand_sanitizer_hijau_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_hand_sanitizer_pink_250ml.jpg b/foto/foto_barang/nuvo_hand_sanitizer_pink_250ml.jpg
deleted file mode 100644
index a7e92c9..0000000
Binary files a/foto/foto_barang/nuvo_hand_sanitizer_pink_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_hand_sanitizer_pink_50ml.jpg b/foto/foto_barang/nuvo_hand_sanitizer_pink_50ml.jpg
deleted file mode 100644
index 878da06..0000000
Binary files a/foto/foto_barang/nuvo_hand_sanitizer_pink_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_nuvo_antibacter_active_cool_body_wash_sabun_cair_-pouch_refill_450_ml-_full02_jb8c10.jpg b/foto/foto_barang/nuvo_nuvo_antibacter_active_cool_body_wash_sabun_cair_-pouch_refill_450_ml-_full02_jb8c10.jpg
deleted file mode 100644
index 533c475..0000000
Binary files a/foto/foto_barang/nuvo_nuvo_antibacter_active_cool_body_wash_sabun_cair_-pouch_refill_450_ml-_full02_jb8c10.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_pink_ts_110gr.jpg b/foto/foto_barang/nuvo_pink_ts_110gr.jpg
deleted file mode 100644
index 244ed93..0000000
Binary files a/foto/foto_barang/nuvo_pink_ts_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_soap_family_biru_76gr.jpg b/foto/foto_barang/nuvo_soap_family_biru_76gr.jpg
deleted file mode 100644
index 135b7ca..0000000
Binary files a/foto/foto_barang/nuvo_soap_family_biru_76gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_ts_biru_110gr.jpg b/foto/foto_barang/nuvo_ts_biru_110gr.jpg
deleted file mode 100644
index bd0b9f8..0000000
Binary files a/foto/foto_barang/nuvo_ts_biru_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/nuvo_ts_merah_110gr.jpg b/foto/foto_barang/nuvo_ts_merah_110gr.jpg
deleted file mode 100644
index 4ccadd7..0000000
Binary files a/foto/foto_barang/nuvo_ts_merah_110gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/obat1-removebg-preview.png b/foto/foto_barang/obat1-removebg-preview.png
deleted file mode 100644
index 1f4a51f..0000000
Binary files a/foto/foto_barang/obat1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/oreo.jpg b/foto/foto_barang/oreo.jpg
deleted file mode 100644
index b585727..0000000
Binary files a/foto/foto_barang/oreo.jpg and /dev/null differ
diff --git a/foto/foto_barang/oreo_roll_coklat.jpg b/foto/foto_barang/oreo_roll_coklat.jpg
deleted file mode 100644
index be2a03c..0000000
Binary files a/foto/foto_barang/oreo_roll_coklat.jpg and /dev/null differ
diff --git a/foto/foto_barang/panadol_extra_tablet_100s.jpg b/foto/foto_barang/panadol_extra_tablet_100s.jpg
deleted file mode 100644
index b9963f1..0000000
Binary files a/foto/foto_barang/panadol_extra_tablet_100s.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_anti_dandruff_135ml.jpg b/foto/foto_barang/pantene_anti_dandruff_135ml.jpg
deleted file mode 100644
index e658c83..0000000
Binary files a/foto/foto_barang/pantene_anti_dandruff_135ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_cond_total_damage_75ml.jpg b/foto/foto_barang/pantene_cond_total_damage_75ml.jpg
deleted file mode 100644
index 4660cdb..0000000
Binary files a/foto/foto_barang/pantene_cond_total_damage_75ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_conditioner_anti_lepek_135ml.jpg b/foto/foto_barang/pantene_conditioner_anti_lepek_135ml.jpg
deleted file mode 100644
index b237677..0000000
Binary files a/foto/foto_barang/pantene_conditioner_anti_lepek_135ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_conditioner_hairfall_165ml.jpg b/foto/foto_barang/pantene_conditioner_hairfall_165ml.jpg
deleted file mode 100644
index 2f02cf9..0000000
Binary files a/foto/foto_barang/pantene_conditioner_hairfall_165ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_conditioner_silky_smooth_135ml.jpg b/foto/foto_barang/pantene_conditioner_silky_smooth_135ml.jpg
deleted file mode 100644
index ba2a21d..0000000
Binary files a/foto/foto_barang/pantene_conditioner_silky_smooth_135ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_long_black_320ml.jpg b/foto/foto_barang/pantene_long_black_320ml.jpg
deleted file mode 100644
index 3313183..0000000
Binary files a/foto/foto_barang/pantene_long_black_320ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_ad_290ml.jpg b/foto/foto_barang/pantene_shampoo_ad_290ml.jpg
deleted file mode 100644
index 610d50b..0000000
Binary files a/foto/foto_barang/pantene_shampoo_ad_290ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_black_70ml.jpg b/foto/foto_barang/pantene_shampoo_black_70ml.jpg
deleted file mode 100644
index 989387c..0000000
Binary files a/foto/foto_barang/pantene_shampoo_black_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_hfc_70ml.jpg b/foto/foto_barang/pantene_shampoo_hfc_70ml.jpg
deleted file mode 100644
index 7b81a0e..0000000
Binary files a/foto/foto_barang/pantene_shampoo_hfc_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_hitam_panjang_400ml.jpg b/foto/foto_barang/pantene_shampoo_hitam_panjang_400ml.jpg
deleted file mode 100644
index b70c162..0000000
Binary files a/foto/foto_barang/pantene_shampoo_hitam_panjang_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_long_black_135ml.jpg b/foto/foto_barang/pantene_shampoo_long_black_135ml.jpg
deleted file mode 100644
index adbee9e..0000000
Binary files a/foto/foto_barang/pantene_shampoo_long_black_135ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_rambut_rontok_210ml.jpg b/foto/foto_barang/pantene_shampoo_rambut_rontok_210ml.jpg
deleted file mode 100644
index 4bee77c..0000000
Binary files a/foto/foto_barang/pantene_shampoo_rambut_rontok_210ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_silky_smooth_160ml.jpg b/foto/foto_barang/pantene_shampoo_silky_smooth_160ml.jpg
deleted file mode 100644
index 8709b1f..0000000
Binary files a/foto/foto_barang/pantene_shampoo_silky_smooth_160ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pantene_shampoo_silky_smooth_290ml.jpg b/foto/foto_barang/pantene_shampoo_silky_smooth_290ml.jpg
deleted file mode 100644
index 2de3010..0000000
Binary files a/foto/foto_barang/pantene_shampoo_silky_smooth_290ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/papan_tulis_standing.jpg b/foto/foto_barang/papan_tulis_standing.jpg
deleted file mode 100644
index fa66785..0000000
Binary files a/foto/foto_barang/papan_tulis_standing.jpg and /dev/null differ
diff --git a/foto/foto_barang/paper_clips_berwarna.jpeg b/foto/foto_barang/paper_clips_berwarna.jpeg
deleted file mode 100644
index 5ec2525..0000000
Binary files a/foto/foto_barang/paper_clips_berwarna.jpeg and /dev/null differ
diff --git a/foto/foto_barang/paper_hvs.jpg b/foto/foto_barang/paper_hvs.jpg
deleted file mode 100644
index b7e59aa..0000000
Binary files a/foto/foto_barang/paper_hvs.jpg and /dev/null differ
diff --git a/foto/foto_barang/paperline_buku_hard_cover_folio.jpg b/foto/foto_barang/paperline_buku_hard_cover_folio.jpg
deleted file mode 100644
index 07f346a..0000000
Binary files a/foto/foto_barang/paperline_buku_hard_cover_folio.jpg and /dev/null differ
diff --git a/foto/foto_barang/parfume_desire_pink_tokyo_30ml.jpg b/foto/foto_barang/parfume_desire_pink_tokyo_30ml.jpg
deleted file mode 100644
index 27e0445..0000000
Binary files a/foto/foto_barang/parfume_desire_pink_tokyo_30ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/parfume_green_tokyo_night_30ml.jpg b/foto/foto_barang/parfume_green_tokyo_night_30ml.jpg
deleted file mode 100644
index d7ca57b..0000000
Binary files a/foto/foto_barang/parfume_green_tokyo_night_30ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/parfume_red_apple_100ml.jpg b/foto/foto_barang/parfume_red_apple_100ml.jpg
deleted file mode 100644
index 8c4d91f..0000000
Binary files a/foto/foto_barang/parfume_red_apple_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/parfume_sweet_apple_green_100ml.jpg b/foto/foto_barang/parfume_sweet_apple_green_100ml.jpg
deleted file mode 100644
index c805f5e..0000000
Binary files a/foto/foto_barang/parfume_sweet_apple_green_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/parfume_victoria_blue_tokyo_n_30ml.jpg b/foto/foto_barang/parfume_victoria_blue_tokyo_n_30ml.jpg
deleted file mode 100644
index 921ec30..0000000
Binary files a/foto/foto_barang/parfume_victoria_blue_tokyo_n_30ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_baby_wipes_jojoba_oil_50s.jpg b/foto/foto_barang/paseo_baby_wipes_jojoba_oil_50s.jpg
deleted file mode 100644
index ee7a2d1..0000000
Binary files a/foto/foto_barang/paseo_baby_wipes_jojoba_oil_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_baby_wipes_yellow_50s.jpg b/foto/foto_barang/paseo_baby_wipes_yellow_50s.jpg
deleted file mode 100644
index a3cc175..0000000
Binary files a/foto/foto_barang/paseo_baby_wipes_yellow_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_elegant_passion_250s.jpg b/foto/foto_barang/paseo_elegant_passion_250s.jpg
deleted file mode 100644
index b95df37..0000000
Binary files a/foto/foto_barang/paseo_elegant_passion_250s.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_reff_250s.jpg b/foto/foto_barang/paseo_reff_250s.jpg
deleted file mode 100644
index 489e38d..0000000
Binary files a/foto/foto_barang/paseo_reff_250s.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_tissu_wajah.jpg b/foto/foto_barang/paseo_tissu_wajah.jpg
deleted file mode 100644
index e7d03a5..0000000
Binary files a/foto/foto_barang/paseo_tissu_wajah.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_travel_50s.jpg b/foto/foto_barang/paseo_travel_50s.jpg
deleted file mode 100644
index 69d32c6..0000000
Binary files a/foto/foto_barang/paseo_travel_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/paseo_wipes_anti_bac_50s.jpg b/foto/foto_barang/paseo_wipes_anti_bac_50s.jpg
deleted file mode 100644
index b0be42c..0000000
Binary files a/foto/foto_barang/paseo_wipes_anti_bac_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/pasta_gigi_formula_straw_45gr.jpg b/foto/foto_barang/pasta_gigi_formula_straw_45gr.jpg
deleted file mode 100644
index 37a5882..0000000
Binary files a/foto/foto_barang/pasta_gigi_formula_straw_45gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pc_all_in_one.jpg b/foto/foto_barang/pc_all_in_one.jpg
deleted file mode 100644
index ffb67db..0000000
Binary files a/foto/foto_barang/pc_all_in_one.jpg and /dev/null differ
diff --git a/foto/foto_barang/pelubang_kertas.jpg b/foto/foto_barang/pelubang_kertas.jpg
deleted file mode 100644
index 1c5f9d2..0000000
Binary files a/foto/foto_barang/pelubang_kertas.jpg and /dev/null differ
diff --git a/foto/foto_barang/pembatas_buku.jpg b/foto/foto_barang/pembatas_buku.jpg
deleted file mode 100644
index 555ff97..0000000
Binary files a/foto/foto_barang/pembatas_buku.jpg and /dev/null differ
diff --git a/foto/foto_barang/pempek.png b/foto/foto_barang/pempek.png
deleted file mode 100644
index e21f8da..0000000
Binary files a/foto/foto_barang/pempek.png and /dev/null differ
diff --git a/foto/foto_barang/penggaris_besi_30cm.jpg b/foto/foto_barang/penggaris_besi_30cm.jpg
deleted file mode 100644
index c725e9b..0000000
Binary files a/foto/foto_barang/penggaris_besi_30cm.jpg and /dev/null differ
diff --git a/foto/foto_barang/penggarisan.jpg b/foto/foto_barang/penggarisan.jpg
deleted file mode 100644
index d732844..0000000
Binary files a/foto/foto_barang/penggarisan.jpg and /dev/null differ
diff --git a/foto/foto_barang/penghapus.jpg b/foto/foto_barang/penghapus.jpg
deleted file mode 100644
index 6e4e359..0000000
Binary files a/foto/foto_barang/penghapus.jpg and /dev/null differ
diff --git a/foto/foto_barang/penghapus_papan_tulis_spidol.jpg b/foto/foto_barang/penghapus_papan_tulis_spidol.jpg
deleted file mode 100644
index c11f4c0..0000000
Binary files a/foto/foto_barang/penghapus_papan_tulis_spidol.jpg and /dev/null differ
diff --git a/foto/foto_barang/penjepit_kertas.jpg b/foto/foto_barang/penjepit_kertas.jpg
deleted file mode 100644
index d7c71d1..0000000
Binary files a/foto/foto_barang/penjepit_kertas.jpg and /dev/null differ
diff --git a/foto/foto_barang/pensil.png b/foto/foto_barang/pensil.png
deleted file mode 100644
index f0283b0..0000000
Binary files a/foto/foto_barang/pensil.png and /dev/null differ
diff --git a/foto/foto_barang/pensil1.png b/foto/foto_barang/pensil1.png
deleted file mode 100644
index f0283b0..0000000
Binary files a/foto/foto_barang/pensil1.png and /dev/null differ
diff --git a/foto/foto_barang/pensil2.png b/foto/foto_barang/pensil2.png
deleted file mode 100644
index f0283b0..0000000
Binary files a/foto/foto_barang/pensil2.png and /dev/null differ
diff --git a/foto/foto_barang/pensil3.png b/foto/foto_barang/pensil3.png
deleted file mode 100644
index f0283b0..0000000
Binary files a/foto/foto_barang/pensil3.png and /dev/null differ
diff --git a/foto/foto_barang/pensil4.png b/foto/foto_barang/pensil4.png
deleted file mode 100644
index f0283b0..0000000
Binary files a/foto/foto_barang/pensil4.png and /dev/null differ
diff --git a/foto/foto_barang/pensil_2b.jpg b/foto/foto_barang/pensil_2b.jpg
deleted file mode 100644
index 1022460..0000000
Binary files a/foto/foto_barang/pensil_2b.jpg and /dev/null differ
diff --git a/foto/foto_barang/pensil_warna.jpg b/foto/foto_barang/pensil_warna.jpg
deleted file mode 100644
index db43381..0000000
Binary files a/foto/foto_barang/pensil_warna.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_act_123_190_gr.jpg b/foto/foto_barang/pepsodent_act_123_190_gr.jpg
deleted file mode 100644
index 064fc25..0000000
Binary files a/foto/foto_barang/pepsodent_act_123_190_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_act_123_herbal_120_gr.jpg b/foto/foto_barang/pepsodent_act_123_herbal_120_gr.jpg
deleted file mode 100644
index 25ecb07..0000000
Binary files a/foto/foto_barang/pepsodent_act_123_herbal_120_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_sikat_gigi_clean_soft.jpg b/foto/foto_barang/pepsodent_sikat_gigi_clean_soft.jpg
deleted file mode 100644
index f5ba08f..0000000
Binary files a/foto/foto_barang/pepsodent_sikat_gigi_clean_soft.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_white_120gr.jpg b/foto/foto_barang/pepsodent_white_120gr.jpg
deleted file mode 100644
index 766179e..0000000
Binary files a/foto/foto_barang/pepsodent_white_120gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_white_190gr.jpg b/foto/foto_barang/pepsodent_white_190gr.jpg
deleted file mode 100644
index 51e433d..0000000
Binary files a/foto/foto_barang/pepsodent_white_190gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_white_25gr.jpg b/foto/foto_barang/pepsodent_white_25gr.jpg
deleted file mode 100644
index f9e225d..0000000
Binary files a/foto/foto_barang/pepsodent_white_25gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_white_75gr.jpg b/foto/foto_barang/pepsodent_white_75gr.jpg
deleted file mode 100644
index 733072f..0000000
Binary files a/foto/foto_barang/pepsodent_white_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/pepsodent_whitening_75gr.jpg b/foto/foto_barang/pepsodent_whitening_75gr.jpg
deleted file mode 100644
index 40e5fdb..0000000
Binary files a/foto/foto_barang/pepsodent_whitening_75gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/permen_mintz_rasa_lemon_mint.jpg b/foto/foto_barang/permen_mintz_rasa_lemon_mint.jpg
deleted file mode 100644
index 14f00b8..0000000
Binary files a/foto/foto_barang/permen_mintz_rasa_lemon_mint.jpg and /dev/null differ
diff --git a/foto/foto_barang/pewangi_soklin_biru_900ml.jpg b/foto/foto_barang/pewangi_soklin_biru_900ml.jpg
deleted file mode 100644
index 5462c2f..0000000
Binary files a/foto/foto_barang/pewangi_soklin_biru_900ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/philips_lampu.jpg b/foto/foto_barang/philips_lampu.jpg
deleted file mode 100644
index 29dee6f..0000000
Binary files a/foto/foto_barang/philips_lampu.jpg and /dev/null differ
diff --git a/foto/foto_barang/photo.jpg b/foto/foto_barang/photo.jpg
deleted file mode 100644
index 17573be..0000000
Binary files a/foto/foto_barang/photo.jpg and /dev/null differ
diff --git a/foto/foto_barang/piatoss_sapi_panggang_55g.jpg b/foto/foto_barang/piatoss_sapi_panggang_55g.jpg
deleted file mode 100644
index 826a228..0000000
Binary files a/foto/foto_barang/piatoss_sapi_panggang_55g.jpg and /dev/null differ
diff --git a/foto/foto_barang/pillows_250g.jpg b/foto/foto_barang/pillows_250g.jpg
deleted file mode 100644
index a6e5d49..0000000
Binary files a/foto/foto_barang/pillows_250g.jpg and /dev/null differ
diff --git a/foto/foto_barang/pilot_mekanik_pensil.jpg b/foto/foto_barang/pilot_mekanik_pensil.jpg
deleted file mode 100644
index 046db4f..0000000
Binary files a/foto/foto_barang/pilot_mekanik_pensil.jpg and /dev/null differ
diff --git a/foto/foto_barang/pizza_mini.jpg b/foto/foto_barang/pizza_mini.jpg
deleted file mode 100644
index d8cc710..0000000
Binary files a/foto/foto_barang/pizza_mini.jpg and /dev/null differ
diff --git a/foto/foto_barang/plester.jpg b/foto/foto_barang/plester.jpg
deleted file mode 100644
index 343e4bb..0000000
Binary files a/foto/foto_barang/plester.jpg and /dev/null differ
diff --git a/foto/foto_barang/pngegg.png b/foto/foto_barang/pngegg.png
deleted file mode 100644
index 6af0729..0000000
Binary files a/foto/foto_barang/pngegg.png and /dev/null differ
diff --git a/foto/foto_barang/pocari_sweat_330ml.png b/foto/foto_barang/pocari_sweat_330ml.png
deleted file mode 100644
index 4b3039f..0000000
Binary files a/foto/foto_barang/pocari_sweat_330ml.png and /dev/null differ
diff --git a/foto/foto_barang/pocky_strawberry.jpg b/foto/foto_barang/pocky_strawberry.jpg
deleted file mode 100644
index 95e3108..0000000
Binary files a/foto/foto_barang/pocky_strawberry.jpg and /dev/null differ
diff --git a/foto/foto_barang/ponds_acne_solution_50gr.jpg b/foto/foto_barang/ponds_acne_solution_50gr.jpg
deleted file mode 100644
index d6988a7..0000000
Binary files a/foto/foto_barang/ponds_acne_solution_50gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ponds_clear_sol_fc_scrub_100gr.jpg b/foto/foto_barang/ponds_clear_sol_fc_scrub_100gr.jpg
deleted file mode 100644
index bcb6bbc..0000000
Binary files a/foto/foto_barang/ponds_clear_sol_fc_scrub_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ponds_clear_solutions_f_scrub_50gr.jpg b/foto/foto_barang/ponds_clear_solutions_f_scrub_50gr.jpg
deleted file mode 100644
index 73df8ac..0000000
Binary files a/foto/foto_barang/ponds_clear_solutions_f_scrub_50gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ponds_pure_white_100gr.jpg b/foto/foto_barang/ponds_pure_white_100gr.jpg
deleted file mode 100644
index 0a391e6..0000000
Binary files a/foto/foto_barang/ponds_pure_white_100gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/ponds_pure_white_50gr.jpg b/foto/foto_barang/ponds_pure_white_50gr.jpg
deleted file mode 100644
index edbdb35..0000000
Binary files a/foto/foto_barang/ponds_pure_white_50gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_body_men_black_gold_150ml.jpg b/foto/foto_barang/posh_body_men_black_gold_150ml.jpg
deleted file mode 100644
index 1b8dfc2..0000000
Binary files a/foto/foto_barang/posh_body_men_black_gold_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_body_men_cool_blue_150ml.jpg b/foto/foto_barang/posh_body_men_cool_blue_150ml.jpg
deleted file mode 100644
index 5c8c383..0000000
Binary files a/foto/foto_barang/posh_body_men_cool_blue_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_body_men_perfume_pink_150ml.jpg b/foto/foto_barang/posh_body_men_perfume_pink_150ml.jpg
deleted file mode 100644
index 2f8b51a..0000000
Binary files a/foto/foto_barang/posh_body_men_perfume_pink_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_men_brown_legacy.jpg b/foto/foto_barang/posh_men_brown_legacy.jpg
deleted file mode 100644
index c50246f..0000000
Binary files a/foto/foto_barang/posh_men_brown_legacy.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_men_green_motion.jpg b/foto/foto_barang/posh_men_green_motion.jpg
deleted file mode 100644
index 9f1c284..0000000
Binary files a/foto/foto_barang/posh_men_green_motion.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_perfumed_love_song_150ml.jpg b/foto/foto_barang/posh_perfumed_love_song_150ml.jpg
deleted file mode 100644
index 694917f..0000000
Binary files a/foto/foto_barang/posh_perfumed_love_song_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_ro_anti_stain_50ml.jpg b/foto/foto_barang/posh_ro_anti_stain_50ml.jpg
deleted file mode 100644
index 451aeca..0000000
Binary files a/foto/foto_barang/posh_ro_anti_stain_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_ro_charcoal_50ml.jpg b/foto/foto_barang/posh_ro_charcoal_50ml.jpg
deleted file mode 100644
index 57d5824..0000000
Binary files a/foto/foto_barang/posh_ro_charcoal_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/posh_ro_whitening_pink_50ml.jpg b/foto/foto_barang/posh_ro_whitening_pink_50ml.jpg
deleted file mode 100644
index bba11bf..0000000
Binary files a/foto/foto_barang/posh_ro_whitening_pink_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/pringles_potato_chips_107g.jpg b/foto/foto_barang/pringles_potato_chips_107g.jpg
deleted file mode 100644
index d890a31..0000000
Binary files a/foto/foto_barang/pringles_potato_chips_107g.jpg and /dev/null differ
diff --git a/foto/foto_barang/printer_canon_ip2770.jpg b/foto/foto_barang/printer_canon_ip2770.jpg
deleted file mode 100644
index 3c12e09..0000000
Binary files a/foto/foto_barang/printer_canon_ip2770.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1595478649_CM86_800x800.jpg b/foto/foto_barang/product_1595478649_CM86_800x800.jpg
deleted file mode 100644
index f1594d1..0000000
Binary files a/foto/foto_barang/product_1595478649_CM86_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1610511799_aloe_gel_800x800.jpg b/foto/foto_barang/product_1610511799_aloe_gel_800x800.jpg
deleted file mode 100644
index a089d52..0000000
Binary files a/foto/foto_barang/product_1610511799_aloe_gel_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1610522672_Anti_Dandr_800x800.jpg b/foto/foto_barang/product_1610522672_Anti_Dandr_800x800.jpg
deleted file mode 100644
index 56b0e4f..0000000
Binary files a/foto/foto_barang/product_1610522672_Anti_Dandr_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1610522985_3c88d619e2_800x800.jpg b/foto/foto_barang/product_1610522985_3c88d619e2_800x800.jpg
deleted file mode 100644
index ef1cd2b..0000000
Binary files a/foto/foto_barang/product_1610522985_3c88d619e2_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1627372602_uv_lighten_800x800.jpg b/foto/foto_barang/product_1627372602_uv_lighten_800x800.jpg
deleted file mode 100644
index 02d4156..0000000
Binary files a/foto/foto_barang/product_1627372602_uv_lighten_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1627372602_uv_lighten_800x8001.jpg b/foto/foto_barang/product_1627372602_uv_lighten_800x8001.jpg
deleted file mode 100644
index 02d4156..0000000
Binary files a/foto/foto_barang/product_1627372602_uv_lighten_800x8001.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1627372644_perfect_10_800x800.jpg b/foto/foto_barang/product_1627372644_perfect_10_800x800.jpg
deleted file mode 100644
index acdfbe6..0000000
Binary files a/foto/foto_barang/product_1627372644_perfect_10_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1628234335_Screenshot_800x800.jpg b/foto/foto_barang/product_1628234335_Screenshot_800x800.jpg
deleted file mode 100644
index 5984c70..0000000
Binary files a/foto/foto_barang/product_1628234335_Screenshot_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1628234581_Screenshot_800x800.jpg b/foto/foto_barang/product_1628234581_Screenshot_800x800.jpg
deleted file mode 100644
index a5a3197..0000000
Binary files a/foto/foto_barang/product_1628234581_Screenshot_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1628234581_Screenshot_800x8001.jpg b/foto/foto_barang/product_1628234581_Screenshot_800x8001.jpg
deleted file mode 100644
index a5a3197..0000000
Binary files a/foto/foto_barang/product_1628234581_Screenshot_800x8001.jpg and /dev/null differ
diff --git a/foto/foto_barang/product_1628234628_Screenshot_800x800.jpg b/foto/foto_barang/product_1628234628_Screenshot_800x800.jpg
deleted file mode 100644
index a8a2346..0000000
Binary files a/foto/foto_barang/product_1628234628_Screenshot_800x800.jpg and /dev/null differ
diff --git a/foto/foto_barang/products_467162_image_B624_11616755.jpg b/foto/foto_barang/products_467162_image_B624_11616755.jpg
deleted file mode 100644
index 558d50c..0000000
Binary files a/foto/foto_barang/products_467162_image_B624_11616755.jpg and /dev/null differ
diff --git a/foto/foto_barang/qtela_keripik_tempe_cabe_rawirt_60g.jpg b/foto/foto_barang/qtela_keripik_tempe_cabe_rawirt_60g.jpg
deleted file mode 100644
index b5ab4a2..0000000
Binary files a/foto/foto_barang/qtela_keripik_tempe_cabe_rawirt_60g.jpg and /dev/null differ
diff --git a/foto/foto_barang/rapika_biru_400ml.jpg b/foto/foto_barang/rapika_biru_400ml.jpg
deleted file mode 100644
index d4bf0c5..0000000
Binary files a/foto/foto_barang/rapika_biru_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rapika_pink_flowers_blossom_400ml.jpg b/foto/foto_barang/rapika_pink_flowers_blossom_400ml.jpg
deleted file mode 100644
index 7b9c696..0000000
Binary files a/foto/foto_barang/rapika_pink_flowers_blossom_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rapika_sakura_400ml.jpg b/foto/foto_barang/rapika_sakura_400ml.jpg
deleted file mode 100644
index 3590d44..0000000
Binary files a/foto/foto_barang/rapika_sakura_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rautan_pensil.jpg b/foto/foto_barang/rautan_pensil.jpg
deleted file mode 100644
index 5673c8c..0000000
Binary files a/foto/foto_barang/rautan_pensil.jpg and /dev/null differ
diff --git a/foto/foto_barang/rautan_pensil_kenki.jpg b/foto/foto_barang/rautan_pensil_kenki.jpg
deleted file mode 100644
index e22a8f0..0000000
Binary files a/foto/foto_barang/rautan_pensil_kenki.jpg and /dev/null differ
diff --git a/foto/foto_barang/rejoice_anti_dandruff_170ml.jpg b/foto/foto_barang/rejoice_anti_dandruff_170ml.jpg
deleted file mode 100644
index 2795554..0000000
Binary files a/foto/foto_barang/rejoice_anti_dandruff_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rejoice_rich_70ml.jpg b/foto/foto_barang/rejoice_rich_70ml.jpg
deleted file mode 100644
index 69c9cfe..0000000
Binary files a/foto/foto_barang/rejoice_rich_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rejoice_shampoo_ad_3_in_1_70ml.jpg b/foto/foto_barang/rejoice_shampoo_ad_3_in_1_70ml.jpg
deleted file mode 100644
index 25a7e52..0000000
Binary files a/foto/foto_barang/rejoice_shampoo_ad_3_in_1_70ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rejoice_shampoo_anti_hairfall_170ml.jpg b/foto/foto_barang/rejoice_shampoo_anti_hairfall_170ml.jpg
deleted file mode 100644
index 3ac8fc1..0000000
Binary files a/foto/foto_barang/rejoice_shampoo_anti_hairfall_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rejoice_shampoo_rich_soft_smooth_170ml.jpg b/foto/foto_barang/rejoice_shampoo_rich_soft_smooth_170ml.jpg
deleted file mode 100644
index 63013d2..0000000
Binary files a/foto/foto_barang/rejoice_shampoo_rich_soft_smooth_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_men_ro_icecool_50ml.jpg b/foto/foto_barang/rexona_men_ro_icecool_50ml.jpg
deleted file mode 100644
index ce8e1b8..0000000
Binary files a/foto/foto_barang/rexona_men_ro_icecool_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_men_ro_invisible_dry_50ml.jpg b/foto/foto_barang/rexona_men_ro_invisible_dry_50ml.jpg
deleted file mode 100644
index e4c249f..0000000
Binary files a/foto/foto_barang/rexona_men_ro_invisible_dry_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_men_ro_sport_defence_50ml.jpg b/foto/foto_barang/rexona_men_ro_sport_defence_50ml.jpg
deleted file mode 100644
index dab56fb..0000000
Binary files a/foto/foto_barang/rexona_men_ro_sport_defence_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_men_ro_v8_kuning_50ml.jpg b/foto/foto_barang/rexona_men_ro_v8_kuning_50ml.jpg
deleted file mode 100644
index 2d87b20..0000000
Binary files a/foto/foto_barang/rexona_men_ro_v8_kuning_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_adv_wht_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_adv_wht_50ml.jpg
deleted file mode 100644
index ec435ac..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_adv_wht_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_freespirit_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_freespirit_50ml.jpg
deleted file mode 100644
index bb8a091..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_freespirit_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_invisible_dry_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_invisible_dry_50ml.jpg
deleted file mode 100644
index ff6c2a8..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_invisible_dry_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_passion_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_passion_50ml.jpg
deleted file mode 100644
index 10a104c..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_passion_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_powder_dry_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_powder_dry_50ml.jpg
deleted file mode 100644
index e42bc5c..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_powder_dry_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rexona_wmn_ro_shower_clean_50ml.jpg b/foto/foto_barang/rexona_wmn_ro_shower_clean_50ml.jpg
deleted file mode 100644
index ce00607..0000000
Binary files a/foto/foto_barang/rexona_wmn_ro_shower_clean_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rin-bee.jpg b/foto/foto_barang/rin-bee.jpg
deleted file mode 100644
index a5cf56f..0000000
Binary files a/foto/foto_barang/rin-bee.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_anti_noda.jpg b/foto/foto_barang/rinso_anti_noda.jpg
deleted file mode 100644
index f7f444f..0000000
Binary files a/foto/foto_barang/rinso_anti_noda.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_anti_noda_1_4kg.jpg b/foto/foto_barang/rinso_anti_noda_1_4kg.jpg
deleted file mode 100644
index f7fd4a9..0000000
Binary files a/foto/foto_barang/rinso_anti_noda_1_4kg.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_anti_noda_800_gr.jpg b/foto/foto_barang/rinso_anti_noda_800_gr.jpg
deleted file mode 100644
index 137c821..0000000
Binary files a/foto/foto_barang/rinso_anti_noda_800_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_anti_noda_cair_750ml.jpg b/foto/foto_barang/rinso_anti_noda_cair_750ml.jpg
deleted file mode 100644
index 353f521..0000000
Binary files a/foto/foto_barang/rinso_anti_noda_cair_750ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_anti_noda_colour_care_800gr.jpg b/foto/foto_barang/rinso_anti_noda_colour_care_800gr.jpg
deleted file mode 100644
index c312e41..0000000
Binary files a/foto/foto_barang/rinso_anti_noda_colour_care_800gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_japanese_750ml.jpg b/foto/foto_barang/rinso_molto_japanese_750ml.jpg
deleted file mode 100644
index 9936c10..0000000
Binary files a/foto/foto_barang/rinso_molto_japanese_750ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_per_essen_800gr.jpg b/foto/foto_barang/rinso_molto_per_essen_800gr.jpg
deleted file mode 100644
index 9c68673..0000000
Binary files a/foto/foto_barang/rinso_molto_per_essen_800gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_perf_essence_460gr.jpg b/foto/foto_barang/rinso_molto_perf_essence_460gr.jpg
deleted file mode 100644
index 0c88ce4..0000000
Binary files a/foto/foto_barang/rinso_molto_perf_essence_460gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_perfume_essence_cair_750ml.jpg b/foto/foto_barang/rinso_molto_perfume_essence_cair_750ml.jpg
deleted file mode 100644
index 8626af2..0000000
Binary files a/foto/foto_barang/rinso_molto_perfume_essence_cair_750ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_pink_800gr.jpg b/foto/foto_barang/rinso_molto_pink_800gr.jpg
deleted file mode 100644
index b5520d6..0000000
Binary files a/foto/foto_barang/rinso_molto_pink_800gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_pink_cair_750ml.jpg b/foto/foto_barang/rinso_molto_pink_cair_750ml.jpg
deleted file mode 100644
index d449a48..0000000
Binary files a/foto/foto_barang/rinso_molto_pink_cair_750ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_molto_rose_fresh_460gr.jpg b/foto/foto_barang/rinso_molto_rose_fresh_460gr.jpg
deleted file mode 100644
index d4a7fdd..0000000
Binary files a/foto/foto_barang/rinso_molto_rose_fresh_460gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_rose_fresh_240gr.jpg b/foto/foto_barang/rinso_rose_fresh_240gr.jpg
deleted file mode 100644
index 977c580..0000000
Binary files a/foto/foto_barang/rinso_rose_fresh_240gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rinso_royal_gold_800gr.jpg b/foto/foto_barang/rinso_royal_gold_800gr.jpg
deleted file mode 100644
index eea3800..0000000
Binary files a/foto/foto_barang/rinso_royal_gold_800gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/rokok-marcopolo-mild-16-btg_9312412513070.jpg b/foto/foto_barang/rokok-marcopolo-mild-16-btg_9312412513070.jpg
deleted file mode 100644
index 8801c2a..0000000
Binary files a/foto/foto_barang/rokok-marcopolo-mild-16-btg_9312412513070.jpg and /dev/null differ
diff --git a/foto/foto_barang/roma_malkist_abon_250g.jpg b/foto/foto_barang/roma_malkist_abon_250g.jpg
deleted file mode 100644
index 27d24d6..0000000
Binary files a/foto/foto_barang/roma_malkist_abon_250g.jpg and /dev/null differ
diff --git a/foto/foto_barang/roti_pisang_bakar.jpg b/foto/foto_barang/roti_pisang_bakar.jpg
deleted file mode 100644
index c77c08e..0000000
Binary files a/foto/foto_barang/roti_pisang_bakar.jpg and /dev/null differ
diff --git a/foto/foto_barang/s.jpg b/foto/foto_barang/s.jpg
deleted file mode 100644
index 573244d..0000000
Binary files a/foto/foto_barang/s.jpg and /dev/null differ
diff --git a/foto/foto_barang/samsung_note_20_ultra_5g.jpg b/foto/foto_barang/samsung_note_20_ultra_5g.jpg
deleted file mode 100644
index 9e0922e..0000000
Binary files a/foto/foto_barang/samsung_note_20_ultra_5g.jpg and /dev/null differ
diff --git a/foto/foto_barang/sapu_ijuk.jpg b/foto/foto_barang/sapu_ijuk.jpg
deleted file mode 100644
index 5372019..0000000
Binary files a/foto/foto_barang/sapu_ijuk.jpg and /dev/null differ
diff --git a/foto/foto_barang/sashimi.jpg b/foto/foto_barang/sashimi.jpg
deleted file mode 100644
index 0db2f8c..0000000
Binary files a/foto/foto_barang/sashimi.jpg and /dev/null differ
diff --git a/foto/foto_barang/sate_ayam.jpg b/foto/foto_barang/sate_ayam.jpg
deleted file mode 100644
index 59dc841..0000000
Binary files a/foto/foto_barang/sate_ayam.jpg and /dev/null differ
diff --git a/foto/foto_barang/scanner_canon_lide_120.jpg b/foto/foto_barang/scanner_canon_lide_120.jpg
deleted file mode 100644
index bb44bdf..0000000
Binary files a/foto/foto_barang/scanner_canon_lide_120.jpg and /dev/null differ
diff --git a/foto/foto_barang/schick_schick_exacta_2_sensitive_hanger_hijau_pisau_cukur_pria_-3_pcs-_full04_fh9bzi2s.jpg b/foto/foto_barang/schick_schick_exacta_2_sensitive_hanger_hijau_pisau_cukur_pria_-3_pcs-_full04_fh9bzi2s.jpg
deleted file mode 100644
index 0774f54..0000000
Binary files a/foto/foto_barang/schick_schick_exacta_2_sensitive_hanger_hijau_pisau_cukur_pria_-3_pcs-_full04_fh9bzi2s.jpg and /dev/null differ
diff --git a/foto/foto_barang/sdi_cutting_mat.jpg b/foto/foto_barang/sdi_cutting_mat.jpg
deleted file mode 100644
index 49af53d..0000000
Binary files a/foto/foto_barang/sdi_cutting_mat.jpg and /dev/null differ
diff --git a/foto/foto_barang/seblak.jpg b/foto/foto_barang/seblak.jpg
deleted file mode 100644
index de8d27b..0000000
Binary files a/foto/foto_barang/seblak.jpg and /dev/null differ
diff --git a/foto/foto_barang/selotip_besar_putih.jpg b/foto/foto_barang/selotip_besar_putih.jpg
deleted file mode 100644
index 90ca6d0..0000000
Binary files a/foto/foto_barang/selotip_besar_putih.jpg and /dev/null differ
diff --git a/foto/foto_barang/selotip_coklat_besar.jpg b/foto/foto_barang/selotip_coklat_besar.jpg
deleted file mode 100644
index 70db37c..0000000
Binary files a/foto/foto_barang/selotip_coklat_besar.jpg and /dev/null differ
diff --git a/foto/foto_barang/selotip_kecil.jpg b/foto/foto_barang/selotip_kecil.jpg
deleted file mode 100644
index 67bb176..0000000
Binary files a/foto/foto_barang/selotip_kecil.jpg and /dev/null differ
diff --git a/foto/foto_barang/selotip_sedang.jpg b/foto/foto_barang/selotip_sedang.jpg
deleted file mode 100644
index cfe6e87..0000000
Binary files a/foto/foto_barang/selotip_sedang.jpg and /dev/null differ
diff --git a/foto/foto_barang/sembako1-removebg-preview.png b/foto/foto_barang/sembako1-removebg-preview.png
deleted file mode 100644
index 139563d..0000000
Binary files a/foto/foto_barang/sembako1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/senter_aoki.jpg b/foto/foto_barang/senter_aoki.jpg
deleted file mode 100644
index a6f23c9..0000000
Binary files a/foto/foto_barang/senter_aoki.jpg and /dev/null differ
diff --git a/foto/foto_barang/shutterstock_1899669517_APIWICH_PUDSUMRAN_50ce78d97a.jpg b/foto/foto_barang/shutterstock_1899669517_APIWICH_PUDSUMRAN_50ce78d97a.jpg
deleted file mode 100644
index e36af5b..0000000
Binary files a/foto/foto_barang/shutterstock_1899669517_APIWICH_PUDSUMRAN_50ce78d97a.jpg and /dev/null differ
diff --git a/foto/foto_barang/sidu_kertas_hvs_a4.jpg b/foto/foto_barang/sidu_kertas_hvs_a4.jpg
deleted file mode 100644
index 1b40094..0000000
Binary files a/foto/foto_barang/sidu_kertas_hvs_a4.jpg and /dev/null differ
diff --git a/foto/foto_barang/siip_snack_bite_50g.jpg b/foto/foto_barang/siip_snack_bite_50g.jpg
deleted file mode 100644
index d1f1e1e..0000000
Binary files a/foto/foto_barang/siip_snack_bite_50g.jpg and /dev/null differ
diff --git a/foto/foto_barang/silverqueen_dark_coklat_65g.png b/foto/foto_barang/silverqueen_dark_coklat_65g.png
deleted file mode 100644
index 3df6dcc..0000000
Binary files a/foto/foto_barang/silverqueen_dark_coklat_65g.png and /dev/null differ
diff --git a/foto/foto_barang/slai_olai_stroberi_240g.jpg b/foto/foto_barang/slai_olai_stroberi_240g.jpg
deleted file mode 100644
index b4fad1e..0000000
Binary files a/foto/foto_barang/slai_olai_stroberi_240g.jpg and /dev/null differ
diff --git a/foto/foto_barang/solasi_hitam.jpg b/foto/foto_barang/solasi_hitam.jpg
deleted file mode 100644
index ff4a549..0000000
Binary files a/foto/foto_barang/solasi_hitam.jpg and /dev/null differ
diff --git a/foto/foto_barang/sosis_kenzler_original.jpg b/foto/foto_barang/sosis_kenzler_original.jpg
deleted file mode 100644
index 6004cce..0000000
Binary files a/foto/foto_barang/sosis_kenzler_original.jpg and /dev/null differ
diff --git a/foto/foto_barang/sponge_crunch_coklat_110g.jpg b/foto/foto_barang/sponge_crunch_coklat_110g.jpg
deleted file mode 100644
index f1c5edf..0000000
Binary files a/foto/foto_barang/sponge_crunch_coklat_110g.jpg and /dev/null differ
diff --git a/foto/foto_barang/sprite.jpg b/foto/foto_barang/sprite.jpg
deleted file mode 100644
index fcf2501..0000000
Binary files a/foto/foto_barang/sprite.jpg and /dev/null differ
diff --git a/foto/foto_barang/sprite_1_liter.jpg b/foto/foto_barang/sprite_1_liter.jpg
deleted file mode 100644
index 2cb1d6a..0000000
Binary files a/foto/foto_barang/sprite_1_liter.jpg and /dev/null differ
diff --git a/foto/foto_barang/stabilo.jpg b/foto/foto_barang/stabilo.jpg
deleted file mode 100644
index a0af89b..0000000
Binary files a/foto/foto_barang/stabilo.jpg and /dev/null differ
diff --git a/foto/foto_barang/stamp_pad.jpg b/foto/foto_barang/stamp_pad.jpg
deleted file mode 100644
index fa36479..0000000
Binary files a/foto/foto_barang/stamp_pad.jpg and /dev/null differ
diff --git a/foto/foto_barang/stella_pengharum_ruangan.jpg b/foto/foto_barang/stella_pengharum_ruangan.jpg
deleted file mode 100644
index a846416..0000000
Binary files a/foto/foto_barang/stella_pengharum_ruangan.jpg and /dev/null differ
diff --git a/foto/foto_barang/stepler.jpg b/foto/foto_barang/stepler.jpg
deleted file mode 100644
index 356a239..0000000
Binary files a/foto/foto_barang/stepler.jpg and /dev/null differ
diff --git a/foto/foto_barang/sticky_notes.jpg b/foto/foto_barang/sticky_notes.jpg
deleted file mode 100644
index a226037..0000000
Binary files a/foto/foto_barang/sticky_notes.jpg and /dev/null differ
diff --git a/foto/foto_barang/stopmap.jpg b/foto/foto_barang/stopmap.jpg
deleted file mode 100644
index 15e8f9c..0000000
Binary files a/foto/foto_barang/stopmap.jpg and /dev/null differ
diff --git a/foto/foto_barang/sukro_original_42g.jpg b/foto/foto_barang/sukro_original_42g.jpg
deleted file mode 100644
index 381dedd..0000000
Binary files a/foto/foto_barang/sukro_original_42g.jpg and /dev/null differ
diff --git a/foto/foto_barang/sunlight_jeruk_nipis_780ml.jpg b/foto/foto_barang/sunlight_jeruk_nipis_780ml.jpg
deleted file mode 100644
index 4377d30..0000000
Binary files a/foto/foto_barang/sunlight_jeruk_nipis_780ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/superstar.jpg b/foto/foto_barang/superstar.jpg
deleted file mode 100644
index a22c338..0000000
Binary files a/foto/foto_barang/superstar.jpg and /dev/null differ
diff --git a/foto/foto_barang/susu_bear_brand.jpg b/foto/foto_barang/susu_bear_brand.jpg
deleted file mode 100644
index f2bec1b..0000000
Binary files a/foto/foto_barang/susu_bear_brand.jpg and /dev/null differ
diff --git a/foto/foto_barang/t_5e24197b16422_700.jpg b/foto/foto_barang/t_5e24197b16422_700.jpg
deleted file mode 100644
index 678e0d5..0000000
Binary files a/foto/foto_barang/t_5e24197b16422_700.jpg and /dev/null differ
diff --git a/foto/foto_barang/tango.png b/foto/foto_barang/tango.png
deleted file mode 100644
index 0acb4ea..0000000
Binary files a/foto/foto_barang/tango.png and /dev/null differ
diff --git a/foto/foto_barang/taro.jpg b/foto/foto_barang/taro.jpg
deleted file mode 100644
index ddbe17a..0000000
Binary files a/foto/foto_barang/taro.jpg and /dev/null differ
diff --git a/foto/foto_barang/taro_net_65g.jpg b/foto/foto_barang/taro_net_65g.jpg
deleted file mode 100644
index c2d8d67..0000000
Binary files a/foto/foto_barang/taro_net_65g.jpg and /dev/null differ
diff --git a/foto/foto_barang/teh_botol_sosro_kotak_200ml.jpg b/foto/foto_barang/teh_botol_sosro_kotak_200ml.jpg
deleted file mode 100644
index dcbb15a..0000000
Binary files a/foto/foto_barang/teh_botol_sosro_kotak_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/teh_gelas_350ml.jpg b/foto/foto_barang/teh_gelas_350ml.jpg
deleted file mode 100644
index fe4030b..0000000
Binary files a/foto/foto_barang/teh_gelas_350ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/teh_kotak_500ml.jpg b/foto/foto_barang/teh_kotak_500ml.jpg
deleted file mode 100644
index 487a708..0000000
Binary files a/foto/foto_barang/teh_kotak_500ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/teh_pucuk.jpg b/foto/foto_barang/teh_pucuk.jpg
deleted file mode 100644
index 75d8a6f..0000000
Binary files a/foto/foto_barang/teh_pucuk.jpg and /dev/null differ
diff --git a/foto/foto_barang/teler_durian_leci.jpg b/foto/foto_barang/teler_durian_leci.jpg
deleted file mode 100644
index 9a88a7f..0000000
Binary files a/foto/foto_barang/teler_durian_leci.jpg and /dev/null differ
diff --git a/foto/foto_barang/tempat-alat-tulis.jpg b/foto/foto_barang/tempat-alat-tulis.jpg
deleted file mode 100644
index 47719f5..0000000
Binary files a/foto/foto_barang/tempat-alat-tulis.jpg and /dev/null differ
diff --git a/foto/foto_barang/tempat_kartu_nama_gantung.jpg b/foto/foto_barang/tempat_kartu_nama_gantung.jpg
deleted file mode 100644
index 8534c94..0000000
Binary files a/foto/foto_barang/tempat_kartu_nama_gantung.jpg and /dev/null differ
diff --git a/foto/foto_barang/thermometer_infrared.jpg b/foto/foto_barang/thermometer_infrared.jpg
deleted file mode 100644
index 73aa146..0000000
Binary files a/foto/foto_barang/thermometer_infrared.jpg and /dev/null differ
diff --git a/foto/foto_barang/tic_tac_original_90g.jpg b/foto/foto_barang/tic_tac_original_90g.jpg
deleted file mode 100644
index 02ac81d..0000000
Binary files a/foto/foto_barang/tic_tac_original_90g.jpg and /dev/null differ
diff --git a/foto/foto_barang/tick_tick_premium.jpg b/foto/foto_barang/tick_tick_premium.jpg
deleted file mode 100644
index 21840ab..0000000
Binary files a/foto/foto_barang/tick_tick_premium.jpg and /dev/null differ
diff --git a/foto/foto_barang/tinta_printer_canon.jpg b/foto/foto_barang/tinta_printer_canon.jpg
deleted file mode 100644
index 8876246..0000000
Binary files a/foto/foto_barang/tinta_printer_canon.jpg and /dev/null differ
diff --git a/foto/foto_barang/tinta_printer_epson.jpg b/foto/foto_barang/tinta_printer_epson.jpg
deleted file mode 100644
index 24c3e16..0000000
Binary files a/foto/foto_barang/tinta_printer_epson.jpg and /dev/null differ
diff --git a/foto/foto_barang/tipe-ex.jpg b/foto/foto_barang/tipe-ex.jpg
deleted file mode 100644
index c37d517..0000000
Binary files a/foto/foto_barang/tipe-ex.jpg and /dev/null differ
diff --git a/foto/foto_barang/tisu_gulung_green_soft.jpg b/foto/foto_barang/tisu_gulung_green_soft.jpg
deleted file mode 100644
index 6631a5a..0000000
Binary files a/foto/foto_barang/tisu_gulung_green_soft.jpg and /dev/null differ
diff --git a/foto/foto_barang/top.jpg b/foto/foto_barang/top.jpg
deleted file mode 100644
index 12434b2..0000000
Binary files a/foto/foto_barang/top.jpg and /dev/null differ
diff --git a/foto/foto_barang/total_detergent_total_almeera_sport_-_active_powder_detergent_-250_g-_full02_6fpb6sz.jpg b/foto/foto_barang/total_detergent_total_almeera_sport_-_active_powder_detergent_-250_g-_full02_6fpb6sz.jpg
deleted file mode 100644
index 221ab62..0000000
Binary files a/foto/foto_barang/total_detergent_total_almeera_sport_-_active_powder_detergent_-250_g-_full02_6fpb6sz.jpg and /dev/null differ
diff --git a/foto/foto_barang/total_total-white-magic-detergent--800-ml-2-pcs-_full01.jpg b/foto/foto_barang/total_total-white-magic-detergent--800-ml-2-pcs-_full01.jpg
deleted file mode 100644
index 22753e8..0000000
Binary files a/foto/foto_barang/total_total-white-magic-detergent--800-ml-2-pcs-_full01.jpg and /dev/null differ
diff --git a/foto/foto_barang/total_total_bunga_plus_360_g_full02_zezs82p.jpg b/foto/foto_barang/total_total_bunga_plus_360_g_full02_zezs82p.jpg
deleted file mode 100644
index 1633211..0000000
Binary files a/foto/foto_barang/total_total_bunga_plus_360_g_full02_zezs82p.jpg and /dev/null differ
diff --git a/foto/foto_barang/twistko_premium_snack_70g.jpg b/foto/foto_barang/twistko_premium_snack_70g.jpg
deleted file mode 100644
index b26d3f8..0000000
Binary files a/foto/foto_barang/twistko_premium_snack_70g.jpg and /dev/null differ
diff --git a/foto/foto_barang/uhu_glue_stick.jpg b/foto/foto_barang/uhu_glue_stick.jpg
deleted file mode 100644
index 5f82ada..0000000
Binary files a/foto/foto_barang/uhu_glue_stick.jpg and /dev/null differ
diff --git a/foto/foto_barang/ultramilk_strawberry_200ml.jpg b/foto/foto_barang/ultramilk_strawberry_200ml.jpg
deleted file mode 100644
index 622ee64..0000000
Binary files a/foto/foto_barang/ultramilk_strawberry_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/ultramilk_taro_200ml.jpg b/foto/foto_barang/ultramilk_taro_200ml.jpg
deleted file mode 100644
index e0496d8..0000000
Binary files a/foto/foto_barang/ultramilk_taro_200ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/untitled_1633438707.jpg b/foto/foto_barang/untitled_1633438707.jpg
deleted file mode 100644
index 622d210..0000000
Binary files a/foto/foto_barang/untitled_1633438707.jpg and /dev/null differ
diff --git a/foto/foto_barang/vacuum-removebg-preview.png b/foto/foto_barang/vacuum-removebg-preview.png
deleted file mode 100644
index b8fb455..0000000
Binary files a/foto/foto_barang/vacuum-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_barang/vaseline_healthy_white_fresh_f_1616675925_240245e1.jpg b/foto/foto_barang/vaseline_healthy_white_fresh_f_1616675925_240245e1.jpg
deleted file mode 100644
index 86f81d3..0000000
Binary files a/foto/foto_barang/vaseline_healthy_white_fresh_f_1616675925_240245e1.jpg and /dev/null differ
diff --git a/foto/foto_barang/vitacimin.jpg b/foto/foto_barang/vitacimin.jpg
deleted file mode 100644
index e701595..0000000
Binary files a/foto/foto_barang/vitacimin.jpg and /dev/null differ
diff --git a/foto/foto_barang/vitalis_parfume_bizarre_120ml.jpg b/foto/foto_barang/vitalis_parfume_bizarre_120ml.jpg
deleted file mode 100644
index 9128784..0000000
Binary files a/foto/foto_barang/vitalis_parfume_bizarre_120ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/vitalis_parfume_blossom_pink_120ml.jpg b/foto/foto_barang/vitalis_parfume_blossom_pink_120ml.jpg
deleted file mode 100644
index 49f0b65..0000000
Binary files a/foto/foto_barang/vitalis_parfume_blossom_pink_120ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/vivobook_14_asus.jpg b/foto/foto_barang/vivobook_14_asus.jpg
deleted file mode 100644
index b21b52c..0000000
Binary files a/foto/foto_barang/vivobook_14_asus.jpg and /dev/null differ
diff --git a/foto/foto_barang/vixal_pemb_pors_hijau_800ml.jpg b/foto/foto_barang/vixal_pemb_pors_hijau_800ml.jpg
deleted file mode 100644
index bf5e85c..0000000
Binary files a/foto/foto_barang/vixal_pemb_pors_hijau_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wafer_tango.jpg b/foto/foto_barang/wafer_tango.jpg
deleted file mode 100644
index 5b9f540..0000000
Binary files a/foto/foto_barang/wafer_tango.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_02_golden_beige_12_gr.jpg b/foto/foto_barang/wardah_02_golden_beige_12_gr.jpg
deleted file mode 100644
index 09ddf64..0000000
Binary files a/foto/foto_barang/wardah_02_golden_beige_12_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_04_natural_12_gr.jpg b/foto/foto_barang/wardah_04_natural_12_gr.jpg
deleted file mode 100644
index 9d5fe96..0000000
Binary files a/foto/foto_barang/wardah_04_natural_12_gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_brightening_+_oil_control_100ml.jpg b/foto/foto_barang/wardah_brightening_+_oil_control_100ml.jpg
deleted file mode 100644
index a6a0281..0000000
Binary files a/foto/foto_barang/wardah_brightening_+_oil_control_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_c_defence_face_mist_55ml.jpg b/foto/foto_barang/wardah_c_defence_face_mist_55ml.jpg
deleted file mode 100644
index 2f45168..0000000
Binary files a/foto/foto_barang/wardah_c_defence_face_mist_55ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_c_defence_fc_60ml.jpg b/foto/foto_barang/wardah_c_defence_fc_60ml.jpg
deleted file mode 100644
index 44a4525..0000000
Binary files a/foto/foto_barang/wardah_c_defence_fc_60ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_hand_gel_aloe_vera_100ml.jpg b/foto/foto_barang/wardah_hand_gel_aloe_vera_100ml.jpg
deleted file mode 100644
index cdd2da7..0000000
Binary files a/foto/foto_barang/wardah_hand_gel_aloe_vera_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_hand_gel_aloe_vera_50ml.jpg b/foto/foto_barang/wardah_hand_gel_aloe_vera_50ml.jpg
deleted file mode 100644
index 882e89f..0000000
Binary files a/foto/foto_barang/wardah_hand_gel_aloe_vera_50ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_light_night_cream_30gr.jpg b/foto/foto_barang/wardah_light_night_cream_30gr.jpg
deleted file mode 100644
index 862f345..0000000
Binary files a/foto/foto_barang/wardah_light_night_cream_30gr.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_light_powder_foundation_02.jpg b/foto/foto_barang/wardah_light_powder_foundation_02.jpg
deleted file mode 100644
index 51b0312..0000000
Binary files a/foto/foto_barang/wardah_light_powder_foundation_02.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_nd_aloe_vera_100ml.jpg b/foto/foto_barang/wardah_nd_aloe_vera_100ml.jpg
deleted file mode 100644
index 64a05af..0000000
Binary files a/foto/foto_barang/wardah_nd_aloe_vera_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_rose_gel_serum_30ml.jpg b/foto/foto_barang/wardah_rose_gel_serum_30ml.jpg
deleted file mode 100644
index ea434bb..0000000
Binary files a/foto/foto_barang/wardah_rose_gel_serum_30ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_wardah-lightening-night-cream-advanced-niacinamide-tube-20ml_full01.jpg b/foto/foto_barang/wardah_wardah-lightening-night-cream-advanced-niacinamide-tube-20ml_full01.jpg
deleted file mode 100644
index 5016893..0000000
Binary files a/foto/foto_barang/wardah_wardah-lightening-night-cream-advanced-niacinamide-tube-20ml_full01.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_wardah-ref-lightening-twc-light-feel-powder---04-natural_full02.jpg b/foto/foto_barang/wardah_wardah-ref-lightening-twc-light-feel-powder---04-natural_full02.jpg
deleted file mode 100644
index 02469a3..0000000
Binary files a/foto/foto_barang/wardah_wardah-ref-lightening-twc-light-feel-powder---04-natural_full02.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_white_secret_100ml.jpg b/foto/foto_barang/wardah_white_secret_100ml.jpg
deleted file mode 100644
index 1d4d244..0000000
Binary files a/foto/foto_barang/wardah_white_secret_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_ws_exfoliating_lotion_150ml.jpg b/foto/foto_barang/wardah_ws_exfoliating_lotion_150ml.jpg
deleted file mode 100644
index 7a0628a..0000000
Binary files a/foto/foto_barang/wardah_ws_exfoliating_lotion_150ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wardah_ws_pure_treatment_essence_100ml.jpg b/foto/foto_barang/wardah_ws_pure_treatment_essence_100ml.jpg
deleted file mode 100644
index 830890c..0000000
Binary files a/foto/foto_barang/wardah_ws_pure_treatment_essence_100ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wipes_kodomo_blue_50s.jpg b/foto/foto_barang/wipes_kodomo_blue_50s.jpg
deleted file mode 100644
index 070dfd4..0000000
Binary files a/foto/foto_barang/wipes_kodomo_blue_50s.jpg and /dev/null differ
diff --git a/foto/foto_barang/wipol_botol_450ml.jpg b/foto/foto_barang/wipol_botol_450ml.jpg
deleted file mode 100644
index eb70922..0000000
Binary files a/foto/foto_barang/wipol_botol_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wipol_classic_pine_ref_800ml.jpg b/foto/foto_barang/wipol_classic_pine_ref_800ml.jpg
deleted file mode 100644
index 8805949..0000000
Binary files a/foto/foto_barang/wipol_classic_pine_ref_800ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wiz_24_disinfectant_clean_scent_400ml.jpg b/foto/foto_barang/wiz_24_disinfectant_clean_scent_400ml.jpg
deleted file mode 100644
index 33807eb..0000000
Binary files a/foto/foto_barang/wiz_24_disinfectant_clean_scent_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wiz_24_disinfectant_fresh_scent_400ml.jpg b/foto/foto_barang/wiz_24_disinfectant_fresh_scent_400ml.jpg
deleted file mode 100644
index 68c023d..0000000
Binary files a/foto/foto_barang/wiz_24_disinfectant_fresh_scent_400ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wiz_24_disinfectant_sc_clean_450ml.jpg b/foto/foto_barang/wiz_24_disinfectant_sc_clean_450ml.jpg
deleted file mode 100644
index d92fd32..0000000
Binary files a/foto/foto_barang/wiz_24_disinfectant_sc_clean_450ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/wpc_pembersih_toilet_250ml.jpg b/foto/foto_barang/wpc_pembersih_toilet_250ml.jpg
deleted file mode 100644
index f056e6f..0000000
Binary files a/foto/foto_barang/wpc_pembersih_toilet_250ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/yakult.jpg b/foto/foto_barang/yakult.jpg
deleted file mode 100644
index f733da5..0000000
Binary files a/foto/foto_barang/yakult.jpg and /dev/null differ
diff --git a/foto/foto_barang/you_c_1000.jpg b/foto/foto_barang/you_c_1000.jpg
deleted file mode 100644
index 5a7ff0c..0000000
Binary files a/foto/foto_barang/you_c_1000.jpg and /dev/null differ
diff --git a/foto/foto_barang/zinc_shp_act_fresh_lemon_mint_170ml.jpg b/foto/foto_barang/zinc_shp_act_fresh_lemon_mint_170ml.jpg
deleted file mode 100644
index cce995d..0000000
Binary files a/foto/foto_barang/zinc_shp_act_fresh_lemon_mint_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/zinc_shp_black_shine_170ml.jpg b/foto/foto_barang/zinc_shp_black_shine_170ml.jpg
deleted file mode 100644
index f58d28e..0000000
Binary files a/foto/foto_barang/zinc_shp_black_shine_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/zinc_shp_refresh_cool_170ml.jpg b/foto/foto_barang/zinc_shp_refresh_cool_170ml.jpg
deleted file mode 100644
index 84824a2..0000000
Binary files a/foto/foto_barang/zinc_shp_refresh_cool_170ml.jpg and /dev/null differ
diff --git a/foto/foto_barang/zinc_shp_refresh_cool_70ml.jpg b/foto/foto_barang/zinc_shp_refresh_cool_70ml.jpg
deleted file mode 100644
index afbd806..0000000
Binary files a/foto/foto_barang/zinc_shp_refresh_cool_70ml.jpg and /dev/null differ
diff --git a/foto/foto_kategori/20221006_115954_0001.png b/foto/foto_kategori/20221006_115954_0001.png
deleted file mode 100644
index 410b7a8..0000000
Binary files a/foto/foto_kategori/20221006_115954_0001.png and /dev/null differ
diff --git a/foto/foto_kategori/20221006_115954_0005.png b/foto/foto_kategori/20221006_115954_0005.png
deleted file mode 100644
index 330c7d7..0000000
Binary files a/foto/foto_kategori/20221006_115954_0005.png and /dev/null differ
diff --git a/foto/foto_kategori/20221006_115954_0008.png b/foto/foto_kategori/20221006_115954_0008.png
deleted file mode 100644
index c69bb54..0000000
Binary files a/foto/foto_kategori/20221006_115954_0008.png and /dev/null differ
diff --git a/foto/foto_kategori/20221006_115954_00081.png b/foto/foto_kategori/20221006_115954_00081.png
deleted file mode 100644
index c69bb54..0000000
Binary files a/foto/foto_kategori/20221006_115954_00081.png and /dev/null differ
diff --git a/foto/foto_kategori/20221006_115954_0009.png b/foto/foto_kategori/20221006_115954_0009.png
deleted file mode 100644
index 0f359c5..0000000
Binary files a/foto/foto_kategori/20221006_115954_0009.png and /dev/null differ
diff --git a/foto/foto_kategori/Alkes.png b/foto/foto_kategori/Alkes.png
deleted file mode 100644
index 9ce67ff..0000000
Binary files a/foto/foto_kategori/Alkes.png and /dev/null differ
diff --git a/foto/foto_kategori/Diabetes.png b/foto/foto_kategori/Diabetes.png
deleted file mode 100644
index 74fa73d..0000000
Binary files a/foto/foto_kategori/Diabetes.png and /dev/null differ
diff --git a/foto/foto_kategori/Jantung.png b/foto/foto_kategori/Jantung.png
deleted file mode 100644
index c5a65b3..0000000
Binary files a/foto/foto_kategori/Jantung.png and /dev/null differ
diff --git a/foto/foto_kategori/Nyeri.png b/foto/foto_kategori/Nyeri.png
deleted file mode 100644
index 410b7a8..0000000
Binary files a/foto/foto_kategori/Nyeri.png and /dev/null differ
diff --git a/foto/foto_kategori/Paru.png b/foto/foto_kategori/Paru.png
deleted file mode 100644
index 4e51146..0000000
Binary files a/foto/foto_kategori/Paru.png and /dev/null differ
diff --git a/foto/foto_kategori/Pill.png b/foto/foto_kategori/Pill.png
deleted file mode 100644
index 4b0dd36..0000000
Binary files a/foto/foto_kategori/Pill.png and /dev/null differ
diff --git a/foto/foto_kategori/Screenshot_(509).png b/foto/foto_kategori/Screenshot_(509).png
deleted file mode 100644
index a9f265c..0000000
Binary files a/foto/foto_kategori/Screenshot_(509).png and /dev/null differ
diff --git a/foto/foto_kategori/Screenshot_(510).png b/foto/foto_kategori/Screenshot_(510).png
deleted file mode 100644
index 0620e53..0000000
Binary files a/foto/foto_kategori/Screenshot_(510).png and /dev/null differ
diff --git a/foto/foto_kategori/Voucher_Saya.png b/foto/foto_kategori/Voucher_Saya.png
deleted file mode 100644
index ce179ee..0000000
Binary files a/foto/foto_kategori/Voucher_Saya.png and /dev/null differ
diff --git a/foto/foto_kategori/alatbersih-removebg-preview.png b/foto/foto_kategori/alatbersih-removebg-preview.png
deleted file mode 100644
index 3ef4957..0000000
Binary files a/foto/foto_kategori/alatbersih-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_kategori/asam_urat.png b/foto/foto_kategori/asam_urat.png
deleted file mode 100644
index 31297e8..0000000
Binary files a/foto/foto_kategori/asam_urat.png and /dev/null differ
diff --git a/foto/foto_kategori/drug.png b/foto/foto_kategori/drug.png
deleted file mode 100644
index 47e31b4..0000000
Binary files a/foto/foto_kategori/drug.png and /dev/null differ
diff --git a/foto/foto_kategori/elektronik2-removebg-preview.png b/foto/foto_kategori/elektronik2-removebg-preview.png
deleted file mode 100644
index 04a519a..0000000
Binary files a/foto/foto_kategori/elektronik2-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_kategori/eletronik1-removebg-preview.png b/foto/foto_kategori/eletronik1-removebg-preview.png
deleted file mode 100644
index 4da6b70..0000000
Binary files a/foto/foto_kategori/eletronik1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_kategori/fococlipping-20220113-141949-removebg-preview.png b/foto/foto_kategori/fococlipping-20220113-141949-removebg-preview.png
deleted file mode 100644
index 264fff2..0000000
Binary files a/foto/foto_kategori/fococlipping-20220113-141949-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_kategori/icon.png b/foto/foto_kategori/icon.png
deleted file mode 100644
index d940578..0000000
Binary files a/foto/foto_kategori/icon.png and /dev/null differ
diff --git a/foto/foto_kategori/icon_minuman_baru.png b/foto/foto_kategori/icon_minuman_baru.png
deleted file mode 100644
index fb5d709..0000000
Binary files a/foto/foto_kategori/icon_minuman_baru.png and /dev/null differ
diff --git a/foto/foto_kategori/medicine.png b/foto/foto_kategori/medicine.png
deleted file mode 100644
index 544f104..0000000
Binary files a/foto/foto_kategori/medicine.png and /dev/null differ
diff --git a/foto/foto_kategori/medicine1.png b/foto/foto_kategori/medicine1.png
deleted file mode 100644
index 544f104..0000000
Binary files a/foto/foto_kategori/medicine1.png and /dev/null differ
diff --git a/foto/foto_kategori/medicine2.png b/foto/foto_kategori/medicine2.png
deleted file mode 100644
index 544f104..0000000
Binary files a/foto/foto_kategori/medicine2.png and /dev/null differ
diff --git a/foto/foto_kategori/pharmacy.png b/foto/foto_kategori/pharmacy.png
deleted file mode 100644
index 4ba00d4..0000000
Binary files a/foto/foto_kategori/pharmacy.png and /dev/null differ
diff --git a/foto/foto_kategori/pharmacy1.png b/foto/foto_kategori/pharmacy1.png
deleted file mode 100644
index 4ba00d4..0000000
Binary files a/foto/foto_kategori/pharmacy1.png and /dev/null differ
diff --git a/foto/foto_kategori/sembako1-removebg-preview.png b/foto/foto_kategori/sembako1-removebg-preview.png
deleted file mode 100644
index 139563d..0000000
Binary files a/foto/foto_kategori/sembako1-removebg-preview.png and /dev/null differ
diff --git a/foto/foto_kategori/syringe.png b/foto/foto_kategori/syringe.png
deleted file mode 100644
index 2eebb2a..0000000
Binary files a/foto/foto_kategori/syringe.png and /dev/null differ
diff --git a/foto/foto_kategori/syringe1.png b/foto/foto_kategori/syringe1.png
deleted file mode 100644
index 2eebb2a..0000000
Binary files a/foto/foto_kategori/syringe1.png and /dev/null differ
diff --git a/foto/foto_ktp/(1).jpg b/foto/foto_ktp/(1).jpg
deleted file mode 100644
index f46bf43..0000000
Binary files a/foto/foto_ktp/(1).jpg and /dev/null differ
diff --git a/foto/foto_ktp/2-M.png b/foto/foto_ktp/2-M.png
deleted file mode 100644
index 6e67de1..0000000
Binary files a/foto/foto_ktp/2-M.png and /dev/null differ
diff --git a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n.jpg b/foto/foto_ktp/316344382_858903468635876_380649198567569465_n.jpg
deleted file mode 100644
index cc55c00..0000000
Binary files a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n.jpg and /dev/null differ
diff --git a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n1.jpg b/foto/foto_ktp/316344382_858903468635876_380649198567569465_n1.jpg
deleted file mode 100644
index cc55c00..0000000
Binary files a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n1.jpg and /dev/null differ
diff --git a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n2.jpg b/foto/foto_ktp/316344382_858903468635876_380649198567569465_n2.jpg
deleted file mode 100644
index cc55c00..0000000
Binary files a/foto/foto_ktp/316344382_858903468635876_380649198567569465_n2.jpg and /dev/null differ
diff --git a/foto/foto_ktp/5cmpersecond.jpeg b/foto/foto_ktp/5cmpersecond.jpeg
deleted file mode 100644
index 5d4a404..0000000
Binary files a/foto/foto_ktp/5cmpersecond.jpeg and /dev/null differ
diff --git a/foto/foto_ktp/AWC_2019.jpg b/foto/foto_ktp/AWC_2019.jpg
deleted file mode 100644
index 17c905b..0000000
Binary files a/foto/foto_ktp/AWC_2019.jpg and /dev/null differ
diff --git a/foto/foto_ktp/FOTO_KTP_KAIDI.jpeg b/foto/foto_ktp/FOTO_KTP_KAIDI.jpeg
deleted file mode 100644
index a9352a6..0000000
Binary files a/foto/foto_ktp/FOTO_KTP_KAIDI.jpeg and /dev/null differ
diff --git a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_41.png b/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_41.png
deleted file mode 100644
index 83f4ec8..0000000
Binary files a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_41.png and /dev/null differ
diff --git a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_411.png b/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_411.png
deleted file mode 100644
index 83f4ec8..0000000
Binary files a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_411.png and /dev/null differ
diff --git a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_412.png b/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_412.png
deleted file mode 100644
index 83f4ec8..0000000
Binary files a/foto/foto_ktp/Screen_Shot_2022-03-11_at_09_10_412.png and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2).jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2).jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2).jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)1.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)1.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)1.jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)2.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)2.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)2.jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)3.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)3.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)3.jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)4.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)4.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)4.jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)5.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)5.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)5.jpg and /dev/null differ
diff --git a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)6.jpg b/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)6.jpg
deleted file mode 100644
index 2a058f9..0000000
Binary files a/foto/foto_ktp/WhatsApp_Image_2022-11-27_at_02_29_06_11zon_(2)6.jpg and /dev/null differ
diff --git a/foto/foto_pengajuan/1446138118_1626660595ktp.jpeg b/foto/foto_pengajuan/1446138118_1626660595ktp.jpeg
deleted file mode 100644
index 8e1b199..0000000
Binary files a/foto/foto_pengajuan/1446138118_1626660595ktp.jpeg and /dev/null differ
diff --git a/foto/foto_pengajuan/1816496418_1626659797ktp.jpeg b/foto/foto_pengajuan/1816496418_1626659797ktp.jpeg
deleted file mode 100644
index f78601d..0000000
Binary files a/foto/foto_pengajuan/1816496418_1626659797ktp.jpeg and /dev/null differ
diff --git a/foto/foto_pengajuan/2141866916_1626659797kk.jpeg b/foto/foto_pengajuan/2141866916_1626659797kk.jpeg
deleted file mode 100644
index f78601d..0000000
Binary files a/foto/foto_pengajuan/2141866916_1626659797kk.jpeg and /dev/null differ
diff --git a/foto/foto_pengajuan/281432022_1626945070kk.jpeg b/foto/foto_pengajuan/281432022_1626945070kk.jpeg
deleted file mode 100644
index e69de29..0000000
diff --git a/foto/foto_pengajuan/300116509_1626945070ktp.jpeg b/foto/foto_pengajuan/300116509_1626945070ktp.jpeg
deleted file mode 100644
index e69de29..0000000
diff --git a/foto/foto_pengajuan/806847426_1626660595kk.jpeg b/foto/foto_pengajuan/806847426_1626660595kk.jpeg
deleted file mode 100644
index 7587f7d..0000000
Binary files a/foto/foto_pengajuan/806847426_1626660595kk.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/angsuran1.jpeg b/foto/masuk_mitra/angsuran1.jpeg
deleted file mode 100644
index 24ca2b2..0000000
Binary files a/foto/masuk_mitra/angsuran1.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/angsuran2.jpeg b/foto/masuk_mitra/angsuran2.jpeg
deleted file mode 100644
index a125e86..0000000
Binary files a/foto/masuk_mitra/angsuran2.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/angsuran3.jpeg b/foto/masuk_mitra/angsuran3.jpeg
deleted file mode 100644
index c35bca4..0000000
Binary files a/foto/masuk_mitra/angsuran3.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/angsuran4.jpeg b/foto/masuk_mitra/angsuran4.jpeg
deleted file mode 100644
index e03122d..0000000
Binary files a/foto/masuk_mitra/angsuran4.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/angsuran5.jpeg b/foto/masuk_mitra/angsuran5.jpeg
deleted file mode 100644
index a147755..0000000
Binary files a/foto/masuk_mitra/angsuran5.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/dashboard.png b/foto/masuk_mitra/dashboard.png
deleted file mode 100644
index 7c5072b..0000000
Binary files a/foto/masuk_mitra/dashboard.png and /dev/null differ
diff --git a/foto/masuk_mitra/login.PNG b/foto/masuk_mitra/login.PNG
deleted file mode 100644
index 6b33419..0000000
Binary files a/foto/masuk_mitra/login.PNG and /dev/null differ
diff --git a/foto/masuk_mitra/login2.PNG b/foto/masuk_mitra/login2.PNG
deleted file mode 100644
index 7a29316..0000000
Binary files a/foto/masuk_mitra/login2.PNG and /dev/null differ
diff --git a/foto/masuk_mitra/masuk_mitra1.jpeg b/foto/masuk_mitra/masuk_mitra1.jpeg
deleted file mode 100644
index 644b064..0000000
Binary files a/foto/masuk_mitra/masuk_mitra1.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/masuk_mitra2.jpeg b/foto/masuk_mitra/masuk_mitra2.jpeg
deleted file mode 100644
index b228bee..0000000
Binary files a/foto/masuk_mitra/masuk_mitra2.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/pinjaman1.jpeg b/foto/masuk_mitra/pinjaman1.jpeg
deleted file mode 100644
index 2b98c1e..0000000
Binary files a/foto/masuk_mitra/pinjaman1.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/pinjaman2.jpeg b/foto/masuk_mitra/pinjaman2.jpeg
deleted file mode 100644
index 39bf3c7..0000000
Binary files a/foto/masuk_mitra/pinjaman2.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/pinjaman3.jpeg b/foto/masuk_mitra/pinjaman3.jpeg
deleted file mode 100644
index d39161b..0000000
Binary files a/foto/masuk_mitra/pinjaman3.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/pinjaman4.jpeg b/foto/masuk_mitra/pinjaman4.jpeg
deleted file mode 100644
index a397deb..0000000
Binary files a/foto/masuk_mitra/pinjaman4.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang1.jpeg b/foto/masuk_mitra/tambah_barang1.jpeg
deleted file mode 100644
index 6f07908..0000000
Binary files a/foto/masuk_mitra/tambah_barang1.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang2.jpeg b/foto/masuk_mitra/tambah_barang2.jpeg
deleted file mode 100644
index aff869f..0000000
Binary files a/foto/masuk_mitra/tambah_barang2.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang3.jpeg b/foto/masuk_mitra/tambah_barang3.jpeg
deleted file mode 100644
index 8e6caa5..0000000
Binary files a/foto/masuk_mitra/tambah_barang3.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang4.jpeg b/foto/masuk_mitra/tambah_barang4.jpeg
deleted file mode 100644
index 2c46631..0000000
Binary files a/foto/masuk_mitra/tambah_barang4.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang5.jpeg b/foto/masuk_mitra/tambah_barang5.jpeg
deleted file mode 100644
index 9b59e4c..0000000
Binary files a/foto/masuk_mitra/tambah_barang5.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/tambah_barang6.jpeg b/foto/masuk_mitra/tambah_barang6.jpeg
deleted file mode 100644
index ebbce48..0000000
Binary files a/foto/masuk_mitra/tambah_barang6.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher1.jpeg b/foto/masuk_mitra/voucher1.jpeg
deleted file mode 100644
index fba825f..0000000
Binary files a/foto/masuk_mitra/voucher1.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher2.jpeg b/foto/masuk_mitra/voucher2.jpeg
deleted file mode 100644
index 35adabd..0000000
Binary files a/foto/masuk_mitra/voucher2.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher3.jpeg b/foto/masuk_mitra/voucher3.jpeg
deleted file mode 100644
index e420445..0000000
Binary files a/foto/masuk_mitra/voucher3.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher4.jpeg b/foto/masuk_mitra/voucher4.jpeg
deleted file mode 100644
index 59fb833..0000000
Binary files a/foto/masuk_mitra/voucher4.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher5.jpeg b/foto/masuk_mitra/voucher5.jpeg
deleted file mode 100644
index a668ad7..0000000
Binary files a/foto/masuk_mitra/voucher5.jpeg and /dev/null differ
diff --git a/foto/masuk_mitra/voucher6.jpeg b/foto/masuk_mitra/voucher6.jpeg
deleted file mode 100644
index 852b229..0000000
Binary files a/foto/masuk_mitra/voucher6.jpeg and /dev/null differ
diff --git a/isipiringku/lib/controller/getToken.dart b/isipiringku/lib/controller/getToken.dart
deleted file mode 100644
index b4940b5..0000000
--- a/isipiringku/lib/controller/getToken.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-import 'package:http/http.dart' as http;
-import 'dart:convert';
-
-String clientId = "PKL2023";
-String clientSecret = "PKLSERU";
-String tokenUrl =
- "https://isipiringku.esolusindo.com/api/Token/token"; // Ganti dengan URL token endpoint Anda
-
-String accessToken = "";
-
-Future
getToken() async {
- try {
- // Buat permintaan untuk mendapatkan token menggunakan client_credentials
- var response = await http.post(
- Uri.parse(tokenUrl),
- headers: {
- 'Content-Type': 'application/x-www-form-urlencoded',
- },
- body: {
- 'grant_type': 'client_credentials',
- 'client_id': clientId,
- 'client_secret': clientSecret,
- },
- );
-
- if (response.statusCode == 200) {
- Map tokenData = jsonDecode(response.body);
- accessToken = tokenData['access_token'];
- print('Token Akses: $accessToken');
- } else {
- // Handle error, misalnya, menampilkan pesan kesalahan
- print('Gagal mendapatkan token: ${response.statusCode}');
- }
- } catch (e) {
- // Handle exception, misalnya, menampilkan pesan kesalahan
- print('Gagal mendapatkan token: $e');
- }
-}
diff --git a/isipiringku/lib/data/auth_api.dart b/isipiringku/lib/data/auth_api.dart
deleted file mode 100644
index 8b13789..0000000
--- a/isipiringku/lib/data/auth_api.dart
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/isipiringku/lib/isipiringku.dart b/isipiringku/lib/isipiringku.dart
deleted file mode 100644
index 7019395..0000000
--- a/isipiringku/lib/isipiringku.dart
+++ /dev/null
@@ -1,16 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/splashscreen/splashscreen.dart';
-
-void main() {
- runApp(IsiPiringku());
-}
-
-class IsiPiringku extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: SplashScreen(),
- );
- }
-}
diff --git a/isipiringku/lib/main.dart b/isipiringku/lib/main.dart
deleted file mode 100644
index 7019395..0000000
--- a/isipiringku/lib/main.dart
+++ /dev/null
@@ -1,16 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/splashscreen/splashscreen.dart';
-
-void main() {
- runApp(IsiPiringku());
-}
-
-class IsiPiringku extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: SplashScreen(),
- );
- }
-}
diff --git a/isipiringku/lib/pages/home/add_event.dart b/isipiringku/lib/pages/home/add_event.dart
deleted file mode 100644
index 522eab9..0000000
--- a/isipiringku/lib/pages/home/add_event.dart
+++ /dev/null
@@ -1,43 +0,0 @@
-import 'package:flutter/material.dart';
-import 'event.dart';
-
-void showAddEventDialog(
- BuildContext context, List events, DateTime selectedDay) {
- showDialog(
- context: context,
- builder: (context) {
- return AlertDialog(
- title: Text('Add Event'),
- content: SingleChildScrollView(
- child: Column(
- mainAxisSize: MainAxisSize.min,
- children: [
- TextFormField(
- decoration: InputDecoration(labelText: 'Event Name'),
- onSaved: (value) {
- if (value != null && value.isNotEmpty) {
- events.add(Event(date: selectedDay, name: value));
- }
- },
- ),
- ],
- ),
- ),
- actions: [
- TextButton(
- onPressed: () {
- Navigator.of(context).pop();
- },
- child: Text('Cancel'),
- ),
- ElevatedButton(
- onPressed: () {
- Navigator.of(context).pop();
- },
- child: Text('Save'),
- ),
- ],
- );
- },
- );
-}
diff --git a/isipiringku/lib/pages/home/beranda/beranda_tab.dart b/isipiringku/lib/pages/home/beranda/beranda_tab.dart
deleted file mode 100644
index 96276be..0000000
--- a/isipiringku/lib/pages/home/beranda/beranda_tab.dart
+++ /dev/null
@@ -1,675 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/home/beranda/detail.dart';
-import 'package:isipiringku/pages/home/kalori/kalori_harian.dart';
-import 'package:isipiringku/pages/home/kalori/kalori_tab.dart';
-import 'package:isipiringku/pages/home/tambahdarah/kalender_tab.dart';
-import 'package:isipiringku/pages/login/login_page.dart';
-import 'package:shared_preferences/shared_preferences.dart';
-
-void main() {
- runApp(BerandaTab());
-}
-
-class BerandaTab extends StatefulWidget {
- @override
- State createState() => _BerandaTabState();
-}
-
-class _BerandaTabState extends State {
- late SharedPreferences logindata;
- String username = '';
-
- @override
- void initState() {
- super.initState();
- initial();
- }
-
- void initial() async {
- logindata = await SharedPreferences.getInstance();
- setState(() {
- username = logindata.getString('username') ?? '';
- });
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- toolbarHeight: 20,
- elevation: 0,
- backgroundColor: Colors.deepOrange,
- ),
- body: ListView(
- children: [
- Container(
- height: 170.0,
- width: double.infinity,
- decoration: BoxDecoration(
- color: Colors.deepOrange,
- ),
- child: Column(
- children: [
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Container(
- margin: EdgeInsets.only(left: 24),
- child: Text(
- 'Hi, $username',
- style: TextStyle(
- color: Colors.white,
- fontSize: 24,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- Container(
- margin: EdgeInsets.only(right: 24),
- child: Transform.scale(
- scale: 1.5,
- child: Icon(
- Icons.notifications,
- color: Colors.yellow,
- ),
- ),
- ),
- ],
- ),
- Padding(
- padding: const EdgeInsets.only(
- left: 15,
- right: 15,
- top: 25,
- ),
- child: Container(
- height: 100,
- width: 320,
- decoration: BoxDecoration(
- color: Colors.brown.withOpacity(0.75),
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: [
- Icon(
- Icons.transgender_rounded,
- size: 60.0,
- ),
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Umur',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- ),
- textAlign: TextAlign.center,
- ),
- SizedBox(
- height: 10.0,
- ),
- Text(
- '15 Tahun',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.center,
- ),
- ],
- ),
- VerticalDivider(
- color: Colors.white,
- thickness: 1.0,
- indent: 10.0,
- endIndent: 10.0,
- ),
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Tinggi\nBadan',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- ),
- textAlign: TextAlign.center,
- ),
- SizedBox(
- height: 10.0,
- ),
- Text(
- '165 cm',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.center,
- ),
- ],
- ),
- VerticalDivider(
- color: Colors.white,
- thickness: 1.0,
- indent: 10.0,
- endIndent: 10.0,
- ),
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Berat\nBadan',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- ),
- textAlign: TextAlign.center,
- ),
- SizedBox(
- height: 10.0,
- ),
- Text(
- '76 kg',
- style: TextStyle(
- color: Colors.white,
- fontSize: 14,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.center,
- ),
- ],
- ),
- ],
- ),
- ),
- ),
- ],
- ),
- ),
- SizedBox(
- height: 10,
- ),
- Container(
- height: 150,
- width: 300,
- decoration: BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- colors: [Colors.orange, Colors.white],
- ),
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: [
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Rata-rata \nKalori Makanan',
- style: TextStyle(
- color: Colors.black,
- fontSize: 14,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.center,
- ),
- Stack(
- alignment: Alignment.center,
- children: [
- Container(
- width: 130,
- height: 100,
- decoration: BoxDecoration(
- color: Colors.yellow,
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- Container(
- width: 100,
- height: 30,
- alignment: Alignment.topCenter,
- decoration: BoxDecoration(
- color: Colors.red,
- borderRadius: BorderRadius.circular(15.0),
- ),
- padding: EdgeInsets.all(
- 3.0), // Mengatur padding ke semua sisi sebesar 8.0
- child: Center(
- child: Text(
- 'Bulan Lalu',
- style: TextStyle(
- color: Colors.black,
- fontSize: 16,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- Positioned(
- child: Padding(
- padding: EdgeInsets.all(
- 30.0), // Atur padding sesuai kebutuhan Anda
- child: Text(
- '1130 Kkal',
- style: TextStyle(
- color: Colors.black,
- fontSize: 18,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- ),
- ],
- ),
- SizedBox(
- height: 10.0,
- ),
- ],
- ),
- VerticalDivider(
- color: Colors.white,
- thickness: 1.0,
- indent: 10.0,
- endIndent: 10.0,
- ),
- Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Rata-rata \nKalori Makanan',
- style: TextStyle(
- color: Colors.black,
- fontSize: 14,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.center,
- ),
- Container(
- width: 130,
- height: 100,
- decoration: BoxDecoration(
- color: Colors.yellow,
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.start,
- children: [
- Container(
- width: 100,
- height: 30,
- alignment: Alignment.topCenter,
- decoration: BoxDecoration(
- color: Colors.red,
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Center(
- child: Text(
- 'Bulan Ini',
- style: TextStyle(
- color: Colors.black,
- fontSize: 16,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- ),
- Positioned(
- child: Padding(
- padding: EdgeInsets.all(
- 10.0), // Atur padding sesuai kebutuhan Anda
- child: Text(
- '1500 Kkal',
- style: TextStyle(
- color: Colors.black,
- fontSize: 18,
- fontWeight: FontWeight.bold,
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- SizedBox(
- height: 10.0,
- ),
- ],
- ),
- ],
- ),
- ),
- SizedBox(
- height: 10,
- width: 16,
- ),
- Text(
- " Pengingat",
- style: TextStyle(
- color: Colors.red,
- fontSize: 15,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.left,
- ),
- SizedBox(
- height: 15,
- ),
- GestureDetector(
- onTap: () {
- // Arahkan ke class KaloriTab di sini
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) =>
- KaloriTab()), // Ganti dengan rute yang sesuai
- );
- },
- child: Container(
- height: 30,
- width: 80,
- decoration: BoxDecoration(
- color: Color.fromARGB(255, 253, 207, 207),
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Center(
- child: Text(
- 'Anda Belum Melakukan Pengisian Konsumsi Kegiatan Hari Ini!',
- style: TextStyle(
- color: Colors.red,
- fontSize: 12,
- ),
- textAlign: TextAlign.left,
- ),
- ),
- ),
- ),
- SizedBox(
- height: 15,
- ),
- GestureDetector(
- onTap: () {
- // Arahkan ke class KalenderTab di sini
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) =>
- KalenderTab()), // Ganti dengan rute yang sesuai
- );
- },
- child: Container(
- height: 30,
- width: 100,
- decoration: BoxDecoration(
- color: Colors.yellow,
- borderRadius: BorderRadius.circular(15.0),
- ),
- child: Center(
- child: Text(
- 'Anda Belum Melakukan Pengisian Tambah Darah',
- style: TextStyle(
- color: Colors.red,
- fontSize: 12,
- ),
- textAlign: TextAlign.left,
- ),
- ),
- ),
- ),
- ElevatedButton(
- onPressed: () {
- logindata.setBool('login', true);
- Navigator.pushReplacement(context,
- new MaterialPageRoute(builder: (context) => LoginPage()));
- },
- child: Text('Log Out'),
- ),
- SizedBox(height: 20),
- Text(
- " Informasi Gizi & Kesehatan",
- style: TextStyle(
- color: Colors.red,
- fontSize: 15,
- fontWeight: FontWeight.bold,
- ),
- textAlign: TextAlign.left,
- ),
- Column(
- children: [
- //arah ke detail kalori
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- //icon
- Container(
- height: 80,
- padding: EdgeInsets.all(12),
- decoration: BoxDecoration(
- // color: Colors.red,
- borderRadius: BorderRadius.circular(12),
- ),
- // child: Image.asset('assets/image/sayur.png'),
- ),
- SizedBox(
- width: 20,
- ),
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- 'Isi Piringku',
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 20,
- ),
- ),
- SizedBox(
- height: 12,
- ),
- Text(
- 'Makanan ini mengandung salmon',
- style: TextStyle(
- fontSize: 16,
- color: Colors.grey,
- ),
- ),
- ],
- ),
- InkWell(
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(builder: (context) => Detail()),
- );
- },
- child: Icon(Icons.arrow_forward_ios),
- )
- ],
- ),
-
- //transaction
- ],
- ),
- Column(
- children: [
- //arah ke detail kalori
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- //icon
- Container(
- height: 80,
- padding: EdgeInsets.all(12),
- decoration: BoxDecoration(
- // color: Colors.red,
- borderRadius: BorderRadius.circular(12),
- ),
- // child: Image.asset('assets/image/sayur.png'),
- ),
- SizedBox(
- width: 20,
- ),
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- 'Isi Piringku',
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 20,
- ),
- ),
- SizedBox(
- height: 12,
- ),
- Text(
- 'Makanan ini mengandung salmon',
- style: TextStyle(
- fontSize: 16,
- color: Colors.grey,
- ),
- ),
- ],
- ),
- InkWell(
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(builder: (context) => Detail()),
- );
- },
- child: Icon(Icons.arrow_forward_ios),
- )
- ],
- ),
-
- //transaction
- ],
- ),
- Column(
- children: [
- //arah ke detail kalori
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- //icon
- Container(
- height: 80,
- padding: EdgeInsets.all(12),
- decoration: BoxDecoration(
- // color: Colors.red,
- borderRadius: BorderRadius.circular(12),
- ),
- // child: Image.asset('assets/image/sayur.png'),
- ),
- SizedBox(
- width: 20,
- ),
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- 'Isi Piringku',
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 20,
- ),
- ),
- SizedBox(
- height: 12,
- ),
- Text(
- 'Makanan ini mengandung salmon',
- style: TextStyle(
- fontSize: 16,
- color: Colors.grey,
- ),
- ),
- ],
- ),
- InkWell(
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(builder: (context) => KaloriHarian()),
- );
- },
- child: Icon(Icons.arrow_forward_ios),
- )
- ],
- ),
-
- //transaction
- ],
- ),
- Column(
- children: [
- //arah ke detail kalori
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- //icon
- Container(
- height: 80,
- padding: EdgeInsets.all(12),
- decoration: BoxDecoration(
- // color: Colors.red,
- borderRadius: BorderRadius.circular(12),
- ),
- // child: Image.asset('assets/image/sayur.png'),
- ),
- SizedBox(
- width: 20,
- ),
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- 'Isi Piringku',
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 20,
- ),
- ),
- SizedBox(
- height: 12,
- ),
- Text(
- 'Makanan ini mengandung salmon',
- style: TextStyle(
- fontSize: 16,
- color: Colors.grey,
- ),
- ),
- ],
- ),
- InkWell(
- onTap: () {
- Navigator.push(
- context,
- MaterialPageRoute(builder: (context) => KalenderTab()),
- );
- },
- child: Icon(Icons.arrow_forward_ios),
- ),
- ],
- ),
-
- //transaction
- ],
- ),
- ],
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/home/event.dart b/isipiringku/lib/pages/home/event.dart
deleted file mode 100644
index 24f5d1b..0000000
--- a/isipiringku/lib/pages/home/event.dart
+++ /dev/null
@@ -1,6 +0,0 @@
-class Event {
- final DateTime date;
- final String name;
-
- Event({required this.date, required this.name});
-}
diff --git a/isipiringku/lib/pages/home/home_page.dart b/isipiringku/lib/pages/home/home_page.dart
deleted file mode 100644
index 234a6ed..0000000
--- a/isipiringku/lib/pages/home/home_page.dart
+++ /dev/null
@@ -1,55 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/home/beranda/beranda_tab.dart';
-import 'package:isipiringku/pages/home/kalori/kalori_tab.dart';
-import 'package:isipiringku/pages/home/profile/profile_tab.dart';
-import 'package:isipiringku/pages/home/riwayat/riwayat_tab.dart';
-
-class HomePage extends StatefulWidget {
- @override
- _HomePageState createState() => _HomePageState();
-}
-
-class _HomePageState extends State {
- int _currentIndex = 0;
- final List _tabs = [
- BerandaTab(),
- KaloriTab(),
- RiwayatTab(),
- ProfileTab(),
- ];
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: _tabs[_currentIndex],
- bottomNavigationBar: BottomNavigationBar(
- currentIndex: _currentIndex,
- onTap: (index) {
- setState(() {
- _currentIndex = index;
- });
- },
- selectedItemColor: Colors.deepOrange,
- unselectedItemColor: Colors.deepOrange,
- items: [
- BottomNavigationBarItem(
- icon: Icon(Icons.home),
- label: 'Beranda',
- ),
- BottomNavigationBarItem(
- icon: Icon(Icons.calculate),
- label: 'Kalori',
- ),
- BottomNavigationBarItem(
- icon: Icon(Icons.history),
- label: 'Riwayat',
- ),
- BottomNavigationBarItem(
- icon: Icon(Icons.person),
- label: 'Profile',
- ),
- ],
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/home/profile/profile_item.dart b/isipiringku/lib/pages/home/profile/profile_item.dart
deleted file mode 100644
index d52a462..0000000
--- a/isipiringku/lib/pages/home/profile/profile_item.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-import 'package:flutter/material.dart';
-
-class ProfileItem extends StatelessWidget {
- final String title;
- final String subtitle;
- final IconData iconData;
-
- const ProfileItem({
- required this.title,
- required this.subtitle,
- required this.iconData,
- });
-
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.circular(10),
- boxShadow: [
- BoxShadow(
- offset: Offset(0, 5),
- color: Colors.black.withOpacity(.2),
- spreadRadius: 2,
- blurRadius: 10,
- ),
- ],
- ),
- child: ListTile(
- title: Text(title),
- subtitle: Text(subtitle),
- leading: Icon(iconData),
- trailing: Icon(Icons.arrow_forward, color: Colors.grey.shade400),
- tileColor: Colors.white,
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/home/profile/profile_tab.dart b/isipiringku/lib/pages/home/profile/profile_tab.dart
deleted file mode 100644
index 3ea2d61..0000000
--- a/isipiringku/lib/pages/home/profile/profile_tab.dart
+++ /dev/null
@@ -1,117 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:shared_preferences/shared_preferences.dart';
-import 'profile_item.dart';
-import 'package:flutter/cupertino.dart';
-
-class ProfileTab extends StatefulWidget {
- @override
- State createState() => _ProfileTabState();
-}
-
-class _ProfileTabState extends State {
- TextEditingController namaController = TextEditingController();
- TextEditingController usernameController = TextEditingController();
- TextEditingController emailController = TextEditingController();
- TextEditingController tgllahirController = TextEditingController();
- TextEditingController beratbadanController = TextEditingController();
- TextEditingController tinggibadanController = TextEditingController();
- TextEditingController notelpController = TextEditingController();
- TextEditingController alamatController = TextEditingController();
-
- late SharedPreferences logindata;
- String username = '';
- String email = '';
- String notlp = '';
- String beratbadan = '';
- String tinggibadan = '';
- String alamat = '';
- @override
- void initState() {
- super.initState();
- initprofile();
- }
-
- void initprofile() async {
- logindata = await SharedPreferences.getInstance();
- setState(() {
- username = logindata.getString('username') ?? '';
- email = logindata.getString('email') ?? '';
- notlp = logindata.getString('no_tlp') ?? '';
- beratbadan = logindata.getString('berat_badan') ?? '';
- tinggibadan = logindata.getString('tinggi_adan') ?? '';
- alamat = logindata.getString('alamat') ?? '';
- });
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: SingleChildScrollView(
- child: Padding(
- padding: const EdgeInsets.all(20.0),
- child: Column(
- children: [
- const SizedBox(height: 40),
- const SizedBox(height: 20),
- ProfileItem(
- title: 'Name',
- subtitle: namaController.text,
- iconData: CupertinoIcons.person_alt),
- const SizedBox(height: 10),
- ProfileItem(
- title: '$username',
- subtitle: usernameController.text,
- iconData: CupertinoIcons.person),
- const SizedBox(height: 10),
- ProfileItem(
- title: '$email',
- subtitle: emailController.text,
- iconData: CupertinoIcons.mail),
- const SizedBox(height: 10),
- ProfileItem(
- title: 'Tanggal Lahir',
- subtitle: tgllahirController.text,
- iconData: CupertinoIcons.calendar),
- const SizedBox(height: 10),
- ProfileItem(
- title: 'Berat Badan',
- subtitle: beratbadanController.text,
- iconData: CupertinoIcons.chart_bar),
- const SizedBox(height: 10),
- ProfileItem(
- title: 'Tinggi Badan',
- subtitle: tinggibadanController.text,
- iconData: CupertinoIcons.person_crop_rectangle),
- const SizedBox(height: 10),
- ProfileItem(
- title: 'No. HP',
- subtitle: notelpController.text,
- iconData: CupertinoIcons.phone),
- const SizedBox(height: 10),
- ProfileItem(
- title: 'Alamat',
- subtitle: alamatController.text,
- iconData: CupertinoIcons.location),
- const SizedBox(
- height: 20,
- ),
- SizedBox(
- width: double.infinity,
- child: ElevatedButton(
- style: ElevatedButton.styleFrom(
- primary: Colors.deepOrange,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(30.0),
- ),
- padding: const EdgeInsets.all(15),
- ),
- onPressed: () {},
- child: const Text('Edit Profile')),
- )
- ],
- ),
- ),
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/home/profile_item.dart b/isipiringku/lib/pages/home/profile_item.dart
deleted file mode 100644
index d52a462..0000000
--- a/isipiringku/lib/pages/home/profile_item.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-import 'package:flutter/material.dart';
-
-class ProfileItem extends StatelessWidget {
- final String title;
- final String subtitle;
- final IconData iconData;
-
- const ProfileItem({
- required this.title,
- required this.subtitle,
- required this.iconData,
- });
-
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.circular(10),
- boxShadow: [
- BoxShadow(
- offset: Offset(0, 5),
- color: Colors.black.withOpacity(.2),
- spreadRadius: 2,
- blurRadius: 10,
- ),
- ],
- ),
- child: ListTile(
- title: Text(title),
- subtitle: Text(subtitle),
- leading: Icon(iconData),
- trailing: Icon(Icons.arrow_forward, color: Colors.grey.shade400),
- tileColor: Colors.white,
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/login/login_controller.dart b/isipiringku/lib/pages/login/login_controller.dart
deleted file mode 100644
index 13420fb..0000000
--- a/isipiringku/lib/pages/login/login_controller.dart
+++ /dev/null
@@ -1,71 +0,0 @@
-// import 'package:flutter/material.dart';
-// import 'package:isipiringku/pages/home/home_page.dart';
-// import 'package:oauth2/oauth2.dart' as oauth2;
-// import 'package:shared_preferences/shared_preferences.dart';
-
-// class LoginController {
-// TextEditingController usernameController = TextEditingController();
-// TextEditingController passwordController = TextEditingController();
-// String usernameError = '';
-// String passwordError = '';
-// bool showPassword = false;
-
-// Future login(BuildContext context) async {
-// final String username = usernameController.text;
-// final String password = passwordController.text;
-
-// String usernameError =
-// usernameController.text.isEmpty ? 'Username harus diisi' : '';
-// String passwordError = _validatePassword(passwordController.text);
-
-// if (usernameError.isNotEmpty || passwordError.isNotEmpty) {
-// this.usernameError = usernameError;
-// this.passwordError = passwordError;
-// return;
-// }
-// try {
-// final tokenEndpoint =
-// Uri.parse('https://isipiringku.esolusindo.com/api/Token/token');
-// final identifier = 'PKL2023';
-// final secret = 'PKLSERU';
-
-// final client = await oauth2.clientCredentialsGrant(
-// tokenEndpoint,
-// identifier,
-// secret,
-// );
-// final response = await client.post(
-// Uri.parse('https://isipiringku.esolusindo.com/api/Login/Login'),
-// body: {
-// 'username': username,
-// 'password': password,
-// },
-// );
-
-// if (response.statusCode == 200) {
-// print('Authenticated API Response: ${response.body}');
-// Navigator.of(context).pushReplacement(
-// MaterialPageRoute(builder: (context) => HomePage()),
-// );
-// } else {
-// print('API Request Failed');
-// print('Response Body: ${response.body}');
-// this.passwordError = 'Authentication failed. Check your credentials.';
-// }
-// } catch (error) {
-// print('Exception during OAuth2 login: $error');
-// }
-// }
-
-// String _validatePassword(String password) {
-// if (password.isEmpty) {
-// return 'Password harus diisi';
-// } else if (password.length < 4) {
-// return 'Password harus terdiri dari minimal 4 karakter';
-// } else if (!RegExp(r'^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]+$')
-// .hasMatch(password)) {
-// return 'Password harus terdiri dari kombinasi huruf dan angka';
-// }
-// return '';
-// }
-// }
diff --git a/isipiringku/lib/pages/login/login_page.dart b/isipiringku/lib/pages/login/login_page.dart
deleted file mode 100644
index c9e5d8e..0000000
--- a/isipiringku/lib/pages/login/login_page.dart
+++ /dev/null
@@ -1,295 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/login/seassion.dart';
-import 'package:isipiringku/pages/register/register_page.dart';
-import 'package:isipiringku/pages/home/home_page.dart';
-import 'package:isipiringku/pages/login/resetpassword_page.dart';
-import 'package:oauth2/oauth2.dart' as oauth2;
-import 'package:shared_preferences/shared_preferences.dart';
-
-class LoginPage extends StatefulWidget {
- @override
- State createState() => _LoginPageState();
-}
-
-class _LoginPageState extends State {
- TextEditingController usernameController = TextEditingController();
- TextEditingController passwordController = TextEditingController();
- TextEditingController emailController = TextEditingController();
- String usernameError = '';
- String passwordError = '';
- bool showPassword = false;
-
- Future login(BuildContext context) async {
- final String username = usernameController.text;
- final String password = passwordController.text;
-
- String passwordValidationError = _validatePassword(password);
-
- if (passwordValidationError.isNotEmpty) {
- setState(() {
- passwordError = passwordValidationError;
- });
- return;
- }
- try {
- final tokenEndpoint =
- Uri.parse('https://isipiringku.esolusindo.com/api/Token/token');
- final identifier = 'PKL2023';
- final secret = 'PKLSERU';
-
- final client = await oauth2.clientCredentialsGrant(
- tokenEndpoint,
- identifier,
- secret,
- );
- final response = await client.post(
- Uri.parse('https://isipiringku.esolusindo.com/api/Login/Login'),
- body: {
- 'username': username,
- 'password': password,
- },
- );
-
- if (response.statusCode == 200) {
- print('Authenticated API Response: ${response.body}');
- await SessionManager.saveLoggedInState(true);
- Navigator.of(context).pushReplacement(
- MaterialPageRoute(builder: (context) => HomePage()),
- );
- } else {
- print('API Request Failed');
- print('Response Body: ${response.body}');
-
- if (response.statusCode == 401) {
- setState(() {
- passwordError = 'Incorrect username or password';
- });
- } else {
- setState(() {
- passwordError = 'Authentication failed. Check your credentials.';
- });
- }
- }
- } catch (error) {
- print('Exception during OAuth2 login: $error');
- }
- }
-
- String _validatePassword(String password) {
- if (password.isEmpty) {
- return 'Password harus diisi';
- } else if (password.length < 4) {
- return 'Password harus terdiri dari minimal 4 karakter';
- } else if (!RegExp(r'^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]+$')
- .hasMatch(password)) {
- return 'Password harus terdiri dari kombinasi huruf dan angka';
- }
- return '';
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- resizeToAvoidBottomInset: false,
- body: Stack(
- fit: StackFit.expand,
- children: [
- Container(
- decoration: BoxDecoration(
- image: DecorationImage(
- image: AssetImage('assets/images/resa.png'),
- fit: BoxFit.cover,
- ),
- ),
- ),
- SingleChildScrollView(
- child: Padding(
- padding: EdgeInsets.all(20.0),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Image.asset(
- 'assets/images/logo_2.png',
- width: 200.0,
- height: 200.0,
- ),
- Text(
- 'LOGIN',
- style: TextStyle(
- fontSize: 24,
- fontFamily: 'Calibri',
- fontWeight: FontWeight.bold,
- color: Colors.black,
- ),
- ),
- SizedBox(height: 30.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black.withOpacity(.2),
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: usernameController,
- decoration: InputDecoration(
- labelText: 'Username',
- hintText: 'Masukkan Username',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- ),
- ),
- ),
- if (usernameError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- passwordError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 15.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black.withOpacity(.2),
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: passwordController,
- obscureText: !showPassword,
- decoration: InputDecoration(
- labelText: 'Password',
- hintText: 'Masukkan Password',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- suffixIcon: GestureDetector(
- onTap: () {
- setState(() {
- showPassword = !showPassword;
- });
- },
- child: Icon(
- showPassword
- ? Icons.visibility
- : Icons.visibility_off,
- color: Colors.grey,
- ),
- )),
- ),
- ),
- if (passwordError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- passwordError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 10.0),
- Align(
- alignment: Alignment.centerRight,
- child: TextButton(
- onPressed: () {
- Navigator.of(context).push(
- MaterialPageRoute(
- builder: (context) => ResetPasswordPage()),
- );
- },
- child: Text(
- 'Lupa Password',
- style: TextStyle(
- color: Colors.black,
- ),
- ),
- ),
- ),
- SizedBox(height: 10.0),
- SizedBox(
- width: 200.0,
- height: 50.0,
- child: ElevatedButton(
- onPressed: () {
- login(context);
- },
- style: ElevatedButton.styleFrom(
- primary: Colors.deepOrange,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(30.0),
- ),
- ),
- child: Text(
- 'Login',
- style: TextStyle(fontSize: 18.0),
- ),
- ),
- ),
- SizedBox(height: 10.0),
- Padding(
- padding: const EdgeInsets.only(bottom: 5.0),
- child: TextButton(
- onPressed: () {
- Navigator.of(context).pushReplacement(
- PageRouteBuilder(
- pageBuilder:
- (context, animation, secondaryAnimation) =>
- RegisterPage(),
- transitionsBuilder: (context, animation,
- secondaryAnimation, child) {
- const begin = Offset(-1.0, 0.0);
- const end = Offset.zero;
- const curve = Curves.easeInOut;
- var tween = Tween(begin: begin, end: end)
- .chain(CurveTween(curve: curve));
- var offsetAnimation = animation.drive(tween);
- return SlideTransition(
- position: offsetAnimation, child: child);
- },
- ),
- );
- },
- child: Text(
- 'Tidak punya akun? Buat satu',
- style: TextStyle(
- decoration: TextDecoration.underline,
- color: Colors.black,
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- ),
- ],
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/login/resetpassword_page.dart b/isipiringku/lib/pages/login/resetpassword_page.dart
deleted file mode 100644
index bd1d84b..0000000
--- a/isipiringku/lib/pages/login/resetpassword_page.dart
+++ /dev/null
@@ -1,43 +0,0 @@
-import 'package:flutter/material.dart';
-
-class ResetPasswordPage extends StatefulWidget {
- @override
- _ResetPasswordPageState createState() => _ResetPasswordPageState();
-}
-
-class _ResetPasswordPageState extends State {
- TextEditingController emailController = TextEditingController();
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: Padding(
- padding: EdgeInsets.all(20.0),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'Enter your email address to reset your password.',
- style: TextStyle(fontSize: 16.0),
- ),
- SizedBox(height: 20.0),
- TextField(
- controller: emailController,
- decoration: InputDecoration(
- labelText: 'Email Address',
- hintText: 'Enter your email address',
- ),
- ),
- SizedBox(height: 20.0),
- ElevatedButton(
- onPressed: () async {
- final String email = emailController.text;
- },
- child: Text('Send Reset Link'),
- )
- ],
- ),
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/login/seassion.dart b/isipiringku/lib/pages/login/seassion.dart
deleted file mode 100644
index 31b0a3a..0000000
--- a/isipiringku/lib/pages/login/seassion.dart
+++ /dev/null
@@ -1,15 +0,0 @@
-import 'package:shared_preferences/shared_preferences.dart';
-
-class SessionManager {
- static const String isLoggedInKey = 'isLoggedIn';
-
- static Future saveLoggedInState(bool isLoggedIn) async {
- final prefs = await SharedPreferences.getInstance();
- await prefs.setBool(isLoggedInKey, isLoggedIn);
- }
-
- static Future isLoggedIn() async {
- final prefs = await SharedPreferences.getInstance();
- return prefs.getBool(isLoggedInKey) ?? false;
- }
-}
diff --git a/isipiringku/lib/pages/register/register_controller.dart b/isipiringku/lib/pages/register/register_controller.dart
deleted file mode 100644
index 8b13789..0000000
--- a/isipiringku/lib/pages/register/register_controller.dart
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/isipiringku/lib/pages/register/register_page.dart b/isipiringku/lib/pages/register/register_page.dart
deleted file mode 100644
index 0f2e4d0..0000000
--- a/isipiringku/lib/pages/register/register_page.dart
+++ /dev/null
@@ -1,355 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:isipiringku/pages/login/login_page.dart';
-import 'package:oauth2/oauth2.dart' as oauth2;
-
-class RegisterPage extends StatefulWidget {
- @override
- State createState() => _RegisterPageState();
-}
-
-class _RegisterPageState extends State {
- TextEditingController nameController = TextEditingController();
- TextEditingController emailController = TextEditingController();
- TextEditingController usernameController = TextEditingController();
- TextEditingController passwordController = TextEditingController();
- String nameError = '';
- String emailError = '';
- String usernameError = '';
- String passwordError = '';
- bool showPassword = false;
-
- Future register(BuildContext context) async {
- final String name = nameController.text;
- final String email = emailController.text;
- final String username = usernameController.text;
- final String password = passwordController.text;
-
- String nameError = nameController.text.isEmpty ? 'Nama harus diisi' : '';
- String emailError =
- !_isValidEmail(emailController.text) ? 'Email tidak valid' : '';
- String usernameError =
- usernameController.text.isEmpty ? 'Usernama harus diisi' : '';
- String passwordError = _validatePassword(passwordController.text);
-
- if (nameError.isNotEmpty ||
- emailError.isNotEmpty ||
- usernameError.isNotEmpty ||
- passwordError.isNotEmpty) {
- this.nameError = nameError;
- this.emailError = emailError;
- this.usernameError = usernameError;
- this.passwordError = passwordError;
- return;
- }
- try {
- final tokenEndpoint =
- Uri.parse('https://isipiringku.esolusindo.com/api/Token/token');
- final identifier = 'PKL2023';
- final secret = 'PKLSERU';
-
- final client = await oauth2.clientCredentialsGrant(
- tokenEndpoint,
- identifier,
- secret,
- );
- final response = await client.post(
- Uri.parse('https://isipiringku.esolusindo.com/api/Register/Register'),
- body: {
- 'nama': name,
- 'email': email,
- 'username': username,
- 'password': password,
- },
- );
-
- if (response.statusCode == 200) {
- print('Authenticated API Response: ${response.body}');
- Navigator.of(context).pushReplacement(
- MaterialPageRoute(builder: (context) => LoginPage()),
- );
- } else {
- print('API Request Failed');
- print('Response Body: ${response.body}');
- }
- } catch (error) {
- print('Exception during OAuth2 login: $error');
- }
- }
-
- bool _isValidEmail(String email) {
- return RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$').hasMatch(email);
- }
-
- String _validatePassword(String password) {
- if (password.isEmpty) {
- return 'Password harus diisi';
- } else if (password.length < 8) {
- return 'Password harus terdiri dari minimal 8 karakter';
- } else if (!RegExp(r'^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]+$')
- .hasMatch(password)) {
- return 'Password harus terdiri dari kombinasi huruf dan angka';
- }
- return '';
- }
-
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- resizeToAvoidBottomInset: false,
- body: Stack(
- fit: StackFit.expand,
- children: [
- Container(
- decoration: const BoxDecoration(
- image: DecorationImage(
- image: AssetImage('assets/images/resa.png'),
- fit: BoxFit.cover,
- ),
- ),
- ),
- SingleChildScrollView(
- child: Padding(
- padding: EdgeInsets.all(20.0),
- child: Column(
- children: [
- SizedBox(height: 80.0),
- Text(
- 'REGISTER',
- style: TextStyle(
- fontSize: 24,
- fontFamily: 'Calibri',
- fontWeight: FontWeight.bold,
- color: Colors.black,
- ),
- ),
- SizedBox(height: 30.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black,
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: nameController,
- decoration: InputDecoration(
- labelText: 'Nama',
- hintText: 'Masukkan Nama',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- ),
- ),
- ),
- if (nameError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- nameError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 30.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black,
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: emailController,
- decoration: InputDecoration(
- labelText: 'Email',
- hintText: 'Masukkan Email',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- ),
- ),
- ),
- if (emailError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- emailError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 30.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black,
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: usernameController,
- decoration: InputDecoration(
- labelText: 'Username',
- hintText: 'Masukkan Username',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- ),
- ),
- ),
- if (usernameError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- usernameError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 30.0),
- Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(40.0),
- color: Colors.white,
- boxShadow: [
- BoxShadow(
- color: Colors.black,
- blurRadius: 1,
- offset: Offset(0, 2),
- ),
- ],
- ),
- padding: EdgeInsets.symmetric(horizontal: 15.0),
- child: TextField(
- controller: passwordController,
- obscureText: true,
- decoration: InputDecoration(
- labelText: 'Password',
- hintText: 'Masukkan Password',
- labelStyle: TextStyle(
- color: Colors.deepOrange,
- fontWeight: FontWeight.bold,
- ),
- hintStyle: TextStyle(color: Colors.grey),
- border: InputBorder.none,
- suffixIcon: GestureDetector(
- onTap: () {
- setState(() {
- showPassword = showPassword;
- });
- },
- child: Icon(
- showPassword
- ? Icons.visibility
- : Icons.visibility_off,
- color: Colors.grey,
- ),
- )),
- ),
- ),
- if (passwordError.isNotEmpty)
- Padding(
- padding: const EdgeInsets.only(top: 2.0),
- child: Align(
- alignment: Alignment.centerLeft,
- child: Text(
- passwordError,
- style: TextStyle(color: Colors.red),
- ),
- ),
- ),
- SizedBox(height: 25.0),
- SizedBox(
- width: 200.0,
- height: 50.0,
- child: ElevatedButton(
- onPressed: () {
- register(context);
- },
- style: ElevatedButton.styleFrom(
- primary: Colors.deepOrange,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(30.0),
- ),
- ),
- child: Text(
- 'Register',
- style: TextStyle(fontSize: 18.0),
- ),
- ),
- ),
- SizedBox(height: 10.0),
- Padding(
- padding: const EdgeInsets.only(bottom: 5.0),
- child: TextButton(
- onPressed: () {
- Navigator.of(context).pushReplacement(
- PageRouteBuilder(
- pageBuilder:
- (context, animation, secondaryAnimation) =>
- LoginPage(),
- transitionsBuilder: (context, animation,
- secondaryAnimation, child) {
- const begin = Offset(1.0, 0.0);
- const end = Offset.zero;
- const curve = Curves.easeInOut;
- var tween = Tween(begin: begin, end: end)
- .chain(CurveTween(curve: curve));
- var offsetAnimation = animation.drive(tween);
- return SlideTransition(
- position: offsetAnimation, child: child);
- },
- ),
- );
- },
- child: Text(
- 'Sudah punya akun? Login di sini',
- style: TextStyle(
- decoration: TextDecoration.underline,
- color: Colors.black,
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- ),
- ],
- ),
- );
- }
-}
diff --git a/isipiringku/lib/pages/splashscreen/splashscreen.dart b/isipiringku/lib/pages/splashscreen/splashscreen.dart
deleted file mode 100644
index 691d238..0000000
--- a/isipiringku/lib/pages/splashscreen/splashscreen.dart
+++ /dev/null
@@ -1,17 +0,0 @@
-import 'package:flutter/material.dart';
-import 'package:animated_splash_screen/animated_splash_screen.dart';
-import '../login/login_page.dart'; // Import your LoginPage
-
-class SplashScreen extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: AnimatedSplashScreen(
- splash: Image.asset('assets/images/logo_2.png'),
- nextScreen: LoginPage(),
- splashTransition: SplashTransition.fadeTransition,
- ),
- );
- }
-}
diff --git a/isipiringku/lib/route/app_routes.dart b/isipiringku/lib/route/app_routes.dart
deleted file mode 100644
index d6a00de..0000000
--- a/isipiringku/lib/route/app_routes.dart
+++ /dev/null
@@ -1,3 +0,0 @@
-class AppRoutes {
- static const loginPage = '/Login';
-}
diff --git a/isipiringku/lib/util/constants.dart b/isipiringku/lib/util/constants.dart
deleted file mode 100644
index 6334729..0000000
--- a/isipiringku/lib/util/constants.dart
+++ /dev/null
@@ -1,5 +0,0 @@
-import 'package:flutter/material.dart';
-
-const baseUrl = 'https://isipiringku.esolusindo.com/api';
-const oauthClientId = 'PKL2023';
-const oauthClientSecret = 'PKLSERU';
diff --git a/isipiringku/pubspec.yaml b/isipiringku/pubspec.yaml
deleted file mode 100644
index 0c57799..0000000
--- a/isipiringku/pubspec.yaml
+++ /dev/null
@@ -1,115 +0,0 @@
-name: isipiringku
-description: A new Flutter project.
-# The following line prevents the package from being accidentally published to
-# pub.dev using `flutter pub publish`. This is preferred for private packages.
-publish_to: 'none' # Remove this line if you wish to publish to pub.dev
-
-# The following defines the version and build number for your application.
-# A version number is three numbers separated by dots, like 1.2.43
-# followed by an optional build number separated by a +.
-# Both the version and the builder number may be overridden in flutter
-# build by specifying --build-name and --build-number, respectively.
-# In Android, build-name is used as versionName while build-number used as versionCode.
-# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
-# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
-# Read more about iOS versioning at
-# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
-# In Windows, build-name is used as the major, minor, and patch parts
-# of the product and file versions while build-number is used as the build suffix.
-version: 1.0.0+1
-
-environment:
- sdk: '>=3.0.5 <4.0.0'
-
-# Dependencies specify other packages that your package needs in order to work.
-# To automatically upgrade your package dependencies to the latest versions
-# consider running `flutter pub upgrade --major-versions`. Alternatively,
-# dependencies can be manually updated by changing the version numbers below to
-# the latest version available on pub.dev. To see which dependencies have newer
-# versions available, run `flutter pub outdated`.
-dependencies:
- flutter:
- sdk: flutter
- http: ^1.1.0
- oauth2: ^2.0.2
- get: ^4.6.5
- cached_network_image: ^3.2.3
- flutter_bloc: ^8.1.3
- url_launcher: ^6.1.12
- provider: ^6.0.5
- syncfusion_flutter_calendar: ^22.2.10
- table_calendar: ^3.0.9
- fluttertoast: ^8.2.2
- flutter_local_notifications: ^15.1.0+1
- cupertino_icons: ^1.0.2
- flutter_svg: ^2.0.7
- dio: ^5.3.2
- equatable: ^2.0.5
- json_annotation: ^4.8.1
- shared_preferences: ^2.2.1
-
-
-dev_dependencies:
- flutter_test:
- sdk: flutter
-
-
- # The "flutter_lints" package below contains a set of recommended lints to
- # encourage good coding practices. The lint set provided by the package is
- # activated in the `analysis_options.yaml` file located at the root of your
- # package. See that file for information about deactivating specific lint
- # rules and activating additional ones.
- flutter_lints: ^2.0.0
-
-# For information on the generic Dart part of this file, see the
-# following page: https://dart.dev/tools/pub/pubspec
-
-# The following section is specific to Flutter packages.
-flutter:
- assets:
- - assets/images/resa.png
- - assets/images/logo.jpeg
- - assets/images/splashscreen.jpeg
- - assets/images/background_2.jpg
- - assets/images/logo_2.png
- - assets/images/background_home.png
- - assets/images/user.png
-
-
-
- # The following line ensures that the Material Icons font is
- # included with your application, so that you can use the icons in
- # the material Icons class.
- uses-material-design: true
-
- # To add assets to your application, add an assets section, like this:
- # assets:
- # - images/a_dot_burr.jpeg
- # - images/a_dot_ham.jpeg
-
- # An image asset can refer to one or more resolution-specific "variants", see
- # https://flutter.dev/assets-and-images/#resolution-aware
-
- # For details regarding adding assets from package dependencies, see
- # https://flutter.dev/assets-and-images/#from-packages
-
- # To add custom fonts to your application, add a fonts section here,
- # in this "flutter" section. Each entry in this list should have a
- # "family" key with the font family name, and a "fonts" key with a
- # list giving the asset and other descriptors for the font. For
- # example:
-
- # fonts:
- # - family: Schyler
- # fonts:
- # - asset: fonts/Schyler-Regular.ttf
- # - asset: fonts/Schyler-Italic.ttf
- # style: italic
- # - family: Trajan Pro
- # fonts:
- # - asset: fonts/TrajanPro.ttf
- # - asset: fonts/TrajanPro_Bold.ttf
- # weight: 700
- #
- # For details regarding fonts from package dependencies,
- # see https://flutter.dev/custom-fonts/#from-packages
diff --git a/isipiringku/test/widget_test.dart b/isipiringku/test/widget_test.dart
deleted file mode 100644
index 8e69a73..0000000
--- a/isipiringku/test/widget_test.dart
+++ /dev/null
@@ -1,30 +0,0 @@
-// This is a basic Flutter widget test.
-//
-// To perform an interaction with a widget in your test, use the WidgetTester
-// utility in the flutter_test package. For example, you can send tap and scroll
-// gestures. You can also use WidgetTester to find child widgets in the widget
-// tree, read text, and verify that the values of widget properties are correct.
-
-import 'package:flutter/material.dart';
-import 'package:flutter_test/flutter_test.dart';
-
-import 'package:isipiringku/main.dart';
-
-void main() {
- testWidgets('Counter increments smoke test', (WidgetTester tester) async {
- // Build our app and trigger a frame.
- await tester.pumpWidget(IsiPiringku());
-
- // Verify that our counter starts at 0.
- expect(find.text('0'), findsOneWidget);
- expect(find.text('1'), findsNothing);
-
- // Tap the '+' icon and trigger a frame.
- await tester.tap(find.byIcon(Icons.add));
- await tester.pump();
-
- // Verify that our counter has incremented.
- expect(find.text('0'), findsNothing);
- expect(find.text('1'), findsOneWidget);
- });
-}